//================= Hercules Database =====================================
//=       _   _                     _
//=      | | | |                   | |
//=      | |_| | ___ _ __ ___ _   _| | ___  ___
//=      |  _  |/ _ \ '__/ __| | | | |/ _ \/ __|
//=      | | | |  __/ | | (__| |_| | |  __/\__ \
//=      \_| |_/\___|_|  \___|\__,_|_|\___||___/
//================= License ===============================================
//= This file is part of Hercules.
//= http://herc.ws - http://github.com/HerculesWS/Hercules
//=
//= Copyright (C) 2015-2025 Hercules Dev Team
//=
//= Hercules 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/>.
//=========================================================================
//= Mobs Database
//=========================================================================

mob_db: (
/**************************************************************************
 ************* Entry structure ********************************************
 **************************************************************************
{
	// ================ Mandatory fields ==============================
	Id: ID                                (int)
	SpriteName: "SPRITE_NAME"             (string)
	Name: "Mob name"                      (string)
	// ================ Optional fields ===============================
	JName: "Mob name"                     (string)
	Lv: level                             (int, defaults to 1)
	Hp: health                            (int, defaults to 1)
	Sp: mana                              (int, defaults to 0)
	Exp: basic experience                 (int, defaults to 0)
	JExp: job experience                  (int, defaults to 0)
	AttackRange: attack range             (int, defaults to 1)
	Attack: [attack1, attack2]            (int, defaults to 0)
	Def: defence                          (int, defaults to 0)
	Mdef: magic defence                   (int, defaults to 0)
	Stats: {
		Str: strength                 (int, defaults to 0)
		Agi: agility                  (int, defaults to 0)
		Vit: vitality                 (int, defaults to 0)
		Int: intelligence             (int, defaults to 0)
		Dex: dexterity                (int, defaults to 0)
		Luk: luck                     (int, defaults to 0)
	}
	ViewRange: view range                 (int, defaults to 1)
	ChaseRange: chase range               (int, defaults to 1)
	Size: size                            (string, defaults to "Size_Small")
	Race: race                            (string, defaults to "RC_Formless")
	Element: (type, level)                (string/int, defaults to "Ele_Neutral"/1)
	Mode: {
		CanMove: true/false           (bool, defaults to false)
		Looter: true/false            (bool, defaults to false)
		Aggressive: true/false        (bool, defaults to false)
		Assist: true/false            (bool, defaults to false)
		CastSensorIdle:true/false     (bool, defaults to false)
		Boss: true/false              (bool, defaults to false)
		Plant: true/false             (bool, defaults to false)
		CanAttack: true/false         (bool, defaults to false)
		Detector: true/false          (bool, defaults to false)
		CastSensorChase: true/false   (bool, defaults to false)
		ChangeChase: true/false       (bool, defaults to false)
		Angry: true/false             (bool, defaults to false)
		ChangeTargetMelee: true/false (bool, defaults to false)
		ChangeTargetChase: true/false (bool, defaults to false)
		TargetWeak: true/false        (bool, defaults to false)
		NoKnockback: true/false       (bool, defaults to false)
	}
	MoveSpeed: move speed                 (int, defaults to 0)
	AttackDelay: attack delay             (int, defaults to 4000)
	AttackMotion: attack motion           (int, defaults to 2000)
	DamageMotion: damage motion           (int, defaults to 0)
	MvpExp: mvp experience                (int, defaults to 0)
	MvpDrops: {
		AegisName: chance             (string: int)
		// ...
	}
	Drops: {
		AegisName: chance         (string: int)
		// or
		AegisName: (chance, "Option Drop Group")
		// ...
	}
	DamageTakenRate: damage taken rate    (int, defaults to 100)
	ViewData: {
		SpriteId: sprite id              (int, defaults to Id)
		WeaponId: weapon id              (int, defaults to 0)
		ShieldId: shield id              (int, defaults to 0)
		RobeId: garment id               (int, defaults to 0)
		HeadTopId: top headgear id       (int, defaults to 0)
		HeadMidId: middle headgear id    (int, defaults to 0)
		HeadLowId: lower headgear id     (int, defaults to 0)
		HairStyleId: hair style id       (int, defaults to 1)
		BodyStyleId: clothes id          (int, defaults to 0)
		HairColorId: hair color id       (int, defaults to 0)
		BodyColorId: clothes color id    (int, defaults to 0)
		Gender: gender                   (string, defaults to "SEX_FEMALE")
		Options: options                 (int, defaults to 0)
	}
},
**************************************************************************/

{
	Id: 1001
	SpriteName: "SCORPION"
	Name: "Scorpion"
	Lv: 16
	Hp: 153
	Sp: 1
	Exp: 108
	JExp: 81
	AttackRange: 1
	Attack: [33, 7]
	Def: 16
	Mdef: 5
	Stats: {
		Str: 12
		Agi: 15
		Vit: 10
		Int: 5
		Dex: 19
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1564
	AttackMotion: 864
	DamageMotion: 576
	Drops: {
		Boody_Red: 70
		Scorpions_Tail: 5500
		Elunium_Stone: 57
		Solid_Shell: 210
		Fine_Grit: 100
		Yellow_Herb: 200
		Lusty_Iron: 20
		Scorpion_Card: 1
	}
},
{
	Id: 1002
	SpriteName: "PORING"
	Name: "Poring"
	Lv: 1
	Hp: 60
	Sp: 1
	Exp: 36
	JExp: 20
	AttackRange: 1
	Attack: [8, 1]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Jellopy: 7000
		Knife_: 100
		Sticky_Mucus: 400
		Apple: 1000
		Empty_Bottle: 1500
		Apple: 150
		Unripe_Apple: 20
		Poring_Card: 1
	}
},
/*{
	Id: 1003
	SpriteName: "TESTEGG"
	Name: "Test Egg"
	Lv: 2
	Hp: 100000
	Sp: 0
	Exp: 10
	JExp: 10
	AttackRange: 0
	Attack: [3, 9]
	Def: 99
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 99
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	MoveSpeed: 512
	AttackDelay: 0
	AttackMotion: 512
	DamageMotion: 0
},*/
{
	Id: 1004
	SpriteName: "HORNET"
	Name: "Hornet"
	Lv: 11
	Hp: 90
	Sp: 1
	Exp: 81
	JExp: 60
	AttackRange: 1
	Attack: [13, 3]
	Def: 7
	Mdef: 1
	Stats: {
		Str: 12
		Agi: 24
		Vit: 4
		Int: 5
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 150
	AttackDelay: 1292
	AttackMotion: 792
	DamageMotion: 216
	Drops: {
		Wind_Of_Verdure: 80
		Bee_Sting: 9000
		Jellopy: 3500
		Main_Gauche_: 15
		Green_Herb: 350
		Honey: 150
		Hornet_Card: 1
	}
},
{
	Id: 1005
	SpriteName: "FARMILIAR"
	Name: "Familiar"
	Lv: 24
	Hp: 427
	Sp: 1
	Exp: 144
	JExp: 162
	AttackRange: 1
	Attack: [68, 9]
	Def: 26
	Mdef: 5
	Stats: {
		Str: 15
		Agi: 19
		Vit: 20
		Int: 5
		Dex: 20
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1276
	AttackMotion: 576
	DamageMotion: 384
	Drops: {
		Tooth_Of_Bat: 5500
		Falchion_: 20
		Ribbon_: 15
		Wing_Of_Fly: 50
		Grape: 100
		Red_Herb: 700
		Center_Potion: 50
		Farmiliar_Card: 1
	}
},
/*{
	Id: 1006
	SpriteName: "THIEF_BUG_LARVA"
	Name: "Thief Bug Larva"
	Lv: 1
	Hp: 1
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Water", 0)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		Plant: true
		CastSensorChase: true
		ChangeChase: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},*/
{
	Id: 1007
	SpriteName: "FABRE"
	Name: "Fabre"
	Lv: 6
	Hp: 72
	Sp: 1
	Exp: 54
	JExp: 41
	AttackRange: 1
	Attack: [12, 3]
	Def: 24
	Mdef: 0
	Stats: {
		Str: 12
		Agi: 5
		Vit: 5
		Int: 5
		Dex: 12
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 400
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Fluff: 6500
		Feather: 500
		Club_: 80
		Azure_Jewel: 5
		Green_Herb: 700
		Clover: 1000
		Club: 200
		Fabre_Card: 1
	}
},
{
	Id: 1008
	SpriteName: "PUPA"
	Name: "Pupa"
	Lv: 4
	Hp: 66
	Sp: 1
	Exp: 36
	JExp: 27
	AttackRange: 1
	Attack: [1, 3]
	Def: 24
	Mdef: 2
	Stats: {
		Str: 11
		Agi: 1
		Vit: 3
		Int: 3
		Dex: 8
		Luk: 6
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		Detector: true
	}
	MoveSpeed: 1000
	AttackDelay: 1001
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		Phracon: 80
		Chrysalis: 5500
		Sticky_Mucus: 600
		Guard_: 2
		Shell: 1000
		Sticky_Mucus: 600
		Iron_Ore: 200
		Pupa_Card: 1
	}
},
{
	Id: 1009
	SpriteName: "CONDOR"
	Name: "Condor"
	Lv: 12
	Hp: 114
	Sp: 1
	Exp: 81
	JExp: 60
	AttackRange: 1
	Attack: [14, 6]
	Def: 7
	Mdef: 5
	Stats: {
		Str: 14
		Agi: 7
		Vit: 6
		Int: 0
		Dex: 13
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 150
	AttackDelay: 1148
	AttackMotion: 648
	DamageMotion: 480
	Drops: {
		Talon: 9000
		Bow_: 150
		Yellow_Gemstone: 80
		Arrow: 5500
		Meat: 400
		Feather_Of_Birds: 2000
		Orange: 600
		Condor_Card: 1
	}
},
{
	Id: 1010
	SpriteName: "WILOW"
	Name: "Willow"
	Lv: 8
	Hp: 91
	Sp: 1
	Exp: 63
	JExp: 47
	AttackRange: 1
	Attack: [13, 5]
	Def: 38
	Mdef: 2
	Stats: {
		Str: 13
		Agi: 3
		Vit: 8
		Int: 5
		Dex: 12
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 432
	Drops: {
		Tree_Root: 9000
		Wooden_Block: 100
		Resin: 1500
		Sweet_Potato: 700
		Tree_Of_Archer_3: 3500
		Tree_Of_Archer_2: 2000
		Tree_Of_Archer_1: 1000
		Wilow_Card: 1
	}
},
{
	Id: 1011
	SpriteName: "CHONCHON"
	Name: "Chonchon"
	Lv: 5
	Hp: 57
	Sp: 1
	Exp: 45
	JExp: 36
	AttackRange: 1
	Attack: [11, 3]
	Def: 27
	Mdef: 0
	Stats: {
		Str: 13
		Agi: 4
		Vit: 4
		Int: 0
		Dex: 8
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1076
	AttackMotion: 576
	DamageMotion: 480
	Drops: {
		Iron: 50
		Shell: 6500
		Jellopy: 1500
		Cutter_: 55
		Wing_Of_Fly: 100
		Chonchon_Doll: 5
		Iron_Ore: 150
		Chonchon_Card: 1
	}
},
{
	Id: 1012
	SpriteName: "RODA_FROG"
	Name: "Roda Frog"
	Lv: 13
	Hp: 160
	Sp: 1
	Exp: 90
	JExp: 68
	AttackRange: 1
	Attack: [19, 4]
	Def: 12
	Mdef: 5
	Stats: {
		Str: 12
		Agi: 6
		Vit: 4
		Int: 0
		Dex: 14
		Luk: 9
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 2016
	AttackMotion: 816
	DamageMotion: 288
	Drops: {
		Sticky_Webfoot: 9000
		Spawn: 500
		Green_Herb: 300
		Azure_Jewel: 7
		Empty_Bottle: 2000
		Roda_Frog_Card: 1
	}
},
{
	Id: 1013
	SpriteName: "WOLF"
	Name: "Wolf"
	Lv: 45
	Hp: 1219
	Sp: 1
	Exp: 342
	JExp: 386
	AttackRange: 1
	Attack: [80, 11]
	Def: 55
	Mdef: 3
	Stats: {
		Str: 27
		Agi: 24
		Vit: 30
		Int: 15
		Dex: 33
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 1054
	AttackMotion: 504
	DamageMotion: 432
	Drops: {
		Emveretarcon: 20
		Claw_Of_Wolves: 9000
		Mantle_: 10
		Meat: 650
		Monsters_Feed: 1050
		Animals_Skin: 5500
		Strawberry: 600
		Wolf_Card: 1
	}
},
{
	Id: 1014
	SpriteName: "SPORE"
	Name: "Spore"
	Lv: 18
	Hp: 280
	Sp: 1
	Exp: 117
	JExp: 87
	AttackRange: 1
	Attack: [25, 8]
	Def: 12
	Mdef: 10
	Stats: {
		Str: 15
		Agi: 5
		Vit: 10
		Int: 0
		Dex: 12
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 288
	Drops: {
		Mushroom_Spore: 9000
		Red_Herb: 800
		Blue_Herb: 50
		Spore_Doll: 10
		Hat: 40
		Poison_Spore: 5
		Strawberry: 600
		Spore_Card: 1
	}
},
{
	Id: 1015
	SpriteName: "ZOMBIE"
	Name: "Zombie"
	Lv: 17
	Hp: 234
	Sp: 1
	Exp: 117
	JExp: 87
	AttackRange: 1
	Attack: [38, 12]
	Def: 20
	Mdef: 3
	Stats: {
		Str: 15
		Agi: 8
		Vit: 17
		Int: 0
		Dex: 15
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 2612
	AttackMotion: 912
	DamageMotion: 288
	Drops: {
		Decayed_Nail: 9000
		Cardinal_Jewel_: 5
		Sticky_Mucus: 1000
		Horrendous_Mouth: 50
		White_Jewel: 70
		Zombie_Card: 1
	}
},
{
	Id: 1016
	SpriteName: "ARCHER_SKELETON"
	Name: "Archer Skeleton"
	Lv: 50
	Hp: 1646
	Sp: 1
	Exp: 424
	JExp: 455
	AttackRange: 9
	Attack: [95, 23]
	Def: 47
	Mdef: 10
	Stats: {
		Str: 30
		Agi: 29
		Vit: 20
		Int: 10
		Dex: 35
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 2864
	AttackMotion: 864
	DamageMotion: 576
	Drops: {
		Skel_Bone: 4500
		Oridecon_Stone: 70
		Apple_Of_Archer: 3
		Great_Bow_: 35
		Fire_Arrow: 1000
		Red_Herb: 1800
		Bow: 150
		Archer_Skeleton_Card: 1
	}
},
/*{
	Id: 1017
	SpriteName: "THIEF_BUG_FEMALE"
	Name: "Thief Bug Female"
	Lv: 10
	Hp: 170
	Sp: 0
	Exp: 35
	JExp: 18
	AttackRange: 1
	Attack: [33, 40]
	Def: 5
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 15
		Vit: 10
		Int: 5
		Dex: 23
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		Plant: true
		CastSensorChase: true
		ChangeChase: true
	}
	MoveSpeed: 200
	AttackDelay: 988
	AttackMotion: 288
	DamageMotion: 768
	Drops: {
		Worm_Peelings: 3500
		Garlet: 250
		Blade_: 15
		Insect_Feeler: 200
		Red_Herb: 400
		Red_Gemstone: 50
		Iron_Ore: 400
		Thief_Bug_Female_Card: 1
	}
},*/
{
	Id: 1018
	SpriteName: "CREAMY"
	Name: "Creamy"
	Lv: 23
	Hp: 378
	Sp: 1
	Exp: 144
	JExp: 162
	AttackRange: 1
	Attack: [61, 1]
	Def: 28
	Mdef: 20
	Stats: {
		Str: 16
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 1
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 150
	AttackDelay: 1136
	AttackMotion: 720
	DamageMotion: 840
	Drops: {
		Powder_Of_Butterfly: 9000
		Silk_Robe_: 10
		Honey: 150
		Wing_Of_Butterfly: 100
		Fancy_Flower: 2
		Flower: 500
		Wind_Scroll_1_3: 100
		Creamy_Card: 1
	}
},
{
	Id: 1019
	SpriteName: "PECOPECO"
	Name: "Peco Peco"
	Lv: 25
	Hp: 446
	Sp: 1
	Exp: 162
	JExp: 183
	AttackRange: 1
	Attack: [76, 7]
	Def: 48
	Mdef: 0
	Stats: {
		Str: 21
		Agi: 10
		Vit: 13
		Int: 5
		Dex: 28
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 1564
	AttackMotion: 864
	DamageMotion: 576
	Drops: {
		Bill_Of_Birds: 9000
		Sandals_: 20
		Yellow_Herb: 200
		Red_Herb: 900
		Wand: 100
		Orange: 1000
		Pecopeco_Card: 1
	}
},
{
	Id: 1020
	SpriteName: "MANDRAGORA"
	Name: "Mandragora"
	Lv: 13
	Hp: 156
	Sp: 1
	Exp: 97
	JExp: 73
	AttackRange: 4
	Attack: [20, 3]
	Def: 13
	Mdef: 2
	Stats: {
		Str: 12
		Agi: 3
		Vit: 5
		Int: 5
		Dex: 10
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 3)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 1000
	AttackDelay: 1768
	AttackMotion: 768
	DamageMotion: 576
	Drops: {
		Yellow_Live: 50
		Stem: 9000
		Spear_: 30
		Green_Herb: 350
		Shoot: 300
		Four_Leaf_Clover: 3
		Whip_Of_Earth: 10
		Mandragora_Card: 1
	}
},
/*{
	Id: 1021
	SpriteName: "THIEF_BUG_MALE"
	Name: "Thief Bug Male"
	Lv: 19
	Hp: 583
	Sp: 0
	Exp: 223
	JExp: 93
	AttackRange: 1
	Attack: [76, 88]
	Def: 15
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 29
		Vit: 16
		Int: 5
		Dex: 36
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Looter: true
		CastSensorIdle: true
		Plant: true
		CastSensorChase: true
		ChangeChase: true
	}
	MoveSpeed: 300
	AttackDelay: 988
	AttackMotion: 288
	DamageMotion: 768
	Drops: {
		Emveretarcon: 40
		Insect_Feeler: 5500
		Worm_Peelings: 1500
		Slayer_: 10
		Yellow_Herb: 90
		Bluish_Green_Jewel: 5
		Katana: 50
		Thief_Bug_Male_Card: 1
	}
},
{
	Id: 1022
	SpriteName: "WEREWOLF"
	Name: "Werewolf"
	Lv: 80
	Hp: 28600
	Sp: 0
	Exp: 11813
	JExp: 7289
	AttackRange: 2
	Attack: [2560, 3280]
	Def: 65
	Mdef: 35
	Stats: {
		Str: 1
		Agi: 97
		Vit: 60
		Int: 1
		Dex: 135
		Luk: 52
	}
	ViewRange: 10
	ChaseRange: 10
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Looter: true
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1500
	AttackMotion: 768
	DamageMotion: 652
	Drops: {
		Steel: 500
		Cobold_Hair: 4000
		Oridecon: 500
		Elunium: 500
		Executioners_Mitten: 800
		Guh_Moon_Goh_: 300
	}
},*/
{
	Id: 1023
	SpriteName: "ORK_WARRIOR"
	Name: "Orc Warrior"
	Lv: 44
	Hp: 1434
	Sp: 1
	Exp: 350
	JExp: 540
	AttackRange: 1
	Attack: [71, 33]
	Def: 52
	Mdef: 3
	Stats: {
		Str: 32
		Agi: 15
		Vit: 24
		Int: 15
		Dex: 16
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1864
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Iron: 210
		Orcish_Voucher: 9000
		Oridecon_Stone: 40
		Cigar: 3
		Battle_Axe_: 10
		Orcish_Axe: 5
		Round_Buckler: 3
		Orc_Warrior_Card: 1
	}
},
{
	Id: 1024
	SpriteName: "WORM_TAIL"
	Name: "Wormtail"
	Lv: 17
	Hp: 200
	Sp: 1
	Exp: 117
	JExp: 87
	AttackRange: 1
	Attack: [22, 5]
	Def: 16
	Mdef: 0
	Stats: {
		Str: 10
		Agi: 6
		Vit: 14
		Int: 5
		Dex: 12
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1048
	AttackMotion: 48
	DamageMotion: 192
	Drops: {
		Yellow_Live: 60
		Emveretarcon: 25
		Pointed_Scale: 5500
		Pike_: 30
		Yellow_Herb: 70
		Azure_Jewel: 5
		Green_Lace: 100
		Worm_Tail_Card: 1
	}
},
{
	Id: 1025
	SpriteName: "SNAKE"
	Name: "Snake"
	JName: "Boa"
	Lv: 18
	Hp: 217
	Sp: 1
	Exp: 117
	JExp: 87
	AttackRange: 1
	Attack: [23, 5]
	Def: 9
	Mdef: 8
	Stats: {
		Str: 10
		Agi: 8
		Vit: 18
		Int: 10
		Dex: 14
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 576
	Drops: {
		Scale_Of_Snakes: 9000
		Katana_: 15
		Red_Herb: 900
		Emveretarcon: 35
		Posionous_Canine: 800
		Shining_Scales: 1
		Strawberry: 600
		Snake_Card: 1
	}
},
{
	Id: 1026
	SpriteName: "MUNAK"
	Name: "Munak"
	Lv: 58
	Hp: 2445
	Sp: 1
	Exp: 520
	JExp: 557
	AttackRange: 1
	Attack: [184, 30]
	Def: 77
	Mdef: 15
	Stats: {
		Str: 53
		Agi: 9
		Vit: 25
		Int: 10
		Dex: 33
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 2468
	AttackMotion: 768
	DamageMotion: 288
	Drops: {
		Danggie: 9000
		Munak_Turban: 2
		Shoes_: 15
		Amulet: 20
		Ninja_Suit: 1
		Adventure_Suit: 100
		Girls_Diary: 5
		Munak_Card: 1
	}
},
/*{
	Id: 1027
	SpriteName: "RAPTICE"
	Name: "Raptice"
	Lv: 17
	Hp: 600
	Sp: 0
	Exp: 100
	JExp: 55
	AttackRange: 1
	Attack: [0, 0]
	Def: 5
	Mdef: 10
	Stats: {
		Str: 5
		Agi: 20
		Vit: 20
		Int: 0
		Dex: 28
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		Boss: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 2000
	AttackMotion: 1000
	DamageMotion: 500
	Drops: {
		Jellopy: 7000
	}
},*/
{
	Id: 1028
	SpriteName: "SOLDIER_SKELETON"
	Name: "Soldier Skeleton"
	Lv: 34
	Hp: 804
	Sp: 1
	Exp: 216
	JExp: 243
	AttackRange: 1
	Attack: [84, 14]
	Def: 53
	Mdef: 5
	Stats: {
		Str: 14
		Agi: 10
		Vit: 32
		Int: 5
		Dex: 29
		Luk: 3
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 2276
	AttackMotion: 576
	DamageMotion: 432
	Drops: {
		Skel_Bone: 5500
		Oridecon_Stone: 60
		Dagger_: 12
		Red_Herb: 700
		Mementos: 10
		Chain_Mail_: 1
		Stiletto: 50
		Soldier_Skeleton_Card: 1
	}
},
{
	Id: 1029
	SpriteName: "ISIS"
	Name: "Isis"
	Lv: 59
	Hp: 2092
	Sp: 1
	Exp: 558
	JExp: 597
	AttackRange: 1
	Attack: [202, 37]
	Def: 83
	Mdef: 5
	Stats: {
		Str: 58
		Agi: 43
		Vit: 22
		Int: 5
		Dex: 43
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1384
	AttackMotion: 768
	DamageMotion: 336
	Drops: {
		Scales_Shell: 5335
		Circlet_: 5
		Necklace: 1
		Crystal_Jewel___: 150
		Crystal_Jewel__: 20
		Shining_Scales: 1000
		Crystal_Jewel_: 5
		Isis_Card: 1
	}
},
{
	Id: 1030
	SpriteName: "ANACONDAQ"
	Name: "Anacondaq"
	Lv: 100
	Hp: 8510
	Sp: 1
	Exp: 1922
	JExp: 1202
	AttackRange: 1
	Attack: [504, 55]
	Def: 92
	Mdef: 0
	Stats: {
		Str: 79
		Agi: 46
		Vit: 28
		Int: 43
		Dex: 67
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 576
	Drops: {
		White_Powder: 200
		Posionous_Canine: 9000
		Glaive_: 10
		Scale_Of_Snakes: 1500
		Scales_Shell: 200
		Yellow_Herb: 150
		Oridecon_Stone: 50
		Anacondaq_Card: 1
	}
},
{
	Id: 1031
	SpriteName: "POPORING"
	Name: "Poporing"
	Lv: 30
	Hp: 524
	Sp: 1
	Exp: 198
	JExp: 224
	AttackRange: 1
	Attack: [74, 20]
	Def: 36
	Mdef: 17
	Stats: {
		Str: 17
		Agi: 26
		Vit: 20
		Int: 18
		Dex: 36
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Sticky_Mucus: 5500
		Garlet: 1500
		Green_Herb: 500
		Grape: 200
		Apple: 5
		Main_Gauche: 5
		Apple: 250
		Poporing_Card: 1
	}
},
{
	Id: 1032
	SpriteName: "VERIT"
	Name: "Verit"
	Lv: 52
	Hp: 1944
	Sp: 1
	Exp: 434
	JExp: 467
	AttackRange: 1
	Attack: [139, 20]
	Def: 63
	Mdef: 10
	Stats: {
		Str: 51
		Agi: 4
		Vit: 25
		Int: 10
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 250
	AttackDelay: 2468
	AttackMotion: 768
	DamageMotion: 480
	Drops: {
		Immortal_Heart: 9000
		Zargon: 700
		Rotten_Bandage: 1100
		White_Herb: 600
		Skul_Ring: 1
		Flower_Ring: 200
		Armlet_Of_Obedience: 20
		Verit_Card: 1
	}
},
{
	Id: 1033
	SpriteName: "ELDER_WILOW"
	Name: "Elder Willow"
	Lv: 34
	Hp: 599
	Sp: 1
	Exp: 233
	JExp: 263
	AttackRange: 1
	Attack: [80, 14]
	Def: 45
	Mdef: 0
	Stats: {
		Str: 10
		Agi: 14
		Vit: 25
		Int: 0
		Dex: 29
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1372
	AttackMotion: 672
	DamageMotion: 432
	Drops: {
		Boody_Red: 50
		Resin: 9000
		Elder_Branch: 1
		Elunium_Stone: 40
		Wooden_Mail_: 30
		Fire_Scroll_1_3: 100
		Branch_Of_Dead_Tree: 100
		Elder_Wilow_Card: 1
	}
},
{
	Id: 1034
	SpriteName: "THARA_FROG"
	Name: "Thara Frog"
	Lv: 40
	Hp: 1157
	Sp: 1
	Exp: 311
	JExp: 350
	AttackRange: 1
	Attack: [73, 30]
	Def: 37
	Mdef: 17
	Stats: {
		Str: 25
		Agi: 10
		Vit: 10
		Int: 18
		Dex: 30
		Luk: 2
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 2016
	AttackMotion: 816
	DamageMotion: 288
	Drops: {
		Emveretarcon: 45
		Spawn: 5500
		Scell: 600
		White_Herb: 30
		Red_Jewel: 5
		Sticky_Webfoot: 2000
		Thara_Frog_Card: 1
	}
},
{
	Id: 1035
	SpriteName: "HUNTER_FLY"
	Name: "Hunter Fly"
	Lv: 63
	Hp: 2050
	Sp: 1
	Exp: 634
	JExp: 681
	AttackRange: 1
	Attack: [226, 20]
	Def: 46
	Mdef: 20
	Stats: {
		Str: 32
		Agi: 72
		Vit: 22
		Int: 25
		Dex: 100
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 676
	AttackMotion: 576
	DamageMotion: 480
	Drops: {
		Rough_Wind: 30
		Steel: 100
		Solid_Shell: 5335
		Zargon: 1300
		Oridecon_Stone: 129
		Mini_Propeller: 1
		Damascus_: 2
		Hunter_Fly_Card: 1
	}
},
{
	Id: 1036
	SpriteName: "GHOUL"
	Name: "Ghoul"
	Lv: 61
	Hp: 2614
	Sp: 1
	Exp: 612
	JExp: 656
	AttackRange: 1
	Attack: [227, 29]
	Def: 78
	Mdef: 5
	Stats: {
		Str: 56
		Agi: 12
		Vit: 19
		Int: 11
		Dex: 30
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 2456
	AttackMotion: 912
	DamageMotion: 504
	Drops: {
		Horrendous_Mouth: 6000
		Oridecon_Stone: 110
		White_Herb: 700
		Green_Herb: 800
		Skul_Ring: 60
		Mementos: 150
		Ghoul_Leg: 1
		Ghoul_Card: 1
	}
},
{
	Id: 1037
	SpriteName: "SIDE_WINDER"
	Name: "Side Winder"
	Lv: 70
	Hp: 2736
	Sp: 1
	Exp: 756
	JExp: 810
	AttackRange: 1
	Attack: [316, 30]
	Def: 101
	Mdef: 12
	Stats: {
		Str: 52
		Agi: 32
		Vit: 35
		Int: 20
		Dex: 73
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 576
	Drops: {
		Shining_Scales: 5335
		Zargon: 1400
		Oridecon_Stone: 134
		Tsurugi_: 2
		Posionous_Canine: 2500
		Scale_Of_Snakes: 5000
		White_Herb: 1000
		Side_Winder_Card: 1
	}
},
{
	Id: 1038
	SpriteName: "OSIRIS"
	Name: "Osiris"
	Lv: 68
	Hp: 1175840
	Sp: 1
	Exp: 245520
	JExp: 200880
	AttackRange: 1
	Attack: [1980, 1503]
	Def: 172
	Mdef: 164
	Stats: {
		Str: 97
		Agi: 99
		Vit: 86
		Int: 131
		Dex: 165
		Luk: 67
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1072
	AttackMotion: 672
	DamageMotion: 384
	DamageTakenRate: 10
	MvpExp: 122760
	MvpDrops: {
		Old_Blue_Box: 4000
		Seed_Of_Yggdrasil: 3000
		Osiris_Doll: 500
	}
	Drops: {
		Old_Violet_Box: 2000
		Assasin_Dagger: 150
		Crown: 200
		Jamadhar_: 600
		Sacred_Marks: 1000
		Spinx_Helm: 150
		Cakram: 100
		Osiris_Card: 1
	}
},
{
	Id: 1039
	SpriteName: "BAPHOMET"
	Name: "Baphomet"
	Lv: 81
	Hp: 668000
	Sp: 1
	Exp: 436178
	JExp: 334106
	AttackRange: 2
	Attack: [3150, 1984]
	Def: 379
	Mdef: 45
	Stats: {
		Str: 120
		Agi: 125
		Vit: 30
		Int: 85
		Dex: 186
		Luk: 85
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 768
	AttackMotion: 768
	DamageMotion: 576
	DamageTakenRate: 10
	MvpExp: 198262
	MvpDrops: {
		Yggdrasilberry: 2000
		Baphomet_Doll: 500
		Evil_Horn: 5000
	}
	Drops: {
		Crescent_Scythe: 400
		Magestic_Goat: 300
		Crescent_Scythe_: 50
		Emperium: 500
		Magestic_Goat_: 10
		Elunium: 5432
		Oridecon: 4171
		Baphomet_Card: 1
	}
},
{
	Id: 1040
	SpriteName: "GOLEM"
	Name: "Golem"
	Lv: 61
	Hp: 2245
	Sp: 1
	Exp: 566
	JExp: 608
	AttackRange: 1
	Attack: [208, 25]
	Def: 190
	Mdef: 12
	Stats: {
		Str: 70
		Agi: 27
		Vit: 67
		Int: 5
		Dex: 34
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1608
	AttackMotion: 816
	DamageMotion: 396
	Drops: {
		Steel: 150
		Stone_Heart: 9000
		Zargon: 220
		Elunium_Stone: 70
		Siver_Guard: 5
		Yellow_Gemstone: 200
		Iron: 350
		Golem_Card: 1
	}
},
{
	Id: 1041
	SpriteName: "MUMMY"
	Name: "Mummy"
	Lv: 55
	Hp: 2155
	Sp: 1
	Exp: 510
	JExp: 548
	AttackRange: 1
	Attack: [180, 21]
	Def: 95
	Mdef: 3
	Stats: {
		Str: 54
		Agi: 4
		Vit: 14
		Int: 1
		Dex: 68
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1772
	AttackMotion: 72
	DamageMotion: 384
	Drops: {
		Rotten_Bandage: 9000
		Oridecon_Stone: 100
		Mementos: 550
		Glove: 1
		Silver_Ring: 10
		Panacea: 250
		Yellow_Herb: 850
		Mummy_Card: 1
	}
},
{
	Id: 1042
	SpriteName: "STEEL_CHONCHON"
	Name: "Steel Chonchon"
	Lv: 48
	Hp: 1199
	Sp: 1
	Exp: 369
	JExp: 414
	AttackRange: 1
	Attack: [77, 35]
	Def: 57
	Mdef: 20
	Stats: {
		Str: 30
		Agi: 62
		Vit: 20
		Int: 10
		Dex: 56
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 150
	AttackDelay: 1076
	AttackMotion: 576
	DamageMotion: 480
	Drops: {
		Wind_Of_Verdure: 90
		Steel: 30
		Garlet: 2400
		Shell: 9000
		Solid_Shell: 30
		Iron: 200
		Iron_Ore: 300
		Steel_Chonchon_Card: 1
	}
},
/*{
	Id: 1043
	SpriteName: "SEAHORES"
	Name: "Seahorse"
	Lv: 18
	Hp: 1452
	Sp: 0
	Exp: 122
	JExp: 78
	AttackRange: 3
	Attack: [100, 150]
	Def: 15
	Mdef: 7
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 10
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		Boss: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1500
	AttackMotion: 800
	DamageMotion: 600
},*/
{
	Id: 1044
	SpriteName: "OBEAUNE"
	Name: "Obeaune"
	Lv: 53
	Hp: 2158
	Sp: 1
	Exp: 500
	JExp: 534
	AttackRange: 1
	Attack: [107, 45]
	Def: 48
	Mdef: 26
	Stats: {
		Str: 54
		Agi: 47
		Vit: 21
		Int: 40
		Dex: 40
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 288
	Drops: {
		Mistic_Frozen: 13
		Heart_Of_Mermaid: 9000
		Fin_Helm: 1
		Saint_Robe_: 10
		Skyblue_Jewel: 10
		Fin: 500
		Witherless_Rose: 30
		Obeaune_Card: 1
	}
},
{
	Id: 1045
	SpriteName: "MARC"
	Name: "Marc"
	Lv: 56
	Hp: 2522
	Sp: 1
	Exp: 550
	JExp: 590
	AttackRange: 1
	Attack: [145, 25]
	Def: 55
	Mdef: 24
	Stats: {
		Str: 50
		Agi: 24
		Vit: 22
		Int: 15
		Dex: 53
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1272
	AttackMotion: 72
	DamageMotion: 480
	Drops: {
		Mistic_Frozen: 18
		Gill: 9000
		Oridecon_Stone: 95
		Fin: 1000
		Skyblue_Jewel: 10
		Blue_Gemstone: 200
		White_Herb: 700
		Marc_Card: 1
	}
},
{
	Id: 1046
	SpriteName: "DOPPELGANGER"
	Name: "Doppelganger"
	Lv: 77
	Hp: 380000
	Sp: 1
	Exp: 344520
	JExp: 250560
	AttackRange: 1
	Attack: [2103, 1176]
	Def: 246
	Mdef: 86
	Stats: {
		Str: 122
		Agi: 122
		Vit: 105
		Int: 67
		Dex: 203
		Luk: 72
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 480
	AttackMotion: 480
	DamageMotion: 288
	DamageTakenRate: 10
	MvpExp: 156600
	MvpDrops: {
		Cardinal_Jewel_: 1500
		Blue_Potion: 6000
	}
	Drops: {
		Plate_Armor_: 250
		Broad_Sword_: 220
		Zweihander: 150
		Sharp_Gear: 350
		Lance_: 550
		Elunium: 3686
		Oridecon: 2700
		Doppelganger_Card: 1
	}
},
{
	Id: 1047
	SpriteName: "PECOPECO_EGG"
	Name: "Peco Peco Egg"
	Lv: 7
	Hp: 75
	Sp: 1
	Exp: 54
	JExp: 41
	AttackRange: 0
	Attack: [1, 0]
	Def: 16
	Mdef: 5
	Stats: {
		Str: 4
		Agi: 10
		Vit: 22
		Int: 8
		Dex: 10
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	MoveSpeed: 1000
	AttackDelay: 1001
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		Phracon: 250
		Shell: 1500
		Guard_: 2
		Red_Herb: 400
		Red_Herb: 400
		Empty_Bottle: 1800
		White_Platter: 10
		Pecopeco_Egg_Card: 1
	}
},
{
	Id: 1048
	SpriteName: "THIEF_BUG_EGG"
	Name: "Thief Bug Egg"
	Lv: 20
	Hp: 344
	Sp: 1
	Exp: 126
	JExp: 143
	AttackRange: 0
	Attack: [1, 1]
	Def: 64
	Mdef: 10
	Stats: {
		Str: 10
		Agi: 1
		Vit: 50
		Int: 0
		Dex: 3
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Dark", 1)
	Mode: {
		Detector: true
	}
	MoveSpeed: 1000
	AttackDelay: 701
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		Phracon: 300
		Chrysalis: 5000
		Guard_: 2
		Sticky_Mucus: 600
		Red_Gemstone: 100
		Black_Ladle: 10
		Iron_Ore: 250
		Thief_Bug_Egg_Card: 1
	}
},
{
	Id: 1049
	SpriteName: "PICKY"
	Name: "Picky"
	Lv: 9
	Hp: 95
	Sp: 1
	Exp: 63
	JExp: 47
	AttackRange: 1
	Attack: [18, 1]
	Def: 21
	Mdef: 3
	Stats: {
		Str: 14
		Agi: 9
		Vit: 10
		Int: 0
		Dex: 10
		Luk: 3
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 988
	AttackMotion: 288
	DamageMotion: 168
	Drops: {
		Feather_Of_Birds: 9000
		Feather: 700
		Cotton_Shirt_: 150
		Red_Herb: 550
		Milk: 300
		Yellow_Gemstone: 50
		Picky_Card: 1
	}
},
{
	Id: 1050
	SpriteName: "PICKY_"
	Name: "Picky"
	Lv: 10
	Hp: 89
	Sp: 1
	Exp: 72
	JExp: 54
	AttackRange: 1
	Attack: [18, 20]
	Def: 48
	Mdef: 10
	Stats: {
		Str: 15
		Agi: 8
		Vit: 8
		Int: 5
		Dex: 9
		Luk: 3
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 988
	AttackMotion: 288
	DamageMotion: 168
	Drops: {
		Feather_Of_Birds: 9000
		Feather: 700
		Egg_Shell: 10
		Red_Herb: 600
		Milk: 300
		Yellow_Gemstone: 50
		Tiny_Egg_Shell: 10
		Picky__Card: 1
	}
},
{
	Id: 1051
	SpriteName: "THIEF_BUG"
	Name: "Thief Bug"
	Lv: 21
	Hp: 354
	Sp: 1
	Exp: 126
	JExp: 143
	AttackRange: 1
	Attack: [56, 5]
	Def: 24
	Mdef: 3
	Stats: {
		Str: 19
		Agi: 7
		Vit: 10
		Int: 0
		Dex: 12
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 150
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 768
	Drops: {
		Worm_Peelings: 2500
		Leather_Jacket_: 80
		Red_Herb: 350
		Jellopy: 2000
		Leather_Jacket: 120
		Iron_Ore: 250
		Thief_Bug_Card: 1
	}
},
{
	Id: 1052
	SpriteName: "ROCKER"
	Name: "Rocker"
	Lv: 15
	Hp: 185
	Sp: 1
	Exp: 99
	JExp: 74
	AttackRange: 1
	Attack: [19, 5]
	Def: 16
	Mdef: 3
	Stats: {
		Str: 12
		Agi: 18
		Vit: 8
		Int: 10
		Dex: 17
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1864
	AttackMotion: 864
	DamageMotion: 540
	Drops: {
		Grasshoppers_Leg: 9000
		Guitar_Of_Vast_Land: 10
		Green_Feeler: 4
		Javelin_: 80
		Leaflet_Of_Hinal: 10
		Grasshopper_Doll: 10
		Hinalle: 10
		Rocker_Card: 1
	}
},
{
	Id: 1053
	SpriteName: "THIEF_BUG_"
	Name: "Thief Bug Female"
	JName: "Female Thief Bug"
	Lv: 28
	Hp: 531
	Sp: 1
	Exp: 180
	JExp: 203
	AttackRange: 1
	Attack: [42, 16]
	Def: 28
	Mdef: 7
	Stats: {
		Str: 12
		Agi: 10
		Vit: 23
		Int: 10
		Dex: 24
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 988
	AttackMotion: 288
	DamageMotion: 768
	Drops: {
		Worm_Peelings: 3500
		Garlet: 250
		Blade_: 15
		Insect_Feeler: 200
		Red_Herb: 400
		Red_Gemstone: 50
		Iron_Ore: 300
		Thief_Bug_Female_Card: 1
	}
},
{
	Id: 1054
	SpriteName: "THIEF_BUG__"
	Name: "Thief Bug Male"
	JName: "Male Thief Bug"
	Lv: 30
	Hp: 595
	Sp: 1
	Exp: 198
	JExp: 224
	AttackRange: 1
	Attack: [46, 21]
	Def: 40
	Mdef: 20
	Stats: {
		Str: 17
		Agi: 37
		Vit: 22
		Int: 5
		Dex: 31
		Luk: 13
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 988
	AttackMotion: 288
	DamageMotion: 768
	Drops: {
		Emveretarcon: 40
		Insect_Feeler: 5500
		Worm_Peelings: 1500
		Slayer_: 10
		Yellow_Herb: 90
		Bluish_Green_Jewel: 5
		Katana: 50
		Thief_Bug_Male_Card: 1
	}
},
{
	Id: 1055
	SpriteName: "MUKA"
	Name: "Muka"
	Lv: 23
	Hp: 468
	Sp: 1
	Exp: 144
	JExp: 162
	AttackRange: 1
	Attack: [66, 9]
	Def: 28
	Mdef: 0
	Stats: {
		Str: 18
		Agi: 9
		Vit: 28
		Int: 5
		Dex: 43
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1960
	AttackMotion: 960
	DamageMotion: 384
	Drops: {
		Yellow_Live: 70
		Cactus_Needle: 9000
		Empty_Bottle: 2000
		Green_Herb: 400
		Red_Herb: 1000
		Guisarme: 50
		Iron_Ore: 250
		Muka_Card: 1
	}
},
{
	Id: 1056
	SpriteName: "SMOKIE"
	Name: "Smokie"
	Lv: 29
	Hp: 591
	Sp: 1
	Exp: 180
	JExp: 203
	AttackRange: 1
	Attack: [70, 11]
	Def: 26
	Mdef: 0
	Stats: {
		Str: 16
		Agi: 34
		Vit: 16
		Int: 5
		Dex: 27
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 420
	Drops: {
		Raccoon_Leaf: 5500
		Animals_Skin: 5500
		Sweet_Potato: 800
		Cat_Hairband: 1
		Raccoondog_Doll: 2
		Zargon: 5
		Bluish_Green_Jewel: 2
		Smokie_Card: 1
	}
},
{
	Id: 1057
	SpriteName: "YOYO"
	Name: "Yoyo"
	Lv: 38
	Hp: 898
	Sp: 1
	Exp: 270
	JExp: 305
	AttackRange: 1
	Attack: [63, 11]
	Def: 40
	Mdef: 0
	Stats: {
		Str: 20
		Agi: 11
		Vit: 34
		Int: 20
		Dex: 19
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 1054
	AttackMotion: 54
	DamageMotion: 384
	Drops: {
		Yoyo_Tail: 9000
		Banana: 1500
		Yellow_Herb: 200
		Cacao: 900
		Monkey_Doll: 10
		Oridecon_Stone: 24
		Strawberry: 1000
		Yoyo_Card: 1
	}
},
{
	Id: 1058
	SpriteName: "METALLER"
	Name: "Metaller"
	Lv: 55
	Hp: 1687
	Sp: 1
	Exp: 472
	JExp: 507
	AttackRange: 1
	Attack: [196, 41]
	Def: 72
	Mdef: 12
	Stats: {
		Str: 52
		Agi: 24
		Vit: 10
		Int: 0
		Dex: 52
		Luk: 31
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 1708
	AttackMotion: 1008
	DamageMotion: 540
	Drops: {
		Boody_Red: 60
		Grasshoppers_Leg: 6500
		Scell: 400
		Elunium_Stone: 49
		Singing_Plant: 20
		Shell: 3000
		Guitar_Of_Passion: 10
		Metaller_Card: 1
	}
},
{
	Id: 1059
	SpriteName: "MISTRESS"
	Name: "Mistress"
	Lv: 78
	Hp: 378000
	Sp: 1
	Exp: 368280
	JExp: 301320
	AttackRange: 1
	Attack: [985, 1967]
	Def: 287
	Mdef: 192
	Stats: {
		Str: 76
		Agi: 186
		Vit: 88
		Int: 113
		Dex: 172
		Luk: 79
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1148
	AttackMotion: 648
	DamageMotion: 300
	DamageTakenRate: 10
	MvpExp: 184140
	MvpDrops: {
		Rough_Wind: 1500
		Royal_Jelly: 4000
		Scarlet_Jewel: 3000
	}
	Drops: {
		Gungnir: 150
		Honey: 10000
		Coronet: 250
		Old_Card_Album: 1000
		Young_Twig: 10
		Elunium: 4268
		Red_Square_Bag: 100
		Mistress_Card: 1
	}
},
{
	Id: 1060
	SpriteName: "BIGFOOT"
	Name: "Bigfoot"
	Lv: 29
	Hp: 587
	Sp: 1
	Exp: 180
	JExp: 203
	AttackRange: 1
	Attack: [50, 12]
	Def: 55
	Mdef: 7
	Stats: {
		Str: 18
		Agi: 4
		Vit: 7
		Int: 0
		Dex: 12
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1260
	AttackMotion: 192
	DamageMotion: 192
	Drops: {
		Bears_Foot: 9000
		Poo_Poo_Hat: 5
		Animals_Skin: 5000
		Stuffed_Doll: 80
		Sweet_Potato: 1500
		Honey: 450
		Oridecon_Stone: 43
		BigFoot_Card: 1
	}
},
{
	Id: 1061
	SpriteName: "NIGHTMARE"
	Name: "Nightmare"
	Lv: 69
	Hp: 2872
	Sp: 1
	Exp: 526
	JExp: 1032
	AttackRange: 1
	Attack: [297, 62]
	Def: 116
	Mdef: 15
	Stats: {
		Str: 57
		Agi: 32
		Vit: 20
		Int: 15
		Dex: 77
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1816
	AttackMotion: 816
	DamageMotion: 432
	Drops: {
		Horseshoe: 6000
		Blue_Herb: 500
		Rosary: 2
		Old_Blue_Box: 30
		Blue_Potion: 100
		Infiltrator: 1
		Oridecon: 60
		Nightmare_Card: 1
	}
},
{
	Id: 1062
	SpriteName: "PORING_"
	Name: "Santa Poring"
	Lv: 3
	Hp: 69
	Sp: 1
	Exp: 4
	JExp: 5
	AttackRange: 1
	Attack: [12, 4]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 14
		Vit: 3
		Int: 10
		Dex: 12
		Luk: 90
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Holy", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Candy: 2000
		Candy_Striper: 1000
		Red_Herb: 1000
		Apple: 1000
		Santas_Hat: 100
		Apple: 7
		Poring__Card: 1
	}
},
{
	Id: 1063
	SpriteName: "LUNATIC"
	Name: "Lunatic"
	Lv: 3
	Hp: 55
	Sp: 1
	Exp: 36
	JExp: 27
	AttackRange: 1
	Attack: [11, 1]
	Def: 18
	Mdef: 0
	Stats: {
		Str: 10
		Agi: 3
		Vit: 3
		Int: 0
		Dex: 8
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1456
	AttackMotion: 456
	DamageMotion: 336
	Drops: {
		Clover: 6500
		Feather: 1000
		Pierrot_Nose: 4
		Apple: 2000
		Red_Herb: 600
		Carrot: 1100
		Rainbow_Carrot: 20
		Lunatic_Card: 1
	}
},
{
	Id: 1064
	SpriteName: "MEGALODON"
	Name: "Megalodon"
	Lv: 46
	Hp: 1335
	Sp: 1
	Exp: 342
	JExp: 386
	AttackRange: 1
	Attack: [117, 32]
	Def: 52
	Mdef: 28
	Stats: {
		Str: 35
		Agi: 24
		Vit: 30
		Int: 28
		Dex: 29
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 2492
	AttackMotion: 792
	DamageMotion: 432
	Drops: {
		Rotten_Scale: 5500
		Skel_Bone: 1500
		Blue_Herb: 80
		Blue_Gemstone: 120
		Violet_Jewel: 10
		Old_Blue_Box: 2
		Rotten_Fish: 20
		Megalodon_Card: 1
	}
},
{
	Id: 1065
	SpriteName: "STROUF"
	Name: "Strouf"
	Lv: 61
	Hp: 3052
	Sp: 1
	Exp: 656
	JExp: 705
	AttackRange: 1
	Attack: [170, 30]
	Def: 67
	Mdef: 21
	Stats: {
		Str: 49
		Agi: 16
		Vit: 31
		Int: 20
		Dex: 36
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Fish"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 384
	Drops: {
		Fin: 5335
		Oridecon_Stone: 115
		Chain_Mail_: 2
		Trident_: 2
		Feather: 3000
		Skyblue_Jewel: 20
		Gill: 1500
		Strouf_Card: 1
	}
},
{
	Id: 1066
	SpriteName: "VADON"
	Name: "Vadon"
	Lv: 45
	Hp: 1252
	Sp: 1
	Exp: 342
	JExp: 386
	AttackRange: 1
	Attack: [78, 25]
	Def: 54
	Mdef: 21
	Stats: {
		Str: 35
		Agi: 21
		Vit: 28
		Int: 20
		Dex: 33
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1632
	AttackMotion: 432
	DamageMotion: 540
	Drops: {
		Crystal_Blue: 40
		Nipper: 9000
		Garlet: 3000
		Padded_Armor_: 5
		Solid_Shell: 100
		Elunium_Stone: 40
		Blue_Gemstone: 50
		Vadon_Card: 1
	}
},
{
	Id: 1067
	SpriteName: "CORNUTUS"
	Name: "Cornutus"
	Lv: 48
	Hp: 1450
	Sp: 1
	Exp: 369
	JExp: 414
	AttackRange: 1
	Attack: [79, 47]
	Def: 42
	Mdef: 28
	Stats: {
		Str: 32
		Agi: 27
		Vit: 45
		Int: 26
		Dex: 27
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1248
	AttackMotion: 48
	DamageMotion: 480
	Drops: {
		Crystal_Blue: 45
		Conch: 5500
		Scell: 800
		Elunium_Stone: 53
		Shield_: 5
		Solid_Shell: 1000
		Blue_Gemstone: 100
		Cornutus_Card: 1
	}
},
{
	Id: 1068
	SpriteName: "HYDRA"
	Name: "Hydra"
	Lv: 34
	Hp: 854
	Sp: 1
	Exp: 233
	JExp: 263
	AttackRange: 7
	Attack: [35, 6]
	Def: 20
	Mdef: 32
	Stats: {
		Str: 10
		Agi: 9
		Vit: 14
		Int: 0
		Dex: 35
		Luk: 2
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Water", 2)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 1000
	AttackDelay: 800
	AttackMotion: 432
	DamageMotion: 600
	Drops: {
		Emveretarcon: 25
		Tentacle: 5500
		Sticky_Mucus: 1500
		Detrimindexta: 20
		Panacea: 5
		Meat: 700
		Hydra_Card: 1
	}
},
{
	Id: 1069
	SpriteName: "SWORD_FISH"
	Name: "Swordfish"
	Lv: 57
	Hp: 2600
	Sp: 1
	Exp: 550
	JExp: 590
	AttackRange: 1
	Attack: [156, 35]
	Def: 52
	Mdef: 12
	Stats: {
		Str: 50
		Agi: 56
		Vit: 25
		Int: 15
		Dex: 44
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1968
	AttackMotion: 768
	DamageMotion: 384
	Drops: {
		Mistic_Frozen: 10
		Sharp_Scale: 9000
		Oridecon_Stone: 33
		Snowy_Horn: 2
		Elunium_Stone: 50
		Katana_: 25
		Gill: 600
		Sword_Fish_Card: 1
	}
},
{
	Id: 1070
	SpriteName: "KUKRE"
	Name: "Kukre"
	Lv: 42
	Hp: 1111
	Sp: 1
	Exp: 315
	JExp: 354
	AttackRange: 1
	Attack: [65, 28]
	Def: 33
	Mdef: 23
	Stats: {
		Str: 25
		Agi: 30
		Vit: 22
		Int: 20
		Dex: 32
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 1776
	AttackMotion: 576
	DamageMotion: 288
	Drops: {
		Crystal_Blue: 30
		Worm_Peelings: 5500
		Garlet: 400
		Monsters_Feed: 500
		Red_Herb: 650
		Insect_Feeler: 450
		Earthworm_The_Dude: 20
		Kukre_Card: 1
	}
},
{
	Id: 1071
	SpriteName: "PIRATE_SKEL"
	Name: "Pirate Skeleton"
	Lv: 48
	Hp: 1411
	Sp: 1
	Exp: 369
	JExp: 414
	AttackRange: 1
	Attack: [105, 20]
	Def: 53
	Mdef: 20
	Stats: {
		Str: 35
		Agi: 25
		Vit: 25
		Int: 15
		Dex: 30
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1754
	AttackMotion: 554
	DamageMotion: 288
	Drops: {
		Skel_Bone: 3000
		Pirate_Bandana: 15
		Cookbook06: 5
		Bandana: 250
		Falchion: 250
		Oridecon_Stone: 43
		Well_Dried_Bone: 20
		Pirate_Skel_Card: 1
	}
},
{
	Id: 1072
	SpriteName: "KAHO"
	Name: "Kaho"
	Lv: 98
	Hp: 7045
	Sp: 1
	Exp: 2344
	JExp: 1463
	AttackRange: 1
	Attack: [655, 224]
	Def: 106
	Mdef: 55
	Stats: {
		Str: 81
		Agi: 61
		Vit: 55
		Int: 65
		Dex: 79
		Luk: 73
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Fire", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1700
	AttackMotion: 1000
	DamageMotion: 500
	Drops: {
		Flame_Heart: 30
		Coal: 150
		Burning_Heart: 3000
		Fire_Scroll_1_3: 100
		Elunium_Stone: 1000
		Red_Gemstone: 300
		Alchol: 5
		Kaho_Card: 1
	}
},
{
	Id: 1073
	SpriteName: "CRAB"
	Name: "Crab"
	Lv: 43
	Hp: 1233
	Sp: 1
	Exp: 315
	JExp: 354
	AttackRange: 1
	Attack: [69, 10]
	Def: 36
	Mdef: 11
	Stats: {
		Str: 22
		Agi: 14
		Vit: 24
		Int: 7
		Dex: 28
		Luk: 15
	}
	ViewRange: 7
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 992
	AttackMotion: 792
	DamageMotion: 360
	Drops: {
		Crap_Shell: 5500
		Nipper: 1500
		Stone: 700
		Sparkling_Dust: 13
		Elunium_Stone: 37
		Crab_Card: 1
	}
},
{
	Id: 1074
	SpriteName: "SHELLFISH"
	Name: "Shellfish"
	Lv: 50
	Hp: 1680
	Sp: 1
	Exp: 424
	JExp: 455
	AttackRange: 1
	Attack: [74, 22]
	Def: 43
	Mdef: 5
	Stats: {
		Str: 42
		Agi: 11
		Vit: 48
		Int: 25
		Dex: 29
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 864
	AttackMotion: 864
	DamageMotion: 384
	Drops: {
		Clam_Shell: 5500
		Flesh_Of_Clam: 1000
		Stone: 500
		Grit: 1000
		Sparkling_Dust: 10
		Elunium_Stone: 18
		Shellfish_Card: 1
	}
},
/*{
	Id: 1075
	SpriteName: "TURTLE"
	Name: "Turtle"
	Lv: 3
	Hp: 77
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 2]
	Def: 35
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 7
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 500
	AttackMotion: 500
	DamageMotion: 500
},*/
{
	Id: 1076
	SpriteName: "SKELETON"
	Name: "Skeleton"
	Lv: 27
	Hp: 612
	Sp: 1
	Exp: 162
	JExp: 183
	AttackRange: 1
	Attack: [78, 24]
	Def: 21
	Mdef: 2
	Stats: {
		Str: 24
		Agi: 15
		Vit: 30
		Int: 5
		Dex: 19
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 2228
	AttackMotion: 528
	DamageMotion: 576
	Drops: {
		Phracon: 90
		Skel_Bone: 800
		Mace_: 80
		Jellopy: 3000
		Red_Herb: 850
		Skul_Ring: 30
		Skeleton_Card: 1
	}
},
{
	Id: 1077
	SpriteName: "POISON_SPORE"
	Name: "Poison Spore"
	Lv: 26
	Hp: 456
	Sp: 1
	Exp: 162
	JExp: 183
	AttackRange: 1
	Attack: [68, 15]
	Def: 40
	Mdef: 8
	Stats: {
		Str: 19
		Agi: 17
		Vit: 22
		Int: 5
		Dex: 20
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 288
	Drops: {
		Poison_Spore: 9000
		Hat_: 20
		Green_Herb: 550
		Blue_Herb: 60
		Karvodailnirol: 50
		Mushroom_Spore: 1200
		Zargon: 5
		Poison_Spore_Card: 1
	}
},
{
	Id: 1078
	SpriteName: "RED_PLANT"
	Name: "Red Plant"
	Lv: 1
	Hp: 5
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 100
	Mdef: 99
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 7
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		Plant: true
	}
	MoveSpeed: 2000
	AttackDelay: 1
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		Red_Herb: 5500
		Flower: 1000
		Shoot: 1000
		Stem: 500
		Poison_Herb_Rantana: 300
		Fluff: 500
		Ment: 50
		Centimental_Flower: 2
	}
},
{
	Id: 1079
	SpriteName: "BLUE_PLANT"
	Name: "Blue Plant"
	Lv: 1
	Hp: 10
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 100
	Mdef: 99
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 7
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		Plant: true
	}
	MoveSpeed: 2000
	AttackDelay: 1
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		Blue_Herb: 5500
		Flower: 1000
		Shoot: 1000
		Stem: 500
		Poison_Herb_Nerium: 300
		Fruit_Of_Mastela: 50
		Grape: 1000
		Centimental_Leaf: 2
	}
},
{
	Id: 1080
	SpriteName: "GREEN_PLANT"
	Name: "Green Plant"
	Lv: 1
	Hp: 7
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 100
	Mdef: 99
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 7
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		Plant: true
	}
	MoveSpeed: 2000
	AttackDelay: 1
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		Green_Herb: 7000
		Poison_Herb_Makulata: 300
		Bitter_Herb: 20
		Stem: 3000
		Pointed_Scale: 1500
		Aloe: 50
		Leaflet_Of_Aloe: 50
		Centimental_Leaf: 2
	}
},
{
	Id: 1081
	SpriteName: "YELLOW_PLANT"
	Name: "Yellow Plant"
	Lv: 1
	Hp: 6
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 100
	Mdef: 99
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 7
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		Plant: true
	}
	MoveSpeed: 2000
	AttackDelay: 1
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		Yellow_Herb: 5500
		Flower: 1000
		Shoot: 1000
		Stem: 500
		Poison_Herb_Seratum: 300
		Singing_Plant: 5
		Fluff: 500
		Centimental_Flower: 2
	}
},
{
	Id: 1082
	SpriteName: "WHITE_PLANT"
	Name: "White Plant"
	Lv: 1
	Hp: 7
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 100
	Mdef: 99
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 7
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		Plant: true
	}
	MoveSpeed: 2000
	AttackDelay: 1
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		White_Herb: 5500
		Flower: 1000
		Deadly_Noxious_Herb: 20
		Stem: 3000
		Poison_Herb_Seratum: 300
		Leaflet_Of_Aloe: 50
		Hinalle: 50
		Centimental_Flower: 2
	}
},
{
	Id: 1083
	SpriteName: "SHINING_PLANT"
	Name: "Shining Plant"
	Lv: 1
	Hp: 20
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 100
	Mdef: 99
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 90
	}
	ViewRange: 7
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Holy", 1)
	Mode: {
		Plant: true
	}
	MoveSpeed: 2000
	AttackDelay: 1
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		Blue_Herb: 5500
		Yellow_Herb: 1000
		White_Herb: 1000
		Illusion_Flower: 5
		Seed_Of_Yggdrasil: 20
		Honey: 500
		Yggdrasilberry: 50
		Emperium: 1
	}
},
{
	Id: 1084
	SpriteName: "BLACK_MUSHROOM"
	Name: "Black Mushroom"
	Lv: 1
	Hp: 7
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 100
	Mdef: 99
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 7
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		Plant: true
	}
	MoveSpeed: 2000
	AttackDelay: 1
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		Alchol: 50
		Detrimindexta: 50
		Dew_Laden_Moss: 20
		Feather: 2000
		Crystal_Blue: 800
		Mushroom_Spore: 5500
		Mushroom_Spore: 5500
		Poison_Spore: 5500
	}
},
{
	Id: 1085
	SpriteName: "RED_MUSHROOM"
	Name: "Red Mushroom"
	Lv: 1
	Hp: 7
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 100
	Mdef: 99
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 7
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		Plant: true
	}
	MoveSpeed: 2000
	AttackDelay: 1
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		Alchol: 50
		Karvodailnirol: 50
		Dew_Laden_Moss: 20
		Feather: 2000
		Boody_Red: 1000
		Mushroom_Spore: 5500
		Mushroom_Spore: 5500
		Poison_Spore: 5500
	}
},
{
	Id: 1086
	SpriteName: "GOLDEN_BUG"
	Name: "Golden Thief Bug"
	Lv: 65
	Hp: 222750
	Sp: 1
	Exp: 204120
	JExp: 155520
	AttackRange: 1
	Attack: [952, 843]
	Def: 159
	Mdef: 81
	Stats: {
		Str: 71
		Agi: 77
		Vit: 80
		Int: 62
		Dex: 140
		Luk: 76
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		Boss: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 100
	AttackDelay: 768
	AttackMotion: 768
	DamageMotion: 480
	DamageTakenRate: 10
	MvpExp: 97200
	MvpDrops: {
		Gold_Ring: 2000
		Ora_Ora: 1000
	}
	Drops: {
		Gold: 1000
		Golden_Mace: 150
		Golden_Gear: 250
		Golden_Bell: 500
		Emperium: 300
		Elunium: 2000
		Oridecon: 1500
		Golden_Bug_Card: 1
	}
},
{
	Id: 1087
	SpriteName: "ORK_HERO"
	Name: "Orc Hero"
	Lv: 50
	Hp: 362000
	Sp: 1
	Exp: 106920
	JExp: 97200
	AttackRange: 1
	Attack: [662, 441]
	Def: 197
	Mdef: 70
	Stats: {
		Str: 97
		Agi: 82
		Vit: 107
		Int: 71
		Dex: 144
		Luk: 43
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1678
	AttackMotion: 780
	DamageMotion: 648
	DamageTakenRate: 10
	MvpExp: 53460
	MvpDrops: {
		Red_Jewel: 2000
		Yggdrasilberry: 1500
		Steel: 5000
	}
	Drops: {
		Voucher_Of_Orcish_Hero: 9700
		Monkey_Circlet: 500
		Right_Epsilon: 150
		Shield_: 250
		Orcish_Sword: 1000
		Elunium: 4559
		Giant_Axe: 100
		Orc_Hero_Card: 1
	}
},
{
	Id: 1088
	SpriteName: "VOCAL"
	Name: "Vocal"
	Lv: 18
	Hp: 3317
	Sp: 1
	Exp: 99
	JExp: 79
	AttackRange: 1
	Attack: [71, 11]
	Def: 77
	Mdef: 26
	Stats: {
		Str: 77
		Agi: 26
		Vit: 26
		Int: 30
		Dex: 53
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1080
	AttackMotion: 648
	DamageMotion: 480
	Drops: {
		Oldmans_Romance: 50
		Grasshoppers_Leg: 8000
		Azure_Jewel: 1000
		Grasshopper_Doll: 1500
		Angels_Arrival: 1000
		Light_Granule: 500
		Guitar_Of_Gentle_Breeze: 10
		Vocal_Card: 1
	}
},
{
	Id: 1089
	SpriteName: "TOAD"
	Name: "Toad"
	Lv: 27
	Hp: 660
	Sp: 1
	Exp: 162
	JExp: 183
	AttackRange: 1
	Attack: [70, 19]
	Def: 24
	Mdef: 6
	Stats: {
		Str: 32
		Agi: 19
		Vit: 27
		Int: 10
		Dex: 24
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1236
	AttackMotion: 336
	DamageMotion: 432
	Drops: {
		Big_Sis_Ribbon: 50
		Honey: 2000
		Bluish_Green_Jewel: 1000
		Light_Granule: 500
		Alchol: 100
		Detrimindexta: 100
		Kiss_Of_Angel: 1000
		Toad_Card: 1
	}
},
{
	Id: 1090
	SpriteName: "MASTERING"
	Name: "Mastering"
	Lv: 42
	Hp: 1260
	Sp: 1
	Exp: 315
	JExp: 354
	AttackRange: 1
	Attack: [80, 40]
	Def: 48
	Mdef: 31
	Stats: {
		Str: 35
		Agi: 21
		Vit: 41
		Int: 12
		Dex: 29
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1072
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Snowy_Horn: 200
		Unripe_Apple: 50
		Scarlet_Jewel: 1000
		Angels_Safeguard: 1000
		Light_Granule: 500
		Apple: 8000
		Apple_Juice: 4000
		Mastering_Card: 1
	}
},
{
	Id: 1091
	SpriteName: "DRAGON_FLY"
	Name: "Dragon Fly"
	Lv: 47
	Hp: 1035
	Sp: 1
	Exp: 360
	JExp: 405
	AttackRange: 1
	Attack: [102, 33]
	Def: 57
	Mdef: 28
	Stats: {
		Str: 37
		Agi: 44
		Vit: 30
		Int: 15
		Dex: 44
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1076
	AttackMotion: 576
	DamageMotion: 480
	Drops: {
		Sweet_Gents: 200
		Red_Herb: 8000
		Violet_Jewel: 1500
		Chonchon_Doll: 2000
		Clip: 3000
		Lusty_Iron: 50
		Grape_Juice: 3000
		Dragon_Fly_Card: 1
	}
},
{
	Id: 1092
	SpriteName: "VAGABOND_WOLF"
	Name: "Vagabond Wolf"
	Lv: 93
	Hp: 8203
	Sp: 1
	Exp: 1706
	JExp: 2601
	AttackRange: 1
	Attack: [519, 46]
	Def: 102
	Mdef: 51
	Stats: {
		Str: 72
		Agi: 63
		Vit: 55
		Int: 29
		Dex: 108
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1048
	AttackMotion: 648
	DamageMotion: 432
	Drops: {
		Western_Grace: 200
		Claw_Of_Wolves: 8000
		Golden_Jewel: 1500
		Star_Dust_Blade: 100
		Angels_Warmth: 1000
		Light_Granule: 500
		Monster_Juice: 50
		Vagabond_Wolf_Card: 1
	}
},
{
	Id: 1093
	SpriteName: "ECLIPSE"
	Name: "Eclipse"
	Lv: 31
	Hp: 625
	Sp: 1
	Exp: 207
	JExp: 233
	AttackRange: 1
	Attack: [60, 20]
	Def: 50
	Mdef: 20
	Stats: {
		Str: 20
		Agi: 28
		Vit: 35
		Int: 17
		Dex: 27
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1456
	AttackMotion: 456
	DamageMotion: 336
	Drops: {
		Fillet: 200
		Red_Herb: 8000
		White_Jewel: 1200
		Light_Granule: 500
		Four_Leaf_Clover: 30
		Rainbow_Carrot: 50
		Angels_Protection: 1000
		Eclipse_Card: 1
	}
},
{
	Id: 1094
	SpriteName: "AMBERNITE"
	Name: "Ambernite"
	Lv: 19
	Hp: 340
	Sp: 1
	Exp: 117
	JExp: 87
	AttackRange: 1
	Attack: [26, 11]
	Def: 28
	Mdef: 0
	Stats: {
		Str: 16
		Agi: 20
		Vit: 11
		Int: 10
		Dex: 21
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 400
	AttackDelay: 2048
	AttackMotion: 648
	DamageMotion: 648
	Drops: {
		Crystal_Blue: 50
		Snails_Shell: 9000
		Garlet: 1200
		Shell: 3000
		Solid_Shell: 2
		Elunium_Stone: 14
		Iron_Ore: 150
		Ambernite_Card: 1
	}
},
{
	Id: 1095
	SpriteName: "ANDRE"
	Name: "Andre"
	Lv: 33
	Hp: 724
	Sp: 1
	Exp: 216
	JExp: 243
	AttackRange: 1
	Attack: [51, 21]
	Def: 55
	Mdef: 16
	Stats: {
		Str: 11
		Agi: 20
		Vit: 40
		Int: 10
		Dex: 24
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 300
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 384
	Drops: {
		Worm_Peelings: 9000
		Garlet: 1000
		Sticky_Mucus: 500
		Yellow_Live: 50
		Sparkling_Dust: 4
		Iron_Ore: 350
		Elunium_Stone: 28
		Andre_Card: 1
	}
},
{
	Id: 1096
	SpriteName: "ANGELING"
	Name: "Angeling"
	Lv: 77
	Hp: 19800
	Sp: 1
	Exp: 3366
	JExp: 2693
	AttackRange: 1
	Attack: [391, 145]
	Def: 72
	Mdef: 238
	Stats: {
		Str: 58
		Agi: 50
		Vit: 33
		Int: 105
		Dex: 80
		Luk: 200
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1072
	AttackMotion: 672
	DamageMotion: 672
	Drops: {
		Angelic_Chain: 100
		Scapulare_: 60
		Leaf_Of_Yggdrasil: 500
		Spirit_Chain: 1
		White_Herb: 2000
		Apple: 28
		Emperium: 40
		Angeling_Card: 1
	}
},
{
	Id: 1097
	SpriteName: "ANT_EGG"
	Name: "Ant Egg"
	Lv: 28
	Hp: 530
	Sp: 1
	Exp: 180
	JExp: 203
	AttackRange: 0
	Attack: [1, 1]
	Def: 68
	Mdef: 45
	Stats: {
		Str: 5
		Agi: 1
		Vit: 65
		Int: 5
		Dex: 10
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	MoveSpeed: 1000
	AttackDelay: 1001
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		Phracon: 320
		Shell: 2000
		Jellopy: 2000
		Sticky_Mucus: 650
		Empty_Bottle: 2000
		Iron_Ore: 200
		Andre_Egg_Card: 1
	}
},
{
	Id: 1098
	SpriteName: "ANUBIS"
	Name: "Anubis"
	Lv: 105
	Hp: 38826
	Sp: 1
	Exp: 6026
	JExp: 2725
	AttackRange: 1
	Attack: [984, 415]
	Def: 103
	Mdef: 48
	Stats: {
		Str: 88
		Agi: 67
		Vit: 40
		Int: 128
		Dex: 107
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1250
	AttackMotion: 720
	DamageMotion: 576
	Drops: {
		Runstone_Ancient: 10
		Healing_Staff: 10
		White_Wing_Suits: 50
		Oridecon: 105
		Sacred_Masque: 4365
		Mitten_Of_Presbyter: 1
		Blessed_Wand: 3
		Anubis_Card: 1
	}
},
{
	Id: 1099
	SpriteName: "ARGIOPE"
	Name: "Argiope"
	Lv: 75
	Hp: 3105
	Sp: 1
	Exp: 890
	JExp: 912
	AttackRange: 1
	Attack: [321, 50]
	Def: 88
	Mdef: 32
	Stats: {
		Str: 60
		Agi: 23
		Vit: 40
		Int: 30
		Dex: 24
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1792
	AttackMotion: 792
	DamageMotion: 336
	Drops: {
		Short_Leg: 5335
		Zargon: 1200
		Elunium_Stone: 175
		Boots_: 5
		Green_Herb: 1500
		Violet_Jewel: 10
		Argiope_Card: 1
	}
},
{
	Id: 1100
	SpriteName: "ARGOS"
	Name: "Argos"
	Lv: 47
	Hp: 1005
	Sp: 1
	Exp: 360
	JExp: 405
	AttackRange: 1
	Attack: [96, 33]
	Def: 58
	Mdef: 8
	Stats: {
		Str: 38
		Agi: 17
		Vit: 25
		Int: 5
		Dex: 26
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1468
	AttackMotion: 468
	DamageMotion: 768
	Drops: {
		Spiderweb: 9000
		Scell: 1200
		Short_Leg: 500
		Elunium_Stone: 61
		Green_Herb: 670
		Yellow_Herb: 250
		Bark_Shorts: 15
		Argos_Card: 1
	}
},
{
	Id: 1101
	SpriteName: "BAPHOMET_"
	Name: "Baphomet Jr."
	Lv: 57
	Hp: 2035
	Sp: 0
	Exp: 510
	JExp: 548
	AttackRange: 1
	Attack: [195, 33]
	Def: 70
	Mdef: 25
	Stats: {
		Str: 52
		Agi: 60
		Vit: 36
		Int: 17
		Dex: 57
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 868
	AttackMotion: 480
	DamageMotion: 120
	Drops: {
		Evil_Horn: 500
		Oridecon: 63
		Halberd_: 2
		Yggdrasilberry: 50
		Leaf_Of_Yggdrasil: 100
		Yellow_Herb: 1300
		Boots: 50
		Baphomet__Card: 1
	}
},
{
	Id: 1102
	SpriteName: "BATHORY"
	Name: "Bathory"
	Lv: 86
	Hp: 5242
	Sp: 1
	Exp: 1286
	JExp: 1364
	AttackRange: 1
	Attack: [252, 96]
	Def: 61
	Mdef: 89
	Stats: {
		Str: 66
		Agi: 38
		Vit: 40
		Int: 77
		Dex: 67
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1504
	AttackMotion: 840
	DamageMotion: 900
	Drops: {
		Sparkling_Dust: 200
		Starsand_Of_Witch: 4850
		Star_Sparkling: 3
		Arc_Wand_: 5
		Star_Crumb: 30
		Old_Magic_Book: 15
		Old_Broom: 20
		Bathory_Card: 1
	}
},
{
	Id: 1103
	SpriteName: "CARAMEL"
	Name: "Caramel"
	Lv: 25
	Hp: 518
	Sp: 1
	Exp: 162
	JExp: 183
	AttackRange: 1
	Attack: [67, 9]
	Def: 39
	Mdef: 0
	Stats: {
		Str: 19
		Agi: 10
		Vit: 15
		Int: 10
		Dex: 32
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1604
	AttackMotion: 840
	DamageMotion: 756
	Drops: {
		Porcupine_Spike: 9000
		Coat_: 5
		Animals_Skin: 5500
		Glaive_: 10
		Spear_: 15
		Pike_: 20
		Caramel_Card: 1
	}
},
{
	Id: 1104
	SpriteName: "COCO"
	Name: "Coco"
	Lv: 38
	Hp: 836
	Sp: 1
	Exp: 270
	JExp: 305
	AttackRange: 1
	Attack: [71, 11]
	Def: 37
	Mdef: 0
	Stats: {
		Str: 22
		Agi: 13
		Vit: 30
		Int: 20
		Dex: 38
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 1864
	AttackMotion: 864
	DamageMotion: 1008
	Drops: {
		Acorn: 9000
		Hood_: 20
		Fluff: 3000
		Animals_Skin: 2500
		Sweet_Potato: 500
		Sandals_: 25
		Strawberry: 600
		Coco_Card: 1
	}
},
{
	Id: 1105
	SpriteName: "DENIRO"
	Name: "Deniro"
	Lv: 31
	Hp: 671
	Sp: 1
	Exp: 207
	JExp: 233
	AttackRange: 1
	Attack: [45, 16]
	Def: 52
	Mdef: 16
	Stats: {
		Str: 15
		Agi: 16
		Vit: 30
		Int: 10
		Dex: 23
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 150
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 576
	Drops: {
		Worm_Peelings: 9000
		Garlet: 3000
		Sticky_Mucus: 1200
		Boody_Red: 50
		Sparkling_Dust: 8
		Iron_Ore: 450
		Elunium_Stone: 34
		Andre_Card: 1
	}
},
{
	Id: 1106
	SpriteName: "DESERT_WOLF"
	Name: "Desert Wolf"
	Lv: 103
	Hp: 9447
	Sp: 1
	Exp: 2160
	JExp: 1350
	AttackRange: 1
	Attack: [676, 59]
	Def: 114
	Mdef: 47
	Stats: {
		Str: 93
		Agi: 69
		Vit: 63
		Int: 61
		Dex: 98
		Luk: 42
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1120
	AttackMotion: 420
	DamageMotion: 288
	Drops: {
		Katar_: 1
		Claw_Of_Desert_Wolf: 5500
		Mink_Coat: 1
		Wolf_Blood: 10
		Durga: 1
		Oridecon_Stone: 53
		Stiletto_: 140
		Desert_Wolf_Card: 1
	}
},
{
	Id: 1107
	SpriteName: "DESERT_WOLF_B"
	Name: "Desert Wolf Baby"
	JName: "Baby Desert Wolf"
	Lv: 14
	Hp: 140
	Sp: 1
	Exp: 90
	JExp: 68
	AttackRange: 1
	Attack: [33, 8]
	Def: 13
	Mdef: 0
	Stats: {
		Str: 10
		Agi: 12
		Vit: 8
		Int: 5
		Dex: 17
		Luk: 7
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 300
	AttackDelay: 1600
	AttackMotion: 900
	DamageMotion: 240
	Drops: {
		Phracon: 85
		Animals_Skin: 5500
		Adventureres_Suit_: 80
		Wolf_Blood: 2
		Cotton_Shirt: 200
		Asura_: 5
		Orange: 1000
		Desert_Wolf_Babe_Card: 1
	}
},
{
	Id: 1108
	SpriteName: "DEVIACE"
	Name: "Deviace"
	Lv: 60
	Hp: 3135
	Sp: 1
	Exp: 690
	JExp: 740
	AttackRange: 1
	Attack: [168, 29]
	Def: 51
	Mdef: 16
	Stats: {
		Str: 57
		Agi: 26
		Vit: 32
		Int: 25
		Dex: 50
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 4)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1680
	AttackMotion: 480
	DamageMotion: 384
	Drops: {
		Mistic_Frozen: 25
		Tooth_Of_Ancient_Fish: 9000
		Lip_Of_Ancient_Fish: 1000
		Antenna: 2
		Detrimindexta: 200
		Katar_Of_Cold_Icicle: 3
		Oridecon_Stone: 161
		Deviace_Card: 1
	}
},
{
	Id: 1109
	SpriteName: "DEVIRUCHI"
	Name: "Deviruchi"
	Lv: 93
	Hp: 8912
	Sp: 1
	Exp: 2166
	JExp: 2166
	AttackRange: 1
	Attack: [477, 182]
	Def: 72
	Mdef: 16
	Stats: {
		Str: 61
		Agi: 49
		Vit: 30
		Int: 85
		Dex: 119
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 980
	AttackMotion: 600
	DamageMotion: 384
	Drops: {
		Petite_DiablOfs_Horn: 5335
		Petite_DiablOfs_Wing: 400
		Oridecon: 2
		Partizan_: 2
		Sacred_Marks: 5
		Zargon: 1500
		Oridecon_Stone: 154
		Deviruchi_Card: 1
	}
},
{
	Id: 1110
	SpriteName: "DOKEBI"
	Name: "Dokebi"
	Lv: 68
	Hp: 2820
	Sp: 1
	Exp: 708
	JExp: 759
	AttackRange: 1
	Attack: [333, 30]
	Def: 85
	Mdef: 20
	Stats: {
		Str: 52
		Agi: 56
		Vit: 35
		Int: 20
		Dex: 66
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 250
	AttackDelay: 1156
	AttackMotion: 456
	DamageMotion: 384
	Drops: {
		Dokkaebi_Horn: 9000
		Elunium_Stone: 150
		Sword_Mace_: 2
		Mighty_Staff: 1
		Gold: 1
		Horn_Protector: 10
		Hammer_Of_Blacksmith: 5
		Dokebi_Card: 1
	}
},
{
	Id: 1111
	SpriteName: "DRAINLIAR"
	Name: "Drainliar"
	Lv: 47
	Hp: 1162
	Sp: 1
	Exp: 389
	JExp: 438
	AttackRange: 1
	Attack: [100, 42]
	Def: 50
	Mdef: 15
	Stats: {
		Str: 35
		Agi: 34
		Vit: 24
		Int: 22
		Dex: 50
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1276
	AttackMotion: 576
	DamageMotion: 384
	Drops: {
		Emveretarcon: 60
		Tooth_Of_Bat: 3000
		Red_Jewel: 20
		Red_Herb: 1000
		Wing_Of_Red_Bat: 5500
		Wing_Of_Red_Bat: 1500
		Oridecon_Stone: 40
		Drainliar_Card: 1
	}
},
{
	Id: 1112
	SpriteName: "DRAKE"
	Name: "Drake"
	Lv: 91
	Hp: 804500
	Sp: 1
	Exp: 618192
	JExp: 417960
	AttackRange: 1
	Attack: [2519, 1403]
	Def: 279
	Mdef: 135
	Stats: {
		Str: 121
		Agi: 103
		Vit: 114
		Int: 107
		Dex: 162
		Luk: 71
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 620
	AttackMotion: 420
	DamageMotion: 360
	DamageTakenRate: 10
	MvpExp: 257580
	MvpDrops: {
		White_Potion: 5000
		Violet_Jewel: 500
	}
	Drops: {
		Saber_: 600
		Ring_Pommel_Saber_: 950
		Cutlas: 150
		Hae_Dong_Gum_: 400
		Corsair: 350
		Elunium: 3200
		Krasnaya: 100
		Drake_Card: 1
	}
},
{
	Id: 1113
	SpriteName: "DROPS"
	Name: "Drops"
	Lv: 2
	Hp: 45
	Sp: 1
	Exp: 27
	JExp: 20
	AttackRange: 1
	Attack: [12, 1]
	Def: 16
	Mdef: 0
	Stats: {
		Str: 8
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 2
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1372
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Jellopy: 7500
		Rod_: 80
		Sticky_Mucus: 500
		Apple: 1100
		Empty_Bottle: 1700
		Apple: 800
		Orange_Juice: 20
		Drops_Card: 1
	}
},
{
	Id: 1114
	SpriteName: "DUSTINESS"
	Name: "Dustiness"
	Lv: 62
	Hp: 2026
	Sp: 1
	Exp: 632
	JExp: 678
	AttackRange: 1
	Attack: [166, 31]
	Def: 69
	Mdef: 50
	Stats: {
		Str: 46
		Agi: 22
		Vit: 46
		Int: 60
		Dex: 75
		Luk: 105
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 150
	AttackDelay: 1004
	AttackMotion: 504
	DamageMotion: 384
	Drops: {
		Moth_Dust: 9000
		Wing_Of_Moth: 500
		Masquerade: 4
		Insect_Feeler: 2000
		Sparkling_Dust: 10
		Red_Herb: 1200
		Dustiness_Card: 1
	}
},
{
	Id: 1115
	SpriteName: "EDDGA"
	Name: "Eddga"
	Lv: 65
	Hp: 947500
	Sp: 1
	Exp: 207900
	JExp: 148500
	AttackRange: 1
	Attack: [1509, 776]
	Def: 166
	Mdef: 70
	Stats: {
		Str: 92
		Agi: 80
		Vit: 103
		Int: 66
		Dex: 139
		Luk: 85
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 872
	AttackMotion: 1344
	DamageMotion: 432
	DamageTakenRate: 10
	MvpExp: 99000
	MvpDrops: {
		Tigers_Skin: 5000
		Tiger_Footskin: 1000
		Flame_Heart: 3000
	}
	Drops: {
		Fire_Brand: 150
		Smoking_Pipe: 250
		Honey: 10000
		Katar_Of_Raging_Blaze: 500
		Tiger_Footskin: 800
		Elunium: 2400
		Krieg: 200
		Eddga_Card: 1
	}
},
{
	Id: 1116
	SpriteName: "EGGYRA"
	Name: "Eggyra"
	Lv: 53
	Hp: 1676
	Sp: 1
	Exp: 346
	JExp: 689
	AttackRange: 1
	Attack: [110, 40]
	Def: 85
	Mdef: 20
	Stats: {
		Str: 46
		Agi: 25
		Vit: 25
		Int: 15
		Dex: 57
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Ghost", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1816
	AttackMotion: 816
	DamageMotion: 288
	Drops: {
		Scell: 1000
		Egg_Shell: 20
		Piece_Of_Egg_Shell: 550
		Red_Herb: 1000
		Pet_Incubator: 300
		Center_Potion: 250
		Elunium_Stone: 57
		Eggyra_Card: 1
	}
},
{
	Id: 1117
	SpriteName: "EVIL_DRUID"
	Name: "Evil Druid"
	Lv: 80
	Hp: 5149
	Sp: 1
	Exp: 1472
	JExp: 1280
	AttackRange: 1
	Attack: [378, 68]
	Def: 88
	Mdef: 45
	Stats: {
		Str: 62
		Agi: 32
		Vit: 24
		Int: 45
		Dex: 85
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 2276
	AttackMotion: 576
	DamageMotion: 336
	Drops: {
		Biretta_: 10
		Bone_Wand: 1
		Ragamuffin_Cape: 2
		Bible: 10
		Leaf_Of_Yggdrasil: 200
		Cookbook07: 4
		White_Herb: 2000
		Evil_Druid_Card: 1
	}
},
{
	Id: 1118
	SpriteName: "FLORA"
	Name: "Flora"
	Lv: 59
	Hp: 2301
	Sp: 1
	Exp: 558
	JExp: 597
	AttackRange: 3
	Attack: [163, 31]
	Def: 99
	Mdef: 29
	Stats: {
		Str: 49
		Agi: 29
		Vit: 35
		Int: 5
		Dex: 46
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 1000
	AttackDelay: 1432
	AttackMotion: 432
	DamageMotion: 576
	Drops: {
		Blossom_Of_Maneater: 9000
		Sunflower: 3
		Aloe: 10
		Leaflet_Of_Aloe: 50
		Singing_Flower: 20
		Stem: 2000
		Witherless_Rose: 1
		Flora_Card: 1
	}
},
{
	Id: 1119
	SpriteName: "FRILLDORA"
	Name: "Frilldora"
	Lv: 57
	Hp: 1821
	Sp: 1
	Exp: 510
	JExp: 548
	AttackRange: 1
	Attack: [181, 42]
	Def: 84
	Mdef: 10
	Stats: {
		Str: 48
		Agi: 38
		Vit: 38
		Int: 15
		Dex: 51
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1540
	AttackMotion: 720
	DamageMotion: 432
	Drops: {
		Lizard_Scruff: 5500
		Elunium_Stone: 90
		Reptile_Tongue: 1500
		Azure_Jewel: 15
		Yellow_Gemstone: 200
		Red_Herb: 800
		Zargon: 120
		Frilldora_Card: 1
	}
},
{
	Id: 1120
	SpriteName: "GHOSTRING"
	Name: "Ghostring"
	Lv: 90
	Hp: 26700
	Sp: 1
	Exp: 4736
	JExp: 4467
	AttackRange: 1
	Attack: [385, 162]
	Def: 88
	Mdef: 72
	Stats: {
		Str: 66
		Agi: 85
		Vit: 66
		Int: 66
		Dex: 119
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1220
	AttackMotion: 1080
	DamageMotion: 648
	Drops: {
		Transparent_Cloth: 5335
		Ghost_Bandana: 100
		Thief_Clothes_: 50
		Branch_Of_Dead_Tree: 500
		Old_Blue_Box: 10
		Emperium: 30
		Ghost_Scroll_1_5: 100
		Ghostring_Card: 1
	}
},
{
	Id: 1121
	SpriteName: "GIEARTH"
	Name: "Giearth"
	Lv: 42
	Hp: 1118
	Sp: 1
	Exp: 315
	JExp: 354
	AttackRange: 1
	Attack: [70, 15]
	Def: 52
	Mdef: 16
	Stats: {
		Str: 27
		Agi: 19
		Vit: 30
		Int: 10
		Dex: 28
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1848
	AttackMotion: 1296
	DamageMotion: 432
	Drops: {
		Great_Nature: 30
		Coal: 150
		Elder_Pixies_Beard: 5500
		Elven_Ears: 1
		Cap_: 10
		Sparkling_Dust: 100
		Giearth_Card: 1
	}
},
{
	Id: 1122
	SpriteName: "GOBLIN_1"
	Name: "Goblin"
	Lv: 48
	Hp: 1058
	Sp: 1
	Exp: 369
	JExp: 414
	AttackRange: 1
	Attack: [87, 34]
	Def: 56
	Mdef: 5
	Stats: {
		Str: 37
		Agi: 54
		Vit: 25
		Int: 20
		Dex: 36
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1120
	AttackMotion: 620
	DamageMotion: 240
	Drops: {
		Iron: 270
		Scell: 9000
		Oridecon_Stone: 43
		Goblini_Mask: 3
		Dirk_: 10
		Buckler_: 5
		Red_Herb: 1800
		Goblin_Card: 1
	}
},
{
	Id: 1123
	SpriteName: "GOBLIN_2"
	Name: "Goblin"
	Lv: 44
	Hp: 931
	Sp: 1
	Exp: 333
	JExp: 374
	AttackRange: 1
	Attack: [94, 28]
	Def: 52
	Mdef: 5
	Stats: {
		Str: 33
		Agi: 16
		Vit: 24
		Int: 15
		Dex: 58
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1320
	AttackMotion: 620
	DamageMotion: 240
	Drops: {
		Iron: 250
		Scell: 9000
		Indian_Hair_Piece: 3
		Flail_: 10
		Siver_Guard: 5
		Red_Herb: 1000
		Goblini_Mask: 3
		Goblin_Card: 1
	}
},
{
	Id: 1124
	SpriteName: "GOBLIN_3"
	Name: "Goblin"
	Lv: 44
	Hp: 930
	Sp: 1
	Exp: 333
	JExp: 374
	AttackRange: 1
	Attack: [88, 33]
	Def: 47
	Mdef: 5
	Stats: {
		Str: 30
		Agi: 16
		Vit: 24
		Int: 15
		Dex: 17
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1624
	AttackMotion: 624
	DamageMotion: 240
	Drops: {
		Iron: 230
		Scell: 9000
		Red_Bandana: 3
		Goblin_Mask_02: 15
		Buckler_: 1
		Red_Herb: 1000
		Yellow_Herb: 220
		Goblin_Card: 1
	}
},
{
	Id: 1125
	SpriteName: "GOBLIN_4"
	Name: "Goblin"
	Lv: 49
	Hp: 1494
	Sp: 1
	Exp: 396
	JExp: 446
	AttackRange: 1
	Attack: [72, 22]
	Def: 70
	Mdef: 3
	Stats: {
		Str: 31
		Agi: 27
		Vit: 46
		Int: 15
		Dex: 34
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1624
	AttackMotion: 624
	DamageMotion: 240
	Drops: {
		Yellow_Live: 100
		Iron: 170
		Goblin_Mask_01: 15
		Gangster_Patch: 3
		Smasher_: 10
		Siver_Guard: 5
		Red_Herb: 1500
		Goblin_Card: 1
	}
},
{
	Id: 1126
	SpriteName: "GOBLIN_5"
	Name: "Goblin"
	Lv: 56
	Hp: 2342
	Sp: 1
	Exp: 510
	JExp: 548
	AttackRange: 1
	Attack: [167, 31]
	Def: 64
	Mdef: 5
	Stats: {
		Str: 51
		Agi: 37
		Vit: 22
		Int: 15
		Dex: 42
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 3074
	AttackMotion: 1874
	DamageMotion: 480
	Drops: {
		Iron: 150
		Scell: 9000
		Wand_: 15
		Buckler_: 1
		Goblin_Mask_03: 15
		Red_Herb: 1500
		Yellow_Herb: 220
		Goblin_Card: 1
	}
},
{
	Id: 1127
	SpriteName: "HODE"
	Name: "Hode"
	Lv: 63
	Hp: 2676
	Sp: 1
	Exp: 664
	JExp: 710
	AttackRange: 1
	Attack: [179, 45]
	Def: 91
	Mdef: 24
	Stats: {
		Str: 61
		Agi: 16
		Vit: 42
		Int: 5
		Dex: 32
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1480
	AttackMotion: 480
	DamageMotion: 720
	Drops: {
		Yellow_Live: 120
		Earthworm_Peeling: 9000
		Elunium_Stone: 80
		Sticky_Mucus: 3000
		Town_Sword_: 10
		Foolishness_Of_Blind: 1
		Fatty_Chubby_Earthworm: 20
		Hode_Card: 1
	}
},
{
	Id: 1128
	SpriteName: "HORN"
	Name: "Horn"
	Lv: 32
	Hp: 705
	Sp: 1
	Exp: 216
	JExp: 243
	AttackRange: 1
	Attack: [64, 11]
	Def: 52
	Mdef: 8
	Stats: {
		Str: 10
		Agi: 12
		Vit: 36
		Int: 25
		Dex: 21
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1528
	AttackMotion: 528
	DamageMotion: 288
	Drops: {
		Yellow_Live: 80
		Emveretarcon: 35
		Horn: 5500
		Guisarme_: 15
		Shell: 5500
		Solid_Shell: 70
		Horn_Card: 1
	}
},
{
	Id: 1129
	SpriteName: "HORONG"
	Name: "Horong"
	Lv: 66
	Hp: 2304
	Sp: 1
	Exp: 820
	JExp: 879
	AttackRange: 1
	Attack: [275, 70]
	Def: 84
	Mdef: 35
	Stats: {
		Str: 36
		Agi: 32
		Vit: 35
		Int: 45
		Dex: 62
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 1888
	AttackMotion: 1152
	DamageMotion: 828
	Drops: {
		Stone_Heart: 6500
		Zargon: 500
		Bomb_Wick: 5
		Fire_Arrow: 10000
		Elunium_Stone: 118
		Baked_Yam: 20
		Alchol: 50
		Horong_Card: 1
	}
},
{
	Id: 1130
	SpriteName: "JAKK"
	Name: "Jakk"
	Lv: 63
	Hp: 2054
	Sp: 1
	Exp: 664
	JExp: 710
	AttackRange: 1
	Attack: [229, 37]
	Def: 90
	Mdef: 25
	Stats: {
		Str: 58
		Agi: 43
		Vit: 42
		Int: 25
		Dex: 61
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1180
	AttackMotion: 480
	DamageMotion: 648
	Drops: {
		Pumpkin_Head: 9000
		Zargon: 900
		Elunium: 31
		Tights_: 5
		Frozen_Heart: 5
		Pumpkin: 1000
		Light_Granule: 10
		Jakk_Card: 1
	}
},
{
	Id: 1131
	SpriteName: "JOKER"
	Name: "Joker"
	Lv: 90
	Hp: 6022
	Sp: 1
	Exp: 1780
	JExp: 1821
	AttackRange: 1
	Attack: [317, 60]
	Def: 64
	Mdef: 76
	Stats: {
		Str: 84
		Agi: 99
		Vit: 30
		Int: 50
		Dex: 92
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1364
	AttackMotion: 864
	DamageMotion: 432
	Drops: {
		Zargon: 2000
		Old_Card_Album: 2
		Contracts_In_Shadow: 20
		Yellow_Herb: 1000
		Katar_Of_Piercing_Wind: 1
		Oridecon: 100
		Ghost_Scroll_1_5: 100
		Joker_Card: 1
	}
},
{
	Id: 1132
	SpriteName: "KHALITZBURG"
	Name: "Khalitzburg"
	Lv: 118
	Hp: 23986
	Sp: 1
	Exp: 3920
	JExp: 2646
	AttackRange: 1
	Attack: [1232, 96]
	Def: 125
	Mdef: 10
	Stats: {
		Str: 121
		Agi: 48
		Vit: 40
		Int: 31
		Dex: 125
		Luk: 32
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 528
	AttackMotion: 1000
	DamageMotion: 396
	Drops: {
		Skel_Bone: 8000
		Elunium: 191
		Bone_Helm: 1
		Mirror_Shield_: 2
		Patriotism_Marks: 10
		Ebone_Armor: 2
		Ur_Plate: 100
		Khalitzburg_Card: 1
	}
},
{
	Id: 1133
	SpriteName: "KOBOLD_1"
	Name: "Kobold"
	Lv: 107
	Hp: 10483
	Sp: 1
	Exp: 2728
	JExp: 1706
	AttackRange: 1
	Attack: [701, 87]
	Def: 103
	Mdef: 25
	Stats: {
		Str: 109
		Agi: 76
		Vit: 61
		Int: 53
		Dex: 98
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1028
	AttackMotion: 528
	DamageMotion: 360
	Drops: {
		Steel: 100
		Cobold_Hair: 5335
		Zargon: 700
		Elunium_Stone: 25
		Gladius_: 2
		Buckler_: 5
		Kobold_Card: 1
	}
},
{
	Id: 1134
	SpriteName: "KOBOLD_2"
	Name: "Kobold"
	Lv: 102
	Hp: 9152
	Sp: 1
	Exp: 2332
	JExp: 1458
	AttackRange: 1
	Attack: [477, 62]
	Def: 117
	Mdef: 59
	Stats: {
		Str: 96
		Agi: 61
		Vit: 55
		Int: 48
		Dex: 95
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Poison", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1528
	AttackMotion: 528
	DamageMotion: 360
	Drops: {
		Steel: 100
		Cobold_Hair: 5335
		Zargon: 200
		Buckler_: 3
		Yellow_Herb: 100
		Guard: 100
		Kobold_Card: 1
	}
},
{
	Id: 1135
	SpriteName: "KOBOLD_3"
	Name: "Kobold"
	Lv: 101
	Hp: 9078
	Sp: 1
	Exp: 2192
	JExp: 1371
	AttackRange: 1
	Attack: [468, 64]
	Def: 109
	Mdef: 48
	Stats: {
		Str: 103
		Agi: 64
		Vit: 59
		Int: 42
		Dex: 80
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1228
	AttackMotion: 528
	DamageMotion: 360
	Drops: {
		Boody_Red: 35
		Steel: 100
		Cobold_Hair: 5335
		Zargon: 200
		Hammer_: 5
		Buckler_: 3
		Yellow_Herb: 100
		Kobold_Card: 1
	}
},
{
	Id: 1136
	SpriteName: "KOBOLD_4"
	Name: "Kobold"
	Lv: 31
	Hp: 10
	Sp: 1
	Exp: 4582500
	JExp: 4582500
	AttackRange: 1
	Attack: [316, 62]
	Def: 1
	Mdef: 1
	Stats: {
		Str: 1
		Agi: 31
		Vit: 31
		Int: 20
		Dex: 55
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Poison", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1528
	AttackMotion: 528
	DamageMotion: 360
	Drops: {
		Steel: 50
		Cobold_Hair: 5335
		Zargon: 100
		Hammer_: 5
		Buckler_: 3
		Yellow_Herb: 100
		Axe: 150
		Kobold_Card: 1
	}
},
{
	Id: 1137
	SpriteName: "KOBOLD_5"
	Name: "Kobold"
	Lv: 31
	Hp: 10
	Sp: 1
	Exp: 4582500
	JExp: 4582500
	AttackRange: 1
	Attack: [223, 33]
	Def: 1
	Mdef: 1
	Stats: {
		Str: 1
		Agi: 31
		Vit: 31
		Int: 20
		Dex: 88
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1228
	AttackMotion: 528
	DamageMotion: 360
	Drops: {
		Steel: 40
		Cobold_Hair: 5335
		Zargon: 100
		Morning_Star_: 5
		Buckler_: 3
		Yellow_Herb: 100
		Club: 150
		Kobold_Card: 1
	}
},
{
	Id: 1138
	SpriteName: "MAGNOLIA"
	Name: "Magnolia"
	Lv: 53
	Hp: 1984
	Sp: 1
	Exp: 462
	JExp: 495
	AttackRange: 1
	Attack: [96, 165]
	Def: 51
	Mdef: 8
	Stats: {
		Str: 49
		Agi: 25
		Vit: 21
		Int: 50
		Dex: 31
		Luk: 85
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1054
	AttackMotion: 504
	DamageMotion: 432
	Drops: {
		Old_Frying_Pan: 9000
		Garlet: 800
		Scell: 100
		Zargon: 10
		Black_Ladle: 40
		Yellow_Herb: 400
		High_end_Cooking_Kits: 5
		Magnolia_Card: 1
	}
},
{
	Id: 1139
	SpriteName: "MANTIS"
	Name: "Mantis"
	Lv: 65
	Hp: 2719
	Sp: 1
	Exp: 624
	JExp: 669
	AttackRange: 1
	Attack: [187, 31]
	Def: 90
	Mdef: 0
	Stats: {
		Str: 55
		Agi: 33
		Vit: 24
		Int: 5
		Dex: 46
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1528
	AttackMotion: 660
	DamageMotion: 432
	Drops: {
		Yellow_Live: 110
		Limb_Of_Mantis: 9000
		Scell: 1400
		Elunium_Stone: 70
		Solid_Shell: 250
		Azure_Jewel: 10
		Red_Herb: 650
		Mantis_Card: 1
	}
},
{
	Id: 1140
	SpriteName: "MARDUK"
	Name: "Marduk"
	Lv: 73
	Hp: 2893
	Sp: 1
	Exp: 850
	JExp: 872
	AttackRange: 1
	Attack: [198, 112]
	Def: 66
	Mdef: 43
	Stats: {
		Str: 66
		Agi: 49
		Vit: 21
		Int: 40
		Dex: 79
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1540
	AttackMotion: 840
	DamageMotion: 504
	Drops: {
		Flame_Heart: 35
		Sacred_Masque: 4365
		Staff_: 10
		Mitten_Of_Presbyter: 1
		Blessed_Wand: 3
		Fire_Scroll_1_5: 100
		Book_Of_Devil: 20
		Marduk_Card: 1
	}
},
{
	Id: 1141
	SpriteName: "MARINA"
	Name: "Marina"
	Lv: 42
	Hp: 1209
	Sp: 1
	Exp: 340
	JExp: 381
	AttackRange: 1
	Attack: [73, 25]
	Def: 20
	Mdef: 19
	Stats: {
		Str: 24
		Agi: 27
		Vit: 18
		Int: 22
		Dex: 29
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 2280
	AttackMotion: 1080
	DamageMotion: 864
	Drops: {
		Single_Cell: 5000
		Sticky_Mucus: 1500
		Crystal_Blue: 45
		Mistic_Frozen: 2
		Blue_Gemstone: 200
		Deadly_Noxious_Herb: 20
		Marina_Card: 1
	}
},
{
	Id: 1142
	SpriteName: "MARINE_SPHERE"
	Name: "Marine Sphere"
	Lv: 51
	Hp: 1924
	Sp: 1
	Exp: 468
	JExp: 503
	AttackRange: 1
	Attack: [1, 1]
	Def: 41
	Mdef: 28
	Stats: {
		Str: 10
		Agi: 16
		Vit: 35
		Int: 25
		Dex: 29
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Water", 2)
	MoveSpeed: 800
	AttackDelay: 1201
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		Tendon: 5000
		Detonator: 2500
		Chain_: 10
		Skyblue_Jewel: 10
		Blue_Gemstone: 150
		Transparent_Headgear: 10
		Marine_Sphere_Card: 1
	}
},
{
	Id: 1143
	SpriteName: "MARIONETTE"
	Name: "Marionette"
	Lv: 90
	Hp: 7166
	Sp: 1
	Exp: 1586
	JExp: 2009
	AttackRange: 1
	Attack: [222, 190]
	Def: 35
	Mdef: 24
	Stats: {
		Str: 52
		Agi: 79
		Vit: 28
		Int: 105
		Dex: 86
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1480
	AttackMotion: 480
	DamageMotion: 1056
	Drops: {
		Golden_Hair: 9000
		Star_Dust: 5
		Brooch: 1
		Fire_Scroll_3_5: 100
		Chain_: 15
		Chrystal_Pumps: 1
		Marionette_Doll: 3
		Marionette_Card: 1
	}
},
{
	Id: 1144
	SpriteName: "MARSE"
	Name: "Marse"
	Lv: 47
	Hp: 1456
	Sp: 1
	Exp: 389
	JExp: 438
	AttackRange: 1
	Attack: [85, 20]
	Def: 38
	Mdef: 18
	Stats: {
		Str: 33
		Agi: 17
		Vit: 25
		Int: 10
		Dex: 33
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1956
	AttackMotion: 756
	DamageMotion: 528
	Drops: {
		Chinese_Ink: 9000
		Tentacle: 3000
		Blue_Gemstone: 200
		Skyblue_Jewel: 10
		Mistic_Frozen: 12
		Penetration: 5
		Grape: 300
		Marse_Card: 1
	}
},
{
	Id: 1145
	SpriteName: "MARTIN"
	Name: "Martin"
	Lv: 39
	Hp: 1056
	Sp: 1
	Exp: 311
	JExp: 350
	AttackRange: 1
	Attack: [70, 18]
	Def: 58
	Mdef: 19
	Stats: {
		Str: 25
		Agi: 29
		Vit: 28
		Int: 15
		Dex: 30
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1480
	AttackMotion: 480
	DamageMotion: 480
	Drops: {
		Moustache_Of_Mole: 9000
		Nail_Of_Mole: 500
		Jur_: 10
		Goggle_: 5
		Safety_Helmet: 1
		Battered_Pot: 10
		Goggle: 15
		Martin_Card: 1
	}
},
{
	Id: 1146
	SpriteName: "MATYR"
	Name: "Matyr"
	Lv: 58
	Hp: 2087
	Sp: 1
	Exp: 520
	JExp: 557
	AttackRange: 1
	Attack: [151, 26]
	Def: 63
	Mdef: 5
	Stats: {
		Str: 48
		Agi: 20
		Vit: 21
		Int: 17
		Dex: 47
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 432
	AttackMotion: 432
	DamageMotion: 360
	Drops: {
		Matyrs_Flea_Guard: 10
		Monsters_Feed: 5000
		Animals_Skin: 5500
		Pet_Food: 400
		Elunium_Stone: 100
		Grape: 200
		Matyr_Card: 1
	}
},
{
	Id: 1147
	SpriteName: "MAYA"
	Name: "Maya"
	Lv: 55
	Hp: 380000
	Sp: 1
	Exp: 178560
	JExp: 133920
	AttackRange: 1
	Attack: [555, 265]
	Def: 183
	Mdef: 50
	Stats: {
		Str: 88
		Agi: 72
		Vit: 76
		Int: 102
		Dex: 92
		Luk: 76
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 864
	AttackMotion: 1000
	DamageMotion: 480
	DamageTakenRate: 10
	MvpExp: 89280
	MvpDrops: {
		Crystal_Jewel: 2000
		Old_Blue_Box: 3000
		Old_Violet_Box: 2000
	}
	Drops: {
		Queens_Hair_Ornament: 500
		Safety_Ring: 200
		Tiara: 200
		Armlet_Of_Obedience: 500
		Mothers_Nightmare: 10
		Elunium: 3500
		Dea_Staff: 100
		Maya_Card: 1
	}
},
{
	Id: 1148
	SpriteName: "MEDUSA"
	Name: "Medusa"
	Lv: 102
	Hp: 10045
	Sp: 1
	Exp: 2084
	JExp: 1302
	AttackRange: 1
	Attack: [620, 113]
	Def: 87
	Mdef: 66
	Stats: {
		Str: 99
		Agi: 68
		Vit: 65
		Int: 79
		Dex: 83
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 1720
	AttackMotion: 1320
	DamageMotion: 360
	Drops: {
		Slender_Snake: 5335
		Whip_Of_Red_Flame: 250
		Animal_Blood: 200
		Sea_Witch_Foot: 20
		Scarlet_Jewel: 250
		Rafini_Staff: 5
		Penetration: 3
		Medusa_Card: 1
	}
},
{
	Id: 1149
	SpriteName: "MINOROUS"
	Name: "Minorous"
	Lv: 58
	Hp: 1893
	Sp: 1
	Exp: 570
	JExp: 602
	AttackRange: 1
	Attack: [247, 36]
	Def: 100
	Mdef: 10
	Stats: {
		Str: 65
		Agi: 42
		Vit: 36
		Int: 43
		Dex: 61
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1360
	AttackMotion: 960
	DamageMotion: 432
	Drops: {
		Nose_Ring: 5335
		Oridecon_Stone: 196
		Two_Handed_Axe_: 2
		Hammer_Of_Blacksmith: 10
		Beef_Head_Meat: 100
		Axe: 200
		Lemon: 300
		Minorous_Card: 1
	}
},
{
	Id: 1150
	SpriteName: "MOONLIGHT"
	Name: "Moonlight Flower"
	Lv: 79
	Hp: 324000
	Sp: 1
	Exp: 367488
	JExp: 271440
	AttackRange: 1
	Attack: [2232, 1251]
	Def: 254
	Mdef: 81
	Stats: {
		Str: 86
		Agi: 102
		Vit: 93
		Int: 82
		Dex: 157
		Luk: 120
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1276
	AttackMotion: 576
	DamageMotion: 288
	DamageTakenRate: 10
	MvpExp: 167040
	MvpDrops: {
		Fox_Tail: 5000
		White_Potion: 1500
		Golden_Jewel: 500
	}
	Drops: {
		Spectral_Spear: 500
		Moonlight_Sword: 100
		Long_Mace: 150
		Punisher: 500
		Silver_Knife_Of_Chaste: 650
		Elunium: 2600
		Staff_Of_Bordeaux: 100
		Moonlight_Flower_Card: 1
	}
},
{
	Id: 1151
	SpriteName: "MYST"
	Name: "Myst"
	Lv: 49
	Hp: 1223
	Sp: 1
	Exp: 396
	JExp: 446
	AttackRange: 1
	Attack: [96, 20]
	Def: 61
	Mdef: 10
	Stats: {
		Str: 35
		Agi: 37
		Vit: 20
		Int: 10
		Dex: 41
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 384
	Drops: {
		Gas_Mask: 2
		Wooden_Block: 800
		Wig: 10
		Oridecon_Stone: 65
		Elunium_Stone: 97
		Anodyne: 20
		Ring: 1
		Myst_Card: 1
	}
},
{
	Id: 1152
	SpriteName: "ORC_SKELETON"
	Name: "Orc Skeleton"
	Lv: 53
	Hp: 2077
	Sp: 1
	Exp: 482
	JExp: 524
	AttackRange: 1
	Attack: [121, 25]
	Def: 82
	Mdef: 10
	Stats: {
		Str: 52
		Agi: 16
		Vit: 24
		Int: 5
		Dex: 24
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 2420
	AttackMotion: 720
	DamageMotion: 648
	Drops: {
		Orcish_Cuspid: 5500
		Skel_Bone: 3500
		Elunium_Stone: 80
		Viking_Helm: 2
		Buster_: 10
		Green_Herb: 50
		Orc_Skeleton_Card: 1
	}
},
{
	Id: 1153
	SpriteName: "ORC_ZOMBIE"
	Name: "Orc Zombie"
	Lv: 51
	Hp: 1908
	Sp: 1
	Exp: 452
	JExp: 498
	AttackRange: 1
	Attack: [114, 15]
	Def: 71
	Mdef: 5
	Stats: {
		Str: 45
		Agi: 17
		Vit: 32
		Int: 5
		Dex: 57
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 2852
	AttackMotion: 1152
	DamageMotion: 840
	Drops: {
		Nail_Of_Orc: 5500
		Sticky_Mucus: 3000
		Emperium: 1
		Orc_Zombie_Card: 1
	}
},
{
	Id: 1154
	SpriteName: "PASANA"
	Name: "Pasana"
	Lv: 79
	Hp: 3510
	Sp: 1
	Exp: 1068
	JExp: 1194
	AttackRange: 1
	Attack: [438, 40]
	Def: 93
	Mdef: 35
	Stats: {
		Str: 76
		Agi: 36
		Vit: 33
		Int: 20
		Dex: 80
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 976
	AttackMotion: 576
	DamageMotion: 288
	Drops: {
		Vroken_Sword: 4365
		Honey_Jar: 2500
		Elunium_Stone: 20
		Falchion_: 500
		Stiletto_: 150
		Undershirt: 100
		Pasana_Card: 1
	}
},
{
	Id: 1155
	SpriteName: "PETIT"
	Name: "Petite"
	Lv: 86
	Hp: 5799
	Sp: 1
	Exp: 1286
	JExp: 1317
	AttackRange: 1
	Attack: [321, 66]
	Def: 99
	Mdef: 49
	Stats: {
		Str: 55
		Agi: 32
		Vit: 38
		Int: 37
		Dex: 65
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Dragon"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 2468
	AttackMotion: 768
	DamageMotion: 480
	Drops: {
		Dragon_Canine: 5335
		Dragon_Train: 300
		Oridecon_Stone: 140
		White_Herb: 1000
		Flail: 150
		Petti_Tail: 100
		Aloebera: 15
		Petit_Card: 1
	}
},
{
	Id: 1156
	SpriteName: "PETIT_"
	Name: "Petite"
	Lv: 79
	Hp: 3556
	Sp: 1
	Exp: 990
	JExp: 1013
	AttackRange: 1
	Attack: [308, 36]
	Def: 86
	Mdef: 42
	Stats: {
		Str: 63
		Agi: 39
		Vit: 31
		Int: 55
		Dex: 86
		Luk: 85
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Dragon"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 288
	Drops: {
		Dragon_Scale: 5335
		Dragon_Train: 300
		Elunium: 61
		White_Herb: 1000
		Khukri: 5
		Zargon: 1500
		Aloebera: 15
		Petit__Card: 1
	}
},
{
	Id: 1157
	SpriteName: "PHARAOH"
	Name: "Pharaoh"
	Lv: 85
	Hp: 900000
	Sp: 1
	Exp: 459360
	JExp: 334080
	AttackRange: 1
	Attack: [1624, 1782]
	Def: 124
	Mdef: 269
	Stats: {
		Str: 98
		Agi: 102
		Vit: 96
		Int: 142
		Dex: 173
		Luk: 102
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 125
	AttackDelay: 868
	AttackMotion: 768
	DamageMotion: 288
	DamageTakenRate: 10
	MvpExp: 208800
	MvpDrops: {
		Yggdrasilberry: 5500
		Royal_Jelly: 5000
		Crystal_Jewel__: 5000
	}
	Drops: {
		Broken_Pharaoh_Symbol: 5820
		Tutankhamens_Mask: 2500
		Solar_Sword: 100
		Holy_Robe: 150
		Gemmed_Crown: 500
		Tablet: 300
		Bazerald: 80
		Pharaoh_Card: 1
	}
},
{
	Id: 1158
	SpriteName: "PHEN"
	Name: "Phen"
	Lv: 52
	Hp: 1963
	Sp: 1
	Exp: 468
	JExp: 503
	AttackRange: 1
	Attack: [102, 30]
	Def: 44
	Mdef: 11
	Stats: {
		Str: 54
		Agi: 15
		Vit: 35
		Int: 15
		Dex: 28
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 2544
	AttackMotion: 1344
	DamageMotion: 1152
	Drops: {
		Fish_Tail: 5500
		Sharp_Scale: 2000
		Skyblue_Jewel: 5
		Meat: 1000
		Fin: 500
		Oridecon_Stone: 25
		Phen_Card: 1
	}
},
{
	Id: 1159
	SpriteName: "PHREEONI"
	Name: "Phreeoni"
	Lv: 71
	Hp: 300000
	Sp: 1
	Exp: 127600
	JExp: 180000
	AttackRange: 1
	Attack: [693, 967]
	Def: 269
	Mdef: 98
	Stats: {
		Str: 88
		Agi: 70
		Vit: 112
		Int: 87
		Dex: 122
		Luk: 71
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1020
	AttackMotion: 1020
	DamageMotion: 288
	DamageTakenRate: 10
	MvpExp: 58000
	MvpDrops: {
		Frozen_Heart: 500
		Crystal_Jewel: 1000
		Star_Crumb: 4000
	}
	Drops: {
		Thin_N_Long_Tongue: 9700
		Forturn_Sword: 500
		Sucsamad: 150
		Jaws_Of_Ant: 5000
		Mr_Scream: 300
		Elunium: 2900
		Weihna: 100
		Phreeoni_Card: 1
	}
},
{
	Id: 1160
	SpriteName: "PIERE"
	Name: "Piere"
	Lv: 32
	Hp: 696
	Sp: 1
	Exp: 216
	JExp: 243
	AttackRange: 1
	Attack: [47, 20]
	Def: 57
	Mdef: 16
	Stats: {
		Str: 19
		Agi: 19
		Vit: 36
		Int: 8
		Dex: 27
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 576
	Drops: {
		Worm_Peelings: 9000
		Garlet: 1100
		Sticky_Mucus: 600
		Wind_Of_Verdure: 30
		Sparkling_Dust: 5
		Iron_Ore: 400
		Elunium_Stone: 31
		Andre_Card: 1
	}
},
{
	Id: 1161
	SpriteName: "PLANKTON"
	Name: "Plankton"
	Lv: 40
	Hp: 1232
	Sp: 1
	Exp: 334
	JExp: 375
	AttackRange: 1
	Attack: [75, 36]
	Def: 28
	Mdef: 28
	Stats: {
		Str: 23
		Agi: 53
		Vit: 25
		Int: 55
		Dex: 35
		Luk: 14
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 2208
	AttackMotion: 1008
	DamageMotion: 324
	Drops: {
		Single_Cell: 9000
		Garlet: 300
		Sticky_Mucus: 700
		Alchol: 4
		Empty_Bottle: 1000
		Dew_Laden_Moss: 20
		Center_Potion: 50
		Plankton_Card: 1
	}
},
{
	Id: 1162
	SpriteName: "RAFFLESIA"
	Name: "Rafflesia"
	Lv: 86
	Hp: 5819
	Sp: 1
	Exp: 1286
	JExp: 1317
	AttackRange: 3
	Attack: [325, 41]
	Def: 86
	Mdef: 2
	Stats: {
		Str: 47
		Agi: 41
		Vit: 44
		Int: 29
		Dex: 78
		Luk: 31
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 512
	AttackMotion: 528
	DamageMotion: 240
	Drops: {
		Root_Of_Maneater: 5500
		Scell: 1600
		Four_Leaf_Clover: 2
		Ment: 10
		Hinalle: 10
		Shoot: 550
		White_Herb: 30
		Rafflesia_Card: 1
	}
},
{
	Id: 1163
	SpriteName: "RAYDRIC"
	Name: "Raydric"
	Lv: 115
	Hp: 18408
	Sp: 1
	Exp: 3600
	JExp: 2076
	AttackRange: 1
	Attack: [901, 96]
	Def: 89
	Mdef: 15
	Stats: {
		Str: 129
		Agi: 87
		Vit: 55
		Int: 32
		Dex: 106
		Luk: 27
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 824
	AttackMotion: 780
	DamageMotion: 420
	Drops: {
		Elunium: 106
		Iron_Cane: 1
		Chain_Mail_: 2
		Two_Hand_Sword_: 2
		Peuz_Plate: 10
		Patriotism_Marks: 10
		Brigan: 4850
		Daydric_Card: 1
	}
},
{
	Id: 1164
	SpriteName: "REQUIEM"
	Name: "Requiem"
	Lv: 71
	Hp: 3089
	Sp: 1
	Exp: 812
	JExp: 831
	AttackRange: 1
	Attack: [348, 48]
	Def: 88
	Mdef: 20
	Stats: {
		Str: 58
		Agi: 34
		Vit: 35
		Int: 12
		Dex: 50
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 1516
	AttackMotion: 816
	DamageMotion: 432
	Drops: {
		Old_Blue_Box: 35
		Emperium: 1
		Zargon: 2500
		Horrendous_Mouth: 3500
		Mementos: 1500
		Mantle_: 10
		Cookbook06: 1
		Requiem_Card: 1
	}
},
{
	Id: 1165
	SpriteName: "SAND_MAN"
	Name: "Sandman"
	Lv: 61
	Hp: 2887
	Sp: 1
	Exp: 656
	JExp: 705
	AttackRange: 1
	Attack: [164, 56]
	Def: 126
	Mdef: 24
	Stats: {
		Str: 44
		Agi: 8
		Vit: 55
		Int: 15
		Dex: 34
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1672
	AttackMotion: 720
	DamageMotion: 288
	Drops: {
		Great_Nature: 35
		Grit: 5335
		Elunium_Stone: 118
		Fine_Sand: 350
		Sparkling_Dust: 200
		Katar_Of_Thornbush: 1
		Hypnotists_Staff_: 5
		Sand_Man_Card: 1
	}
},
{
	Id: 1166
	SpriteName: "SAVAGE"
	Name: "Savage"
	Lv: 59
	Hp: 2301
	Sp: 1
	Exp: 602
	JExp: 644
	AttackRange: 1
	Attack: [181, 23]
	Def: 126
	Mdef: 3
	Stats: {
		Str: 56
		Agi: 21
		Vit: 54
		Int: 10
		Dex: 52
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 1960
	AttackMotion: 960
	DamageMotion: 384
	Drops: {
		Wild_Boars_Mane: 9000
		Grape: 300
		Animal_Blood: 2
		Eagle_Eyes: 1
		Savage_Meat: 50
		Elunium_Stone: 70
		Royal_Jelly: 2
		Savage_Card: 1
	}
},
{
	Id: 1167
	SpriteName: "SAVAGE_BABE"
	Name: "Savage Babe"
	Lv: 14
	Hp: 180
	Sp: 1
	Exp: 90
	JExp: 68
	AttackRange: 1
	Attack: [19, 6]
	Def: 22
	Mdef: 0
	Stats: {
		Str: 16
		Agi: 8
		Vit: 9
		Int: 5
		Dex: 21
		Luk: 18
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1624
	AttackMotion: 624
	DamageMotion: 576
	Drops: {
		Animals_Skin: 9000
		Axe_: 100
		Meat: 500
		Savage_Meat: 6
		Feather: 850
		Phracon: 80
		Sweet_Milk: 40
		Savage_Babe_Card: 1
	}
},
{
	Id: 1168
	SpriteName: "SCORPION_KING"
	Name: "Scorpion King"
	Lv: 50
	Hp: 5719
	Sp: 1
	Exp: 2066
	JExp: 1211
	AttackRange: 1
	Attack: [630, 113]
	Def: 64
	Mdef: 10
	Stats: {
		Str: 1
		Agi: 50
		Vit: 47
		Int: 1
		Dex: 91
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1700
	AttackMotion: 1000
	DamageMotion: 500
	Drops: {
		Flame_Heart: 45
		Tweezer: 4850
		Hammer_Of_Blacksmith: 15
		Scorpions_Tail: 5000
		Solid_Shell: 3000
		White_Herb: 700
		Scorpion_King_Card: 1
	}
},
{
	Id: 1169
	SpriteName: "SKEL_WORKER"
	Name: "Skeleton Worker"
	Lv: 44
	Hp: 1240
	Sp: 1
	Exp: 333
	JExp: 374
	AttackRange: 1
	Attack: [92, 12]
	Def: 45
	Mdef: 5
	Stats: {
		Str: 30
		Agi: 13
		Vit: 22
		Int: 10
		Dex: 37
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 2420
	AttackMotion: 720
	DamageMotion: 384
	Drops: {
		Iron: 400
		Lantern: 5500
		Elunium_Stone: 90
		Safety_Helmet: 2
		Steel: 100
		Coal: 200
		Light_Granule: 10
		Skel_Worker_Card: 1
	}
},
{
	Id: 1170
	SpriteName: "SOHEE"
	Name: "Sohee"
	Lv: 64
	Hp: 2875
	Sp: 1
	Exp: 624
	JExp: 669
	AttackRange: 1
	Attack: [177, 30]
	Def: 61
	Mdef: 21
	Stats: {
		Str: 61
		Agi: 24
		Vit: 29
		Int: 20
		Dex: 41
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 250
	AttackDelay: 2112
	AttackMotion: 912
	DamageMotion: 576
	Drops: {
		Long_Hair: 9000
		Skirt_Of_Virgin: 50
		Nurse_Cap: 1
		Muffler_: 5
		Stiletto_: 5
		Puente_Robe: 5
		Inspector_Certificate: 350
		Sohee_Card: 1
	}
},
/*{
	Id: 1171
	SpriteName: "SOLDIER_ANDRE"
	Name: "Soldier Andre"
	Lv: 22
	Hp: 1245
	Sp: 0
	Exp: 219
	JExp: 138
	AttackRange: 1
	Attack: [105, 127]
	Def: 20
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 22
		Vit: 44
		Int: 20
		Dex: 40
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1001
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		Jaws_Of_Ant: 2700
		Scell: 800
		Elunium_Stone: 10
		Lapier_: 15
		Sparkling_Dust: 30
		Solid_Shell: 150
		Soldier_Andre_Card: 1
	}
},
{
	Id: 1172
	SpriteName: "SOLDIER_DENIRO"
	Name: "Soldier Deniro"
	Lv: 29
	Hp: 2047
	Sp: 0
	Exp: 450
	JExp: 274
	AttackRange: 1
	Attack: [162, 193]
	Def: 20
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 29
		Vit: 58
		Int: 20
		Dex: 54
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 2000
	AttackMotion: 1000
	DamageMotion: 500
	Drops: {
		Jaws_Of_Ant: 5500
		Scell: 2000
		Elunium_Stone: 15
		Lapier_: 20
		Solid_Shell: 270
		Sparkling_Dust: 50
		Soldier_Andre_Card: 1
	}
},
{
	Id: 1173
	SpriteName: "SOLDIER_PIERE"
	Name: "Soldier Piere"
	Lv: 23
	Hp: 1217
	Sp: 0
	Exp: 240
	JExp: 149
	AttackRange: 1
	Attack: [109, 131]
	Def: 25
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 23
		Vit: 46
		Int: 20
		Dex: 38
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1001
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		Jaws_Of_Ant: 3100
		Scell: 800
		Scell: 10
		Scimiter_: 15
		Sparkling_Dust: 35
		Solid_Shell: 200
		Soldier_Andre_Card: 1
	}
},*/
{
	Id: 1174
	SpriteName: "STAINER"
	Name: "Stainer"
	Lv: 21
	Hp: 365
	Sp: 1
	Exp: 126
	JExp: 143
	AttackRange: 1
	Attack: [65, 9]
	Def: 22
	Mdef: 25
	Stats: {
		Str: 10
		Agi: 10
		Vit: 24
		Int: 0
		Dex: 39
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1688
	AttackMotion: 1188
	DamageMotion: 612
	Drops: {
		Wind_Of_Verdure: 70
		Emveretarcon: 30
		Colorful_Shell: 9000
		Garlet: 2100
		Elunium_Stone: 25
		Solid_Shell: 10
		Iron_Ore: 300
		Stainer_Card: 1
	}
},
{
	Id: 1175
	SpriteName: "TAROU"
	Name: "Tarou"
	Lv: 22
	Hp: 420
	Sp: 1
	Exp: 135
	JExp: 152
	AttackRange: 1
	Attack: [72, 6]
	Def: 23
	Mdef: 5
	Stats: {
		Str: 21
		Agi: 6
		Vit: 12
		Int: 0
		Dex: 10
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 1744
	AttackMotion: 1044
	DamageMotion: 684
	Drops: {
		Rat_Tail: 9000
		Animals_Skin: 3000
		Feather: 800
		Monsters_Feed: 1000
		Ora_Ora: 2
		Tarou_Card: 1
	}
},
{
	Id: 1176
	SpriteName: "VITATA"
	Name: "Vitata"
	Lv: 35
	Hp: 756
	Sp: 1
	Exp: 234
	JExp: 264
	AttackRange: 1
	Attack: [68, 18]
	Def: 44
	Mdef: 12
	Stats: {
		Str: 20
		Agi: 11
		Vit: 24
		Int: 20
		Dex: 21
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 300
	AttackDelay: 1768
	AttackMotion: 768
	DamageMotion: 384
	Drops: {
		Yellow_Live: 90
		Worm_Peelings: 5000
		Scell: 200
		Honey: 350
		Honey: 350
		Royal_Jelly: 200
		Oridecon_Stone: 26
		Vitata_Card: 1
	}
},
{
	Id: 1177
	SpriteName: "ZENORC"
	Name: "Zenorc"
	Lv: 54
	Hp: 1816
	Sp: 1
	Exp: 472
	JExp: 507
	AttackRange: 1
	Attack: [137, 24]
	Def: 69
	Mdef: 5
	Stats: {
		Str: 50
		Agi: 18
		Vit: 20
		Int: 5
		Dex: 28
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 1180
	AttackMotion: 480
	DamageMotion: 360
	Drops: {
		Tooth_Of_: 5500
		Oridecon_Stone: 70
		Sticky_Mucus: 2500
		Old_Magic_Book: 5
		Yellow_Herb: 100
		Shining_Stone: 20
		Zenorc_Card: 1
	}
},
{
	Id: 1178
	SpriteName: "ZEROM"
	Name: "Zerom"
	Lv: 70
	Hp: 2687
	Sp: 1
	Exp: 756
	JExp: 960
	AttackRange: 1
	Attack: [328, 38]
	Def: 93
	Mdef: 15
	Stats: {
		Str: 57
		Agi: 49
		Vit: 30
		Int: 15
		Dex: 62
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1780
	AttackMotion: 1080
	DamageMotion: 432
	Drops: {
		Emveretarcon: 55
		Iron: 190
		G_Strings: 200
		Ganster_Mask: 3
		Cuffs: 10
		Iron_Ore: 300
		Light_Granule: 1
		Zerom_Card: 1
	}
},
{
	Id: 1179
	SpriteName: "WHISPER"
	Name: "Whisper"
	Lv: 46
	Hp: 1109
	Sp: 1
	Exp: 242
	JExp: 513
	AttackRange: 1
	Attack: [65, 55]
	Def: 20
	Mdef: 40
	Stats: {
		Str: 32
		Agi: 48
		Vit: 20
		Int: 35
		Dex: 52
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1960
	AttackMotion: 960
	DamageMotion: 504
	Drops: {
		Sparkling_Dust: 150
		Transparent_Cloth: 5335
		Spirit_Chain: 1
		Silver_Robe_: 10
		Whisper_Card: 1
	}
},
{
	Id: 1180
	SpriteName: "NINE_TAIL"
	Name: "Nine Tail"
	Lv: 72
	Hp: 2783
	Sp: 1
	Exp: 976
	JExp: 998
	AttackRange: 1
	Attack: [491, 50]
	Def: 95
	Mdef: 40
	Stats: {
		Str: 61
		Agi: 38
		Vit: 30
		Int: 20
		Dex: 106
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 840
	AttackMotion: 540
	DamageMotion: 480
	Drops: {
		Fox_Tail: 4656
		Glass_Bead: 200
		Old_Blue_Box: 100
		Branch_Of_Dead_Tree: 100
		Royal_Jelly: 250
		Panacea: 350
		Oridecon_Stone: 100
		Nine_Tail_Card: 1
	}
},
{
	Id: 1181
	SpriteName: "ZOMBIE_DRAGON"
	Name: "Fafnir"
	Lv: 1
	Hp: 1000
	Sp: 1
	Exp: 44550
	JExp: 1485
	AttackRange: 3
	Attack: [7900, 1240]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 120
		Agi: 145
		Vit: 145
		Int: 145
		Dex: 130
		Luk: 120
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 2700
	AttackMotion: 1000
	DamageMotion: 500
},
{
	Id: 1182
	SpriteName: "THIEF_MUSHROOM"
	Name: "Thief Mushroom"
	Lv: 1
	Hp: 15
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 7
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		Plant: true
	}
	MoveSpeed: 2000
	AttackDelay: 1
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		Mushroom_Of_Thief_1: 3000
		Mushroom_Of_Thief_2: 6000
	}
},
{
	Id: 1183
	SpriteName: "CHONCHON_"
	Name: "Chonchon"
	Lv: 5
	Hp: 63
	Sp: 1
	Exp: 36
	JExp: 27
	AttackRange: 1
	Attack: [11, 3]
	Def: 29
	Mdef: 0
	Stats: {
		Str: 13
		Agi: 4
		Vit: 4
		Int: 0
		Dex: 7
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1076
	AttackMotion: 576
	DamageMotion: 480
	Drops: {
		Iron: 50
		Shell: 5500
		Jellopy: 1500
		Cutter_: 55
		Wing_Of_Fly: 100
		Chonchon_Doll: 5
		Chonchon_Card: 1
	}
},
{
	Id: 1184
	SpriteName: "FABRE_"
	Name: "Fabre"
	Lv: 1
	Hp: 30
	Sp: 1
	Exp: 1
	JExp: 0
	AttackRange: 1
	Attack: [4, 3]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 2
		Vit: 1
		Int: 1
		Dex: 4
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Fluff: 2000
		Feather: 250
		Club_: 80
		Azure_Jewel: 2
		Green_Herb: 350
		Clover: 500
		Club: 200
	}
},
{
	Id: 1185
	SpriteName: "WHISPER_"
	Name: "Whisper"
	Lv: 34
	Hp: 1796
	Sp: 1
	Exp: 483
	JExp: 737
	AttackRange: 1
	Attack: [198, 41]
	Def: 0
	Mdef: 45
	Stats: {
		Str: 1
		Agi: 51
		Vit: 14
		Int: 0
		Dex: 60
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Undead"
	Element: ("Ele_Ghost", 1)
	MoveSpeed: 150
	AttackDelay: 1960
	AttackMotion: 960
	DamageMotion: 504
	Drops: {
		Sparkling_Dust: 10
		Transparent_Cloth: 100
		Silver_Robe_: 1
	}
},
{
	Id: 1186
	SpriteName: "WHISPER_BOSS"
	Name: "Giant Whisper"
	Lv: 66
	Hp: 2570
	Sp: 0
	Exp: 662
	JExp: 710
	AttackRange: 1
	Attack: [296, 59]
	Def: 94
	Mdef: 45
	Stats: {
		Str: 40
		Agi: 79
		Vit: 44
		Int: 51
		Dex: 74
		Luk: 31
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 2536
	AttackMotion: 1536
	DamageMotion: 672
	Drops: {
		Sparkling_Dust: 150
		Transparent_Cloth: 5335
		Spirit_Chain: 1
		Silver_Robe_: 10
		Whisper_Boss_Card: 1
	}
},
{
	Id: 1188
	SpriteName: "BON_GUN"
	Name: "Bongun"
	Lv: 59
	Hp: 2510
	Sp: 1
	Exp: 558
	JExp: 597
	AttackRange: 1
	Attack: [198, 29]
	Def: 88
	Mdef: 5
	Stats: {
		Str: 55
		Agi: 24
		Vit: 24
		Int: 5
		Dex: 37
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1720
	AttackMotion: 500
	DamageMotion: 420
	Drops: {
		Short_Daenggie: 5500
		Old_Portrait: 40
		Worn_Out_Scroll: 60
		Bongun_Hat: 1
		Amulet: 15
		Yellow_Herb: 1000
		Yellow_Herb: 1250
		Bon_Gun_Card: 1
	}
},
{
	Id: 1189
	SpriteName: "ORC_ARCHER"
	Name: "Orc Archer"
	Lv: 78
	Hp: 4835
	Sp: 1
	Exp: 1014
	JExp: 1161
	AttackRange: 9
	Attack: [286, 43]
	Def: 67
	Mdef: 31
	Stats: {
		Str: 55
		Agi: 32
		Vit: 24
		Int: 30
		Dex: 119
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1960
	AttackMotion: 620
	DamageMotion: 480
	Drops: {
		Sharpened_Cuspid: 4656
		Steel_Arrow: 1000
		Stone_Arrow: 2500
		Arrow_Of_Wind: 2500
		Orc_Archer_Bow: 2
		Red_Herb: 1400
		White_Herb: 900
		Orc_Archer_Card: 1
	}
},
{
	Id: 1190
	SpriteName: "ORC_LORD"
	Name: "Orc Lord"
	Lv: 55
	Hp: 552000
	Sp: 1
	Exp: 156240
	JExp: 122760
	AttackRange: 1
	Attack: [780, 648]
	Def: 256
	Mdef: 92
	Stats: {
		Str: 95
		Agi: 95
		Vit: 103
		Int: 96
		Dex: 155
		Luk: 85
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1248
	AttackMotion: 500
	DamageMotion: 360
	DamageTakenRate: 10
	MvpExp: 31102
	MvpDrops: {
		Voucher_Of_Orcish_Hero: 5500
		Old_Violet_Box: 2000
	}
	Drops: {
		Brood_Axe: 400
		Ring_: 400
		Loard_Circlet: 400
		Doom_Slayer_: 400
		Old_Violet_Box: 1000
		Elunium: 4268
		Erde: 3100
		Orc_Load_Card: 1
	}
},
{
	Id: 1191
	SpriteName: "MIMIC"
	Name: "Mimic"
	Lv: 56
	Hp: 1939
	Sp: 1
	Exp: 510
	JExp: 548
	AttackRange: 1
	Attack: [232, 22]
	Def: 63
	Mdef: 15
	Stats: {
		Str: 49
		Agi: 120
		Vit: 20
		Int: 15
		Dex: 109
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 972
	AttackMotion: 500
	DamageMotion: 288
	Drops: {
		Old_Violet_Box: 5
		Old_Blue_Box: 45
		Booby_Trap: 1200
		Spectacles: 3000
		Light_Granule: 1000
		Rosary_: 1
		Elunium_Stone: 270
		Mimic_Card: 1
	}
},
{
	Id: 1192
	SpriteName: "WRAITH"
	Name: "Wraith"
	Lv: 77
	Hp: 5168
	Sp: 1
	Exp: 1308
	JExp: 1191
	AttackRange: 1
	Attack: [369, 61]
	Def: 80
	Mdef: 40
	Stats: {
		Str: 62
		Agi: 26
		Vit: 30
		Int: 55
		Dex: 91
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1816
	AttackMotion: 576
	DamageMotion: 240
	Drops: {
		Transparent_Cloth: 5820
		Wedding_Veil: 10
		Manteau_: 2
		Red_Gemstone: 650
		Wing_Of_Butterfly: 1300
		Manteau: 10
		Crystal_Jewel_: 5
		Wraith_Card: 1
	}
},
{
	Id: 1193
	SpriteName: "ALARM"
	Name: "Alarm"
	Lv: 88
	Hp: 5562
	Sp: 1
	Exp: 1366
	JExp: 1398
	AttackRange: 1
	Attack: [319, 48]
	Def: 106
	Mdef: 53
	Stats: {
		Str: 70
		Agi: 72
		Vit: 40
		Int: 25
		Dex: 66
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1020
	AttackMotion: 500
	DamageMotion: 768
	Drops: {
		Needle_Of_Alarm: 5335
		Clip: 1
		Skull: 1500
		Spectacles: 1300
		Oridecon: 105
		Key_Of_Clock_Tower: 20
		Zargon: 1500
		Alarm_Card: 1
	}
},
{
	Id: 1194
	SpriteName: "ARCLOUSE"
	Name: "Arclouse"
	JName: "Arclouze"
	Lv: 107
	Hp: 10020
	Sp: 1
	Exp: 2212
	JExp: 2607
	AttackRange: 1
	Attack: [350, 40]
	Def: 101
	Mdef: 36
	Stats: {
		Str: 60
		Agi: 73
		Vit: 45
		Int: 35
		Dex: 168
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 960
	AttackMotion: 500
	DamageMotion: 480
	Drops: {
		Round_Shell: 3500
		Sticky_Mucus: 3000
		Solid_Shell: 800
		Zargon: 450
		Red_Gemstone: 300
		Great_Nature: 20
		Zargon: 2500
		Arclouse_Card: 1
	}
},
{
	Id: 1195
	SpriteName: "RIDEWORD"
	Name: "Rideword"
	Lv: 74
	Hp: 3222
	Sp: 1
	Exp: 890
	JExp: 1212
	AttackRange: 1
	Attack: [387, 22]
	Def: 61
	Mdef: 38
	Stats: {
		Str: 67
		Agi: 53
		Vit: 32
		Int: 44
		Dex: 125
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 864
	AttackMotion: 500
	DamageMotion: 192
	Drops: {
		Worn_Out_Page: 4850
		Book_Of_Billows: 4
		Book_Of_Mother_Earth: 4
		Book_Of_Blazing_Sun: 2
		Book_Of_Gust_Of_Wind: 2
		Bookclip_In_Memory: 300
		Old_Magic_Book: 20
		Rideword_Card: 1
	}
},
{
	Id: 1196
	SpriteName: "SKEL_PRISONER"
	Name: "Skeleton Prisoner"
	Lv: 91
	Hp: 9194
	Sp: 1
	Exp: 1878
	JExp: 1763
	AttackRange: 1
	Attack: [606, 55]
	Def: 95
	Mdef: 41
	Stats: {
		Str: 84
		Agi: 35
		Vit: 60
		Int: 20
		Dex: 85
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 1848
	AttackMotion: 500
	DamageMotion: 576
	Drops: {
		Manacles: 3500
		Spoon_Stub: 100
		Formal_Suit: 1
		Red_Gemstone: 600
		Rotten_Bandage: 3500
		Cuffs: 35
		Mementos: 1500
		Skel_Prisoner_Card: 1
	}
},
{
	Id: 1197
	SpriteName: "ZOMBIE_PRISONER"
	Name: "Zombie Prisoner"
	Lv: 89
	Hp: 8045
	Sp: 1
	Exp: 1604
	JExp: 1647
	AttackRange: 1
	Attack: [392, 60]
	Def: 89
	Mdef: 28
	Stats: {
		Str: 87
		Agi: 39
		Vit: 58
		Int: 5
		Dex: 82
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 1768
	AttackMotion: 500
	DamageMotion: 192
	Drops: {
		Worn_Out_Prison_Uniform: 3500
		Spoon_Stub: 105
		Iron_Cane: 1
		Red_Gemstone: 600
		Rotten_Bandage: 3500
		Cuffs: 39
		Elunium: 112
		Zombie_Prisoner_Card: 1
	}
},
{
	Id: 1198
	SpriteName: "DARK_PRIEST"
	Name: "Dark Priest"
	Lv: 98
	Hp: 12090
	Sp: 0
	Exp: 2916
	JExp: 1667
	AttackRange: 2
	Attack: [462, 259]
	Def: 56
	Mdef: 30
	Stats: {
		Str: 5
		Agi: 60
		Vit: 41
		Int: 89
		Dex: 94
		Luk: 42
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		Boss: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 864
	AttackMotion: 1252
	DamageMotion: 476
	Drops: {
		Book_Of_The_Apocalypse: 5
		Rosary: 30
		Blue_Potion: 100
		Red_Gemstone: 450
		Sacred_Marks: 1
		Glittering_Clothes: 5
		Skull: 3000
		Dark_Priest_Card: 1
	}
},
{
	Id: 1199
	SpriteName: "PUNK"
	Name: "Punk"
	Lv: 82
	Hp: 3869
	Sp: 1
	Exp: 1068
	JExp: 1094
	AttackRange: 1
	Attack: [293, 54]
	Def: 68
	Mdef: 55
	Stats: {
		Str: 67
		Agi: 39
		Vit: 30
		Int: 35
		Dex: 95
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1500
	AttackMotion: 500
	DamageMotion: 1000
	Drops: {
		Mould_Powder: 5335
		Yellow_Gemstone: 800
		Pacifier: 100
		Starsand_Of_Witch: 1000
		Moth_Dust: 3000
		Wing_Of_Fly: 1100
		Hood_: 15
		Punk_Card: 1
	}
},
{
	Id: 1200
	SpriteName: "ZHERLTHSH"
	Name: "Zherlthsh"
	JName: "Zealotus"
	Lv: 105
	Hp: 61350
	Sp: 1
	Exp: 9332
	JExp: 6458
	AttackRange: 1
	Attack: [993, 250]
	Def: 91
	Mdef: 99
	Stats: {
		Str: 88
		Agi: 61
		Vit: 51
		Int: 62
		Dex: 136
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 800
	AttackMotion: 2112
	DamageMotion: 768
	Drops: {
		Executioners_Mitten: 5
		Black_Butterfly_Mask: 10
		Rose_Quartz: 1500
		Tights_: 8
		Earring_: 1
		Queens_Whip: 100
		Masquerade: 3
		Zherlthsh_Card: 1
	}
},
{
	Id: 1201
	SpriteName: "RYBIO"
	Name: "Rybio"
	Lv: 98
	Hp: 8700
	Sp: 1
	Exp: 1890
	JExp: 1942
	AttackRange: 1
	Attack: [720, 76]
	Def: 109
	Mdef: 30
	Stats: {
		Str: 96
		Agi: 52
		Vit: 61
		Int: 30
		Dex: 88
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1790
	AttackMotion: 1440
	DamageMotion: 540
	Drops: {
		Thin_N_Long_Tongue: 3880
		Executioners_Mitten: 3
		White_Herb: 1800
		Oil_Bottle: 300
		Frozen_Heart: 10
		Oridecon: 100
		Izidor: 30
		Rybio_Card: 1
	}
},
{
	Id: 1202
	SpriteName: "PHENDARK"
	Name: "Phendark"
	Lv: 102
	Hp: 11000
	Sp: 1
	Exp: 2388
	JExp: 1882
	AttackRange: 2
	Attack: [872, 75]
	Def: 440
	Mdef: 50
	Stats: {
		Str: 111
		Agi: 65
		Vit: 71
		Int: 20
		Dex: 109
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 1744
	AttackMotion: 1344
	DamageMotion: 600
	Drops: {
		Thin_N_Long_Tongue: 3880
		Executioners_Mitten: 4
		White_Herb: 1800
		Oridecon: 150
		Electric_Wire: 100
		Oil_Bottle: 500
		Phendark_Card: 1
	}
},
{
	Id: 1203
	SpriteName: "MYSTELTAINN"
	Name: "Mysteltainn"
	Lv: 130
	Hp: 70000
	Sp: 1
	Exp: 10294
	JExp: 4987
	AttackRange: 2
	Attack: [1079, 567]
	Def: 73
	Mdef: 61
	Stats: {
		Str: 102
		Agi: 139
		Vit: 62
		Int: 65
		Dex: 182
		Luk: 65
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1152
	AttackMotion: 500
	DamageMotion: 240
	Drops: {
		Lokis_Whispers: 1
		Biotite: 1500
		Slayer_: 70
		Bastard_Sword_: 40
		Claymore: 2
		Runstone_Mystic: 300
		Oridecon: 243
		Mysteltainn_Card: 1
	}
},
{
	Id: 1204
	SpriteName: "TIRFING"
	Name: "Tirfing"
	JName: "Ogretooth"
	Lv: 114
	Hp: 59000
	Sp: 1
	Exp: 6948
	JExp: 5009
	AttackRange: 1
	Attack: [948, 411]
	Def: 87
	Mdef: 69
	Stats: {
		Str: 105
		Agi: 105
		Vit: 75
		Int: 73
		Dex: 151
		Luk: 65
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 816
	AttackMotion: 500
	DamageMotion: 240
	Drops: {
		Old_Hilt: 1
		Silver_Knife_Of_Chaste: 50
		Muscovite: 1500
		Dagger_: 70
		Stiletto_: 40
		Steel: 120
		Oridecon: 189
		Tirfing_Card: 1
	}
},
{
	Id: 1205
	SpriteName: "EXECUTIONER"
	Name: "Executioner"
	Lv: 101
	Hp: 40200
	Sp: 1
	Exp: 5832
	JExp: 3645
	AttackRange: 2
	Attack: [670, 359]
	Def: 97
	Mdef: 188
	Stats: {
		Str: 99
		Agi: 96
		Vit: 77
		Int: 78
		Dex: 95
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 768
	AttackMotion: 500
	DamageMotion: 384
	Drops: {
		Bloody_Edge: 5
		Phlogopite: 1500
		Lapier_: 80
		Scimiter_: 60
		Ring_Pommel_Saber_: 40
		Steel: 120
		Oridecon: 145
		Executioner_Card: 1
	}
},
{
	Id: 1206
	SpriteName: "ANOLIAN"
	Name: "Anolian"
	Lv: 109
	Hp: 15547
	Sp: 1
	Exp: 3516
	JExp: 2223
	AttackRange: 1
	Attack: [650, 110]
	Def: 61
	Mdef: 11
	Stats: {
		Str: 130
		Agi: 63
		Vit: 55
		Int: 66
		Dex: 70
		Luk: 48
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 190
	AttackDelay: 900
	AttackMotion: 500
	DamageMotion: 864
	Drops: {
		Anolian_Skin: 4850
		Crystal_Arrow: 2000
		Royal_Jelly: 5
		Red_Muffler: 10
		Carga_Mace: 1
		Brooch_: 1
		Oridecon: 134
		Anolian_Card: 1
	}
},
{
	Id: 1207
	SpriteName: "STING"
	Name: "Sting"
	Lv: 104
	Hp: 10143
	Sp: 1
	Exp: 2606
	JExp: 1629
	AttackRange: 1
	Attack: [794, 67]
	Def: 146
	Mdef: 34
	Stats: {
		Str: 108
		Agi: 49
		Vit: 68
		Int: 34
		Dex: 119
		Luk: 24
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 528
	AttackMotion: 500
	DamageMotion: 240
	Drops: {
		Mud_Lump: 4850
		Stone_Arrow: 1500
		Glove_: 1
		Coal: 130
		Great_Nature: 25
		Silk_Ribbon: 10
		Explosive_Powder: 800
		Sting_Card: 1
	}
},
{
	Id: 1208
	SpriteName: "WANDER_MAN"
	Name: "Wander Man"
	JName: "Wanderer"
	Lv: 120
	Hp: 19307
	Sp: 1
	Exp: 4406
	JExp: 3726
	AttackRange: 2
	Attack: [1695, 105]
	Def: 64
	Mdef: 5
	Stats: {
		Str: 118
		Agi: 92
		Vit: 36
		Int: 15
		Dex: 169
		Luk: 33
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 672
	AttackMotion: 500
	DamageMotion: 192
	Drops: {
		Skull: 4850
		Old_Card_Album: 1
		Hakujin_: 5
		Centimental_Leaf: 5
		Leaf_Of_Yggdrasil: 650
		Oridecon: 217
		Muramasa: 1
		Wander_Man_Card: 1
	}
},
{
	Id: 1209
	SpriteName: "CRAMP"
	Name: "Cramp"
	Lv: 82
	Hp: 3898
	Sp: 1
	Exp: 1068
	JExp: 1094
	AttackRange: 1
	Attack: [435, 48]
	Def: 88
	Mdef: 42
	Stats: {
		Str: 65
		Agi: 43
		Vit: 35
		Int: 25
		Dex: 82
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Poison", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1000
	AttackMotion: 500
	DamageMotion: 1000
	Drops: {
		Claw_Of_Rat: 4656
		Monsters_Feed: 1000
		Blue_Jewel: 80
		Glass_Bead: 110
		Lemon: 250
		Blue_Herb: 70
		Oridecon: 95
		Cramp_Card: 1
	}
},
/*{
	Id: 1210
	SpriteName: "FILAMENTOUS"
	Name: "Filamentous"
	Lv: 51
	Hp: 6088
	Sp: 0
	Exp: 1926
	JExp: 1353
	AttackRange: 1
	Attack: [425, 525]
	Def: 35
	Mdef: 10
	Stats: {
		Str: 1
		Agi: 35
		Vit: 30
		Int: 5
		Dex: 83
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1500
	AttackMotion: 500
	DamageMotion: 1000
	Drops: {
		Stiff_Horn: 4850
		Horn: 8000
		Solid_Shell: 3880
		Yellow_Live: 200
		Guisarme: 40
		Elunium_Stone: 18
		White_Herb: 1600
		Horn_Card: 1
	}
},*/
{
	Id: 1211
	SpriteName: "BRILIGHT"
	Name: "Brilight"
	Lv: 71
	Hp: 2772
	Sp: 1
	Exp: 812
	JExp: 831
	AttackRange: 1
	Attack: [337, 33]
	Def: 93
	Mdef: 25
	Stats: {
		Str: 51
		Agi: 19
		Vit: 38
		Int: 32
		Dex: 67
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1500
	AttackMotion: 500
	DamageMotion: 1000
	Drops: {
		Glitter_Shell: 5335
		Wind_Of_Verdure: 200
		Zargon: 1200
		Light_Granule: 100
		Elunium_Stone: 220
		Leaf_Of_Yggdrasil: 250
		White_Herb: 2600
		Brilight_Card: 1
	}
},
{
	Id: 1212
	SpriteName: "IRON_FIST"
	Name: "Iron Fist"
	Lv: 47
	Hp: 4221
	Sp: 0
	Exp: 1292
	JExp: 1368
	AttackRange: 1
	Attack: [430, 160]
	Def: 40
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 17
		Vit: 15
		Int: 10
		Dex: 73
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1500
	AttackMotion: 500
	DamageMotion: 1000
	Drops: {
		Tail_Of_Steel_Scorpion: 5335
		Elunium_Stone: 229
		Elunium_Stone: 22
		Iron_Ore: 750
		Steel: 180
		Iron: 300
		Iron_Fist_Card: 1
	}
},
{
	Id: 1213
	SpriteName: "HIGH_ORC"
	Name: "High Orc"
	Lv: 81
	Hp: 4193
	Sp: 1
	Exp: 1208
	JExp: 1158
	AttackRange: 1
	Attack: [428, 50]
	Def: 101
	Mdef: 45
	Stats: {
		Str: 75
		Agi: 16
		Vit: 40
		Int: 31
		Dex: 83
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1500
	AttackMotion: 500
	DamageMotion: 1000
	Drops: {
		Ogre_Tooth: 2500
		Orcish_Axe: 10
		Steel: 90
		Orcish_Voucher: 7500
		Zargon: 1300
		Oridecon_Stone: 196
		Yellow_Herb: 900
		High_Orc_Card: 1
	}
},
{
	Id: 1214
	SpriteName: "CHOCO"
	Name: "Choco"
	Lv: 48
	Hp: 1080
	Sp: 1
	Exp: 369
	JExp: 414
	AttackRange: 1
	Attack: [120, 47]
	Def: 70
	Mdef: 30
	Stats: {
		Str: 40
		Agi: 45
		Vit: 32
		Int: 19
		Dex: 42
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1028
	AttackMotion: 528
	DamageMotion: 360
	Drops: {
		Claw_Of_Monkey: 5335
		Yoyo_Tail: 7000
		Elunium: 53
		Banana: 5000
		Tropical_Banana: 20
		Banana_Juice: 1000
		Yggdrasilberry: 25
		Choco_Card: 1
	}
},
{
	Id: 1215
	SpriteName: "STEM_WORM"
	Name: "Stem Worm"
	Lv: 84
	Hp: 4530
	Sp: 1
	Exp: 1188
	JExp: 1215
	AttackRange: 1
	Attack: [293, 41]
	Def: 73
	Mdef: 50
	Stats: {
		Str: 55
		Agi: 37
		Vit: 25
		Int: 47
		Dex: 84
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1956
	AttackMotion: 756
	DamageMotion: 528
	Drops: {
		Tough_Scalelike_Stem: 5335
		White_Herb: 1800
		Jump_Rope: 10
		Oridecon_Stone: 115
		Great_Nature: 5
		Glaive: 20
		Seed_Of_Yggdrasil: 45
		Stem_Worm_Card: 1
	}
},
{
	Id: 1216
	SpriteName: "PENOMENA"
	Name: "Penomena"
	Lv: 85
	Hp: 4589
	Sp: 1
	Exp: 1528
	JExp: 1556
	AttackRange: 7
	Attack: [481, 41]
	Def: 85
	Mdef: 32
	Stats: {
		Str: 76
		Agi: 38
		Vit: 35
		Int: 35
		Dex: 107
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 832
	AttackMotion: 500
	DamageMotion: 600
	Drops: {
		Coral_Reef: 4850
		Tentacle: 8000
		Sticky_Mucus: 7000
		Panacea: 200
		Violet_Jewel: 15
		Katar_Of_Raging_Blaze: 1
		Red_Gemstone: 550
		Penomena_Card: 1
	}
},
{
	Id: 1219
	SpriteName: "KNIGHT_OF_ABYSS"
	Name: "Knight of Abyss"
	JName: "Abysmal Knight"
	Lv: 122
	Hp: 23297
	Sp: 1
	Exp: 6212
	JExp: 4212
	AttackRange: 1
	Attack: [1734, 192]
	Def: 102
	Mdef: 50
	Stats: {
		Str: 121
		Agi: 55
		Vit: 68
		Int: 70
		Dex: 136
		Luk: 37
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1500
	AttackMotion: 500
	DamageMotion: 1000
	Drops: {
		Reins: 5335
		Blade_Lost_In_Darkness: 5
		Clothes_Of_The_Lord: 1
		Battle_Hook: 25
		Broad_Sword_: 1
		Elunium: 369
		Ebone_Armor: 10
		Knight_Of_Abyss_Card: 1
	}
},
/*{
	Id: 1220
	SpriteName: "M_DESERT_WOLF"
	Name: "Desert Wolf"
	Lv: 103
	Hp: 9447
	Sp: 1
	Exp: 349
	JExp: 218
	AttackRange: 1
	Attack: [254, 313]
	Def: 114
	Mdef: 47
	Stats: {
		Str: 93
		Agi: 69
		Vit: 63
		Int: 61
		Dex: 82
		Luk: 42
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1120
	AttackMotion: 420
	DamageMotion: 288
	Drops: {
		Katar_: 5
		Claw_Of_Desert_Wolf: 5500
		Mink_Coat: 1
		Meat: 1200
		Claw_Of_Wolves: 2000
		Oridecon_Stone: 53
		Desert_Wolf_Card: 1
	}
},
{
	Id: 1221
	SpriteName: "M_SAVAGE"
	Name: "Savage"
	Lv: 26
	Hp: 2092
	Sp: 0
	Exp: 321
	JExp: 203
	AttackRange: 1
	Attack: [146, 177]
	Def: 16
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 26
		Vit: 54
		Int: 10
		Dex: 37
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1960
	AttackMotion: 960
	DamageMotion: 384
	Drops: {
		Wild_Boars_Mane: 6000
		Grape: 150
		Animal_Blood: 3
		Eagle_Eyes: 2
		Anodyne: 15
		Elunium_Stone: 70
		Savage_Card: 1
	}
},
{
	Id: 1222
	SpriteName: "L_HIGH_ORC"
	Name: "High Orc"
	Lv: 52
	Hp: 6890
	Sp: 0
	Exp: 2128
	JExp: 1490
	AttackRange: 1
	Attack: [428, 533]
	Def: 15
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 46
		Vit: 55
		Int: 35
		Dex: 82
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1500
	AttackMotion: 500
	DamageMotion: 1000
	Drops: {
		Ogre_Tooth: 2500
		Orcish_Axe: 10
		Steel: 120
		Orcish_Voucher: 8000
		Zargon: 1600
		Oridecon_Stone: 196
		Yellow_Herb: 1100
		Orc_Warrior_Card: 1
	}
},
{
	Id: 1223
	SpriteName: "L_ORC"
	Name: "Orc"
	Lv: 24
	Hp: 1400
	Sp: 0
	Exp: 261
	JExp: 160
	AttackRange: 1
	Attack: [114, 136]
	Def: 10
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 24
		Vit: 48
		Int: 25
		Dex: 34
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1864
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Iron: 210
		Orcish_Voucher: 5500
		Oridecon_Stone: 40
		Cigar: 3
		Battle_Axe_: 10
		Orcish_Axe: 5
		Axe: 100
		Orc_Warrior_Card: 1
	}
},
{
	Id: 1224
	SpriteName: "L_POISON_SPORE"
	Name: "Poison Spore"
	Lv: 19
	Hp: 665
	Sp: 0
	Exp: 169
	JExp: 85
	AttackRange: 1
	Attack: [89, 101]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 19
		Vit: 25
		Int: 1
		Dex: 24
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 288
	Drops: {
		Mushroom_Spore: 8000
		Hat_: 20
		Green_Herb: 650
		Blue_Herb: 55
		Karvodailnirol: 35
		Poison_Spore_Card: 1
	}
},
{
	Id: 1225
	SpriteName: "L_CHOCO"
	Name: "Choco"
	Lv: 43
	Hp: 4278
	Sp: 0
	Exp: 1150
	JExp: 1150
	AttackRange: 1
	Attack: [315, 402]
	Def: 5
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 68
		Vit: 55
		Int: 45
		Dex: 65
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1500
	AttackMotion: 500
	DamageMotion: 1000
	Drops: {
		Claw_Of_Monkey: 5335
		Yoyo_Tail: 7000
		Yellow_Herb: 1900
		Banana: 5000
		Mink_Coat: 2
		Banana_Juice: 1000
		Yggdrasilberry: 25
		Yoyo_Card: 1
	}
},
{
	Id: 1226
	SpriteName: "L_KOBOLD"
	Name: "Kobold"
	Lv: 36
	Hp: 3893
	Sp: 0
	Exp: 898
	JExp: 568
	AttackRange: 1
	Attack: [265, 318]
	Def: 15
	Mdef: 10
	Stats: {
		Str: 1
		Agi: 90
		Vit: 36
		Int: 30
		Dex: 52
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1028
	AttackMotion: 528
	DamageMotion: 360
	Drops: {
		Steel: 90
		Cobold_Hair: 5820
		Zargon: 750
		Elunium: 25
		Gladius_: 2
		Buckler_: 5
		Kobold_Card: 1
	}
},
{
	Id: 1227
	SpriteName: "L_GOBLIN"
	Name: "Goblin"
	Lv: 25
	Hp: 1176
	Sp: 0
	Exp: 282
	JExp: 171
	AttackRange: 1
	Attack: [118, 140]
	Def: 10
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 63
		Vit: 25
		Int: 20
		Dex: 38
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1120
	AttackMotion: 620
	DamageMotion: 240
	Drops: {
		Iron: 270
		Scell: 1200
		Oridecon_Stone: 43
		Goblini_Mask: 3
		Dirk_: 10
		Buckler_: 5
		Red_Herb: 800
		Goblin_Card: 1
	}
},
{
	Id: 1228
	SpriteName: "L_PHEN"
	Name: "Phen"
	Lv: 26
	Hp: 3347
	Sp: 0
	Exp: 357
	JExp: 226
	AttackRange: 1
	Attack: [138, 150]
	Def: 0
	Mdef: 15
	Stats: {
		Str: 1
		Agi: 26
		Vit: 26
		Int: 1
		Dex: 88
		Luk: 75
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 2544
	AttackMotion: 1344
	DamageMotion: 1152
	Drops: {
		Fish_Tail: 6000
		Sharp_Scale: 2300
		Skyblue_Jewel: 8
		Meat: 1100
		Fin: 550
		Oridecon_Stone: 25
		Phen_Card: 1
	}
},
{
	Id: 1229
	SpriteName: "META_FABRE"
	Name: "Fabre"
	Lv: 2
	Hp: 63
	Sp: 1
	Exp: 3
	JExp: 2
	AttackRange: 1
	Attack: [8, 11]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 2
		Vit: 4
		Int: 0
		Dex: 7
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 400
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Fluff: 6500
		Feather: 600
		Club_: 80
		Azure_Jewel: 8
		Green_Herb: 750
		Clover: 1500
		Club: 200
		Fabre_Card: 1
	}
},
{
	Id: 1230
	SpriteName: "META_PUPA"
	Name: "Pupa"
	Lv: 2
	Hp: 427
	Sp: 1
	Exp: 2
	JExp: 4
	AttackRange: 0
	Attack: [1, 2]
	Def: 32
	Mdef: 20
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 1
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		Detector: true
	}
	MoveSpeed: 1000
	AttackDelay: 1001
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		Phracon: 300
		Chrysalis: 6000
		Sticky_Mucus: 700
		Guard_: 2
		Shell: 1300
		Sticky_Mucus: 700
		Iron_Ore: 300
		Pupa_Card: 1
	}
},
{
	Id: 1231
	SpriteName: "META_CREAMY"
	Name: "Creamy"
	Lv: 16
	Hp: 595
	Sp: 1
	Exp: 86
	JExp: 58
	AttackRange: 1
	Attack: [53, 64]
	Def: 0
	Mdef: 30
	Stats: {
		Str: 1
		Agi: 40
		Vit: 16
		Int: 15
		Dex: 16
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1220
	AttackMotion: 720
	DamageMotion: 288
	Drops: {
		Powder_Of_Butterfly: 6000
		Silk_Robe_: 10
		Honey: 180
		Wing_Of_Butterfly: 200
		Fancy_Flower: 4
		Flower: 800
		Creamy_Card: 1
	}
},
{
	Id: 1232
	SpriteName: "META_PECOPECO_EGG"
	Name: "Peco Peco Egg"
	Lv: 3
	Hp: 420
	Sp: 1
	Exp: 4
	JExp: 4
	AttackRange: 0
	Attack: [1, 2]
	Def: 32
	Mdef: 20
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 1
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	MoveSpeed: 1000
	AttackDelay: 1001
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		Phracon: 120
		Shell: 1500
		Guard_: 2
		Red_Herb: 450
		Red_Herb: 450
		Empty_Bottle: 2000
		White_Platter: 15
		Pecopeco_Egg_Card: 1
	}
},
{
	Id: 1233
	SpriteName: "CONCEIVE_PECOPECO"
	Name: "Peco Peco"
	Lv: 19
	Hp: 531
	Sp: 0
	Exp: 159
	JExp: 36
	AttackRange: 1
	Attack: [50, 64]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 13
		Vit: 13
		Int: 25
		Dex: 27
		Luk: 9
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1564
	AttackMotion: 864
	DamageMotion: 576
	Drops: {
		Bill_Of_Birds: 6000
		Sandals_: 20
		Yellow_Herb: 55
		Red_Herb: 950
		Wand: 100
		Orange: 1000
		Pecopeco_Card: 1
	}
},
{
	Id: 1234
	SpriteName: "PROVOKE_YOYO"
	Name: "Yoyo"
	Lv: 19
	Hp: 879
	Sp: 1
	Exp: 122
	JExp: 77
	AttackRange: 1
	Attack: [71, 82]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 24
		Vit: 30
		Int: 35
		Dex: 32
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 1054
	AttackMotion: 54
	DamageMotion: 384
	Drops: {
		Yoyo_Tail: 6000
		Cacao: 500
		Yellow_Herb: 130
		Animals_Skin: 5500
		Monkey_Doll: 7
		Strawberry: 500
		Orange: 1000
		Yoyo_Card: 1
	}
},
{
	Id: 1235
	SpriteName: "SMOKING_ORC"
	Name: "Smoking Orc"
	Lv: 24
	Hp: 1400
	Sp: 1
	Exp: 235
	JExp: 144
	AttackRange: 1
	Attack: [114, 136]
	Def: 16
	Mdef: 20
	Stats: {
		Str: 1
		Agi: 24
		Vit: 48
		Int: 20
		Dex: 34
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1864
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Iron: 210
		Orcish_Voucher: 5500
		Oridecon_Stone: 40
		Cigar: 3
		Battle_Axe_: 10
		Orcish_Axe: 5
		Axe: 100
		Orc_Warrior_Card: 1
	}
},
{
	Id: 1236
	SpriteName: "META_ANT_EGG"
	Name: "Ant Egg"
	Lv: 4
	Hp: 420
	Sp: 1
	Exp: 5
	JExp: 4
	AttackRange: 0
	Attack: [1, 2]
	Def: 32
	Mdef: 20
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 1
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	MoveSpeed: 1000
	AttackDelay: 1001
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		Phracon: 135
		Shell: 2740
		Jellopy: 3000
		Sticky_Mucus: 750
		Empty_Bottle: 2000
		Iron_Ore: 220
		Andre_Egg_Card: 1
	}
},
{
	Id: 1237
	SpriteName: "META_ANDRE"
	Name: "Andre"
	Lv: 17
	Hp: 688
	Sp: 1
	Exp: 98
	JExp: 64
	AttackRange: 1
	Attack: [60, 71]
	Def: 16
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 17
		Vit: 24
		Int: 20
		Dex: 26
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 300
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 576
	Drops: {
		Worm_Peelings: 6000
		Garlet: 3000
		Sticky_Mucus: 1000
		Shell: 3000
		Sparkling_Dust: 6
		Iron_Ore: 350
		Elunium_Stone: 28
		Andre_Card: 1
	}
},
{
	Id: 1238
	SpriteName: "META_PIERE"
	Name: "Piere"
	Lv: 18
	Hp: 733
	Sp: 1
	Exp: 110
	JExp: 70
	AttackRange: 1
	Attack: [64, 75]
	Def: 24
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 18
		Vit: 26
		Int: 20
		Dex: 27
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 576
	Drops: {
		Worm_Peelings: 5700
		Garlet: 1100
		Sticky_Mucus: 600
		Wind_Of_Verdure: 15
		Sparkling_Dust: 5
		Iron_Ore: 400
		Elunium_Stone: 31
		Andre_Card: 1
	}
},
{
	Id: 1239
	SpriteName: "META_DENIRO"
	Name: "Deniro"
	Lv: 19
	Hp: 760
	Sp: 1
	Exp: 122
	JExp: 77
	AttackRange: 1
	Attack: [68, 79]
	Def: 24
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 19
		Vit: 30
		Int: 20
		Dex: 43
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 150
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 576
	Drops: {
		Worm_Peelings: 6000
		Garlet: 3000
		Sticky_Mucus: 1200
		Boody_Red: 45
		Sparkling_Dust: 8
		Iron_Ore: 450
		Elunium_Stone: 34
		Andre_Card: 1
	}
},
{
	Id: 1240
	SpriteName: "META_PICKY"
	Name: "Picky"
	Lv: 3
	Hp: 80
	Sp: 1
	Exp: 4
	JExp: 3
	AttackRange: 1
	Attack: [9, 12]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 3
		Vit: 3
		Int: 0
		Dex: 10
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 988
	AttackMotion: 288
	DamageMotion: 168
	Drops: {
		Feather_Of_Birds: 6500
		Feather: 850
		Cotton_Shirt_: 150
		Red_Herb: 650
		Milk: 350
		Yellow_Gemstone: 60
		Picky_Card: 1
	}
},
{
	Id: 1241
	SpriteName: "META_PICKY_"
	Name: "Picky"
	Lv: 4
	Hp: 83
	Sp: 1
	Exp: 5
	JExp: 4
	AttackRange: 1
	Attack: [8, 11]
	Def: 32
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 3
		Vit: 3
		Int: 0
		Dex: 11
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 988
	AttackMotion: 288
	DamageMotion: 168
	Drops: {
		Feather_Of_Birds: 6500
		Feather: 850
		Egg_Shell: 7
		Red_Herb: 750
		Milk: 350
		Yellow_Gemstone: 60
		Picky__Card: 1
	}
},*/
// Lutie (2.0)
{
	Id: 1242
	SpriteName: "MARIN"
	Name: "Marin"
	Lv: 37
	Hp: 987
	Sp: 1
	Exp: 282
	JExp: 317
	AttackRange: 1
	Attack: [69, 14]
	Def: 32
	Mdef: 8
	Stats: {
		Str: 24
		Agi: 5
		Vit: 10
		Int: 5
		Dex: 30
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Garlet: 3200
		Sticky_Mucus: 1500
		Cold_Scroll_2_1: 100
		Skyblue_Jewel: 40
		Blue_Herb: 75
		Candy: 350
		Poring_Hat: 1
		Marin_Card: 1
	}
},
{
	Id: 1243
	SpriteName: "SASQUATCH"
	Name: "Sasquatch"
	Lv: 72
	Hp: 3163
	Sp: 1
	Exp: 842
	JExp: 860
	AttackRange: 1
	Attack: [293, 30]
	Def: 101
	Mdef: 28
	Stats: {
		Str: 70
		Agi: 35
		Vit: 60
		Int: 10
		Dex: 71
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1260
	AttackMotion: 192
	DamageMotion: 192
	Drops: {
		Zargon: 750
		White_Herb: 800
		Feather: 1000
		Panda_Cap: 1
		Bears_Foot: 5000
		White_Jewel: 30
		Elunium_Stone: 90
		Sasquatch_Card: 1
	}
},
{
	Id: 1244
	SpriteName: "JAKK_XMAS"
	Name: "Christmas Jakk"
	Lv: 63
	Hp: 2054
	Sp: 1
	Exp: 1052
	JExp: 619
	AttackRange: 1
	Attack: [229, 37]
	Def: 90
	Mdef: 25
	Stats: {
		Str: 58
		Agi: 43
		Vit: 42
		Int: 25
		Dex: 61
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1180
	AttackMotion: 480
	DamageMotion: 648
	Drops: {
		Pumpkin_Head: 5335
		Zargon: 900
		Elunium: 31
		Tights_: 5
		Gift_Box: 20
		Packing_Paper: 1200
		Packing_Ribbon: 1200
		Jakk_Card: 1
	}
},
{
	Id: 1245
	SpriteName: "GOBLINE_XMAS"
	Name: "Christmas Goblin"
	Lv: 25
	Hp: 1176
	Sp: 1
	Exp: 254
	JExp: 154
	AttackRange: 1
	Attack: [118, 22]
	Def: 16
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 53
		Vit: 25
		Int: 20
		Dex: 38
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 100
	AttackDelay: 1120
	AttackMotion: 620
	DamageMotion: 240
	Drops: {
		Packing_Ribbon: 550
		Packing_Paper: 550
		Oridecon_Stone: 43
		Gift_Box: 10
		Dirk_: 10
		Buckler_: 5
		Santas_Hat: 10
		Goblin_Card: 1
	}
},
{
	Id: 1246
	SpriteName: "COOKIE_XMAS"
	Name: "Christmas Cookie"
	Lv: 37
	Hp: 733
	Sp: 1
	Exp: 282
	JExp: 317
	AttackRange: 1
	Attack: [70, 35]
	Def: 48
	Mdef: 36
	Stats: {
		Str: 21
		Agi: 16
		Vit: 30
		Int: 20
		Dex: 25
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_DemiHuman"
	Element: ("Ele_Holy", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1248
	AttackMotion: 1248
	DamageMotion: 240
	Drops: {
		Well_Baked_Cookie: 1500
		Scarlet_Jewel: 45
		Zargon: 200
		Hood_: 25
		Gift_Box: 5
		Cold_Scroll_1_3: 100
		Red_Herb: 1700
		Cookie_XMAS_Card: 1
	}
},
{
	Id: 1247
	SpriteName: "ANTONIO"
	Name: "Antonio"
	Lv: 10
	Hp: 10
	Sp: 1
	Exp: 1
	JExp: 2
	AttackRange: 1
	Attack: [13, 8]
	Def: 160
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 50
		Dex: 100
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		Plant: true
		CanAttack: true
	}
	MoveSpeed: 100
	AttackDelay: 720
	AttackMotion: 720
	DamageMotion: 432
	Drops: {
		Red_Socks_With_Holes: 10000
		Gift_Box: 2000
		Candy: 10000
		Fire_Cracker_Xmas: 10000
		Sweet_Candy_Striper: 2000
		Red_Bag: 2000
		Buche_De_Noel: 200
		Red_Bag: 2000
	}
},
{
	Id: 1248
	SpriteName: "CRUISER"
	Name: "Cruiser"
	Lv: 41
	Hp: 919
	Sp: 1
	Exp: 288
	JExp: 324
	AttackRange: 7
	Attack: [55, 20]
	Def: 20
	Mdef: 18
	Stats: {
		Str: 17
		Agi: 10
		Vit: 23
		Int: 15
		Dex: 34
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 1296
	AttackMotion: 1296
	DamageMotion: 432
	Drops: {
		Manacles: 900
		Holy_Bonnet: 2
		Iron: 320
		Rough_Wind: 5
		Scell: 3500
		Branch: 5
		Oridecon_Stone: 87
		Cruiser_Card: 1
	}
},
{
	Id: 1249
	SpriteName: "MYSTCASE"
	Name: "Myst Case"
	Lv: 39
	Hp: 879
	Sp: 1
	Exp: 288
	JExp: 324
	AttackRange: 1
	Attack: [68, 21]
	Def: 50
	Mdef: 11
	Stats: {
		Str: 26
		Agi: 19
		Vit: 40
		Int: 35
		Dex: 31
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1248
	AttackMotion: 1248
	DamageMotion: 432
	Drops: {
		Candy_Striper: 90
		Light_Granule: 10
		Old_Blue_Box: 20
		Piece_Of_Cake: 800
		Scarlet_Jewel: 150
		Crystal_Jewel_: 5
		Candy: 340
		Mystcase_Card: 1
	}
},
{
	Id: 1250
	SpriteName: "CHEPET"
	Name: "Chepet"
	Lv: 42
	Hp: 4950
	Sp: 0
	Exp: 1315
	JExp: 1854
	AttackRange: 1
	Attack: [79, 33]
	Def: 55
	Mdef: 25
	Stats: {
		Str: 32
		Agi: 35
		Vit: 35
		Int: 21
		Dex: 32
		Luk: 23
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 672
	AttackMotion: 672
	DamageMotion: 288
	Drops: {
		Matchstick: 2500
		Zargon: 750
		Apple: 5500
		Unripe_Apple: 40
		Red_Muffler: 5
		Yellow_Herb: 1300
		Ragamuffin_Cape: 5
		Chepet_Card: 1
	}
},
{
	Id: 1251
	SpriteName: "KNIGHT_OF_WINDSTORM"
	Name: "Knight of Windstorm"
	JName: "Stormy Knight"
	Lv: 92
	Hp: 630500
	Sp: 1
	Exp: 496560
	JExp: 302200
	AttackRange: 2
	Attack: [3480, 1433]
	Def: 306
	Mdef: 166
	Stats: {
		Str: 126
		Agi: 165
		Vit: 132
		Int: 104
		Dex: 205
		Luk: 79
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Wind", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 468
	AttackMotion: 468
	DamageMotion: 288
	DamageTakenRate: 10
	MvpExp: 206900
	MvpDrops: {
		Skyblue_Jewel: 4500
		Boots_: 500
		Mistic_Frozen: 3000
	}
	Drops: {
		Zephyrus: 150
		Old_Blue_Box: 3000
		Old_Violet_Box: 4000
		Ring_: 200
		Manteau_: 500
		Elunium: 4559
		Loard_Circlet: 1
		Knight_Windstorm_Card: 1
	}
},
{
	Id: 1252
	SpriteName: "GARM"
	Name: "Garm"
	JName: "Hatii"
	Lv: 98
	Hp: 1275500
	Sp: 1
	Exp: 910656
	JExp: 613800
	AttackRange: 3
	Attack: [2421, 1733]
	Def: 173
	Mdef: 103
	Stats: {
		Str: 122
		Agi: 153
		Vit: 135
		Int: 116
		Dex: 175
		Luk: 72
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Water", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 608
	AttackMotion: 408
	DamageMotion: 336
	DamageTakenRate: 10
	MvpExp: 379440
	MvpDrops: {
		Fang_Of_Garm: 1000
		Old_Blue_Box: 3000
		Mistic_Frozen: 3000
	}
	Drops: {
		Fang_Of_Garm: 5500
		Ice_Falchon: 150
		Katar_Of_Cold_Icicle: 500
		Claw_Of_Garm: 500
		Elunium: 3977
		Oridecon: 2900
		Garm_Card: 1
	}
},
// Comodo (3.0)
{
	Id: 1253
	SpriteName: "GARGOYLE"
	Name: "Gargoyle"
	Lv: 100
	Hp: 8772
	Sp: 1
	Exp: 2280
	JExp: 1425
	AttackRange: 9
	Attack: [498, 89]
	Def: 98
	Mdef: 43
	Stats: {
		Str: 100
		Agi: 61
		Vit: 60
		Int: 57
		Dex: 120
		Luk: 70
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1020
	AttackMotion: 720
	DamageMotion: 384
	Drops: {
		Zargon: 3880
		Petite_DiablOfs_Wing: 500
		Elven_Bow: 6
		Thimble_Of_Archer: 1
		Silence_Arrow: 2000
		Elunium_Stone: 238
		Gargoyle_Card: 1
	}
},
{
	Id: 1254
	SpriteName: "RAGGLER"
	Name: "Raggler"
	Lv: 48
	Hp: 1148
	Sp: 1
	Exp: 369
	JExp: 414
	AttackRange: 1
	Attack: [72, 39]
	Def: 56
	Mdef: 10
	Stats: {
		Str: 30
		Agi: 42
		Vit: 38
		Int: 15
		Dex: 54
		Luk: 27
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1000
	AttackMotion: 900
	DamageMotion: 384
	Drops: {
		Cyfar: 3000
		Feather_Of_Birds: 5000
		Center_Potion: 200
		Grape: 200
		Wind_Of_Verdure: 90
		Goggle_: 7
		Oridecon_Stone: 32
		Raggler_Card: 1
	}
},
{
	Id: 1255
	SpriteName: "NERAID"
	Name: "Neraid"
	JName: "Nereid"
	Lv: 98
	Hp: 9550
	Sp: 1
	Exp: 1890
	JExp: 1181
	AttackRange: 1
	Attack: [255, 71]
	Def: 100
	Mdef: 37
	Stats: {
		Str: 97
		Agi: 45
		Vit: 60
		Int: 30
		Dex: 83
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 776
	AttackMotion: 576
	DamageMotion: 288
	Drops: {
		Earthworm_Peeling: 5100
		Cyfar: 1000
		Blue_Herb: 230
		Whip_Of_Ice_Piece: 10
		Grape: 250
		Elunium_Stone: 180
		Elunium: 37
		Neraid_Card: 1
	}
},
{
	Id: 1256
	SpriteName: "PEST"
	Name: "Pest"
	Lv: 89
	Hp: 5747
	Sp: 1
	Exp: 1474
	JExp: 1509
	AttackRange: 1
	Attack: [334, 48]
	Def: 55
	Mdef: 33
	Stats: {
		Str: 73
		Agi: 77
		Vit: 48
		Int: 15
		Dex: 106
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 700
	AttackMotion: 648
	DamageMotion: 480
	Drops: {
		Earthworm_Peeling: 5500
		Brigan: 200
		Animal_Blood: 10
		Anodyne: 100
		Red_Gemstone: 250
		Oridecon_Stone: 115
		Pest_Card: 1
	}
},
{
	Id: 1257
	SpriteName: "INJUSTICE"
	Name: "Injustice"
	Lv: 95
	Hp: 7952
	Sp: 1
	Exp: 1888
	JExp: 1997
	AttackRange: 1
	Attack: [447, 116]
	Def: 76
	Mdef: 31
	Stats: {
		Str: 77
		Agi: 59
		Vit: 58
		Int: 65
		Dex: 88
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 770
	AttackMotion: 720
	DamageMotion: 336
	Drops: {
		Steel: 300
		Brigan: 5335
		Cyfar: 3500
		Padded_Armor_: 5
		Plate_Armor: 2
		Prohibition_Red_Candle: 2
		Jamadhar_: 2
		Injustice_Card: 1
	}
},
{
	Id: 1258
	SpriteName: "GOBLIN_ARCHER"
	Name: "Goblin Archer"
	Lv: 55
	Hp: 1575
	Sp: 1
	Exp: 472
	JExp: 507
	AttackRange: 9
	Attack: [100, 24]
	Def: 69
	Mdef: 0
	Stats: {
		Str: 40
		Agi: 34
		Vit: 20
		Int: 15
		Dex: 53
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_DemiHuman"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1172
	AttackMotion: 672
	DamageMotion: 420
	Drops: {
		Goblini_Mask: 3
		Iron: 250
		Scell: 1000
		Oridecon_Arrow: 3000
		Red_Herb: 600
		Composite_Bow_: 25
		Grape: 300
		Goblin_Archer_Card: 1
	}
},
{
	Id: 1259
	SpriteName: "GRYPHON"
	Name: "Gryphon"
	Lv: 105
	Hp: 60720
	Sp: 1
	Exp: 11292
	JExp: 5808
	AttackRange: 1
	Attack: [1432, 103]
	Def: 113
	Mdef: 72
	Stats: {
		Str: 101
		Agi: 133
		Vit: 66
		Int: 70
		Dex: 164
		Luk: 54
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 704
	AttackMotion: 504
	DamageMotion: 432
	Drops: {
		Talon_Of_Griffin: 2500
		Brigan: 5335
		Soft_Feather: 120
		Guisarme_: 1500
		Pole_Axe: 1
		Oridecon: 185
		Rough_Wind: 150
		Gryphon_Card: 1
	}
},
{
	Id: 1260
	SpriteName: "DARK_FRAME"
	Name: "Dark Frame"
	Lv: 76
	Hp: 3520
	Sp: 1
	Exp: 1090
	JExp: 1115
	AttackRange: 1
	Attack: [350, 30]
	Def: 67
	Mdef: 27
	Stats: {
		Str: 69
		Agi: 37
		Vit: 36
		Int: 10
		Dex: 64
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 920
	AttackMotion: 720
	DamageMotion: 200
	Drops: {
		Brigan: 4656
		Red_Frame: 1000
		Manteau: 30
		Star_Crumb: 80
		Crystal_Mirror: 3
		Dark_Frame_Card: 1
	}
},
{
	Id: 1261
	SpriteName: "WILD_ROSE"
	Name: "Wild Rose"
	Lv: 70
	Hp: 2682
	Sp: 1
	Exp: 756
	JExp: 1110
	AttackRange: 1
	Attack: [147, 45]
	Def: 75
	Mdef: 15
	Stats: {
		Str: 44
		Agi: 87
		Vit: 31
		Int: 35
		Dex: 69
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 100
	AttackDelay: 964
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Cyfar: 5335
		Witherless_Rose: 50
		Fruit_Shell: 120
		Thief_Clothes_: 1
		Rotten_Fish: 35
		Monsters_Feed: 600
		Big_Sis_Ribbon: 2
		Wild_Rose_Card: 1
	}
},
{
	Id: 1262
	SpriteName: "MUTANT_DRAGON"
	Name: "Mutant Dragon"
	JName: "Mutant Dragonoid"
	Lv: 65
	Hp: 50706
	Sp: 1
	Exp: 3826
	JExp: 12830
	AttackRange: 4
	Attack: [1176, 534]
	Def: 130
	Mdef: 20
	Stats: {
		Str: 75
		Agi: 35
		Vit: 30
		Int: 68
		Dex: 108
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1280
	AttackMotion: 1080
	DamageMotion: 240
	Drops: {
		Brigan: 4850
		Dragon_Canine: 500
		Dragon_Scale: 500
		Rotten_Bandage: 500
		Legacy_Of_Dragon: 100
		Pyroxene: 1500
		Dragon_Breath: 50
		Mutant_Dragon_Card: 1
	}
},
{
	Id: 1263
	SpriteName: "WIND_GHOST"
	Name: "Wind Ghost"
	Lv: 80
	Hp: 4008
	Sp: 1
	Exp: 1010
	JExp: 1334
	AttackRange: 2
	Attack: [182, 95]
	Def: 64
	Mdef: 51
	Stats: {
		Str: 62
		Agi: 27
		Vit: 25
		Int: 55
		Dex: 102
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1056
	AttackMotion: 1056
	DamageMotion: 336
	Drops: {
		Zargon: 4559
		Skel_Bone: 6000
		Skull: 500
		Wind_Scroll_1_5: 100
		Arc_Wand_: 8
		Rough_Wind: 100
		Bone_Wand: 1
		Wind_Ghost_Card: 1
	}
},
{
	Id: 1264
	SpriteName: "MERMAN"
	Name: "Merman"
	Lv: 60
	Hp: 2940
	Sp: 1
	Exp: 646
	JExp: 692
	AttackRange: 1
	Attack: [131, 32]
	Def: 62
	Mdef: 8
	Stats: {
		Str: 45
		Agi: 29
		Vit: 30
		Int: 19
		Dex: 55
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 220
	AttackDelay: 916
	AttackMotion: 816
	DamageMotion: 336
	Drops: {
		Lip_Of_Ancient_Fish: 1300
		Plate_Armor_: 2
		Lemon: 400
		Skyblue_Jewel: 40
		Mistic_Frozen: 35
		Trident: 3
		Oridecon_Stone: 203
		Merman_Card: 1
	}
},
{
	Id: 1265
	SpriteName: "COOKIE"
	Name: "Cookie"
	Lv: 35
	Hp: 666
	Sp: 1
	Exp: 234
	JExp: 264
	AttackRange: 1
	Attack: [59, 25]
	Def: 56
	Mdef: 28
	Stats: {
		Str: 15
		Agi: 23
		Vit: 35
		Int: 12
		Dex: 31
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 1036
	AttackMotion: 936
	DamageMotion: 240
	Drops: {
		Well_Baked_Cookie: 1000
		Candy_Striper: 150
		Light_Granule: 5
		Great_Chef_Orleans01: 50
		Sandals_: 30
		Holy_Scroll_1_3: 100
		Candy: 320
		Cookie_Card: 1
	}
},
{
	Id: 1266
	SpriteName: "ASTER"
	Name: "Aster"
	Lv: 50
	Hp: 1509
	Sp: 1
	Exp: 424
	JExp: 455
	AttackRange: 1
	Attack: [89, 22]
	Def: 70
	Mdef: 7
	Stats: {
		Str: 41
		Agi: 14
		Vit: 15
		Int: 0
		Dex: 31
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1264
	AttackMotion: 864
	DamageMotion: 216
	Drops: {
		Sticky_Mucus: 500
		Coral_Reef: 40
		Single_Cell: 1200
		Yellow_Herb: 200
		Zargon: 60
		Apple: 100
		Aster_Card: 1
	}
},
{
	Id: 1267
	SpriteName: "CARAT"
	Name: "Carat"
	Lv: 103
	Hp: 9222
	Sp: 1
	Exp: 2332
	JExp: 1458
	AttackRange: 1
	Attack: [777, 76]
	Def: 111
	Mdef: 67
	Stats: {
		Str: 102
		Agi: 64
		Vit: 60
		Int: 40
		Dex: 80
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1078
	AttackMotion: 768
	DamageMotion: 384
	Drops: {
		Brigan: 3200
		Ice_Cream: 1000
		Spiky_Heel: 5
		Joker_Jester: 1
		White_Herb: 1450
		Carat_Card: 1
	}
},
{
	Id: 1268
	SpriteName: "BLOODY_KNIGHT"
	Name: "Bloody Knight"
	Lv: 116
	Hp: 68500
	Sp: 1
	Exp: 9552
	JExp: 6511
	AttackRange: 3
	Attack: [1319, 123]
	Def: 122
	Mdef: 50
	Stats: {
		Str: 132
		Agi: 59
		Vit: 70
		Int: 57
		Dex: 137
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 828
	AttackMotion: 528
	DamageMotion: 192
	Drops: {
		Brigan: 4850
		Helm_: 45
		Plate_Armor_: 5
		Strong_Shield: 62
		Katzbalger: 1
		Pole_Axe: 2
		Ebone_Armor: 5
		Bloody_Knight_Card: 1
	}
},
{
	Id: 1269
	SpriteName: "CLOCK"
	Name: "Clock"
	Lv: 81
	Hp: 5556
	Sp: 1
	Exp: 1354
	JExp: 1158
	AttackRange: 1
	Attack: [443, 53]
	Def: 91
	Mdef: 43
	Stats: {
		Str: 68
		Agi: 24
		Vit: 35
		Int: 41
		Dex: 97
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1092
	AttackMotion: 792
	DamageMotion: 480
	Drops: {
		Needle_Of_Alarm: 5335
		Wooden_Block: 800
		White_Herb: 1900
		Lemon: 320
		Key_Of_Clock_Tower: 30
		Underground_Key: 30
		Elunium: 163
		Clock_Card: 1
	}
},
{
	Id: 1270
	SpriteName: "C_TOWER_MANAGER"
	Name: "Clock Tower Manager"
	JName: "Tower Keeper"
	Lv: 90
	Hp: 6400
	Sp: 1
	Exp: 1436
	JExp: 1467
	AttackRange: 3
	Attack: [427, 70]
	Def: 96
	Mdef: 60
	Stats: {
		Str: 80
		Agi: 28
		Vit: 40
		Int: 25
		Dex: 88
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1072
	AttackMotion: 672
	DamageMotion: 384
	Drops: {
		Needle_Of_Alarm: 5335
		Brigan: 5335
		Steel: 500
		Leaflet_Of_Hinal: 850
		Memorize_Book: 1
		Key_Of_Clock_Tower: 2000
		Underground_Key: 2000
		C_Tower_Manager_Card: 1
	}
},
{
	Id: 1271
	SpriteName: "ALLIGATOR"
	Name: "Alligator"
	Lv: 57
	Hp: 2430
	Sp: 1
	Exp: 510
	JExp: 548
	AttackRange: 1
	Attack: [158, 37]
	Def: 62
	Mdef: 30
	Stats: {
		Str: 47
		Agi: 48
		Vit: 24
		Int: 15
		Dex: 40
		Luk: 26
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1100
	AttackMotion: 900
	DamageMotion: 480
	Drops: {
		Zargon: 1000
		Worn_Out_Prison_Uniform: 600
		Anolian_Skin: 2000
		Seed_Of_Yggdrasil: 50
		Oridecon_Stone: 129
		Alligator_Card: 1
	}
},
{
	Id: 1272
	SpriteName: "DARK_LORD"
	Name: "Dark Lord"
	Lv: 96
	Hp: 1190900
	Sp: 1
	Exp: 857088
	JExp: 558000
	AttackRange: 2
	Attack: [3935, 2585]
	Def: 330
	Mdef: 168
	Stats: {
		Str: 118
		Agi: 136
		Vit: 154
		Int: 142
		Dex: 193
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 868
	AttackMotion: 768
	DamageMotion: 480
	DamageTakenRate: 10
	MvpExp: 357120
	MvpDrops: {
		Skull: 6000
		Blue_Coif_: 500
		Old_Violet_Box: 2000
	}
	Drops: {
		Bone_Wand: 800
		Kronos: 100
		Grimtooth_: 300
		Mage_Coat: 300
		Cape_Of_Ancient_Lord: 100
		Elunium: 5141
		Bone_Helm_: 10
		Dark_Lord_Card: 1
	}
},
{
	Id: 1273
	SpriteName: "ORC_LADY"
	Name: "Orc Lady"
	Lv: 45
	Hp: 1520
	Sp: 1
	Exp: 380
	JExp: 435
	AttackRange: 1
	Attack: [77, 33]
	Def: 83
	Mdef: 17
	Stats: {
		Str: 36
		Agi: 11
		Vit: 28
		Int: 10
		Dex: 57
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1050
	AttackMotion: 900
	DamageMotion: 288
	Drops: {
		Cyfar: 4656
		Puente_Robe: 3
		Earring: 1
		Wedding_Veil: 1
		High_end_Cooking_Kits: 10
		Cookbook06: 3
		Wedding_Dress: 1
		Orc_Lady_Card: 1
	}
},
{
	Id: 1274
	SpriteName: "MEGALITH"
	Name: "Megalith"
	Lv: 65
	Hp: 2451
	Sp: 1
	Exp: 624
	JExp: 669
	AttackRange: 9
	Attack: [122, 30]
	Def: 66
	Mdef: 18
	Stats: {
		Str: 57
		Agi: 14
		Vit: 35
		Int: 10
		Dex: 99
		Luk: 3
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 4)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1332
	AttackMotion: 1332
	DamageMotion: 672
	Drops: {
		Zargon: 100
		Stone: 1000
		Old_Violet_Box: 1
		Elunium: 61
		Elunium_Stone: 207
		Megalith_Card: 1
	}
},
{
	Id: 1275
	SpriteName: "ALICE"
	Name: "Alice"
	Lv: 100
	Hp: 9230
	Sp: 1
	Exp: 1956
	JExp: 1222
	AttackRange: 1
	Attack: [514, 98]
	Def: 93
	Mdef: 73
	Stats: {
		Str: 82
		Agi: 53
		Vit: 45
		Int: 70
		Dex: 96
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 502
	AttackMotion: 1999
	DamageMotion: 480
	Drops: {
		Alices_Apron: 2500
		Old_Broom: 40
		Chrystal_Pumps: 3
		Rotha_Shield: 2
		Pair_Of_Red_Ribbon: 1
		Imperial_Cooking_Kits: 10
		Holy_Scroll_1_5: 100
		Alice_Card: 1
	}
},
{
	Id: 1276
	SpriteName: "RAYDRIC_ARCHER"
	Name: "Raydric Archer"
	Lv: 82
	Hp: 4437
	Sp: 1
	Exp: 1154
	JExp: 1332
	AttackRange: 9
	Attack: [415, 18]
	Def: 63
	Mdef: 40
	Stats: {
		Str: 53
		Agi: 24
		Vit: 40
		Int: 15
		Dex: 134
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1152
	AttackMotion: 1152
	DamageMotion: 480
	Drops: {
		Brigan: 4656
		Chain_Mail_: 2
		Claire_Suits: 5
		Incisive_Arrow: 2000
		Arbalest_: 3
		Elunium: 106
		Raydric_Archer_Card: 1
	}
},
{
	Id: 1277
	SpriteName: "GREATEST_GENERAL"
	Name: "Greatest General"
	Lv: 55
	Hp: 1575
	Sp: 1
	Exp: 510
	JExp: 548
	AttackRange: 3
	Attack: [226, 26]
	Def: 114
	Mdef: 30
	Stats: {
		Str: 58
		Agi: 30
		Vit: 20
		Int: 25
		Dex: 28
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 2)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1152
	AttackMotion: 1152
	DamageMotion: 384
	Drops: {
		Brigan: 2000
		Wooden_Block: 2000
		Club: 100
		Inspector_Certificate: 300
		Stop_Post: 1
		Yellow_Herb: 250
		Earth_Scroll_1_3: 100
		Greatest_General_Card: 1
	}
},
{
	Id: 1278
	SpriteName: "STALACTIC_GOLEM"
	Name: "Stalactic Golem"
	Lv: 68
	Hp: 2590
	Sp: 1
	Exp: 708
	JExp: 759
	AttackRange: 1
	Attack: [358, 21]
	Def: 230
	Mdef: 5
	Stats: {
		Str: 67
		Agi: 47
		Vit: 48
		Int: 1
		Dex: 69
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1264
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Mud_Lump: 2000
		Brigan: 4850
		Star_Crumb: 250
		Great_Nature: 30
		Elunium_Stone: 250
		Round_Buckler: 5
		Elunium: 163
		Stalactic_Golem_Card: 1
	}
},
{
	Id: 1279
	SpriteName: "TRI_JOINT"
	Name: "Tri Joint"
	Lv: 66
	Hp: 2530
	Sp: 0
	Exp: 364
	JExp: 297
	AttackRange: 1
	Attack: [292, 28]
	Def: 22
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 33
		Vit: 24
		Int: 10
		Dex: 61
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 860
	AttackMotion: 660
	DamageMotion: 624
	Drops: {
		Cyfar: 100
		Solid_Shell: 380
		Aloebera: 200
		Yellow_Live: 160
		Sparkling_Dust: 140
		Elunium_Stone: 106
		Tri_Joint_Card: 1
	}
},
{
	Id: 1280
	SpriteName: "STEAM_GOBLIN"
	Name: "Steam Goblin"
	JName: "Goblin Steamrider"
	Lv: 66
	Hp: 2241
	Sp: 1
	Exp: 714
	JExp: 765
	AttackRange: 1
	Attack: [294, 35]
	Def: 85
	Mdef: 5
	Stats: {
		Str: 52
		Agi: 61
		Vit: 32
		Int: 15
		Dex: 90
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1008
	AttackMotion: 1008
	DamageMotion: 528
	Drops: {
		Scell: 2500
		Cyfar: 3880
		Iron: 300
		Steel: 55
		Coal: 320
		The_Garrison: 5
		Elunium_Stone: 124
		Steam_Goblin_Card: 1
	}
},
{
	Id: 1281
	SpriteName: "SAGEWORM"
	Name: "Sage Worm"
	Lv: 70
	Hp: 2872
	Sp: 1
	Exp: 756
	JExp: 810
	AttackRange: 1
	Attack: [166, 121]
	Def: 109
	Mdef: 45
	Stats: {
		Str: 39
		Agi: 29
		Vit: 28
		Int: 71
		Dex: 48
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 936
	AttackMotion: 936
	DamageMotion: 288
	Drops: {
		Librarian_Glove: 5
		Worn_Out_Page: 1000
		Earthworm_Peeling: 3000
		Fire_Scroll_1_5: 100
		Fashionable_Glasses: 10
		Cold_Scroll_1_5: 100
		Ph_D_Hat: 1
		Sageworm_Card: 1
	}
},
{
	Id: 1282
	SpriteName: "KOBOLD_ARCHER"
	Name: "Kobold Archer"
	Lv: 108
	Hp: 11053
	Sp: 1
	Exp: 2592
	JExp: 2620
	AttackRange: 9
	Attack: [762, 33]
	Def: 84
	Mdef: 5
	Stats: {
		Str: 99
		Agi: 39
		Vit: 48
		Int: 30
		Dex: 124
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1008
	AttackMotion: 1008
	DamageMotion: 384
	Drops: {
		Zargon: 250
		Steel: 60
		Cobold_Hair: 4850
		Ear_Of_Puppy: 50
		Poison_Arrow: 2000
		CrossBow_: 5
		Oridecon_Stone: 79
		Kobold_Archer_Card: 1
	}
},
{
	Id: 1283
	SpriteName: "CHIMERA"
	Name: "Chimera"
	Lv: 70
	Hp: 26406
	Sp: 1
	Exp: 5426
	JExp: 4698
	AttackRange: 1
	Attack: [1029, 148]
	Def: 159
	Mdef: 10
	Stats: {
		Str: 1
		Agi: 38
		Vit: 110
		Int: 88
		Dex: 91
		Luk: 85
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 772
	AttackMotion: 672
	DamageMotion: 360
	Drops: {
		Brigan: 5335
		Slender_Snake: 2500
		Lemon: 1000
		War_Axe: 1
		Citrine: 1500
		Great_Axe: 1
		Oridecon: 160
		Chimera_Card: 1
	}
},
/*{
	Id: 1284
	SpriteName: "HUGELING"
	Name: "Hugeling"
	Lv: 1
	Hp: 5000
	Sp: 0
	Exp: 2
	JExp: 1
	AttackRange: 4
	Attack: [7, 10]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Apple: 100
		Apple: 100
		Apple: 100
		Apple: 100
		Apple: 100
		Apple: 100
		Apple: 100
		Apple: 100
	}
},*/
// War Of Emperium & Guild Dungeon (4.1)
{
	Id: 1285
	SpriteName: "ARCHER_GUARDIAN"
	Name: "Archer Guardian"
	Lv: 74
	Hp: 28634
	Sp: 1
	Exp: 1
	JExp: 1
	AttackRange: 12
	Attack: [1232, 480]
	Def: 56
	Mdef: 60
	Stats: {
		Str: 95
		Agi: 80
		Vit: 80
		Int: 90
		Dex: 198
		Luk: 55
	}
	ViewRange: 14
	ChaseRange: 16
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		Angry: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 265
	AttackDelay: 1200
	AttackMotion: 1200
	DamageMotion: 384
},
{
	Id: 1286
	SpriteName: "KNIGHT_GUARDIAN"
	Name: "Knight Guardian"
	Lv: 86
	Hp: 30214
	Sp: 1
	Exp: 1
	JExp: 1
	AttackRange: 2
	Attack: [1408, 280]
	Def: 88
	Mdef: 30
	Stats: {
		Str: 110
		Agi: 40
		Vit: 140
		Int: 65
		Dex: 150
		Luk: 65
	}
	ViewRange: 14
	ChaseRange: 16
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		Angry: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 275
	AttackDelay: 1200
	AttackMotion: 1200
	DamageMotion: 384
},
{
	Id: 1287
	SpriteName: "SOLDIER_GUARDIAN"
	Name: "Soldier Guardian"
	Lv: 56
	Hp: 15670
	Sp: 1
	Exp: 1
	JExp: 1
	AttackRange: 1
	Attack: [873, 163]
	Def: 56
	Mdef: 0
	Stats: {
		Str: 85
		Agi: 56
		Vit: 100
		Int: 45
		Dex: 103
		Luk: 43
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
		ChangeTargetChase: true
	}
	MoveSpeed: 265
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 384
},
{
	Id: 1288
	SpriteName: "EMPELIUM"
	Name: "Emperium"
	Lv: 90
	Hp: 100
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [66, 13]
	Def: 64
	Mdef: 50
	Stats: {
		Str: 1
		Agi: 17
		Vit: 80
		Int: 50
		Dex: 31
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 1)
	Mode: {
		Boss: true
		Plant: true
		Detector: true
		NoKnockback: true
	}
	MoveSpeed: 300
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 384
},
{
	Id: 1289
	SpriteName: "MAYA_PUPLE"
	Name: "Maya Purple"
	Lv: 81
	Hp: 77670
	Sp: 1
	Exp: 12884
	JExp: 6516
	AttackRange: 2
	Attack: [1592, 553]
	Def: 139
	Mdef: 40
	Stats: {
		Str: 95
		Agi: 52
		Vit: 80
		Int: 95
		Dex: 88
		Luk: 119
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1024
	AttackMotion: 1000
	DamageMotion: 480
	Drops: {
		Cyfar: 4413
		Elunium_Stone: 250
		Oridecon_Stone: 300
		Gold: 100
		Oridecon: 150
		Queens_Hair_Ornament: 1
		Cookbook10: 2
		Maya_Puple_Card: 1
	}
},
{
	Id: 1290
	SpriteName: "SKELETON_GENERAL"
	Name: "Skeleton General"
	Lv: 139
	Hp: 180130
	Sp: 0
	Exp: 10614
	JExp: 10115
	AttackRange: 1
	Attack: [1317, 1701]
	Def: 100
	Mdef: 35
	Stats: {
		Str: 72
		Agi: 34
		Vit: 52
		Int: 31
		Dex: 101
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 2276
	AttackMotion: 576
	DamageMotion: 432
	Drops: {
		Burn_Tree: 2550
		Oridecon_Stone: 160
		Yellow_Herb: 800
		Gladius_: 35
		Gladius: 80
		Sandstorm: 15
		Ghost_Bandana: 1
		Skeleton_General_Card: 1
	}
},
{
	Id: 1291
	SpriteName: "WRAITH_DEAD"
	Name: "Wraith Dead"
	Lv: 121
	Hp: 25990
	Sp: 0
	Exp: 3802
	JExp: 3410
	AttackRange: 2
	Attack: [1002, 160]
	Def: 88
	Mdef: 56
	Stats: {
		Str: 63
		Agi: 69
		Vit: 55
		Int: 45
		Dex: 106
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 1816
	AttackMotion: 576
	DamageMotion: 240
	Drops: {
		Transparent_Cloth: 4413
		Wedding_Veil: 10
		Manteau_: 8
		Red_Gemstone: 700
		Crystal_Jewel__: 5
		Old_Blue_Box: 4
		Lemon: 300
		Wraith_Dead_Card: 1
	}
},
{
	Id: 1292
	SpriteName: "MINI_DEMON"
	Name: "Mini Demon"
	Lv: 117
	Hp: 19402
	Sp: 1
	Exp: 3510
	JExp: 2025
	AttackRange: 1
	Attack: [938, 114]
	Def: 80
	Mdef: 25
	Stats: {
		Str: 130
		Agi: 69
		Vit: 55
		Int: 56
		Dex: 111
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1000
	AttackMotion: 600
	DamageMotion: 384
	Drops: {
		Petite_DiablOfs_Horn: 4413
		Petite_DiablOfs_Wing: 450
		Satanic_Chain: 3
		Elunium_Stone: 160
		Zargon: 2500
		Sacred_Marks: 10
		Ahlspiess: 5
		Mini_Demon_Card: 1
	}
},
{
	Id: 1293
	SpriteName: "CREMY_FEAR"
	Name: "Creamy Fear"
	Lv: 117
	Hp: 25084
	Sp: 0
	Exp: 1901
	JExp: 1608
	AttackRange: 2
	Attack: [757, 110]
	Def: 76
	Mdef: 37
	Stats: {
		Str: 65
		Agi: 36
		Vit: 33
		Int: 49
		Dex: 79
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 155
	AttackDelay: 1136
	AttackMotion: 720
	DamageMotion: 840
	Drops: {
		Powder_Of_Butterfly: 4550
		Silver_Robe_: 10
		Honey: 550
		Wing_Of_Butterfly: 200
		Book: 8
		Icarus_Wing: 5
		Fruit_Of_Mastela: 50
		Cremy_Fear_Card: 1
	}
},
{
	Id: 1294
	SpriteName: "KILLER_MANTIS"
	Name: "Killer Mantis"
	Lv: 141
	Hp: 180141
	Sp: 0
	Exp: 11303
	JExp: 10301
	AttackRange: 1
	Attack: [1521, 1201]
	Def: 107
	Mdef: 45
	Stats: {
		Str: 82
		Agi: 56
		Vit: 58
		Int: 45
		Dex: 83
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 1528
	AttackMotion: 660
	DamageMotion: 432
	Drops: {
		Limb_Of_Mantis: 4550
		Solid_Shell: 2500
		Azure_Jewel: 10
		White_Herb: 15
		Grape: 25
		Nail_Of_Loki: 1
		Mirror_Shield_: 1
		Killer_Mantis_Card: 1
	}
},
{
	Id: 1295
	SpriteName: "OWL_BARON"
	Name: "Owl Baron"
	Lv: 120
	Hp: 21000
	Sp: 1
	Exp: 3954
	JExp: 2282
	AttackRange: 2
	Attack: [629, 201]
	Def: 88
	Mdef: 25
	Stats: {
		Str: 72
		Agi: 65
		Vit: 55
		Int: 102
		Dex: 108
		Luk: 72
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 1345
	AttackMotion: 824
	DamageMotion: 440
	Drops: {
		Tatters_Clothes: 3500
		Soft_Feather: 2500
		Kakkung_: 2
		Staff_Of_Soul: 1
		Walking_Stick: 2
		Wind_Scroll_1_5: 100
		Magician_Hat: 5
		Owl_Baron_Card: 1
	}
},
{
	Id: 1296
	SpriteName: "KOBOLD_LEADER"
	Name: "Kobold Leader"
	Lv: 112
	Hp: 13520
	Sp: 1
	Exp: 3436
	JExp: 2383
	AttackRange: 1
	Attack: [995, 96]
	Def: 90
	Mdef: 62
	Stats: {
		Str: 135
		Agi: 34
		Vit: 68
		Int: 56
		Dex: 116
		Luk: 47
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1028
	AttackMotion: 528
	DamageMotion: 360
	Drops: {
		Steel: 450
		Cobold_Hair: 6305
		Zargon: 1200
		Flail_: 6
		Mighty_Staff: 2
		Panacea: 150
		Royal_Jelly: 100
		Kobold_Leader_Card: 1
	}
},
{
	Id: 1297
	SpriteName: "ANCIENT_MUMMY"
	Name: "Ancient Mummy"
	Lv: 114
	Hp: 27157
	Sp: 1
	Exp: 5334
	JExp: 3199
	AttackRange: 1
	Attack: [981, 200]
	Def: 93
	Mdef: 51
	Stats: {
		Str: 126
		Agi: 57
		Vit: 55
		Int: 69
		Dex: 157
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 1772
	AttackMotion: 120
	DamageMotion: 384
	Drops: {
		Rotten_Bandage: 4413
		Mementos: 1800
		Glove_: 1
		Silver_Ring: 150
		Runstone_Ancient: 10
		Oridecon_Stone: 150
		Elunium_Stone: 100
		Ancient_Mummy_Card: 1
	}
},
{
	Id: 1298
	SpriteName: "ZOMBIE_MASTER"
	Name: "Zombie Master"
	Lv: 119
	Hp: 25510
	Sp: 0
	Exp: 1802
	JExp: 3502
	AttackRange: 1
	Attack: [824, 151]
	Def: 78
	Mdef: 46
	Stats: {
		Str: 55
		Agi: 60
		Vit: 48
		Int: 49
		Dex: 86
		Luk: 48
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 2612
	AttackMotion: 912
	DamageMotion: 288
	Drops: {
		Tatters_Clothes: 4413
		Sticky_Mucus: 1500
		Horrendous_Mouth: 1500
		Cardinal_Jewel: 200
		White_Jewel: 100
		Ghoul_Leg: 1
		Tatters_Clothes: 2
		Zombie_Master_Card: 1
	}
},
{
	Id: 1299
	SpriteName: "GOBLIN_LEADER"
	Name: "Goblin Leader"
	Lv: 55
	Hp: 21692
	Sp: 1
	Exp: 4672
	JExp: 5007
	AttackRange: 1
	Attack: [173, 49]
	Def: 72
	Mdef: 30
	Stats: {
		Str: 60
		Agi: 67
		Vit: 45
		Int: 18
		Dex: 73
		Luk: 23
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 1120
	AttackMotion: 620
	DamageMotion: 240
	Drops: {
		Brigan: 1500
		Steel: 800
		Oridecon_Stone: 120
		Goblin_Mask_04: 50
		Shield_: 2
		Yellow_Herb: 650
		Angry_Mouth: 10
		Goblin_Leader_Card: 1
	}
},
{
	Id: 1300
	SpriteName: "CATERPILLAR"
	Name: "Caterpillar"
	Lv: 121
	Hp: 25656
	Sp: 0
	Exp: 1950
	JExp: 1650
	AttackRange: 1
	Attack: [1007, 125]
	Def: 100
	Mdef: 42
	Stats: {
		Str: 58
		Agi: 37
		Vit: 51
		Int: 50
		Dex: 54
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Feather: 3000
		Brigan: 5335
		Twilight_Desert: 20
		Star_Crumb: 100
		Great_Nature: 50
		Old_Blue_Box: 4
		Yellow_Herb: 500
		Caterpillar_Card: 1
	}
},
{
	Id: 1301
	SpriteName: "AM_MUT"
	Name: "Am Mut"
	Lv: 141
	Hp: 181487
	Sp: 0
	Exp: 10014
	JExp: 10113
	AttackRange: 1
	Attack: [1415, 1630]
	Def: 90
	Mdef: 42
	Stats: {
		Str: 58
		Agi: 44
		Vit: 40
		Int: 35
		Dex: 80
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1156
	AttackMotion: 456
	DamageMotion: 384
	Drops: {
		Dokkaebi_Horn: 4550
		Elunium_Stone: 250
		Sword_Mace_: 3
		Gold: 5
		Spirit_Chain: 1
		Old_Card_Album: 1
		Glass_Bead: 500
		Am_Mut_Card: 1
	}
},
{
	Id: 1302
	SpriteName: "DARK_ILLUSION"
	Name: "Dark Illusion"
	Lv: 96
	Hp: 46255
	Sp: 0
	Exp: 4954
	JExp: 4549
	AttackRange: 2
	Attack: [1166, 360]
	Def: 145
	Mdef: 30
	Stats: {
		Str: 82
		Agi: 36
		Vit: 55
		Int: 100
		Dex: 182
		Luk: 88
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 145
	AttackDelay: 1024
	AttackMotion: 768
	DamageMotion: 480
	Drops: {
		Bone_Wand: 3
		Bone_Helm: 2
		Ragamuffin_Cape: 3
		Brigan: 5335
		Fruit_Of_Mastela: 120
		White_Herb: 1550
		Broad_Sword_: 2
		Dark_Illusion_Card: 1
	}
},
{
	Id: 1303
	SpriteName: "GIANT_HONET"
	Name: "Giant Hornet"
	Lv: 120
	Hp: 26521
	Sp: 0
	Exp: 1801
	JExp: 1661
	AttackRange: 1
	Attack: [811, 132]
	Def: 80
	Mdef: 43
	Stats: {
		Str: 70
		Agi: 45
		Vit: 47
		Int: 32
		Dex: 74
		Luk: 34
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 155
	AttackDelay: 1292
	AttackMotion: 792
	DamageMotion: 340
	Drops: {
		Royal_Jelly: 550
		Honey: 1200
		Fruit_Of_Mastela: 12
		Fruit_Of_Mastela: 12
		Staff_: 3
		Scarlet_Jewel: 20
		Double_Bound: 15
		Giant_Honet_Card: 1
	}
},
{
	Id: 1304
	SpriteName: "GIANT_SPIDER"
	Name: "Giant Spider"
	Lv: 117
	Hp: 25001
	Sp: 0
	Exp: 1810
	JExp: 1601
	AttackRange: 1
	Attack: [743, 122]
	Def: 86
	Mdef: 38
	Stats: {
		Str: 71
		Agi: 58
		Vit: 43
		Int: 38
		Dex: 73
		Luk: 41
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1468
	AttackMotion: 468
	DamageMotion: 768
	Drops: {
		Spiderweb: 4550
		Short_Leg: 1200
		Elunium_Stone: 140
		Panacea: 450
		Solid_Shell: 1200
		Round_Shell: 680
		Cyfar: 800
		Giant_Spider_Card: 1
	}
},
{
	Id: 1305
	SpriteName: "ANCIENT_WORM"
	Name: "Ancient Worm"
	Lv: 121
	Hp: 24005
	Sp: 0
	Exp: 1901
	JExp: 1677
	AttackRange: 1
	Attack: [1051, 133]
	Def: 90
	Mdef: 41
	Stats: {
		Str: 70
		Agi: 56
		Vit: 56
		Int: 55
		Dex: 84
		Luk: 42
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1792
	AttackMotion: 792
	DamageMotion: 336
	Drops: {
		Short_Leg: 4413
		Zargon: 2500
		Boots_: 9
		Bowman_Scarf: 5
		Round_Shell: 680
		Sticky_Mucus: 3500
		Brigan: 2500
		Ancient_Worm_Card: 1
	}
},
{
	Id: 1306
	SpriteName: "LEIB_OLMAI"
	Name: "Leib Olmai"
	Lv: 118
	Hp: 24001
	Sp: 0
	Exp: 1900
	JExp: 1720
	AttackRange: 1
	Attack: [895, 105]
	Def: 127
	Mdef: 31
	Stats: {
		Str: 72
		Agi: 35
		Vit: 80
		Int: 35
		Dex: 77
		Luk: 27
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 1260
	AttackMotion: 230
	DamageMotion: 192
	Drops: {
		Bears_Foot: 4550
		Poo_Poo_Hat: 8
		Stuffed_Doll: 120
		Honey: 500
		Pocket_Watch_: 5
		Gold: 5
		Cyfar: 800
		Leib_Olmai_Card: 1
	}
},
{
	Id: 1307
	SpriteName: "CAT_O_NINE_TAIL"
	Name: "Cat o' Nine Tails"
	Lv: 79
	Hp: 23600
	Sp: 0
	Exp: 4148
	JExp: 5792
	AttackRange: 1
	Attack: [467, 80]
	Def: 100
	Mdef: 50
	Stats: {
		Str: 72
		Agi: 75
		Vit: 40
		Int: 50
		Dex: 79
		Luk: 48
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 155
	AttackDelay: 1276
	AttackMotion: 576
	DamageMotion: 288
	Drops: {
		Puppy_Love: 1
		Silver_Knife_Of_Chaste: 150
		Punisher: 5
		Elunium: 600
		Oridecon: 800
		Gold: 6
		Old_Violet_Box: 1
		Cat_O_Nine_Tail_Card: 1
	}
},
{
	Id: 1308
	SpriteName: "PANZER_GOBLIN"
	Name: "Panzer Goblin"
	Lv: 52
	Hp: 1471
	Sp: 1
	Exp: 468
	JExp: 504
	AttackRange: 1
	Attack: [128, 58]
	Def: 60
	Mdef: 25
	Stats: {
		Str: 52
		Agi: 60
		Vit: 35
		Int: 35
		Dex: 75
		Luk: 31
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 960
	AttackMotion: 1008
	DamageMotion: 840
	Drops: {
		Cyfar: 4413
		Brigan: 3500
		Steel: 180
		Iron: 360
		Coal: 580
		Butcher: 5
		Flame_Heart: 160
		Panzer_Goblin_Card: 1
	}
},
{
	Id: 1309
	SpriteName: "GAJOMART"
	Name: "Gajomart"
	Lv: 140
	Hp: 185098
	Sp: 0
	Exp: 11810
	JExp: 10801
	AttackRange: 1
	Attack: [1615, 1601]
	Def: 98
	Mdef: 50
	Stats: {
		Str: 77
		Agi: 47
		Vit: 39
		Int: 33
		Dex: 94
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1000
	AttackMotion: 1152
	DamageMotion: 828
	Drops: {
		Stone_Heart: 6500
		Zargon: 2300
		Yellow_Herb: 870
		Bomb_Wick: 8
		Fire_Arrow_Container: 200
		Magic_Study_Vol1: 20
		Flame_Heart: 180
		Gajomart_Card: 1
	}
},
{
	Id: 1310
	SpriteName: "MAJORUROS"
	Name: "Majoruros"
	Lv: 107
	Hp: 11801
	Sp: 1
	Exp: 3708
	JExp: 2200
	AttackRange: 1
	Attack: [850, 432]
	Def: 111
	Mdef: 25
	Stats: {
		Str: 112
		Agi: 58
		Vit: 65
		Int: 55
		Dex: 86
		Luk: 49
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1100
	AttackMotion: 960
	DamageMotion: 780
	Drops: {
		Nose_Ring: 4413
		Two_Handed_Axe_: 4
		Beef_Head_Meat: 1000
		Oridecon: 16
		White_Herb: 1850
		Silver_Ring: 160
		Star_Crumb: 250
		Majoruros_Card: 1
	}
},
{
	Id: 1311
	SpriteName: "GULLINBURSTI"
	Name: "Gullinbursti"
	Lv: 120
	Hp: 25098
	Sp: 0
	Exp: 1951
	JExp: 1710
	AttackRange: 1
	Attack: [1028, 148]
	Def: 108
	Mdef: 43
	Stats: {
		Str: 88
		Agi: 54
		Vit: 82
		Int: 35
		Dex: 76
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1960
	AttackMotion: 960
	DamageMotion: 384
	Drops: {
		Wild_Boars_Mane: 3500
		Grape: 290
		Animal_Blood: 6
		Eagle_Eyes: 1
		Anodyne: 15
		Belt: 1
		Zargon: 160
		Gullinbursti_Card: 1
	}
},
// Turtle Dungeon (4.0)
{
	Id: 1312
	SpriteName: "TURTLE_GENERAL"
	Name: "Turtle General"
	Lv: 110
	Hp: 1442000
	Sp: 1
	Exp: 1119744
	JExp: 748440
	AttackRange: 2
	Attack: [3169, 2066]
	Def: 394
	Mdef: 123
	Stats: {
		Str: 116
		Agi: 123
		Vit: 154
		Int: 99
		Dex: 217
		Luk: 98
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 900
	AttackMotion: 1000
	DamageMotion: 500
	DamageTakenRate: 10
	MvpExp: 466560
	MvpDrops: {
		Turtle_Shell: 5500
		Yggdrasilberry: 1500
		Old_Violet_Box: 2000
	}
	Drops: {
		Iron_Driver: 8
		War_Axe: 5
		Cookbook09: 200
		Pole_Axe: 9
		Broken_Shell: 5335
		Immaterial_Sword: 80
		Union_Of_Tribe: 1
		Turtle_General_Card: 1
	}
},
{
	Id: 1313
	SpriteName: "MOBSTER"
	Name: "Mobster"
	Lv: 58
	Hp: 2253
	Sp: 1
	Exp: 520
	JExp: 557
	AttackRange: 1
	Attack: [156, 23]
	Def: 87
	Mdef: 18
	Stats: {
		Str: 72
		Agi: 36
		Vit: 33
		Int: 21
		Dex: 45
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1100
	AttackMotion: 560
	DamageMotion: 580
	Drops: {
		Poison_Knife: 3
		Blue_Jewel: 4559
		Ring_: 1
		Melon: 500
		Zargon: 2500
		Panacea: 450
		Pineapple: 500
		Mobster_Card: 1
	}
},
{
	Id: 1314
	SpriteName: "PERMETER"
	Name: "Permeter"
	Lv: 90
	Hp: 6575
	Sp: 1
	Exp: 1305
	JExp: 1467
	AttackRange: 2
	Attack: [292, 56]
	Def: 144
	Mdef: 50
	Stats: {
		Str: 68
		Agi: 28
		Vit: 55
		Int: 40
		Dex: 50
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 250
	AttackDelay: 1100
	AttackMotion: 483
	DamageMotion: 528
	Drops: {
		Turtle_Shell: 4413
		Coconut_Fruit: 200
		Elder_Branch: 100
		Red_Herb: 2450
		Zargon: 1240
		Fruit_Of_Mastela: 25
		Anodyne: 1
		Permeter_Card: 1
	}
},
{
	Id: 1315
	SpriteName: "ASSULTER"
	Name: "Assaulter"
	Lv: 100
	Hp: 8977
	Sp: 1
	Exp: 2390
	JExp: 2278
	AttackRange: 2
	Attack: [627, 67]
	Def: 169
	Mdef: 49
	Stats: {
		Str: 100
		Agi: 92
		Vit: 30
		Int: 20
		Dex: 144
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 512
	AttackMotion: 780
	DamageMotion: 504
	Drops: {
		Turtle_Shell: 4413
		Broken_Armor_Piece: 1200
		Rust_Suriken: 840
		Smoke_Powder: 200
		Zargon: 1240
		Huuma_Bird_Wing: 5
		Old_Blue_Box: 1
		Assulter_Card: 1
	}
},
{
	Id: 1316
	SpriteName: "SOLIDER"
	Name: "Solider"
	Lv: 92
	Hp: 8768
	Sp: 1
	Exp: 1784
	JExp: 1671
	AttackRange: 2
	Attack: [367, 40]
	Def: 206
	Mdef: 58
	Stats: {
		Str: 65
		Agi: 44
		Vit: 60
		Int: 15
		Dex: 56
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 250
	AttackDelay: 1452
	AttackMotion: 483
	DamageMotion: 528
	Drops: {
		Turtle_Shell: 4413
		Broken_Shell: 64
		Stone_Piece: 850
		Yellow_Herb: 2100
		Zargon: 1240
		Honey: 850
		Chain: 1
		Solider_Card: 1
	}
},
{
	Id: 1317
	SpriteName: "FUR_SEAL"
	Name: "Fur Seal"
	JName: "Seal"
	Lv: 47
	Hp: 1371
	Sp: 1
	Exp: 360
	JExp: 405
	AttackRange: 1
	Attack: [87, 40]
	Def: 42
	Mdef: 16
	Stats: {
		Str: 37
		Agi: 40
		Vit: 30
		Int: 39
		Dex: 35
		Luk: 19
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1612
	AttackMotion: 622
	DamageMotion: 583
	Drops: {
		Zargon: 4365
		Blue_Herb: 250
		Coat_: 5
		Cyfar: 1200
		Guisarme_: 1
		Panacea: 200
		Glass_Bead: 120
		Fur_Seal_Card: 1
	}
},
{
	Id: 1318
	SpriteName: "HEATER"
	Name: "Heater"
	Lv: 98
	Hp: 8180
	Sp: 1
	Exp: 2272
	JExp: 1611
	AttackRange: 2
	Attack: [664, 79]
	Def: 199
	Mdef: 50
	Stats: {
		Str: 89
		Agi: 49
		Vit: 50
		Int: 30
		Dex: 106
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1452
	AttackMotion: 483
	DamageMotion: 528
	Drops: {
		Turtle_Shell: 4413
		Broken_Shell: 750
		Fire_Scroll_2_5: 100
		Gun_Powder: 1000
		Royal_Jelly: 140
		Brigan: 600
		Burn_Tree: 1250
		Heater_Card: 1
	}
},
{
	Id: 1319
	SpriteName: "FREEZER"
	Name: "Freezer"
	Lv: 94
	Hp: 9990
	Sp: 1
	Exp: 1866
	JExp: 1749
	AttackRange: 2
	Attack: [604, 150]
	Def: 127
	Mdef: 38
	Stats: {
		Str: 68
		Agi: 47
		Vit: 50
		Int: 45
		Dex: 69
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 1260
	AttackMotion: 960
	DamageMotion: 672
	Drops: {
		Turtle_Shell: 4413
		Broken_Shell: 850
		Ice_Piece: 1250
		Zargon: 1800
		Royal_Jelly: 160
		Ice_Fragment: 200
		Cold_Scroll_1_5: 100
		Freezer_Card: 1
	}
},
{
	Id: 1320
	SpriteName: "OWL_DUKE"
	Name: "Owl Duke"
	Lv: 92
	Hp: 7381
	Sp: 1
	Exp: 1652
	JExp: 1953
	AttackRange: 1
	Attack: [624, 300]
	Def: 80
	Mdef: 45
	Stats: {
		Str: 54
		Agi: 51
		Vit: 45
		Int: 88
		Dex: 106
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 195
	AttackDelay: 1345
	AttackMotion: 824
	DamageMotion: 440
	Drops: {
		Tatters_Clothes: 4413
		Soft_Feather: 1500
		Wind_Scroll_1_5: 100
		Crystal_Mirror: 1
		Guisarme: 3
		Morning_Star: 2
		Magician_Hat: 1
		Owl_Duke_Card: 1
	}
},
{
	Id: 1321
	SpriteName: "DRAGON_TAIL"
	Name: "Dragon Tail"
	Lv: 86
	Hp: 4680
	Sp: 1
	Exp: 1390
	JExp: 1422
	AttackRange: 1
	Attack: [200, 35]
	Def: 63
	Mdef: 25
	Stats: {
		Str: 61
		Agi: 65
		Vit: 35
		Int: 40
		Dex: 62
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 862
	AttackMotion: 534
	DamageMotion: 312
	Drops: {
		Dragon_Fly_Wing: 4413
		Round_Shell: 400
		Solid_Shell: 800
		Fancy_Flower: 8
		Cap: 2
		Wing_Of_Fly: 300
		Wing_Of_Butterfly: 150
		Dragon_Tail_Card: 1
	}
},
{
	Id: 1322
	SpriteName: "SPRING_RABBIT"
	Name: "Spring Rabbit"
	Lv: 88
	Hp: 6684
	Sp: 1
	Exp: 1474
	JExp: 1509
	AttackRange: 1
	Attack: [317, 40]
	Def: 108
	Mdef: 42
	Stats: {
		Str: 68
		Agi: 66
		Vit: 35
		Int: 30
		Dex: 58
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 160
	AttackDelay: 1120
	AttackMotion: 552
	DamageMotion: 0
	Drops: {
		Brigan: 3500
		Cyfar: 2500
		Feather: 2500
		Green_Herb: 4500
		Yellow_Herb: 800
		Blue_Herb: 200
		White_Herb: 800
		Spring_Rabbit_Card: 1
	}
},
{
	Id: 1323
	SpriteName: "SEE_OTTER"
	Name: "Sea Otter"
	Lv: 48
	Hp: 1820
	Sp: 1
	Exp: 428
	JExp: 480
	AttackRange: 1
	Attack: [83, 42]
	Def: 31
	Mdef: 18
	Stats: {
		Str: 32
		Agi: 26
		Vit: 33
		Int: 26
		Dex: 41
		Luk: 28
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 190
	AttackDelay: 1132
	AttackMotion: 583
	DamageMotion: 532
	Drops: {
		Scarlet_Jewel: 150
		Clam_Shell: 5500
		Sea_Otter_Leather: 4365
		Red_Jewel: 50
		Blue_Jewel: 50
		Glass_Bead: 650
		Cyfar: 1200
		See_Otter_Card: 1
	}
},
// WoE Treasure Boxes
{
	Id: 1324
	SpriteName: "TREASURE_BOX1"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Crystal_Jewel__: 7760
		Seed_Of_Yggdrasil: 3000
		Yggdrasilberry: 2500
		Sg_White_Potion_Box: 800
		Sg_Blue_Potion_Box: 800
		Siege_Supply_Box: 800
		Sg_Violet_Potion_Box: 800
		Old_Card_Album: 1000
	}
},
{
	Id: 1325
	SpriteName: "TREASURE_BOX2"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		God_Material_Box: 10
		Union_Of_Tribe: 500
		Old_Blue_Box: 10000
		Treasure_Box: 5000
		High_Weapon_Box: 40
		Accessory_Box: 40
		Old_Card_Album: 500
		Sg_Weapon_Supply_Box: 10
	}
},
{
	Id: 1326
	SpriteName: "TREASURE_BOX3"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Crystal_Jewel__: 7760
		Seed_Of_Yggdrasil: 3000
		Yggdrasilberry: 2500
		Sg_White_Potion_Box: 800
		Sg_Blue_Potion_Box: 800
		Siege_Supply_Box: 800
		Sg_Violet_Potion_Box: 800
		Old_Card_Album: 1000
	}
},
{
	Id: 1327
	SpriteName: "TREASURE_BOX4"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		God_Material_Box: 10
		Union_Of_Tribe: 500
		Old_Blue_Box: 10000
		Treasure_Box: 5000
		High_Weapon_Box: 40
		Accessory_Box: 40
		Old_Card_Album: 500
		Sg_Weapon_Supply_Box: 10
	}
},
{
	Id: 1328
	SpriteName: "TREASURE_BOX5"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Crystal_Jewel__: 7760
		Seed_Of_Yggdrasil: 3000
		Yggdrasilberry: 2500
		Sg_White_Potion_Box: 800
		Sg_Blue_Potion_Box: 800
		Siege_Supply_Box: 800
		Sg_Violet_Potion_Box: 800
		Old_Card_Album: 1000
	}
},
{
	Id: 1329
	SpriteName: "TREASURE_BOX6"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		God_Material_Box: 10
		Union_Of_Tribe: 500
		Old_Blue_Box: 10000
		Treasure_Box: 5000
		High_Weapon_Box: 40
		Accessory_Box: 40
		Old_Card_Album: 500
		Sg_Weapon_Supply_Box: 10
	}
},
{
	Id: 1330
	SpriteName: "TREASURE_BOX7"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Crystal_Jewel__: 7760
		Seed_Of_Yggdrasil: 3000
		Yggdrasilberry: 2500
		Sg_White_Potion_Box: 800
		Sg_Blue_Potion_Box: 800
		Siege_Supply_Box: 800
		Sg_Violet_Potion_Box: 800
		Old_Card_Album: 1000
	}
},
{
	Id: 1331
	SpriteName: "TREASURE_BOX8"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		God_Material_Box: 10
		Union_Of_Tribe: 500
		Old_Blue_Box: 10000
		Treasure_Box: 5000
		High_Weapon_Box: 40
		Accessory_Box: 40
		Old_Card_Album: 500
		Sg_Weapon_Supply_Box: 10
	}
},
{
	Id: 1332
	SpriteName: "TREASURE_BOX9"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Crystal_Jewel__: 7760
		Seed_Of_Yggdrasil: 3000
		Yggdrasilberry: 2500
		Sg_White_Potion_Box: 800
		Sg_Blue_Potion_Box: 800
		Siege_Supply_Box: 800
		Sg_Violet_Potion_Box: 800
		Old_Card_Album: 1000
	}
},
{
	Id: 1333
	SpriteName: "TREASURE_BOX10"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		God_Material_Box: 10
		Union_Of_Tribe: 500
		Old_Blue_Box: 10000
		Treasure_Box: 5000
		High_Weapon_Box: 40
		Accessory_Box: 40
		Old_Card_Album: 500
		Sg_Weapon_Supply_Box: 10
	}
},
{
	Id: 1334
	SpriteName: "TREASURE_BOX11"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Crystal_Jewel__: 7760
		Seed_Of_Yggdrasil: 3000
		Yggdrasilberry: 2500
		Sg_White_Potion_Box: 800
		Sg_Blue_Potion_Box: 800
		Siege_Supply_Box: 800
		Sg_Violet_Potion_Box: 800
		Old_Card_Album: 1000
	}
},
{
	Id: 1335
	SpriteName: "TREASURE_BOX12"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		God_Material_Box: 10
		Union_Of_Tribe: 500
		Old_Blue_Box: 10000
		Treasure_Box: 5000
		High_Weapon_Box: 40
		Accessory_Box: 40
		Old_Card_Album: 500
		Sg_Weapon_Supply_Box: 10
	}
},
{
	Id: 1336
	SpriteName: "TREASURE_BOX13"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Crystal_Jewel__: 7760
		Seed_Of_Yggdrasil: 3000
		Yggdrasilberry: 2500
		Sg_White_Potion_Box: 800
		Sg_Blue_Potion_Box: 800
		Siege_Supply_Box: 800
		Sg_Violet_Potion_Box: 800
		Old_Card_Album: 1000
	}
},
{
	Id: 1337
	SpriteName: "TREASURE_BOX14"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		God_Material_Box: 10
		Union_Of_Tribe: 500
		Old_Blue_Box: 10000
		Treasure_Box: 5000
		High_Weapon_Box: 40
		Accessory_Box: 40
		Old_Card_Album: 500
		Sg_Weapon_Supply_Box: 10
	}
},
{
	Id: 1338
	SpriteName: "TREASURE_BOX15"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Crystal_Jewel__: 7760
		Seed_Of_Yggdrasil: 3000
		Yggdrasilberry: 2500
		Sg_White_Potion_Box: 800
		Sg_Blue_Potion_Box: 800
		Siege_Supply_Box: 800
		Sg_Violet_Potion_Box: 800
		Old_Card_Album: 1000
	}
},
{
	Id: 1339
	SpriteName: "TREASURE_BOX16"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		God_Material_Box: 10
		Union_Of_Tribe: 500
		Old_Blue_Box: 10000
		Treasure_Box: 5000
		High_Weapon_Box: 40
		Accessory_Box: 40
		Old_Card_Album: 500
		Sg_Weapon_Supply_Box: 10
	}
},
{
	Id: 1340
	SpriteName: "TREASURE_BOX17"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Crystal_Jewel__: 7760
		Seed_Of_Yggdrasil: 3000
		Yggdrasilberry: 2500
		Sg_White_Potion_Box: 800
		Sg_Blue_Potion_Box: 800
		Siege_Supply_Box: 800
		Sg_Violet_Potion_Box: 800
		Old_Card_Album: 1000
	}
},
{
	Id: 1341
	SpriteName: "TREASURE_BOX18"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		God_Material_Box: 10
		Union_Of_Tribe: 500
		Old_Blue_Box: 10000
		Treasure_Box: 5000
		High_Weapon_Box: 40
		Accessory_Box: 40
		Old_Card_Album: 500
		Sg_Weapon_Supply_Box: 10
	}
},
{
	Id: 1342
	SpriteName: "TREASURE_BOX19"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Crystal_Jewel__: 7760
		Seed_Of_Yggdrasil: 3000
		Yggdrasilberry: 2500
		Sg_White_Potion_Box: 800
		Sg_Blue_Potion_Box: 800
		Siege_Supply_Box: 800
		Sg_Violet_Potion_Box: 800
		Old_Card_Album: 1000
	}
},
{
	Id: 1343
	SpriteName: "TREASURE_BOX20"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		God_Material_Box: 10
		Union_Of_Tribe: 500
		Old_Blue_Box: 10000
		Treasure_Box: 5000
		High_Weapon_Box: 40
		Accessory_Box: 40
		Old_Card_Album: 500
		Sg_Weapon_Supply_Box: 10
	}
},
{
	Id: 1344
	SpriteName: "TREASURE_BOX21"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Crystal_Jewel__: 7760
		Seed_Of_Yggdrasil: 3000
		Yggdrasilberry: 2500
		Sg_White_Potion_Box: 800
		Sg_Blue_Potion_Box: 800
		Siege_Supply_Box: 800
		Sg_Violet_Potion_Box: 800
		Old_Card_Album: 1000
	}
},
{
	Id: 1345
	SpriteName: "TREASURE_BOX22"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		God_Material_Box: 10
		Union_Of_Tribe: 500
		Old_Blue_Box: 10000
		Treasure_Box: 5000
		High_Weapon_Box: 40
		Accessory_Box: 40
		Old_Card_Album: 500
		Sg_Weapon_Supply_Box: 10
	}
},
{
	Id: 1346
	SpriteName: "TREASURE_BOX23"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Crystal_Jewel__: 7760
		Seed_Of_Yggdrasil: 3000
		Yggdrasilberry: 2500
		Sg_White_Potion_Box: 800
		Sg_Blue_Potion_Box: 800
		Siege_Supply_Box: 800
		Sg_Violet_Potion_Box: 800
		Old_Card_Album: 1000
	}
},
{
	Id: 1347
	SpriteName: "TREASURE_BOX24"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		God_Material_Box: 10
		Union_Of_Tribe: 500
		Old_Blue_Box: 10000
		Treasure_Box: 5000
		High_Weapon_Box: 40
		Accessory_Box: 40
		Old_Card_Album: 500
		Sg_Weapon_Supply_Box: 10
	}
},
{
	Id: 1348
	SpriteName: "TREASURE_BOX25"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Crystal_Jewel__: 7760
		Seed_Of_Yggdrasil: 3000
		Yggdrasilberry: 2500
		Sg_White_Potion_Box: 800
		Sg_Blue_Potion_Box: 800
		Siege_Supply_Box: 800
		Sg_Violet_Potion_Box: 800
		Old_Card_Album: 1000
	}
},
{
	Id: 1349
	SpriteName: "TREASURE_BOX26"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		God_Material_Box: 10
		Union_Of_Tribe: 500
		Old_Blue_Box: 10000
		Treasure_Box: 5000
		High_Weapon_Box: 40
		Accessory_Box: 40
		Old_Card_Album: 500
		Sg_Weapon_Supply_Box: 10
	}
},
{
	Id: 1350
	SpriteName: "TREASURE_BOX27"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Crystal_Jewel__: 7760
		Seed_Of_Yggdrasil: 3000
		Yggdrasilberry: 2500
		Sg_White_Potion_Box: 800
		Sg_Blue_Potion_Box: 800
		Siege_Supply_Box: 800
		Sg_Violet_Potion_Box: 800
		Old_Card_Album: 1000
	}
},
{
	Id: 1351
	SpriteName: "TREASURE_BOX28"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		God_Material_Box: 10
		Union_Of_Tribe: 500
		Old_Blue_Box: 10000
		Treasure_Box: 5000
		High_Weapon_Box: 40
		Accessory_Box: 40
		Old_Card_Album: 500
		Sg_Weapon_Supply_Box: 10
	}
},
{
	Id: 1352
	SpriteName: "TREASURE_BOX29"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Crystal_Jewel__: 7760
		Seed_Of_Yggdrasil: 3000
		Yggdrasilberry: 2500
		Sg_White_Potion_Box: 800
		Sg_Blue_Potion_Box: 800
		Siege_Supply_Box: 800
		Sg_Violet_Potion_Box: 800
		Old_Card_Album: 1000
	}
},
{
	Id: 1353
	SpriteName: "TREASURE_BOX30"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		God_Material_Box: 10
		Union_Of_Tribe: 500
		Old_Blue_Box: 10000
		Treasure_Box: 5000
		High_Weapon_Box: 40
		Accessory_Box: 40
		Old_Card_Album: 500
		Sg_Weapon_Supply_Box: 10
	}
},
{
	Id: 1354
	SpriteName: "TREASURE_BOX31"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Crystal_Jewel__: 7760
		Seed_Of_Yggdrasil: 3000
		Yggdrasilberry: 2500
		Sg_White_Potion_Box: 800
		Sg_Blue_Potion_Box: 800
		Siege_Supply_Box: 800
		Sg_Violet_Potion_Box: 800
		Old_Card_Album: 1000
	}
},
{
	Id: 1355
	SpriteName: "TREASURE_BOX32"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		God_Material_Box: 10
		Union_Of_Tribe: 500
		Old_Blue_Box: 10000
		Treasure_Box: 5000
		High_Weapon_Box: 40
		Accessory_Box: 40
		Old_Card_Album: 500
		Sg_Weapon_Supply_Box: 10
	}
},
{
	Id: 1356
	SpriteName: "TREASURE_BOX33"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Crystal_Jewel__: 7760
		Seed_Of_Yggdrasil: 3000
		Yggdrasilberry: 2500
		Sg_White_Potion_Box: 800
		Sg_Blue_Potion_Box: 800
		Siege_Supply_Box: 800
		Sg_Violet_Potion_Box: 800
		Old_Card_Album: 1000
	}
},
{
	Id: 1357
	SpriteName: "TREASURE_BOX34"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		God_Material_Box: 10
		Union_Of_Tribe: 500
		Old_Blue_Box: 10000
		Treasure_Box: 5000
		High_Weapon_Box: 40
		Accessory_Box: 40
		Old_Card_Album: 500
		Sg_Weapon_Supply_Box: 10
	}
},
{
	Id: 1358
	SpriteName: "TREASURE_BOX35"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Crystal_Jewel__: 7760
		Seed_Of_Yggdrasil: 3000
		Yggdrasilberry: 2500
		Sg_White_Potion_Box: 800
		Sg_Blue_Potion_Box: 800
		Siege_Supply_Box: 800
		Sg_Violet_Potion_Box: 800
		Old_Card_Album: 1000
	}
},
{
	Id: 1359
	SpriteName: "TREASURE_BOX36"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		God_Material_Box: 10
		Union_Of_Tribe: 500
		Old_Blue_Box: 10000
		Treasure_Box: 5000
		High_Weapon_Box: 40
		Accessory_Box: 40
		Old_Card_Album: 500
		Sg_Weapon_Supply_Box: 10
	}
},
{
	Id: 1360
	SpriteName: "TREASURE_BOX37"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Crystal_Jewel__: 7760
		Seed_Of_Yggdrasil: 3000
		Yggdrasilberry: 2500
		Sg_White_Potion_Box: 800
		Sg_Blue_Potion_Box: 800
		Siege_Supply_Box: 800
		Sg_Violet_Potion_Box: 800
		Old_Card_Album: 1000
	}
},
{
	Id: 1361
	SpriteName: "TREASURE_BOX38"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		God_Material_Box: 10
		Union_Of_Tribe: 500
		Old_Blue_Box: 10000
		Treasure_Box: 5000
		High_Weapon_Box: 40
		Accessory_Box: 40
		Old_Card_Album: 500
		Sg_Weapon_Supply_Box: 10
	}
},
{
	Id: 1362
	SpriteName: "TREASURE_BOX39"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Crystal_Jewel__: 7760
		Seed_Of_Yggdrasil: 3000
		Yggdrasilberry: 2500
		Sg_White_Potion_Box: 800
		Sg_Blue_Potion_Box: 800
		Siege_Supply_Box: 800
		Sg_Violet_Potion_Box: 800
		Old_Card_Album: 1000
	}
},
{
	Id: 1363
	SpriteName: "TREASURE_BOX40"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		God_Material_Box: 10
		Union_Of_Tribe: 500
		Old_Blue_Box: 10000
		Treasure_Box: 5000
		High_Weapon_Box: 40
		Accessory_Box: 40
		Old_Card_Album: 500
		Sg_Weapon_Supply_Box: 10
	}
},
// Yuno (5.0)
{
	Id: 1364
	SpriteName: "G_ASSULTER"
	Name: "Assaulter"
	Lv: 98
	Hp: 7798
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [293, 67]
	Def: 83
	Mdef: 49
	Stats: {
		Str: 100
		Agi: 86
		Vit: 30
		Int: 20
		Dex: 98
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 155
	AttackDelay: 1000
	AttackMotion: 900
	DamageMotion: 432
	Drops: {
		Wooden_Block: 9000
	}
},
{
	Id: 1365
	SpriteName: "APOCALIPS"
	Name: "Apocalypse"
	Lv: 121
	Hp: 22090
	Sp: 1
	Exp: 3954
	JExp: 2282
	AttackRange: 2
	Attack: [1053, 116]
	Def: 136
	Mdef: 26
	Stats: {
		Str: 130
		Agi: 53
		Vit: 76
		Int: 25
		Dex: 125
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1840
	AttackMotion: 1440
	DamageMotion: 384
	Drops: {
		Broken_Steel_Piece: 5335
		Mystery_Piece: 2400
		Wheel: 2200
		Elunium: 5
		Destroyer_: 1
		Manteau_: 20
		Runstone_Ancient: 100
		Apocalips_Card: 1
	}
},
{
	Id: 1366
	SpriteName: "LAVA_GOLEM"
	Name: "Lava Golem"
	Lv: 103
	Hp: 8452
	Sp: 1
	Exp: 2678
	JExp: 1674
	AttackRange: 1
	Attack: [777, 53]
	Def: 299
	Mdef: 27
	Stats: {
		Str: 126
		Agi: 42
		Vit: 103
		Int: 28
		Dex: 92
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 2190
	AttackMotion: 2040
	DamageMotion: 336
	Drops: {
		Cold_Magma: 4559
		Burning_Heart: 3686
		Plate_Armor_: 1
		Plate_Armor: 2
		White_Herb: 2500
		Magma_Fist: 20
		Black_Powder: 500
		Lava_Golem_Card: 1
	}
},
{
	Id: 1367
	SpriteName: "BLAZZER"
	Name: "Blazer"
	Lv: 101
	Hp: 8121
	Sp: 1
	Exp: 2192
	JExp: 1371
	AttackRange: 2
	Attack: [599, 94]
	Def: 116
	Mdef: 60
	Stats: {
		Str: 99
		Agi: 75
		Vit: 55
		Int: 70
		Dex: 72
		Luk: 65
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 1732
	AttackMotion: 1332
	DamageMotion: 540
	Drops: {
		Burning_Heart: 4850
		Live_Coal: 3400
		White_Herb: 3000
		Blazzer_Card: 1
	}
},
{
	Id: 1368
	SpriteName: "GEOGRAPHER"
	Name: "Geographer"
	Lv: 73
	Hp: 3866
	Sp: 1
	Exp: 988
	JExp: 1010
	AttackRange: 3
	Attack: [309, 82]
	Def: 158
	Mdef: 42
	Stats: {
		Str: 81
		Agi: 26
		Vit: 35
		Int: 56
		Dex: 72
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 3)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 2000
	AttackDelay: 1308
	AttackMotion: 1008
	DamageMotion: 480
	Drops: {
		Blossom_Of_Maneater: 6200
		Root_Of_Maneater: 5500
		Sunflower: 30
		Fancy_Flower: 50
		Holy_Scroll_1_5: 100
		Geographer_Card: 1
	}
},
{
	Id: 1369
	SpriteName: "GRAND_PECO"
	Name: "Grand Peco"
	Lv: 75
	Hp: 3150
	Sp: 1
	Exp: 976
	JExp: 998
	AttackRange: 2
	Attack: [348, 56]
	Def: 95
	Mdef: 30
	Stats: {
		Str: 63
		Agi: 45
		Vit: 50
		Int: 23
		Dex: 61
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 165
	AttackDelay: 1460
	AttackMotion: 960
	DamageMotion: 432
	Drops: {
		Peco_Wing_Feather: 4850
		Fruit_Of_Mastela: 300
		Wind_Of_Verdure: 1000
		Gold: 1
		Orange: 500
		Grand_Peco_Card: 1
	}
},
{
	Id: 1370
	SpriteName: "SUCCUBUS"
	Name: "Succubus"
	Lv: 119
	Hp: 24960
	Sp: 1
	Exp: 5100
	JExp: 3489
	AttackRange: 2
	Attack: [1138, 394]
	Def: 76
	Mdef: 48
	Stats: {
		Str: 100
		Agi: 64
		Vit: 45
		Int: 80
		Dex: 115
		Luk: 85
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 155
	AttackDelay: 1306
	AttackMotion: 1056
	DamageMotion: 288
	Drops: {
		Fruit_Of_Mastela: 1500
		Chrystal_Pumps: 3
		Boys_Naivety: 1
		Diamond_Ring: 250
		Horn_Of_Succubus: 1
		Staff_Of_Soul: 1
		Blue_Potion: 1000
		Succubus_Card: 1
	}
},
{
	Id: 1371
	SpriteName: "FAKE_ANGEL"
	Name: "Fake Angel"
	JName: "False Angel"
	Lv: 105
	Hp: 10988
	Sp: 1
	Exp: 2520
	JExp: 1570
	AttackRange: 2
	Attack: [657, 135]
	Def: 106
	Mdef: 84
	Stats: {
		Str: 112
		Agi: 67
		Vit: 43
		Int: 81
		Dex: 82
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 160
	AttackDelay: 920
	AttackMotion: 720
	DamageMotion: 336
	Drops: {
		Blue_Gemstone: 1000
		Yellow_Gemstone: 1000
		Red_Gemstone: 1000
		Water_Of_Darkness: 1000
		Carrot_Whip: 20
		Fake_Angel_Card: 1
	}
},
{
	Id: 1372
	SpriteName: "GOAT"
	Name: "Goat"
	Lv: 80
	Hp: 3980
	Sp: 1
	Exp: 1172
	JExp: 1197
	AttackRange: 1
	Attack: [426, 60]
	Def: 95
	Mdef: 43
	Stats: {
		Str: 61
		Agi: 40
		Vit: 48
		Int: 40
		Dex: 78
		Luk: 31
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 165
	AttackDelay: 1380
	AttackMotion: 1080
	DamageMotion: 336
	Drops: {
		Goats_Horn: 4559
		Gaoats_Skin: 2500
		Empty_Bottle: 5000
		Red_Herb: 500
		Blue_Herb: 1000
		Yellow_Herb: 2500
		Green_Herb: 5500
		Goat_Card: 1
	}
},
{
	Id: 1373
	SpriteName: "LORD_OF_DEATH"
	Name: "Lord of Death"
	JName: "Lord the Dead"
	Lv: 94
	Hp: 603883
	Sp: 1
	Exp: 524544
	JExp: 345252
	AttackRange: 3
	Attack: [5351, 1962]
	Def: 336
	Mdef: 73
	Stats: {
		Str: 140
		Agi: 99
		Vit: 30
		Int: 129
		Dex: 170
		Luk: 90
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 1446
	AttackMotion: 1296
	DamageMotion: 360
	DamageTakenRate: 10
	MvpExp: 218560
	MvpDrops: {
		Yggdrasilberry: 5500
		Crystal_Jewel__: 5000
		Old_Violet_Box: 5000
	}
	Drops: {
		Boroken_Shiled_Piece: 5335
		Pole_Axe: 5
		House_Auger: 10
		Ring_: 2
		Shine_Spear_Blade: 10
		War_Axe: 1
		Iron_Driver: 2
		Lord_Of_Death_Card: 1
	}
},
{
	Id: 1374
	SpriteName: "INCUBUS"
	Name: "Incubus"
	Lv: 120
	Hp: 28000
	Sp: 1
	Exp: 5106
	JExp: 3646
	AttackRange: 2
	Attack: [1256, 375]
	Def: 72
	Mdef: 46
	Stats: {
		Str: 120
		Agi: 56
		Vit: 52
		Int: 75
		Dex: 139
		Luk: 70
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 850
	AttackMotion: 600
	DamageMotion: 336
	Drops: {
		Fruit_Of_Mastela: 1500
		White_Herb: 5500
		Inccubus_Horn: 1
		Ring_: 1
		Gold_Ring: 500
		Diamond_Ring: 150
		White_Herb: 2200
		Incubus_Card: 1
	}
},
{
	Id: 1375
	SpriteName: "THE_PAPER"
	Name: "The Paper"
	Lv: 97
	Hp: 8500
	Sp: 1
	Exp: 1836
	JExp: 1148
	AttackRange: 1
	Attack: [364, 110]
	Def: 32
	Mdef: 39
	Stats: {
		Str: 77
		Agi: 49
		Vit: 30
		Int: 5
		Dex: 73
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 720
	AttackMotion: 864
	DamageMotion: 504
	Drops: {
		Smooth_Paper: 4947
		Fright_Paper_Blade: 3200
		Yellow_Herb: 1800
		Green_Herb: 2000
		Kamaitachi: 5
		The_Paper_Card: 1
	}
},
{
	Id: 1376
	SpriteName: "HARPY"
	Name: "Harpy"
	Lv: 83
	Hp: 4423
	Sp: 1
	Exp: 1320
	JExp: 1520
	AttackRange: 1
	Attack: [340, 41]
	Def: 69
	Mdef: 44
	Stats: {
		Str: 71
		Agi: 39
		Vit: 50
		Int: 31
		Dex: 125
		Luk: 12
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 155
	AttackDelay: 972
	AttackMotion: 672
	DamageMotion: 470
	Drops: {
		Harpys_Feather: 4850
		Harpys_Claw: 2500
		Yellow_Herb: 1500
		Yellow_Herb: 800
		Izidor: 20
		Electric_Fist: 20
		Harpy_Card: 1
	}
},
{
	Id: 1377
	SpriteName: "ELDER"
	Name: "Elder"
	Lv: 92
	Hp: 7341
	Sp: 1
	Exp: 1652
	JExp: 2898
	AttackRange: 3
	Attack: [359, 802]
	Def: 72
	Mdef: 41
	Stats: {
		Str: 67
		Agi: 63
		Vit: 35
		Int: 99
		Dex: 106
		Luk: 61
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1552
	AttackMotion: 1152
	DamageMotion: 336
	Drops: {
		Old_Magic_Circle: 4000
		Rent_Spell_Book: 1500
		Elder_Branch: 1000
		Encyclopedia: 10
		Wizardy_Staff: 1
		Old_Card_Album: 1
		Underground_Key: 3000
		Elder_Card: 1
	}
},
{
	Id: 1378
	SpriteName: "DEMON_PUNGUS"
	Name: "Demon Pungus"
	Lv: 91
	Hp: 6466
	Sp: 1
	Exp: 1620
	JExp: 1520
	AttackRange: 1
	Attack: [556, 65]
	Def: 80
	Mdef: 52
	Stats: {
		Str: 63
		Agi: 61
		Vit: 30
		Int: 38
		Dex: 95
		Luk: 43
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Poison", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 1260
	AttackMotion: 960
	DamageMotion: 672
	Drops: {
		Spawns: 4074
		Mould_Powder: 4559
		Yellow_Gemstone: 3880
		Starsand_Of_Witch: 5000
		Demon_Pungus_Card: 1
	}
},
{
	Id: 1379
	SpriteName: "NIGHTMARE_TERROR"
	Name: "Nightmare Terror"
	Lv: 107
	Hp: 13289
	Sp: 1
	Exp: 2443
	JExp: 1832
	AttackRange: 1
	Attack: [918, 226]
	Def: 78
	Mdef: 37
	Stats: {
		Str: 118
		Agi: 53
		Vit: 55
		Int: 63
		Dex: 106
		Luk: 43
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1216
	AttackMotion: 816
	DamageMotion: 432
	Drops: {
		Burning_Horse_Shoe: 4947
		Rosary_: 1
		Rosary: 30
		Blue_Potion: 50
		Blue_Herb: 150
		Ghost_Scroll_1_5: 100
		Infiltrator: 1
		Nightmare_Terror_Card: 1
	}
},
{
	Id: 1380
	SpriteName: "DRILLER"
	Name: "Driller"
	Lv: 65
	Hp: 2719
	Sp: 1
	Exp: 624
	JExp: 669
	AttackRange: 1
	Attack: [190, 31]
	Def: 96
	Mdef: 18
	Stats: {
		Str: 62
		Agi: 50
		Vit: 25
		Int: 15
		Dex: 53
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1300
	AttackMotion: 900
	DamageMotion: 336
	Drops: {
		Lizard_Scruff: 7500
		Yellow_Gemstone: 3880
		Red_Gemstone: 3500
		Driller_Card: 1
	}
},
{
	Id: 1381
	SpriteName: "GRIZZLY"
	Name: "Grizzly"
	Lv: 66
	Hp: 2241
	Sp: 1
	Exp: 768
	JExp: 822
	AttackRange: 1
	Attack: [267, 13]
	Def: 109
	Mdef: 2
	Stats: {
		Str: 60
		Agi: 26
		Vit: 44
		Int: 3
		Dex: 86
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1492
	AttackMotion: 1092
	DamageMotion: 192
	Drops: {
		Bears_Foot: 5000
		Animals_Skin: 5000
		Nice_Sweet_Potato: 2500
		Odins_Blessing: 20
		Grizzly_Card: 1
	}
},
{
	Id: 1382
	SpriteName: "DIABOLIC"
	Name: "Diabolic"
	Lv: 104
	Hp: 10572
	Sp: 1
	Exp: 2172
	JExp: 1629
	AttackRange: 1
	Attack: [707, 200]
	Def: 68
	Mdef: 61
	Stats: {
		Str: 103
		Agi: 80
		Vit: 53
		Int: 65
		Dex: 94
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1080
	AttackMotion: 780
	DamageMotion: 180
	Drops: {
		Petite_DiablOfs_Horn: 5820
		Petite_DiablOfs_Wing: 4850
		Brooch: 3
		Oridecon: 20
		Unholy_Touch: 10
		Diabolic_Card: 1
	}
},
{
	Id: 1383
	SpriteName: "EXPLOSION"
	Name: "Explosion"
	Lv: 100
	Hp: 7813
	Sp: 1
	Exp: 1900
	JExp: 1425
	AttackRange: 1
	Attack: [625, 110]
	Def: 112
	Mdef: 50
	Stats: {
		Str: 91
		Agi: 51
		Vit: 63
		Int: 50
		Dex: 78
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1260
	AttackMotion: 960
	DamageMotion: 336
	Drops: {
		Wing_Of_Red_Bat: 5500
		Burning_Heart: 2200
		Hot_Hair: 3200
		Oridecon_Stone: 800
		Fruit_Of_Mastela: 400
		Explosion_Card: 1
	}
},
{
	Id: 1384
	SpriteName: "DELETER"
	Name: "Deleter"
	Lv: 105
	Hp: 10000
	Sp: 1
	Exp: 2099
	JExp: 1574
	AttackRange: 1
	Attack: [653, 179]
	Def: 111
	Mdef: 53
	Stats: {
		Str: 105
		Agi: 55
		Vit: 53
		Int: 68
		Dex: 80
		Luk: 73
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Dragon"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 1020
	AttackMotion: 720
	DamageMotion: 384
	Drops: {
		Dragons_Skin: 4074
		Dragon_Canine: 5335
		Dragon_Train: 3880
		Dragon_Scale: 3589
		Flying_Deleter_Card: 1
	}
},
{
	Id: 1385
	SpriteName: "DELETER_"
	Name: "Deleter"
	Lv: 105
	Hp: 10000
	Sp: 1
	Exp: 2099
	JExp: 1574
	AttackRange: 1
	Attack: [663, 211]
	Def: 114
	Mdef: 53
	Stats: {
		Str: 98
		Agi: 65
		Vit: 49
		Int: 72
		Dex: 68
		Luk: 73
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Dragon"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 1024
	AttackMotion: 624
	DamageMotion: 336
	Drops: {
		Dragons_Skin: 4074
		Dragon_Canine: 5335
		Dragon_Train: 3880
		Dragon_Scale: 3589
		Stone_Buckler: 10
		Deleter_Card: 1
	}
},
{
	Id: 1386
	SpriteName: "SLEEPER"
	Name: "Sleeper"
	Lv: 81
	Hp: 5160
	Sp: 1
	Exp: 1136
	JExp: 1160
	AttackRange: 1
	Attack: [301, 48]
	Def: 101
	Mdef: 29
	Stats: {
		Str: 74
		Agi: 41
		Vit: 57
		Int: 27
		Dex: 65
		Luk: 27
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 195
	AttackDelay: 1350
	AttackMotion: 1200
	DamageMotion: 432
	Drops: {
		Sand_Lump: 4947
		Grit: 5335
		Great_Nature: 2500
		Oridecon_Stone: 300
		Damascus_: 5
		Hypnotists_Staff_: 5
		Fine_Sand: 1200
		Sleeper_Card: 1
	}
},
{
	Id: 1387
	SpriteName: "GIG"
	Name: "Gig"
	Lv: 100
	Hp: 8721
	Sp: 1
	Exp: 2122
	JExp: 1327
	AttackRange: 1
	Attack: [619, 123]
	Def: 104
	Mdef: 53
	Stats: {
		Str: 92
		Agi: 66
		Vit: 60
		Int: 48
		Dex: 72
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 1264
	AttackMotion: 864
	DamageMotion: 576
	Drops: {
		Scropions_Nipper: 4365
		Scorpions_Tail: 5500
		Red_Gemstone: 150
		Panacea: 2500
		Flame_Heart: 850
		Gig_Card: 1
	}
},
{
	Id: 1388
	SpriteName: "ARCHANGELING"
	Name: "Archangeling"
	JName: "Arc Angeling"
	Lv: 84
	Hp: 25100
	Sp: 1
	Exp: 3578
	JExp: 2910
	AttackRange: 1
	Attack: [593, 100]
	Def: 92
	Mdef: 81
	Stats: {
		Str: 32
		Agi: 48
		Vit: 62
		Int: 99
		Dex: 119
		Luk: 105
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 1072
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Satanic_Chain: 5
		Leaf_Of_Yggdrasil: 1800
		Seed_Of_Yggdrasil: 150
		Agate: 1500
		Angelic_Chain: 5
		Plate_Armor_: 3
		Turquoise: 1500
		Archangeling_Card: 1
	}
},
{
	Id: 1389
	SpriteName: "DRACULA"
	Name: "Dracula"
	Lv: 75
	Hp: 350000
	Sp: 1
	Exp: 343728
	JExp: 245520
	AttackRange: 3
	Attack: [2454, 1812]
	Def: 252
	Mdef: 146
	Stats: {
		Str: 86
		Agi: 99
		Vit: 88
		Int: 92
		Dex: 194
		Luk: 82
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 145
	AttackDelay: 1290
	AttackMotion: 1140
	DamageMotion: 576
	DamageTakenRate: 10
	MvpExp: 156240
	MvpDrops: {
		Yggdrasilberry: 5500
		Crystal_Jewel__: 5000
		Fruit_Of_Mastela: 5000
	}
	Drops: {
		Yggdrasilberry: 4700
		Wizardy_Staff: 5
		Balistar: 5
		Cape_Of_Ancient_Lord: 15
		Ring_: 4
		Book_Of_The_Apocalypse: 4
		Dracula_Card: 1
	}
},
{
	Id: 1390
	SpriteName: "VIOLY"
	Name: "Violy"
	Lv: 118
	Hp: 20557
	Sp: 1
	Exp: 3720
	JExp: 2147
	AttackRange: 10
	Attack: [767, 120]
	Def: 74
	Mdef: 36
	Stats: {
		Str: 90
		Agi: 86
		Vit: 38
		Int: 76
		Dex: 126
		Luk: 63
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 1356
	AttackMotion: 1056
	DamageMotion: 540
	Drops: {
		Golden_Hair: 6305
		High_end_Cooking_Kits: 50
		Stuffed_Doll: 1200
		Base_Guitar: 50
		Royal_Jelly: 1400
		Water_Of_Darkness: 1000
		Violin_: 500
		Violy_Card: 1
	}
},
{
	Id: 1391
	SpriteName: "GALAPAGO"
	Name: "Galapago"
	Lv: 45
	Hp: 1221
	Sp: 1
	Exp: 342
	JExp: 386
	AttackRange: 1
	Attack: [68, 35]
	Def: 70
	Mdef: 16
	Stats: {
		Str: 30
		Agi: 28
		Vit: 29
		Int: 18
		Dex: 30
		Luk: 16
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 165
	AttackDelay: 1430
	AttackMotion: 1080
	DamageMotion: 1080
	Drops: {
		Cyfar: 5335
		Coconut_Fruit: 300
		Yellow_Herb: 3500
		Aloebera: 100
		Melon: 300
		Galapago_Cap: 1
		Orange: 1000
		Galapago_Card: 1
	}
},
{
	Id: 1392
	SpriteName: "ROTAR_ZAIRO"
	Name: "Rotar Zairo"
	Lv: 48
	Hp: 1088
	Sp: 1
	Exp: 399
	JExp: 449
	AttackRange: 10
	Attack: [75, 40]
	Def: 57
	Mdef: 34
	Stats: {
		Str: 29
		Agi: 70
		Vit: 45
		Int: 26
		Dex: 61
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 155
	AttackDelay: 2416
	AttackMotion: 2016
	DamageMotion: 432
	Drops: {
		Large_Jellopy: 500
		Padded_Armor: 1
		Cyfar: 1000
		Steel: 450
		Oridecon: 1
		Zargon: 2500
		Garlet: 5500
		Rotar_Zairo_Card: 1
	}
},
{
	Id: 1393
	SpriteName: "G_MUMMY"
	Name: "Mummy"
	Lv: 55
	Hp: 2155
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [180, 21]
	Def: 95
	Mdef: 3
	Stats: {
		Str: 54
		Agi: 4
		Vit: 14
		Int: 1
		Dex: 68
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1772
	AttackMotion: 72
	DamageMotion: 384
},
{
	Id: 1394
	SpriteName: "G_ZOMBIE"
	Name: "Zombie"
	Lv: 17
	Hp: 234
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [43, 12]
	Def: 20
	Mdef: 3
	Stats: {
		Str: 15
		Agi: 8
		Vit: 17
		Int: 0
		Dex: 15
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 2612
	AttackMotion: 912
	DamageMotion: 288
},
{
	Id: 1395
	SpriteName: "CRYSTAL_1"
	Name: "Wind Crystal"
	Lv: 1
	Hp: 15
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 999
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 190
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Piece_Of_Cake: 3800
		Candy_Striper: 4500
		White_Chocolate: 5000
		Gift_Box_2: 4900
		Candy: 4000
		Banana_Juice: 6500
		Chocolate: 5000
		Yggdrasilberry: 100
	}
},
{
	Id: 1396
	SpriteName: "CRYSTAL_2"
	Name: "Earth Crystal"
	Lv: 1
	Hp: 15
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 999
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 190
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Piece_Of_Cake: 3800
		Candy_Striper: 4500
		White_Chocolate: 5000
		Gift_Box_4: 4900
		Apple_Juice: 6500
		Chocolate: 5000
		Seed_Of_Yggdrasil: 150
	}
},
{
	Id: 1397
	SpriteName: "CRYSTAL_3"
	Name: "Fire Crystal"
	Lv: 1
	Hp: 15
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 999
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 190
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Piece_Of_Cake: 3800
		Candy_Striper: 4500
		White_Chocolate: 5000
		Gift_Box_1: 4900
		Carrot_Juice: 6500
		Chocolate: 5000
		Branch_Of_Dead_Tree: 150
	}
},
{
	Id: 1398
	SpriteName: "CRYSTAL_4"
	Name: "Water Crystal"
	Lv: 1
	Hp: 15
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 999
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 190
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Piece_Of_Cake: 3800
		Candy_Striper: 4500
		White_Chocolate: 5000
		Gift_Box_3: 4900
		Grape_Juice: 6500
		Chocolate: 5000
		Old_Blue_Box: 100
	}
},
// Event MVP
{
	Id: 1399
	SpriteName: "EVENT_BAPHO"
	Name: "Baphomet"
	Lv: 68
	Hp: 1264000
	Sp: 0
	Exp: 82450
	JExp: 25106
	AttackRange: 3
	Attack: [1939, 420]
	Def: 35
	Mdef: 45
	Stats: {
		Str: 1
		Agi: 152
		Vit: 96
		Int: 85
		Dex: 132
		Luk: 95
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 130
	AttackDelay: 768
	AttackMotion: 768
	DamageMotion: 576
	MvpExp: 130875
	MvpDrops: {
		Yggdrasilberry: 5500
		Royal_Jelly: 5000
		Crystal_Jewel__: 5000
	}
	Drops: {
		Pole_Axe: 550
		War_Axe: 680
		Holy_Avenger: 480
		Holy_Guard: 640
		Holy_Robe: 1500
		Herald_Of_GOD: 500
		Ring_: 1720
		Magestic_Goat: 1550
	}
},
// Amatsu (6.0)
{
	Id: 1400
	SpriteName: "KARAKASA"
	Name: "Karakasa"
	Lv: 72
	Hp: 3092
	Sp: 1
	Exp: 842
	JExp: 860
	AttackRange: 1
	Attack: [172, 42]
	Def: 93
	Mdef: 29
	Stats: {
		Str: 66
		Agi: 73
		Vit: 33
		Int: 20
		Dex: 64
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 155
	AttackDelay: 1638
	AttackMotion: 2016
	DamageMotion: 576
	Drops: {
		Oil_Paper: 5000
		Bamboo_Cut: 4268
		Wooden_Block: 3200
		Smooth_Paper: 2200
		Zargon: 4074
		Glass_Bead: 30
		Murasame: 5
		Karakasa_Card: 1
	}
},
{
	Id: 1401
	SpriteName: "SHINOBI"
	Name: "Shinobi"
	Lv: 95
	Hp: 8000
	Sp: 1
	Exp: 2028
	JExp: 1902
	AttackRange: 2
	Attack: [573, 51]
	Def: 49
	Mdef: 45
	Stats: {
		Str: 71
		Agi: 70
		Vit: 55
		Int: 30
		Dex: 83
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1003
	AttackMotion: 1152
	DamageMotion: 336
	Drops: {
		Broken_Shuriken: 5335
		Ninja_Suit: 2
		Smoke_Powder: 700
		Shinobis_Sash: 100
		Thief_Clothes_: 1
		Black_Mask: 2000
		Murasame_: 5
		Shinobi_Card: 1
	}
},
{
	Id: 1402
	SpriteName: "POISON_TOAD"
	Name: "Poison Toad"
	JName: "Poisonous Toad"
	Lv: 87
	Hp: 4876
	Sp: 1
	Exp: 1474
	JExp: 1509
	AttackRange: 3
	Attack: [233, 54]
	Def: 80
	Mdef: 42
	Stats: {
		Str: 66
		Agi: 42
		Vit: 40
		Int: 45
		Dex: 70
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Poison", 2)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 160
	AttackDelay: 1148
	AttackMotion: 1728
	DamageMotion: 864
	Drops: {
		Poison_Toads_Skin: 5500
		Poison_Powder: 2400
		Gold_Ring: 4
		Green_Herb: 540
		Cardinal_Jewel_: 2
		Royal_Jelly: 2
		Cinquedea_: 10
		Poison_Toad_Card: 1
	}
},
{
	Id: 1403
	SpriteName: "ANTIQUE_FIRELOCK"
	Name: "Antique Firelock"
	JName: "Firelock Soldier"
	Lv: 88
	Hp: 7524
	Sp: 1
	Exp: 1486
	JExp: 1512
	AttackRange: 10
	Attack: [356, 45]
	Def: 72
	Mdef: 30
	Stats: {
		Str: 67
		Agi: 44
		Vit: 30
		Int: 30
		Dex: 100
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 1084
	AttackMotion: 2304
	DamageMotion: 576
	Drops: {
		Iron: 5500
		Apple_Of_Archer: 1
		Large_Jellopy: 1400
		Yellow_Herb: 40
		Nice_Sweet_Potato: 350
		Panacea: 250
		The_Cyclone_: 5
		Antique_Firelock_Card: 1
	}
},
{
	Id: 1404
	SpriteName: "MIYABI_NINGYO"
	Name: "Miyabi Ningyo"
	JName: "Miyabi Doll"
	Lv: 85
	Hp: 5188
	Sp: 1
	Exp: 1228
	JExp: 1256
	AttackRange: 1
	Attack: [238, 66]
	Def: 57
	Mdef: 19
	Stats: {
		Str: 66
		Agi: 30
		Vit: 30
		Int: 55
		Dex: 88
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 250
	AttackDelay: 1938
	AttackMotion: 2112
	DamageMotion: 768
	Drops: {
		Glossy_Hair: 5335
		Old_Japaness_Clothes: 2500
		White_Herb: 1550
		Star_Crumb: 1250
		High_end_Cooking_Kits: 10
		Hakujin: 5
		Mandolin_: 2
		Miyabi_Ningyo_Card: 1
	}
},
{
	Id: 1405
	SpriteName: "TENGU"
	Name: "Tengu"
	Lv: 98
	Hp: 10196
	Sp: 1
	Exp: 2040
	JExp: 1275
	AttackRange: 2
	Attack: [274, 83]
	Def: 134
	Mdef: 46
	Stats: {
		Str: 99
		Agi: 38
		Vit: 40
		Int: 30
		Dex: 80
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1439
	AttackMotion: 1920
	DamageMotion: 672
	Drops: {
		Tengus_Nose: 3500
		Broken_Wine_Vessel: 5500
		Huuma_Giant_Wheel: 5
		Fruit_Of_Mastela: 150
		Huuma_Giant_Wheel_: 5
		Imperial_Cooking_Kits: 20
		Earth_Scroll_1_5: 100
		Tengu_Card: 1
	}
},
{
	Id: 1406
	SpriteName: "KAPHA"
	Name: "Kapha"
	Lv: 83
	Hp: 5470
	Sp: 1
	Exp: 1138
	JExp: 1164
	AttackRange: 1
	Attack: [306, 32]
	Def: 61
	Mdef: 38
	Stats: {
		Str: 67
		Agi: 59
		Vit: 40
		Int: 31
		Dex: 73
		Luk: 24
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 2012
	AttackMotion: 1728
	DamageMotion: 672
	Drops: {
		Yellow_Plate: 6500
		Cyfar: 3500
		Huuma_Calm_Mind: 20
		Leaflet_Of_Aloe: 2300
		Ment: 2
		Guitar_Of_Blue_Solo: 10
		Jitte_: 5
		Kapha_Card: 1
	}
},
/*{
	Id: 1407
	SpriteName: "DOKEBI_"
	Name: "Dokebi"
	Lv: 1
	Hp: 1
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Water", 0)
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},*/
// Gonryun (6.1)
{
	Id: 1408
	SpriteName: "BLOOD_BUTTERFLY"
	Name: "Bloody Butterfly"
	Lv: 94
	Hp: 7030
	Sp: 1
	Exp: 1866
	JExp: 1749
	AttackRange: 3
	Attack: [361, 67]
	Def: 79
	Mdef: 50
	Stats: {
		Str: 70
		Agi: 68
		Vit: 40
		Int: 55
		Dex: 108
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 145
	AttackDelay: 472
	AttackMotion: 576
	DamageMotion: 288
	Drops: {
		Sharp_Feeler: 4608
		Great_Wing: 2500
		Wing_Of_Butterfly: 1200
		Powder_Of_Butterfly: 5500
		Waghnakh_: 3
		Lariat: 1
		Blood_Butterfly_Card: 1
	}
},
{
	Id: 1409
	SpriteName: "RICE_CAKE_BOY"
	Name: "Rice Cake Boy"
	JName: "Dumpling Child"
	Lv: 60
	Hp: 2098
	Sp: 1
	Exp: 558
	JExp: 597
	AttackRange: 1
	Attack: [134, 22]
	Def: 96
	Mdef: 12
	Stats: {
		Str: 50
		Agi: 43
		Vit: 29
		Int: 5
		Dex: 47
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 160
	AttackDelay: 1247
	AttackMotion: 768
	DamageMotion: 420
	Drops: {
		Bamboo_Cut: 3200
		Oil_Paper: 2500
		Pierrot_Nose: 1
		Blade_Of_Pinwheel: 5000
		Bun: 1000
		Festival_Mask: 3000
		Rice_Cake_Boy_Card: 1
	}
},
{
	Id: 1410
	SpriteName: "LIVE_PEACH_TREE"
	Name: "Live Peach Tree"
	JName: "Enchanted Peach Tree"
	Lv: 92
	Hp: 8777
	Sp: 1
	Exp: 1798
	JExp: 1724
	AttackRange: 7
	Attack: [351, 72]
	Def: 109
	Mdef: 40
	Stats: {
		Str: 76
		Agi: 52
		Vit: 55
		Int: 40
		Dex: 92
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 410
	AttackDelay: 400
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Hard_Peach: 4365
		Elder_Branch: 100
		Royal_Jelly: 1000
		Branch_Of_Dead_Tree: 400
		Banana_Juice: 100
		Old_Blue_Box: 5
		Live_Peach_Tree_Card: 1
	}
},
{
	Id: 1411
	SpriteName: "PEACH_TREE_BULLET"
	Name: "Enchanted Peach Tree Bullet"
	Lv: 0
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
{
	Id: 1412
	SpriteName: "EVIL_CLOUD_HERMIT"
	Name: "Evil Cloud Hermit"
	JName: "Taoist Hermit"
	Lv: 96
	Hp: 8266
	Sp: 1
	Exp: 1804
	JExp: 1127
	AttackRange: 10
	Attack: [611, 30]
	Def: 66
	Mdef: 46
	Stats: {
		Str: 63
		Agi: 57
		Vit: 45
		Int: 60
		Dex: 119
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 190
	AttackDelay: 480
	AttackMotion: 840
	DamageMotion: 432
	Drops: {
		Cloud_Piece: 4656
		Cheese: 5600
		Popped_Rice: 4500
		Bun: 6800
		Guitar_: 2
		Elunium_Stone: 150
		Wind_Scroll_1_5: 100
		Evil_Cloud_Hermit_Card: 1
	}
},
{
	Id: 1413
	SpriteName: "WILD_GINSENG"
	Name: "Wild Ginseng"
	JName: "Hermit Plant"
	Lv: 90
	Hp: 6052
	Sp: 1
	Exp: 1550
	JExp: 1586
	AttackRange: 1
	Attack: [575, 71]
	Def: 56
	Mdef: 62
	Stats: {
		Str: 76
		Agi: 51
		Vit: 60
		Int: 60
		Dex: 91
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 140
	AttackDelay: 512
	AttackMotion: 756
	DamageMotion: 360
	Drops: {
		Leaflet_Of_Hinal: 3500
		Leaflet_Of_Aloe: 3500
		Root_Of_Maneater: 3800
		Blossom_Of_Maneater: 4800
		Mandragora_Flowerpot: 800
		Rope_: 1
		Strawberry: 1000
		Wild_Ginseng_Card: 1
	}
},
{
	Id: 1414
	SpriteName: "GINSENG_BULLET"
	Name: "Hermit Bullet"
	Lv: 0
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
{
	Id: 1415
	SpriteName: "BABY_LEOPARD"
	Name: "Baby Leopard"
	Lv: 68
	Hp: 2590
	Sp: 1
	Exp: 524
	JExp: 1016
	AttackRange: 2
	Attack: [291, 52]
	Def: 77
	Mdef: 5
	Stats: {
		Str: 46
		Agi: 36
		Vit: 20
		Int: 4
		Dex: 61
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Ghost", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 318
	AttackMotion: 528
	DamageMotion: 420
	Drops: {
		Leopard_Skin: 5200
		Leopard_Talon: 3200
		Oridecon_Stone: 150
		Meat: 2000
		Dagger_: 100
		Pet_Food: 500
		Baby_Leopard_Card: 1
	}
},
{
	Id: 1416
	SpriteName: "WICKED_NYMPH"
	Name: "Wicked Nymph"
	JName: "Evil Nymph"
	Lv: 97
	Hp: 8491
	Sp: 1
	Exp: 2130
	JExp: 1331
	AttackRange: 2
	Attack: [442, 128]
	Def: 46
	Mdef: 45
	Stats: {
		Str: 84
		Agi: 46
		Vit: 45
		Int: 70
		Dex: 92
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 637
	AttackMotion: 1008
	DamageMotion: 360
	Drops: {
		Limpid_Celestial_Robe: 3977
		Soft_Silk_Cloth: 1380
		Oridecon: 10
		Mandolin_: 4
		Lute_: 1
		Holy_Scroll_1_5: 100
		Oriental_Lute: 10
		Wicked_Nymph_Card: 1
	}
},
{
	Id: 1417
	SpriteName: "ZIPPER_BEAR"
	Name: "Zipper Bear"
	Lv: 90
	Hp: 6620
	Sp: 1
	Exp: 1436
	JExp: 1467
	AttackRange: 1
	Attack: [451, 57]
	Def: 130
	Mdef: 40
	Stats: {
		Str: 68
		Agi: 51
		Vit: 50
		Int: 35
		Dex: 70
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 155
	AttackDelay: 780
	AttackMotion: 1008
	DamageMotion: 420
	Drops: {
		Black_Bears_Skin: 4462
		Mystery_Iron_Bit: 3500
		Royal_Jelly: 400
		Honey: 900
		Apple: 90
		Zipper_Bear_Card: 1
	}
},
{
	Id: 1418
	SpriteName: "DARK_SNAKE_LORD"
	Name: "Evil Snake Lord"
	Lv: 105
	Hp: 1101000
	Sp: 1
	Exp: 864000
	JExp: 630000
	AttackRange: 3
	Attack: [2882, 1986]
	Def: 314
	Mdef: 185
	Stats: {
		Str: 122
		Agi: 172
		Vit: 107
		Int: 135
		Dex: 235
		Luk: 88
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 588
	AttackMotion: 816
	DamageMotion: 420
	DamageTakenRate: 10
	MvpExp: 78120
	MvpDrops: {
		Yggdrasilberry: 5500
		Old_Violet_Box: 5000
		Elunium: 5500
	}
	Drops: {
		Taegeuk_Plate: 5820
		Sword_Of_Grave_Keeper: 5100
		Hell_Fire: 80
		Ph_D_Hat: 80
		Gae_Bolg: 500
		Pill: 900
		Sway_Apron: 2000
		Dark_Snake_Lord_Card: 1
	}
},
// Additional G_Mobs
{
	Id: 1419
	SpriteName: "G_FARMILIAR"
	Name: "Familiar"
	Lv: 24
	Hp: 427
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [68, 9]
	Def: 26
	Mdef: 5
	Stats: {
		Str: 15
		Agi: 19
		Vit: 20
		Int: 5
		Dex: 20
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1276
	AttackMotion: 576
	DamageMotion: 384
},
{
	Id: 1420
	SpriteName: "G_ARCHER_SKELETON"
	Name: "Archer Skeleton"
	Lv: 50
	Hp: 1646
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 9
	Attack: [95, 23]
	Def: 47
	Mdef: 10
	Stats: {
		Str: 30
		Agi: 29
		Vit: 20
		Int: 10
		Dex: 35
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 2864
	AttackMotion: 864
	DamageMotion: 576
},
{
	Id: 1421
	SpriteName: "G_ISIS"
	Name: "Isis"
	Lv: 59
	Hp: 2092
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [202, 37]
	Def: 83
	Mdef: 5
	Stats: {
		Str: 58
		Agi: 43
		Vit: 22
		Int: 5
		Dex: 43
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1384
	AttackMotion: 768
	DamageMotion: 336
},
{
	Id: 1422
	SpriteName: "G_HUNTER_FLY"
	Name: "Hunter Fly"
	Lv: 63
	Hp: 2050
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [226, 20]
	Def: 46
	Mdef: 20
	Stats: {
		Str: 32
		Agi: 72
		Vit: 22
		Int: 25
		Dex: 100
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 676
	AttackMotion: 576
	DamageMotion: 480
},
{
	Id: 1423
	SpriteName: "G_GHOUL"
	Name: "Ghoul"
	Lv: 61
	Hp: 2614
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [227, 29]
	Def: 78
	Mdef: 5
	Stats: {
		Str: 56
		Agi: 12
		Vit: 19
		Int: 11
		Dex: 30
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 2456
	AttackMotion: 912
	DamageMotion: 504
},
{
	Id: 1424
	SpriteName: "G_SIDE_WINDER"
	Name: "Side Winder"
	Lv: 70
	Hp: 2736
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [316, 30]
	Def: 101
	Mdef: 12
	Stats: {
		Str: 52
		Agi: 32
		Vit: 35
		Int: 20
		Dex: 73
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 576
},
{
	Id: 1425
	SpriteName: "G_OBEAUNE"
	Name: "Obeaune"
	Lv: 53
	Hp: 2158
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [102, 45]
	Def: 48
	Mdef: 26
	Stats: {
		Str: 54
		Agi: 47
		Vit: 21
		Int: 40
		Dex: 36
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 288
},
{
	Id: 1426
	SpriteName: "G_MARC"
	Name: "Marc"
	Lv: 56
	Hp: 2522
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [145, 25]
	Def: 55
	Mdef: 24
	Stats: {
		Str: 50
		Agi: 24
		Vit: 22
		Int: 15
		Dex: 53
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1272
	AttackMotion: 72
	DamageMotion: 480
},
{
	Id: 1427
	SpriteName: "G_NIGHTMARE"
	Name: "Nightmare"
	Lv: 69
	Hp: 2872
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [297, 62]
	Def: 116
	Mdef: 15
	Stats: {
		Str: 57
		Agi: 32
		Vit: 20
		Int: 15
		Dex: 77
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1816
	AttackMotion: 816
	DamageMotion: 432
},
{
	Id: 1428
	SpriteName: "G_POISON_SPORE"
	Name: "Poison Spore"
	Lv: 26
	Hp: 456
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [68, 15]
	Def: 40
	Mdef: 8
	Stats: {
		Str: 19
		Agi: 17
		Vit: 22
		Int: 5
		Dex: 20
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 288
},
{
	Id: 1429
	SpriteName: "G_ARGIOPE"
	Name: "Argiope"
	Lv: 75
	Hp: 3105
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [321, 50]
	Def: 88
	Mdef: 32
	Stats: {
		Str: 60
		Agi: 23
		Vit: 40
		Int: 30
		Dex: 24
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1792
	AttackMotion: 792
	DamageMotion: 336
},
{
	Id: 1430
	SpriteName: "G_ARGOS"
	Name: "Argos"
	Lv: 47
	Hp: 1005
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [96, 33]
	Def: 58
	Mdef: 8
	Stats: {
		Str: 38
		Agi: 17
		Vit: 25
		Int: 5
		Dex: 26
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1468
	AttackMotion: 468
	DamageMotion: 768
},
{
	Id: 1431
	SpriteName: "G_BAPHOMET_"
	Name: "Baphomet Jr."
	Lv: 57
	Hp: 2035
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [195, 33]
	Def: 70
	Mdef: 25
	Stats: {
		Str: 52
		Agi: 60
		Vit: 36
		Int: 17
		Dex: 57
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 868
	AttackMotion: 480
	DamageMotion: 120
},
{
	Id: 1432
	SpriteName: "G_DESERT_WOLF"
	Name: "Desert Wolf"
	Lv: 103
	Hp: 9447
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [676, 59]
	Def: 114
	Mdef: 47
	Stats: {
		Str: 93
		Agi: 69
		Vit: 63
		Int: 61
		Dex: 98
		Luk: 42
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1120
	AttackMotion: 420
	DamageMotion: 288
},
{
	Id: 1433
	SpriteName: "G_DEVIRUCHI"
	Name: "Deviruchi"
	Lv: 64
	Hp: 2300
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [221, 73]
	Def: 62
	Mdef: 30
	Stats: {
		Str: 61
		Agi: 17
		Vit: 30
		Int: 35
		Dex: 57
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 980
	AttackMotion: 600
	DamageMotion: 384
},
{
	Id: 1434
	SpriteName: "G_DRAINLIAR"
	Name: "Drainliar"
	Lv: 47
	Hp: 1162
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [100, 42]
	Def: 50
	Mdef: 15
	Stats: {
		Str: 35
		Agi: 34
		Vit: 24
		Int: 22
		Dex: 50
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1276
	AttackMotion: 576
	DamageMotion: 384
},
{
	Id: 1435
	SpriteName: "G_EVIL_DRUID"
	Name: "Evil Druid"
	Lv: 80
	Hp: 5149
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [378, 68]
	Def: 88
	Mdef: 45
	Stats: {
		Str: 62
		Agi: 32
		Vit: 24
		Int: 45
		Dex: 85
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 2276
	AttackMotion: 576
	DamageMotion: 336
},
{
	Id: 1436
	SpriteName: "G_JAKK"
	Name: "Jakk"
	Lv: 63
	Hp: 2054
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [229, 37]
	Def: 90
	Mdef: 25
	Stats: {
		Str: 58
		Agi: 43
		Vit: 42
		Int: 25
		Dex: 61
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1180
	AttackMotion: 480
	DamageMotion: 648
},
{
	Id: 1437
	SpriteName: "G_JOKER"
	Name: "Joker"
	Lv: 90
	Hp: 6022
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [317, 60]
	Def: 64
	Mdef: 76
	Stats: {
		Str: 84
		Agi: 99
		Vit: 30
		Int: 50
		Dex: 92
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1364
	AttackMotion: 864
	DamageMotion: 432
},
{
	Id: 1438
	SpriteName: "G_KHALITZBURG"
	Name: "Khalitzburg"
	Lv: 118
	Hp: 23986
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1232, 96]
	Def: 125
	Mdef: 10
	Stats: {
		Str: 121
		Agi: 48
		Vit: 40
		Int: 31
		Dex: 125
		Luk: 32
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 528
	AttackMotion: 1000
	DamageMotion: 396
},
{
	Id: 1439
	SpriteName: "G_HIGH_ORC"
	Name: "High Orc"
	Lv: 81
	Hp: 4193
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [428, 50]
	Def: 101
	Mdef: 45
	Stats: {
		Str: 75
		Agi: 16
		Vit: 40
		Int: 31
		Dex: 83
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1500
	AttackMotion: 500
	DamageMotion: 1000
},
{
	Id: 1440
	SpriteName: "G_STEM_WORM"
	Name: "Stem Worm"
	Lv: 84
	Hp: 4530
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [293, 41]
	Def: 73
	Mdef: 50
	Stats: {
		Str: 55
		Agi: 37
		Vit: 25
		Int: 47
		Dex: 84
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1500
	AttackMotion: 500
	DamageMotion: 1000
},
{
	Id: 1441
	SpriteName: "G_PENOMENA"
	Name: "Penomena"
	Lv: 85
	Hp: 4589
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 7
	Attack: [321, 41]
	Def: 85
	Mdef: 32
	Stats: {
		Str: 76
		Agi: 38
		Vit: 35
		Int: 35
		Dex: 107
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 832
	AttackMotion: 500
	DamageMotion: 600
},
{
	Id: 1442
	SpriteName: "G_SASQUATCH"
	Name: "Sasquatch"
	Lv: 72
	Hp: 3163
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [293, 30]
	Def: 101
	Mdef: 28
	Stats: {
		Str: 70
		Agi: 35
		Vit: 60
		Int: 10
		Dex: 71
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1260
	AttackMotion: 192
	DamageMotion: 192
},
{
	Id: 1443
	SpriteName: "G_CRUISER"
	Name: "Cruiser"
	Lv: 41
	Hp: 919
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 7
	Attack: [55, 20]
	Def: 20
	Mdef: 18
	Stats: {
		Str: 17
		Agi: 10
		Vit: 23
		Int: 15
		Dex: 34
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 1296
	AttackMotion: 1296
	DamageMotion: 432
	Drops: {
		Undelivered_Gift: 10000
	}
},
{
	Id: 1444
	SpriteName: "G_CHEPET"
	Name: "Chepet"
	Lv: 42
	Hp: 4950
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [79, 33]
	Def: 55
	Mdef: 25
	Stats: {
		Str: 32
		Agi: 35
		Vit: 35
		Int: 21
		Dex: 32
		Luk: 23
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 672
	AttackMotion: 672
	DamageMotion: 288
},
{
	Id: 1445
	SpriteName: "G_RAGGLER"
	Name: "Raggler"
	Lv: 48
	Hp: 1148
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [72, 39]
	Def: 56
	Mdef: 10
	Stats: {
		Str: 30
		Agi: 42
		Vit: 38
		Int: 15
		Dex: 54
		Luk: 27
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1000
	AttackMotion: 900
	DamageMotion: 384
},
{
	Id: 1446
	SpriteName: "G_INJUSTICE"
	Name: "Injustice"
	Lv: 95
	Hp: 7952
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [447, 116]
	Def: 76
	Mdef: 0
	Stats: {
		Str: 77
		Agi: 59
		Vit: 58
		Int: 65
		Dex: 88
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 770
	AttackMotion: 720
	DamageMotion: 336
},
{
	Id: 1447
	SpriteName: "G_GRYPHON"
	Name: "Gryphon"
	Lv: 105
	Hp: 60720
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [932, 103]
	Def: 113
	Mdef: 72
	Stats: {
		Str: 101
		Agi: 133
		Vit: 66
		Int: 70
		Dex: 164
		Luk: 54
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 704
	AttackMotion: 504
	DamageMotion: 432
},
{
	Id: 1448
	SpriteName: "G_DARK_FRAME"
	Name: "Dark Frame"
	Lv: 76
	Hp: 3520
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [350, 30]
	Def: 67
	Mdef: 27
	Stats: {
		Str: 69
		Agi: 37
		Vit: 36
		Int: 10
		Dex: 64
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 920
	AttackMotion: 720
	DamageMotion: 200
},
{
	Id: 1449
	SpriteName: "G_MUTANT_DRAGON"
	Name: "Mutant Dragon"
	JName: "Mutant Dragonoid"
	Lv: 65
	Hp: 50706
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 4
	Attack: [1176, 534]
	Def: 130
	Mdef: 20
	Stats: {
		Str: 75
		Agi: 35
		Vit: 30
		Int: 68
		Dex: 108
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1280
	AttackMotion: 1080
	DamageMotion: 240
},
{
	Id: 1450
	SpriteName: "G_WIND_GHOST"
	Name: "Wind Ghost"
	Lv: 80
	Hp: 4008
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [182, 95]
	Def: 64
	Mdef: 51
	Stats: {
		Str: 62
		Agi: 27
		Vit: 25
		Int: 55
		Dex: 102
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1056
	AttackMotion: 1056
	DamageMotion: 336
},
{
	Id: 1451
	SpriteName: "G_MERMAN"
	Name: "Merman"
	Lv: 60
	Hp: 2940
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [131, 32]
	Def: 62
	Mdef: 8
	Stats: {
		Str: 45
		Agi: 29
		Vit: 30
		Int: 19
		Dex: 55
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 220
	AttackDelay: 916
	AttackMotion: 816
	DamageMotion: 336
},
{
	Id: 1452
	SpriteName: "G_ORC_LADY"
	Name: "Orc Lady"
	Lv: 45
	Hp: 1520
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [77, 33]
	Def: 83
	Mdef: 17
	Stats: {
		Str: 36
		Agi: 11
		Vit: 28
		Int: 10
		Dex: 57
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1050
	AttackMotion: 900
	DamageMotion: 288
},
{
	Id: 1453
	SpriteName: "G_RAYDRIC_ARCHER"
	Name: "Raydric Archer"
	Lv: 82
	Hp: 4437
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 9
	Attack: [415, 18]
	Def: 63
	Mdef: 40
	Stats: {
		Str: 53
		Agi: 24
		Vit: 40
		Int: 15
		Dex: 134
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1152
	AttackMotion: 1152
	DamageMotion: 480
},
{
	Id: 1454
	SpriteName: "G_TRI_JOINT"
	Name: "Tri Joint"
	Lv: 66
	Hp: 2530
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [187, 28]
	Def: 22
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 33
		Vit: 24
		Int: 10
		Dex: 61
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 860
	AttackMotion: 660
	DamageMotion: 624
},
{
	Id: 1455
	SpriteName: "G_KOBOLD_ARCHER"
	Name: "Kobold Archer"
	Lv: 108
	Hp: 11053
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 9
	Attack: [762, 33]
	Def: 84
	Mdef: 5
	Stats: {
		Str: 99
		Agi: 39
		Vit: 48
		Int: 30
		Dex: 108
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1008
	AttackMotion: 1008
	DamageMotion: 384
},
{
	Id: 1456
	SpriteName: "G_CHIMERA"
	Name: "Chimera"
	Lv: 70
	Hp: 26406
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1029, 148]
	Def: 159
	Mdef: 10
	Stats: {
		Str: 1
		Agi: 38
		Vit: 110
		Int: 88
		Dex: 91
		Luk: 85
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 772
	AttackMotion: 672
	DamageMotion: 360
},
{
	Id: 1457
	SpriteName: "G_MANTIS"
	Name: "Mantis"
	Lv: 65
	Hp: 2719
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [187, 31]
	Def: 90
	Mdef: 0
	Stats: {
		Str: 55
		Agi: 33
		Vit: 24
		Int: 5
		Dex: 46
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1528
	AttackMotion: 660
	DamageMotion: 432
},
{
	Id: 1458
	SpriteName: "G_MARDUK"
	Name: "Marduk"
	Lv: 73
	Hp: 2893
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [198, 112]
	Def: 66
	Mdef: 43
	Stats: {
		Str: 66
		Agi: 49
		Vit: 21
		Int: 40
		Dex: 79
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1540
	AttackMotion: 840
	DamageMotion: 504
},
{
	Id: 1459
	SpriteName: "G_MARIONETTE"
	Name: "Marionette"
	Lv: 62
	Hp: 2209
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [174, 56]
	Def: 71
	Mdef: 35
	Stats: {
		Str: 52
		Agi: 36
		Vit: 28
		Int: 25
		Dex: 62
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1480
	AttackMotion: 480
	DamageMotion: 1056
},
{
	Id: 1460
	SpriteName: "G_MATYR"
	Name: "Matyr"
	Lv: 58
	Hp: 2087
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [151, 26]
	Def: 63
	Mdef: 5
	Stats: {
		Str: 48
		Agi: 20
		Vit: 21
		Int: 17
		Dex: 47
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 432
	AttackMotion: 432
	DamageMotion: 360
},
{
	Id: 1461
	SpriteName: "G_MINOROUS"
	Name: "Minorous"
	Lv: 58
	Hp: 1893
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [247, 36]
	Def: 100
	Mdef: 10
	Stats: {
		Str: 65
		Agi: 42
		Vit: 36
		Int: 43
		Dex: 61
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1360
	AttackMotion: 960
	DamageMotion: 432
},
{
	Id: 1462
	SpriteName: "G_ORC_SKELETON"
	Name: "Orc Skeleton"
	Lv: 53
	Hp: 2077
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [115, 25]
	Def: 82
	Mdef: 10
	Stats: {
		Str: 52
		Agi: 16
		Vit: 24
		Int: 5
		Dex: 22
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 2420
	AttackMotion: 720
	DamageMotion: 648
},
{
	Id: 1463
	SpriteName: "G_ORC_ZOMBIE"
	Name: "Orc Zombie"
	Lv: 51
	Hp: 1908
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [114, 15]
	Def: 71
	Mdef: 5
	Stats: {
		Str: 45
		Agi: 17
		Vit: 32
		Int: 5
		Dex: 57
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 2852
	AttackMotion: 1152
	DamageMotion: 840
},
{
	Id: 1464
	SpriteName: "G_PASANA"
	Name: "Pasana"
	Lv: 79
	Hp: 3510
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [438, 40]
	Def: 93
	Mdef: 35
	Stats: {
		Str: 76
		Agi: 36
		Vit: 33
		Int: 20
		Dex: 80
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 976
	AttackMotion: 576
	DamageMotion: 288
},
{
	Id: 1465
	SpriteName: "G_PETIT"
	Name: "Petite"
	Lv: 86
	Hp: 5799
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [321, 66]
	Def: 99
	Mdef: 49
	Stats: {
		Str: 55
		Agi: 32
		Vit: 38
		Int: 37
		Dex: 65
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Dragon"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1624
	AttackMotion: 620
	DamageMotion: 384
},
{
	Id: 1466
	SpriteName: "G_PETIT_"
	Name: "Petite"
	Lv: 79
	Hp: 3556
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [308, 36]
	Def: 86
	Mdef: 42
	Stats: {
		Str: 63
		Agi: 39
		Vit: 31
		Int: 55
		Dex: 86
		Luk: 85
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Dragon"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1420
	AttackMotion: 1080
	DamageMotion: 528
},
{
	Id: 1467
	SpriteName: "G_RAYDRIC"
	Name: "Raydric"
	Lv: 115
	Hp: 18408
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [901, 96]
	Def: 89
	Mdef: 15
	Stats: {
		Str: 129
		Agi: 87
		Vit: 55
		Int: 32
		Dex: 106
		Luk: 27
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 824
	AttackMotion: 780
	DamageMotion: 420
},
{
	Id: 1468
	SpriteName: "G_REQUIEM"
	Name: "Requim"
	JName: "Requiem"
	Lv: 71
	Hp: 3089
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [348, 48]
	Def: 88
	Mdef: 20
	Stats: {
		Str: 58
		Agi: 34
		Vit: 35
		Int: 12
		Dex: 50
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 1516
	AttackMotion: 816
	DamageMotion: 432
},
{
	Id: 1469
	SpriteName: "G_SKEL_WORKER"
	Name: "Skeleton Worker"
	Lv: 44
	Hp: 1240
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [92, 12]
	Def: 45
	Mdef: 5
	Stats: {
		Str: 30
		Agi: 13
		Vit: 22
		Int: 10
		Dex: 37
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 2420
	AttackMotion: 720
	DamageMotion: 384
},
{
	Id: 1470
	SpriteName: "G_ZEROM"
	Name: "Zerom"
	Lv: 70
	Hp: 2687
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [328, 38]
	Def: 93
	Mdef: 15
	Stats: {
		Str: 57
		Agi: 49
		Vit: 30
		Int: 15
		Dex: 62
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1780
	AttackMotion: 1080
	DamageMotion: 432
},
{
	Id: 1471
	SpriteName: "G_NINE_TAIL"
	Name: "Nine Tail"
	Lv: 72
	Hp: 2783
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [491, 50]
	Def: 95
	Mdef: 40
	Stats: {
		Str: 61
		Agi: 38
		Vit: 30
		Int: 20
		Dex: 106
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 840
	AttackMotion: 540
	DamageMotion: 480
},
{
	Id: 1472
	SpriteName: "G_BON_GUN"
	Name: "Bongun"
	Lv: 59
	Hp: 2510
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [198, 29]
	Def: 88
	Mdef: 5
	Stats: {
		Str: 55
		Agi: 24
		Vit: 24
		Int: 5
		Dex: 37
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1720
	AttackMotion: 500
	DamageMotion: 420
},
{
	Id: 1473
	SpriteName: "G_ORC_ARCHER"
	Name: "Orc Archer"
	Lv: 78
	Hp: 4835
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 9
	Attack: [286, 43]
	Def: 67
	Mdef: 31
	Stats: {
		Str: 55
		Agi: 32
		Vit: 24
		Int: 30
		Dex: 119
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1960
	AttackMotion: 620
	DamageMotion: 480
},
{
	Id: 1474
	SpriteName: "G_MIMIC"
	Name: "Mimic"
	Lv: 56
	Hp: 1939
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [232, 22]
	Def: 63
	Mdef: 15
	Stats: {
		Str: 49
		Agi: 120
		Vit: 20
		Int: 15
		Dex: 109
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 972
	AttackMotion: 500
	DamageMotion: 288
},
{
	Id: 1475
	SpriteName: "G_WRAITH"
	Name: "Wraith"
	Lv: 77
	Hp: 5168
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [369, 61]
	Def: 80
	Mdef: 40
	Stats: {
		Str: 62
		Agi: 26
		Vit: 30
		Int: 55
		Dex: 91
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1816
	AttackMotion: 576
	DamageMotion: 240
},
{
	Id: 1476
	SpriteName: "G_ALARM"
	Name: "Alarm"
	Lv: 88
	Hp: 5562
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [319, 48]
	Def: 106
	Mdef: 53
	Stats: {
		Str: 70
		Agi: 72
		Vit: 40
		Int: 25
		Dex: 66
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1020
	AttackMotion: 500
	DamageMotion: 768
},
{
	Id: 1477
	SpriteName: "G_ARCLOUSE"
	Name: "Arclouse"
	JName: "Arclouze"
	Lv: 77
	Hp: 4320
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [296, 40]
	Def: 101
	Mdef: 36
	Stats: {
		Str: 60
		Agi: 73
		Vit: 45
		Int: 35
		Dex: 72
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 960
	AttackMotion: 500
	DamageMotion: 480
},
{
	Id: 1478
	SpriteName: "G_RIDEWORD"
	Name: "Rideword"
	Lv: 74
	Hp: 3222
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [387, 22]
	Def: 61
	Mdef: 38
	Stats: {
		Str: 67
		Agi: 53
		Vit: 32
		Int: 44
		Dex: 125
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 864
	AttackMotion: 500
	DamageMotion: 192
},
{
	Id: 1479
	SpriteName: "G_SKEL_PRISONER"
	Name: "Skeleton Prisoner"
	Lv: 91
	Hp: 9194
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [346, 55]
	Def: 95
	Mdef: 41
	Stats: {
		Str: 84
		Agi: 35
		Vit: 60
		Int: 20
		Dex: 85
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 1848
	AttackMotion: 500
	DamageMotion: 576
},
{
	Id: 1480
	SpriteName: "G_ZOMBIE_PRISONER"
	Name: "Zombie Prisoner"
	Lv: 89
	Hp: 8045
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [392, 60]
	Def: 89
	Mdef: 28
	Stats: {
		Str: 87
		Agi: 39
		Vit: 58
		Int: 5
		Dex: 82
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 1768
	AttackMotion: 500
	DamageMotion: 192
},
{
	Id: 1481
	SpriteName: "G_PUNK"
	Name: "Punk"
	Lv: 82
	Hp: 3869
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [293, 54]
	Def: 68
	Mdef: 55
	Stats: {
		Str: 67
		Agi: 39
		Vit: 30
		Int: 35
		Dex: 95
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1500
	AttackMotion: 500
	DamageMotion: 1000
},
{
	Id: 1482
	SpriteName: "G_ZHERLTHSH"
	Name: "Zherlthsh"
	JName: "Zealotus"
	Lv: 105
	Hp: 61350
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [993, 250]
	Def: 91
	Mdef: 99
	Stats: {
		Str: 88
		Agi: 61
		Vit: 51
		Int: 62
		Dex: 136
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 800
	AttackMotion: 792
	DamageMotion: 384
},
{
	Id: 1483
	SpriteName: "G_RYBIO"
	Name: "Rybio"
	Lv: 98
	Hp: 8700
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [360, 76]
	Def: 109
	Mdef: 30
	Stats: {
		Str: 96
		Agi: 52
		Vit: 61
		Int: 30
		Dex: 96
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1790
	AttackMotion: 1440
	DamageMotion: 540
},
{
	Id: 1484
	SpriteName: "G_PHENDARK"
	Name: "Phendark"
	Lv: 102
	Hp: 11000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [701, 75]
	Def: 307
	Mdef: 50
	Stats: {
		Str: 111
		Agi: 65
		Vit: 71
		Int: 20
		Dex: 85
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 1744
	AttackMotion: 1344
	DamageMotion: 600
},
{
	Id: 1485
	SpriteName: "G_MYSTELTAINN"
	Name: "Mysteltainn"
	Lv: 130
	Hp: 70000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1079, 567]
	Def: 73
	Mdef: 61
	Stats: {
		Str: 102
		Agi: 139
		Vit: 62
		Int: 65
		Dex: 182
		Luk: 65
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1152
	AttackMotion: 500
	DamageMotion: 240
},
{
	Id: 1486
	SpriteName: "G_TIRFING"
	Name: "Tirfing"
	JName: "Ogretooth"
	Lv: 114
	Hp: 59000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [948, 411]
	Def: 87
	Mdef: 69
	Stats: {
		Str: 105
		Agi: 105
		Vit: 75
		Int: 73
		Dex: 151
		Luk: 65
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 816
	AttackMotion: 500
	DamageMotion: 240
},
{
	Id: 1487
	SpriteName: "G_EXECUTIONER"
	Name: "Executioner"
	Lv: 101
	Hp: 40200
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [670, 359]
	Def: 97
	Mdef: 188
	Stats: {
		Str: 99
		Agi: 96
		Vit: 77
		Int: 78
		Dex: 95
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 768
	AttackMotion: 500
	DamageMotion: 384
},
{
	Id: 1488
	SpriteName: "G_ANOLIAN"
	Name: "Anolian"
	Lv: 109
	Hp: 15547
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [650, 110]
	Def: 61
	Mdef: 11
	Stats: {
		Str: 130
		Agi: 63
		Vit: 55
		Int: 66
		Dex: 70
		Luk: 48
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 190
	AttackDelay: 900
	AttackMotion: 500
	DamageMotion: 864
},
{
	Id: 1489
	SpriteName: "G_STING"
	Name: "Sting"
	Lv: 104
	Hp: 14143
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [677, 67]
	Def: 146
	Mdef: 50
	Stats: {
		Str: 108
		Agi: 49
		Vit: 68
		Int: 43
		Dex: 104
		Luk: 24
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 528
	AttackMotion: 500
	DamageMotion: 240
},
{
	Id: 1490
	SpriteName: "G_WANDER_MAN"
	Name: "Wander Man"
	JName: "Wanderer"
	Lv: 120
	Hp: 19307
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1695, 105]
	Def: 64
	Mdef: 5
	Stats: {
		Str: 118
		Agi: 92
		Vit: 36
		Int: 15
		Dex: 169
		Luk: 33
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 672
	AttackMotion: 500
	DamageMotion: 192
},
{
	Id: 1491
	SpriteName: "G_DOKEBI"
	Name: "Dokebi"
	Lv: 68
	Hp: 2820
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [333, 30]
	Def: 85
	Mdef: 20
	Stats: {
		Str: 52
		Agi: 56
		Vit: 35
		Int: 20
		Dex: 66
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1156
	AttackMotion: 456
	DamageMotion: 384
},
// Umbala (6.2)
{
	Id: 1492
	SpriteName: "INCANTATION_SAMURAI"
	Name: "Incantation Samurai"
	JName: "Samurai Specter"
	Lv: 100
	Hp: 901000
	Sp: 1
	Exp: 902016
	JExp: 595080
	AttackRange: 3
	Attack: [2855, 936]
	Def: 296
	Mdef: 140
	Stats: {
		Str: 145
		Agi: 161
		Vit: 88
		Int: 66
		Dex: 186
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 135
	AttackDelay: 874
	AttackMotion: 1344
	DamageMotion: 576
	DamageTakenRate: 10
	MvpExp: 375840
	MvpDrops: {
		Yggdrasilberry: 5500
		Seed_Of_Yggdrasil: 3500
		Elunium: 5500
	}
	Drops: {
		Masamune: 2
		Elunium: 3500
		Assassin_Mask_: 500
		Yggdrasilberry: 4500
		Steel: 6305
		Huuma_Blaze: 7500
		Azoth: 80
		Incant_Samurai_Card: 1
	}
},
{
	Id: 1493
	SpriteName: "DRYAD"
	Name: "Dryad"
	Lv: 68
	Hp: 3640
	Sp: 1
	Exp: 878
	JExp: 939
	AttackRange: 3
	Attack: [279, 35]
	Def: 153
	Mdef: 8
	Stats: {
		Str: 54
		Agi: 14
		Vit: 40
		Int: 35
		Dex: 74
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 950
	AttackMotion: 2520
	DamageMotion: 576
	Drops: {
		Tough_Vines: 5335
		Great_Leaf: 1000
		Browny_Root: 3000
		Pineapple: 300
		Chemeti: 1
		Centimental_Leaf: 10
		Sharp_Leaf: 3000
		Dryad_Card: 1
	}
},
{
	Id: 1494
	SpriteName: "KIND_OF_BEETLE"
	Name: "Beetle King"
	Lv: 55
	Hp: 2061
	Sp: 1
	Exp: 472
	JExp: 507
	AttackRange: 1
	Attack: [116, 52]
	Def: 79
	Mdef: 8
	Stats: {
		Str: 53
		Agi: 47
		Vit: 10
		Int: 0
		Dex: 50
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 165
	AttackDelay: 1247
	AttackMotion: 768
	DamageMotion: 576
	Drops: {
		Solid_Peeling: 6500
		Beetle_Nipper: 4500
		Insect_Feeler: 1000
		Worm_Peelings: 500
		Guard_: 1
		Kind_Of_Beetle_Card: 1
	}
},
{
	Id: 1495
	SpriteName: "STONE_SHOOTER"
	Name: "Stone Shooter"
	Lv: 64
	Hp: 2101
	Sp: 1
	Exp: 722
	JExp: 776
	AttackRange: 10
	Attack: [211, 53]
	Def: 88
	Mdef: 15
	Stats: {
		Str: 55
		Agi: 55
		Vit: 36
		Int: 15
		Dex: 85
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 2413
	AttackMotion: 1248
	DamageMotion: 768
	Drops: {
		Solid_Twig: 5000
		Log: 5000
		Browny_Root: 1000
		Wooden_Block: 2000
		Oridecon_Stone: 100
		Stone: 1000
		Stone_Shooter_Card: 1
	}
},
{
	Id: 1496
	SpriteName: "STONE_SHOOTER_BULLET"
	Name: "Stone Shooter Bullet"
	Lv: 0
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
{
	Id: 1497
	SpriteName: "WOODEN_GOLEM"
	Name: "Wooden Golem"
	Lv: 72
	Hp: 3914
	Sp: 1
	Exp: 1044
	JExp: 1079
	AttackRange: 1
	Attack: [321, 42]
	Def: 249
	Mdef: 26
	Stats: {
		Str: 69
		Agi: 30
		Vit: 45
		Int: 5
		Dex: 59
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1543
	AttackMotion: 1632
	DamageMotion: 480
	Drops: {
		Heart_Of_Tree: 4000
		Browny_Root: 4000
		Elunium_Stone: 110
		Centimental_Leaf: 10
		Branch_Of_Dead_Tree: 100
		Log: 5000
		Poison_Herb_Scopolia: 300
		Wooden_Golem_Card: 1
	}
},
{
	Id: 1498
	SpriteName: "WOOTAN_SHOOTER"
	Name: "Wootan Shooter"
	Lv: 67
	Hp: 3096
	Sp: 1
	Exp: 746
	JExp: 798
	AttackRange: 10
	Attack: [147, 35]
	Def: 91
	Mdef: 21
	Stats: {
		Str: 32
		Agi: 23
		Vit: 38
		Int: 20
		Dex: 76
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 857
	AttackMotion: 1056
	DamageMotion: 576
	Drops: {
		Air_Rifle: 4500
		Flexible_String: 3500
		Banana: 1000
		Stone: 1000
		Elder_Branch: 100
		Cacao: 100
		Banana_Hat: 10
		Wootan_Shooter_Card: 1
	}
},
{
	Id: 1499
	SpriteName: "WOOTAN_FIGHTER"
	Name: "Wootan Fighter"
	Lv: 67
	Hp: 2327
	Sp: 1
	Exp: 744
	JExp: 798
	AttackRange: 1
	Attack: [255, 36]
	Def: 103
	Mdef: 8
	Stats: {
		Str: 63
		Agi: 14
		Vit: 36
		Int: 5
		Dex: 62
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 912
	AttackMotion: 1344
	DamageMotion: 480
	Drops: {
		Meat: 4500
		Shoulder_Protection: 4000
		Waghnakh: 3
		Finger_: 1
		Elder_Branch: 100
		Great_Leaf: 1000
		Banana_Hat: 5
		Wootan_Fighter_Card: 1
	}
},
{
	Id: 1500
	SpriteName: "PARASITE"
	Name: "Parasite"
	Lv: 76
	Hp: 3222
	Sp: 1
	Exp: 1014
	JExp: 1337
	AttackRange: 8
	Attack: [177, 45]
	Def: 63
	Mdef: 30
	Stats: {
		Str: 55
		Agi: 78
		Vit: 33
		Int: 50
		Dex: 106
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Wind", 2)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 864
	AttackMotion: 864
	DamageMotion: 672
	Drops: {
		Germinating_Sprout: 5500
		Soft_Leaf: 2000
		Thin_Stem: 3880
		Great_Leaf: 500
		Rante_: 1
		Bladed_Whip: 1
		Pineapple: 800
		Parasite_Card: 1
	}
},
{
	Id: 1501
	SpriteName: "PARASITE_BULLET"
	Name: "Parasite Bullet"
	Lv: 0
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
// Event MVP
{
	Id: 1502
	SpriteName: "PORING_V"
	Name: "Pori Pori"
	JName: "Bring it on!"
	Lv: 99
	Hp: 95000000
	Sp: 1
	Exp: 94230
	JExp: 25106
	AttackRange: 1
	Attack: [6500, 5000]
	Def: 0
	Mdef: 10
	Stats: {
		Str: 100
		Agi: 100
		Vit: 65
		Int: 100
		Dex: 306
		Luk: 255
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 160
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
	MvpExp: 43625
	MvpDrops: {
		Sword_Of_Grave_Keeper: 1000
		Poring__Card: 100
		Elven_Ears: 200
	}
	Drops: {
		Poring_Hat: 10000
		Flame_Sprits_Armor: 2500
		Water_Sprits_Armor: 2500
		Earth_Sprits_Armor: 2500
		Wind_Sprits_Armor: 2500
		Bloody_Iron_Ball: 500
		Large_Jellopy: 10000
		Holy_Guard: 4500
	}
},
// Nifflheim (7.0)
{
	Id: 1503
	SpriteName: "GIBBET"
	Name: "Gibbet"
	Lv: 105
	Hp: 12999
	Sp: 1
	Exp: 1944
	JExp: 1458
	AttackRange: 1
	Attack: [697, 85]
	Def: 116
	Mdef: 45
	Stats: {
		Str: 103
		Agi: 56
		Vit: 62
		Int: 55
		Dex: 73
		Luk: 37
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 917
	AttackMotion: 1584
	DamageMotion: 576
	Drops: {
		Hanging_Doll: 1800
		Rotten_Rope: 5335
		Tree_Knot: 4074
		Cardinal_Jewel_: 300
		Red_Gemstone: 100
		Branch_Of_Dead_Tree: 10
		Elder_Branch: 100
		Gibbet_Card: 1
	}
},
{
	Id: 1504
	SpriteName: "DULLAHAN"
	Name: "Dullahan"
	Lv: 108
	Hp: 19546
	Sp: 1
	Exp: 3010
	JExp: 2976
	AttackRange: 2
	Attack: [1066, 175]
	Def: 111
	Mdef: 38
	Stats: {
		Str: 121
		Agi: 29
		Vit: 51
		Int: 43
		Dex: 100
		Luk: 3
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 155
	AttackDelay: 847
	AttackMotion: 1152
	DamageMotion: 480
	Drops: {
		Dullahans_Helm: 3200
		Dullahan_Armor: 4850
		An_Eye_Of_Dullahan: 1
		Manteau: 13
		Manteau_: 1
		Nab_Cloth: 10
		Dullahan_Card: 1
	}
},
{
	Id: 1505
	SpriteName: "LOLI_RURI"
	Name: "Loli Ruri"
	Lv: 109
	Hp: 15280
	Sp: 1
	Exp: 3348
	JExp: 2093
	AttackRange: 2
	Attack: [1123, 280]
	Def: 53
	Mdef: 44
	Stats: {
		Str: 111
		Agi: 50
		Vit: 47
		Int: 79
		Dex: 95
		Luk: 79
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 125
	AttackDelay: 747
	AttackMotion: 1632
	DamageMotion: 576
	Drops: {
		Black_Kitty_Doll: 800
		Striped_Socks: 3000
		Bat_Cage: 5044
		Elunium: 100
		Lokis_Whispers: 1
		Lunatic_Brooch: 5
		Sabah_Cloth: 10
		Loli_Ruri_Card: 1
	}
},
{
	Id: 1506
	SpriteName: "DISGUISE"
	Name: "Disguise"
	Lv: 103
	Hp: 13895
	Sp: 1
	Exp: 2678
	JExp: 1674
	AttackRange: 2
	Attack: [338, 82]
	Def: 85
	Mdef: 58
	Stats: {
		Str: 92
		Agi: 53
		Vit: 57
		Int: 75
		Dex: 80
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Earth", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 147
	AttackDelay: 516
	AttackMotion: 768
	DamageMotion: 384
	Drops: {
		Red_Scarf: 4850
		Tangled_Chain: 3686
		White_Powder: 100
		Honey: 100
		Ragamuffin_Cape: 50
		Muffler_: 2
		Rider_Insignia: 5
		Disguise_Card: 1
	}
},
{
	Id: 1507
	SpriteName: "BLOODY_MURDERER"
	Name: "Bloody Murderer"
	Lv: 110
	Hp: 14099
	Sp: 1
	Exp: 3268
	JExp: 2244
	AttackRange: 2
	Attack: [1397, 298]
	Def: 84
	Mdef: 41
	Stats: {
		Str: 120
		Agi: 65
		Vit: 66
		Int: 41
		Dex: 107
		Luk: 26
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 914
	AttackMotion: 1344
	DamageMotion: 384
	Drops: {
		Old_Manteau: 4171
		Distorted_Portrait: 1000
		Rusty_Cleaver: 2000
		Mr_Scream: 50
		Oridecon: 100
		Mamas_Knife: 3
		Ginnungagap: 1
		Bloody_Murderer_Card: 1
	}
},
{
	Id: 1508
	SpriteName: "QUVE"
	Name: "Quve"
	Lv: 100
	Hp: 11090
	Sp: 1
	Exp: 1966
	JExp: 1229
	AttackRange: 1
	Attack: [294, 97]
	Def: 96
	Mdef: 55
	Stats: {
		Str: 84
		Agi: 54
		Vit: 55
		Int: 50
		Dex: 85
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 912
	AttackMotion: 1248
	DamageMotion: 576
	Drops: {
		Piece_Of_Black_Cloth: 3200
		Ectoplasm: 5723
		Wing_Of_Fly: 1000
		Poison_Powder: 100
		Oridecon_Stone: 10
		Black_Powder: 500
		Quve_Card: 1
	}
},
{
	Id: 1509
	SpriteName: "LUDE"
	Name: "Lude"
	Lv: 101
	Hp: 11574
	Sp: 1
	Exp: 2030
	JExp: 1269
	AttackRange: 2
	Attack: [283, 78]
	Def: 90
	Mdef: 53
	Stats: {
		Str: 97
		Agi: 38
		Vit: 55
		Int: 82
		Dex: 83
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 890
	AttackMotion: 960
	DamageMotion: 480
	Drops: {
		Pumpkin_Bucket: 3200
		Ectoplasm: 5723
		Transparent_Cloth: 1000
		Spirit_Chain: 10
		Elunium_Stone: 10
		Holy_Scroll_1_3: 100
		Yellow_Powder: 300
		Lude_Card: 1
	}
},
{
	Id: 1510
	SpriteName: "HYLOZOIST"
	Name: "Hylozoist"
	JName: "Heirozoist"
	Lv: 102
	Hp: 12000
	Sp: 1
	Exp: 2250
	JExp: 1406
	AttackRange: 1
	Attack: [548, 81]
	Def: 101
	Mdef: 68
	Stats: {
		Str: 97
		Agi: 67
		Vit: 72
		Int: 88
		Dex: 83
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 155
	AttackDelay: 741
	AttackMotion: 1536
	DamageMotion: 480
	Drops: {
		Broken_Needle: 4365
		Spool: 5335
		Needle_Pouch: 2000
		Stuffed_Doll: 80
		Ectoplasm: 300
		Elunium_Stone: 10
		Angry_Mouth: 1
		Hylozoist_Card: 1
	}
},
// Pyramid Basement
{
	Id: 1511
	SpriteName: "AMON_RA"
	Name: "Amon Ra"
	Lv: 69
	Hp: 1009000
	Sp: 1
	Exp: 240120
	JExp: 187920
	AttackRange: 3
	Attack: [2090, 2052]
	Def: 213
	Mdef: 123
	Stats: {
		Str: 86
		Agi: 89
		Vit: 120
		Int: 131
		Dex: 101
		Luk: 92
	}
	ViewRange: 14
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 3)
	Mode: {
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 170
	AttackDelay: 854
	AttackMotion: 2016
	DamageMotion: 480
	DamageTakenRate: 10
	MvpExp: 120060
	MvpDrops: {
		Yggdrasilberry: 5500
		Seed_Of_Yggdrasil: 3500
		Crystal_Jewel__: 5500
	}
	Drops: {
		Spinx_Helm: 150
		Safety_Ring: 50
		Rojerta_Piece: 7760
		Elunium: 3880
		Old_Card_Album: 400
		Tablet: 10
		Yggdrasilberry: 3000
		Amon_Ra_Card: 1
	}
},
// Louyang (8.0)
{
	Id: 1512
	SpriteName: "HYEGUN"
	Name: "Hyegun"
	JName: "Yao Jun"
	Lv: 87
	Hp: 6996
	Sp: 1
	Exp: 1410
	JExp: 1445
	AttackRange: 1
	Attack: [271, 48]
	Def: 84
	Mdef: 43
	Stats: {
		Str: 69
		Agi: 38
		Vit: 40
		Int: 20
		Dex: 82
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 890
	AttackMotion: 1320
	DamageMotion: 720
	Drops: {
		Brigan: 3880
		Amulet: 100
		Elunium: 10
		Boots_: 1
		Munak_Doll: 300
		Claire_Suits: 10
		Hyegun_Card: 1
	}
},
{
	Id: 1513
	SpriteName: "CIVIL_SERVANT"
	Name: "Civil Servant"
	JName: "Mao Guai"
	Lv: 89
	Hp: 5292
	Sp: 1
	Exp: 1484
	JExp: 1512
	AttackRange: 2
	Attack: [304, 61]
	Def: 90
	Mdef: 56
	Stats: {
		Str: 67
		Agi: 76
		Vit: 40
		Int: 65
		Dex: 74
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1257
	AttackMotion: 528
	DamageMotion: 432
	Drops: {
		Fan: 4171
		Cat_Eyed_Stone: 2000
		Aloebera: 10
		Fish_Tail: 100
		Wind_Scroll_1_5: 100
		Civil_Servant_Card: 1
	}
},
{
	Id: 1514
	SpriteName: "DANCING_DRAGON"
	Name: "Dancing Dragon"
	JName: "Zhu Po Long"
	Lv: 82
	Hp: 3943
	Sp: 1
	Exp: 1068
	JExp: 1094
	AttackRange: 2
	Attack: [295, 35]
	Def: 83
	Mdef: 36
	Stats: {
		Str: 59
		Agi: 76
		Vit: 40
		Int: 30
		Dex: 73
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Dragon"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 160
	AttackDelay: 600
	AttackMotion: 840
	DamageMotion: 504
	Drops: {
		Dragon_Fang: 4365
		Dragon_Horn: 3000
		Little_Blacky_Ghost: 800
		Dragon_Scale: 1000
		Yarn: 3000
		Dancing_Dragon_Card: 1
	}
},
{
	Id: 1515
	SpriteName: "GARM_BABY"
	Name: "Garm Baby"
	JName: "Hatii Baby"
	Lv: 94
	Hp: 10016
	Sp: 1
	Exp: 1866
	JExp: 1749
	AttackRange: 1
	Attack: [498, 61]
	Def: 62
	Mdef: 43
	Stats: {
		Str: 69
		Agi: 61
		Vit: 55
		Int: 61
		Dex: 106
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 450
	AttackDelay: 879
	AttackMotion: 672
	DamageMotion: 576
	Drops: {
		Milk_Bottle: 1500
		Bib: 2500
		Ice_Piece: 4365
		Frozen_Rose: 100
		Cold_Scroll_2_5: 100
		Garm_Baby_Card: 1
	}
},
{
	Id: 1516
	SpriteName: "INCREASE_SOIL"
	Name: "Increase Soil"
	JName: "Mi Gao"
	Lv: 83
	Hp: 5335
	Sp: 1
	Exp: 1320
	JExp: 1529
	AttackRange: 1
	Attack: [365, 30]
	Def: 112
	Mdef: 39
	Stats: {
		Str: 67
		Agi: 23
		Vit: 41
		Int: 49
		Dex: 94
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 445
	AttackDelay: 106
	AttackMotion: 1056
	DamageMotion: 576
	Drops: {
		Dried_Sand: 4365
		Mud_Lump: 2300
		Great_Nature: 10
		Gold: 2
		Increase_Soil_Card: 1
	}
},
{
	Id: 1517
	SpriteName: "LI_ME_MANG_RYANG"
	Name: "Li Me Mang Ryang"
	JName: "Jing Guai"
	Lv: 80
	Hp: 5187
	Sp: 1
	Exp: 1172
	JExp: 1197
	AttackRange: 1
	Attack: [197, 41]
	Def: 110
	Mdef: 37
	Stats: {
		Str: 61
		Agi: 22
		Vit: 33
		Int: 35
		Dex: 74
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1120
	AttackMotion: 576
	DamageMotion: 420
	Drops: {
		Tiger_Skin_Panties: 4500
		Little_Blacky_Ghost: 400
		Club: 10
		Spike: 1
		Li_Me_Mang_Ryang_Card: 1
	}
},
{
	Id: 1518
	SpriteName: "BACSOJIN"
	Name: "Bacsojin"
	JName: "White Lady"
	Lv: 97
	Hp: 720500
	Sp: 1
	Exp: 801792
	JExp: 542880
	AttackRange: 2
	Attack: [1414, 2036]
	Def: 210
	Mdef: 178
	Stats: {
		Str: 118
		Agi: 244
		Vit: 98
		Int: 126
		Dex: 246
		Luk: 102
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 160
	AttackDelay: 576
	AttackMotion: 960
	DamageMotion: 480
	Drops: {
		Long_Hair: 5500
		Old_Blue_Box: 2
		Old_Violet_Box: 2
		Limpid_Celestial_Robe: 3000
		Soft_Silk_Cloth: 1000
		Crystal_Mirror: 500
		White_Snake_Hat: 500
		Tiara: 1
	}
},
{
	Id: 1519
	SpriteName: "CHUNG_E"
	Name: "Chung E"
	JName: "Green Maiden"
	Lv: 49
	Hp: 23900
	Sp: 0
	Exp: 2156
	JExp: 894
	AttackRange: 1
	Attack: [460, 590]
	Def: 8
	Mdef: 15
	Stats: {
		Str: 38
		Agi: 65
		Vit: 43
		Int: 30
		Dex: 90
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 1728
	AttackMotion: 816
	DamageMotion: 1188
	Drops: {
		Cyfar: 4850
		Stuffed_Doll: 100
		Hora_: 10
		Honey: 500
		Iris: 1000
		Hair_Protector: 2
	}
},
{
	Id: 1520
	SpriteName: "BOILED_RICE"
	Name: "Boiled Rice"
	JName: "Dumpling"
	Lv: 15
	Hp: 777
	Sp: 1
	Exp: 7
	JExp: 7
	AttackRange: 1
	Attack: [7, 7]
	Def: 0
	Mdef: 10
	Stats: {
		Str: 7
		Agi: 7
		Vit: 7
		Int: 17
		Dex: 17
		Luk: 7
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 170
	AttackDelay: 1152
	AttackMotion: 672
	DamageMotion: 672
	Drops: {
		Exorcize_Herb: 3000
		Iris: 1000
		Realgar_Wine: 3000
		Rice_Ball: 8000
		Meat_Dumpling_Doll: 4000
		Tw_Rice_Ball: 500
	}
},
// Additional G_Mobs & Bosses
{
	Id: 1521
	SpriteName: "G_ALICE"
	Name: "Alice"
	Lv: 100
	Hp: 9230
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [514, 98]
	Def: 93
	Mdef: 73
	Stats: {
		Str: 82
		Agi: 53
		Vit: 45
		Int: 70
		Dex: 96
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 520
	AttackMotion: 2304
	DamageMotion: 480
},
{
	Id: 1522
	SpriteName: "G_ANCIENT_MUMMY"
	Name: "Ancient Mummy"
	Lv: 115
	Hp: 29157
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [981, 100]
	Def: 93
	Mdef: 27
	Stats: {
		Str: 126
		Agi: 57
		Vit: 55
		Int: 69
		Dex: 78
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 1772
	AttackMotion: 120
	DamageMotion: 384
},
{
	Id: 1523
	SpriteName: "G_ANTIQUE_FIRELOCK"
	Name: "Antique Firelock"
	JName: "Firelock Soldier"
	Lv: 88
	Hp: 7524
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 10
	Attack: [356, 45]
	Def: 72
	Mdef: 30
	Stats: {
		Str: 67
		Agi: 44
		Vit: 30
		Int: 30
		Dex: 100
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 1084
	AttackMotion: 2304
	DamageMotion: 576
},
{
	Id: 1524
	SpriteName: "G_BABY_LEOPARD"
	Name: "Baby Leopard"
	Lv: 68
	Hp: 2590
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [291, 52]
	Def: 77
	Mdef: 5
	Stats: {
		Str: 46
		Agi: 36
		Vit: 20
		Int: 4
		Dex: 61
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Ghost", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 318
	AttackMotion: 528
	DamageMotion: 420
},
{
	Id: 1525
	SpriteName: "G_BATHORY"
	Name: "Bathory"
	Lv: 86
	Hp: 5242
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [252, 96]
	Def: 61
	Mdef: 89
	Stats: {
		Str: 66
		Agi: 38
		Vit: 40
		Int: 77
		Dex: 67
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1504
	AttackMotion: 840
	DamageMotion: 900
},
{
	Id: 1526
	SpriteName: "G_BLOOD_BUTTERFLY"
	Name: "Bloody Butterfly"
	Lv: 94
	Hp: 7030
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [361, 67]
	Def: 79
	Mdef: 50
	Stats: {
		Str: 70
		Agi: 68
		Vit: 40
		Int: 55
		Dex: 108
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 145
	AttackDelay: 472
	AttackMotion: 576
	DamageMotion: 288
},
{
	Id: 1527
	SpriteName: "G_C_TOWER_MANAGER"
	Name: "Clock Tower Manager"
	JName: "Tower Keeper"
	Lv: 90
	Hp: 6400
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [427, 70]
	Def: 96
	Mdef: 60
	Stats: {
		Str: 80
		Agi: 28
		Vit: 40
		Int: 25
		Dex: 88
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1072
	AttackMotion: 672
	DamageMotion: 384
},
{
	Id: 1528
	SpriteName: "G_CLOCK"
	Name: "Clock"
	Lv: 81
	Hp: 5556
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [443, 53]
	Def: 91
	Mdef: 43
	Stats: {
		Str: 68
		Agi: 24
		Vit: 35
		Int: 41
		Dex: 97
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1092
	AttackMotion: 792
	DamageMotion: 480
},
{
	Id: 1529
	SpriteName: "G_DARK_SNAKE_LORD"
	Name: "Dark Snake Lord"
	JName: "Evil Snake Lord"
	Lv: 105
	Hp: 1101000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [2882, 1986]
	Def: 314
	Mdef: 185
	Stats: {
		Str: 122
		Agi: 172
		Vit: 107
		Int: 135
		Dex: 235
		Luk: 88
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 588
	AttackMotion: 816
	DamageMotion: 420
},
{
	Id: 1530
	SpriteName: "G_DRACULA"
	Name: "Dracula"
	Lv: 75
	Hp: 350000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [1454, 1812]
	Def: 152
	Mdef: 146
	Stats: {
		Str: 86
		Agi: 99
		Vit: 88
		Int: 92
		Dex: 174
		Luk: 82
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 145
	AttackDelay: 1290
	AttackMotion: 1140
	DamageMotion: 576
},
{
	Id: 1531
	SpriteName: "G_EVIL_CLOUD_HERMIT"
	Name: "Evil Cloud Hermit"
	JName: "Taoist Hermit"
	Lv: 96
	Hp: 8266
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 10
	Attack: [611, 30]
	Def: 66
	Mdef: 46
	Stats: {
		Str: 63
		Agi: 57
		Vit: 45
		Int: 60
		Dex: 119
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 190
	AttackDelay: 480
	AttackMotion: 840
	DamageMotion: 432
},
{
	Id: 1532
	SpriteName: "G_EXPLOSION"
	Name: "Explosion"
	Lv: 100
	Hp: 7813
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [625, 110]
	Def: 112
	Mdef: 50
	Stats: {
		Str: 91
		Agi: 51
		Vit: 63
		Int: 50
		Dex: 78
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1260
	AttackMotion: 960
	DamageMotion: 336
},
{
	Id: 1533
	SpriteName: "G_FUR_SEAL"
	Name: "Fur Seal"
	JName: "Seal"
	Lv: 47
	Hp: 1371
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [87, 40]
	Def: 42
	Mdef: 16
	Stats: {
		Str: 37
		Agi: 40
		Vit: 30
		Int: 39
		Dex: 35
		Luk: 19
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1612
	AttackMotion: 622
	DamageMotion: 583
},
{
	Id: 1534
	SpriteName: "G_GOBLIN_1"
	Name: "Goblin"
	Lv: 48
	Hp: 1058
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [87, 34]
	Def: 56
	Mdef: 5
	Stats: {
		Str: 37
		Agi: 54
		Vit: 25
		Int: 20
		Dex: 36
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1120
	AttackMotion: 620
	DamageMotion: 240
},
{
	Id: 1535
	SpriteName: "G_GOBLIN_2"
	Name: "Goblin"
	Lv: 44
	Hp: 931
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [94, 28]
	Def: 52
	Mdef: 5
	Stats: {
		Str: 33
		Agi: 16
		Vit: 24
		Int: 15
		Dex: 58
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1320
	AttackMotion: 620
	DamageMotion: 240
},
{
	Id: 1536
	SpriteName: "G_GOBLIN_3"
	Name: "Goblin"
	Lv: 44
	Hp: 930
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [88, 33]
	Def: 47
	Mdef: 5
	Stats: {
		Str: 30
		Agi: 16
		Vit: 24
		Int: 15
		Dex: 17
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1624
	AttackMotion: 624
	DamageMotion: 240
},
{
	Id: 1537
	SpriteName: "G_GOBLIN_4"
	Name: "Goblin"
	Lv: 49
	Hp: 1494
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [72, 22]
	Def: 70
	Mdef: 3
	Stats: {
		Str: 31
		Agi: 27
		Vit: 46
		Int: 15
		Dex: 34
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1624
	AttackMotion: 624
	DamageMotion: 240
},
{
	Id: 1538
	SpriteName: "G_GOBLIN_5"
	Name: "Goblin"
	Lv: 56
	Hp: 2342
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [167, 31]
	Def: 64
	Mdef: 5
	Stats: {
		Str: 51
		Agi: 37
		Vit: 22
		Int: 15
		Dex: 42
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 3074
	AttackMotion: 1874
	DamageMotion: 480
},
{
	Id: 1539
	SpriteName: "G_GOBLIN_LEADER"
	Name: "Goblin Leader"
	Lv: 55
	Hp: 21692
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [173, 49]
	Def: 72
	Mdef: 30
	Stats: {
		Str: 60
		Agi: 67
		Vit: 45
		Int: 18
		Dex: 73
		Luk: 23
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 1120
	AttackMotion: 620
	DamageMotion: 240
},
{
	Id: 1540
	SpriteName: "G_GOLEM"
	Name: "Golem"
	Lv: 61
	Hp: 2245
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [208, 25]
	Def: 190
	Mdef: 12
	Stats: {
		Str: 70
		Agi: 27
		Vit: 67
		Int: 5
		Dex: 34
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1608
	AttackMotion: 816
	DamageMotion: 396
},
{
	Id: 1541
	SpriteName: "G_GREATEST_GENERAL"
	Name: "Greatest General"
	Lv: 55
	Hp: 1575
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [226, 26]
	Def: 114
	Mdef: 30
	Stats: {
		Str: 58
		Agi: 30
		Vit: 20
		Int: 25
		Dex: 28
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 2)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1152
	AttackMotion: 1152
	DamageMotion: 384
},
/*{
	Id: 1542
	SpriteName: "G_INCANTATION_SAMURA"
	Name: "Incantation Samurai"
	Lv: 100
	Hp: 901000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [2196, 3132]
	Def: 296
	Mdef: 140
	Stats: {
		Str: 145
		Agi: 161
		Vit: 88
		Int: 66
		Dex: 155
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 135
	AttackDelay: 874
	AttackMotion: 1344
	DamageMotion: 576
},*/
{
	Id: 1543
	SpriteName: "G_KAPHA"
	Name: "Kapha"
	Lv: 83
	Hp: 5470
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [306, 32]
	Def: 61
	Mdef: 38
	Stats: {
		Str: 67
		Agi: 59
		Vit: 40
		Int: 31
		Dex: 73
		Luk: 24
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 2012
	AttackMotion: 1728
	DamageMotion: 672
},
{
	Id: 1544
	SpriteName: "G_KARAKASA"
	Name: "Karakasa"
	Lv: 72
	Hp: 3092
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [172, 42]
	Def: 93
	Mdef: 29
	Stats: {
		Str: 66
		Agi: 73
		Vit: 33
		Int: 20
		Dex: 64
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 155
	AttackDelay: 1638
	AttackMotion: 2016
	DamageMotion: 576
},
{
	Id: 1545
	SpriteName: "G_KOBOLD_1"
	Name: "Kobold"
	Lv: 107
	Hp: 10483
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [701, 87]
	Def: 103
	Mdef: 25
	Stats: {
		Str: 109
		Agi: 76
		Vit: 61
		Int: 53
		Dex: 98
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1028
	AttackMotion: 528
	DamageMotion: 360
},
{
	Id: 1546
	SpriteName: "G_KOBOLD_2"
	Name: "Kobold"
	Lv: 102
	Hp: 9152
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [477, 62]
	Def: 117
	Mdef: 59
	Stats: {
		Str: 96
		Agi: 61
		Vit: 55
		Int: 48
		Dex: 95
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Poison", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1528
	AttackMotion: 528
	DamageMotion: 360
},
{
	Id: 1547
	SpriteName: "G_KOBOLD_3"
	Name: "Kobold"
	Lv: 101
	Hp: 9078
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [468, 64]
	Def: 109
	Mdef: 48
	Stats: {
		Str: 103
		Agi: 64
		Vit: 59
		Int: 42
		Dex: 80
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1228
	AttackMotion: 528
	DamageMotion: 360
},
{
	Id: 1548
	SpriteName: "G_KOBOLD_LEADER"
	Name: "Kobold Leader"
	Lv: 112
	Hp: 13520
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [995, 96]
	Def: 90
	Mdef: 62
	Stats: {
		Str: 135
		Agi: 34
		Vit: 68
		Int: 56
		Dex: 116
		Luk: 47
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1028
	AttackMotion: 528
	DamageMotion: 360
},
{
	Id: 1549
	SpriteName: "G_LAVA_GOLEM"
	Name: "Lava Golem"
	Lv: 103
	Hp: 8452
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [777, 53]
	Def: 299
	Mdef: 27
	Stats: {
		Str: 126
		Agi: 42
		Vit: 103
		Int: 28
		Dex: 92
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 2190
	AttackMotion: 2040
	DamageMotion: 336
},
{
	Id: 1550
	SpriteName: "G_LIVE_PEACH_TREE"
	Name: "Live Peach Tree"
	JName: "Enchanted Peach Tree"
	Lv: 92
	Hp: 8777
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 7
	Attack: [351, 72]
	Def: 109
	Mdef: 40
	Stats: {
		Str: 76
		Agi: 52
		Vit: 55
		Int: 40
		Dex: 92
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 410
	AttackDelay: 400
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 1551
	SpriteName: "G_MARSE"
	Name: "Marse"
	Lv: 47
	Hp: 1456
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [85, 20]
	Def: 38
	Mdef: 18
	Stats: {
		Str: 33
		Agi: 17
		Vit: 25
		Int: 10
		Dex: 33
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1956
	AttackMotion: 756
	DamageMotion: 528
},
{
	Id: 1552
	SpriteName: "G_MIYABI_NINGYO"
	Name: "Miyabi Ningyo"
	JName: "Miyabi Doll"
	Lv: 85
	Hp: 5188
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [238, 66]
	Def: 57
	Mdef: 19
	Stats: {
		Str: 66
		Agi: 30
		Vit: 30
		Int: 55
		Dex: 88
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 250
	AttackDelay: 1938
	AttackMotion: 2112
	DamageMotion: 768
},
{
	Id: 1553
	SpriteName: "G_MYST"
	Name: "Myst"
	Lv: 49
	Hp: 1223
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [96, 20]
	Def: 61
	Mdef: 10
	Stats: {
		Str: 35
		Agi: 37
		Vit: 20
		Int: 10
		Dex: 41
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 384
},
{
	Id: 1554
	SpriteName: "G_NIGHTMARE_TERROR"
	Name: "Nightmare Terror"
	Lv: 107
	Hp: 13289
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [818, 126]
	Def: 78
	Mdef: 37
	Stats: {
		Str: 118
		Agi: 53
		Vit: 55
		Int: 63
		Dex: 64
		Luk: 43
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1216
	AttackMotion: 816
	DamageMotion: 432
},
{
	Id: 1555
	SpriteName: "G_PARASITE"
	Name: "Parasite"
	Lv: 76
	Hp: 3222
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 8
	Attack: [177, 45]
	Def: 63
	Mdef: 30
	Stats: {
		Str: 55
		Agi: 78
		Vit: 33
		Int: 50
		Dex: 106
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Wind", 2)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 864
	AttackMotion: 864
	DamageMotion: 672
},
{
	Id: 1556
	SpriteName: "G_POISON_TOAD"
	Name: "Poison Toad"
	JName: "Poisonous Toad"
	Lv: 87
	Hp: 4876
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [233, 54]
	Def: 80
	Mdef: 42
	Stats: {
		Str: 66
		Agi: 42
		Vit: 40
		Int: 45
		Dex: 70
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Poison", 2)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 160
	AttackDelay: 1148
	AttackMotion: 1728
	DamageMotion: 864
},
{
	Id: 1557
	SpriteName: "G_ROTAR_ZAIRO"
	Name: "Rotar Zairo"
	Lv: 48
	Hp: 1088
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 10
	Attack: [75, 40]
	Def: 57
	Mdef: 34
	Stats: {
		Str: 29
		Agi: 70
		Vit: 45
		Int: 26
		Dex: 61
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 155
	AttackDelay: 2416
	AttackMotion: 2016
	DamageMotion: 432
},
{
	Id: 1558
	SpriteName: "G_SAND_MAN"
	Name: "Sandman"
	Lv: 61
	Hp: 2887
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [164, 56]
	Def: 126
	Mdef: 25
	Stats: {
		Str: 44
		Agi: 8
		Vit: 55
		Int: 15
		Dex: 34
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1672
	AttackMotion: 720
	DamageMotion: 288
},
{
	Id: 1559
	SpriteName: "G_SCORPION"
	Name: "Scorpion"
	Lv: 16
	Hp: 153
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [39, 7]
	Def: 16
	Mdef: 5
	Stats: {
		Str: 14
		Agi: 15
		Vit: 10
		Int: 5
		Dex: 33
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1564
	AttackMotion: 864
	DamageMotion: 576
},
{
	Id: 1560
	SpriteName: "G_SHINOBI"
	Name: "Shinobi"
	Lv: 95
	Hp: 8000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [573, 51]
	Def: 49
	Mdef: 45
	Stats: {
		Str: 71
		Agi: 70
		Vit: 55
		Int: 30
		Dex: 83
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1003
	AttackMotion: 1152
	DamageMotion: 336
},
{
	Id: 1561
	SpriteName: "G_SMOKIE"
	Name: "Smokie"
	Lv: 29
	Hp: 591
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [70, 11]
	Def: 26
	Mdef: 0
	Stats: {
		Str: 16
		Agi: 34
		Vit: 16
		Int: 5
		Dex: 27
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 420
},
{
	Id: 1562
	SpriteName: "G_SOLDIER_SKELETON"
	Name: "Soldier Skeleton"
	Lv: 34
	Hp: 804
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [84, 14]
	Def: 53
	Mdef: 5
	Stats: {
		Str: 14
		Agi: 10
		Vit: 32
		Int: 5
		Dex: 29
		Luk: 3
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 2276
	AttackMotion: 576
	DamageMotion: 432
},
{
	Id: 1563
	SpriteName: "G_TENGU"
	Name: "Tengu"
	Lv: 98
	Hp: 10196
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [274, 83]
	Def: 134
	Mdef: 46
	Stats: {
		Str: 99
		Agi: 38
		Vit: 40
		Int: 30
		Dex: 80
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1439
	AttackMotion: 1920
	DamageMotion: 672
},
{
	Id: 1564
	SpriteName: "G_WICKED_NYMPH"
	Name: "Wicked Nymph"
	JName: "Evil Nymph"
	Lv: 97
	Hp: 8491
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [283, 128]
	Def: 46
	Mdef: 45
	Stats: {
		Str: 84
		Agi: 46
		Vit: 45
		Int: 70
		Dex: 92
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 637
	AttackMotion: 1008
	DamageMotion: 360
},
{
	Id: 1565
	SpriteName: "G_WILD_GINSENG"
	Name: "Wild Ginseng"
	JName: "Hermit Plant"
	Lv: 90
	Hp: 6052
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [575, 71]
	Def: 56
	Mdef: 62
	Stats: {
		Str: 76
		Agi: 51
		Vit: 60
		Int: 60
		Dex: 91
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 140
	AttackDelay: 512
	AttackMotion: 756
	DamageMotion: 360
},
{
	Id: 1566
	SpriteName: "G_WRAITH_DEAD"
	Name: "Wraith Dead"
	Lv: 86
	Hp: 10035
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [442, 60]
	Def: 88
	Mdef: 56
	Stats: {
		Str: 63
		Agi: 69
		Vit: 55
		Int: 45
		Dex: 106
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 1816
	AttackMotion: 576
	DamageMotion: 240
},
{
	Id: 1567
	SpriteName: "G_ANCIENT_WORM"
	Name: "Ancient Worm"
	Lv: 83
	Hp: 4140
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [329, 35]
	Def: 90
	Mdef: 41
	Stats: {
		Str: 70
		Agi: 56
		Vit: 56
		Int: 55
		Dex: 84
		Luk: 42
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1792
	AttackMotion: 792
	DamageMotion: 336
},
{
	Id: 1568
	SpriteName: "G_ANGELING"
	Name: "Angeling"
	Lv: 77
	Hp: 19800
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [391, 145]
	Def: 72
	Mdef: 238
	Stats: {
		Str: 58
		Agi: 50
		Vit: 33
		Int: 105
		Dex: 80
		Luk: 200
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1072
	AttackMotion: 672
	DamageMotion: 672
},
{
	Id: 1569
	SpriteName: "G_BLOODY_KNIGHT"
	Name: "Bloody Knight"
	Lv: 116
	Hp: 68500
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [1319, 123]
	Def: 122
	Mdef: 50
	Stats: {
		Str: 132
		Agi: 59
		Vit: 70
		Int: 57
		Dex: 137
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 828
	AttackMotion: 528
	DamageMotion: 192
},
{
	Id: 1570
	SpriteName: "G_CRAMP"
	Name: "Cramp"
	Lv: 82
	Hp: 3898
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [435, 48]
	Def: 88
	Mdef: 42
	Stats: {
		Str: 65
		Agi: 43
		Vit: 35
		Int: 25
		Dex: 82
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Poison", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1000
	AttackMotion: 500
	DamageMotion: 1000
},
{
	Id: 1571
	SpriteName: "G_DEVIACE"
	Name: "Deviace"
	Lv: 60
	Hp: 3135
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [168, 29]
	Def: 51
	Mdef: 16
	Stats: {
		Str: 57
		Agi: 26
		Vit: 32
		Int: 25
		Dex: 50
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 4)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1680
	AttackMotion: 480
	DamageMotion: 384
},
{
	Id: 1572
	SpriteName: "G_DROPS"
	Name: "Drops"
	Lv: 2
	Hp: 45
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [12, 1]
	Def: 16
	Mdef: 0
	Stats: {
		Str: 8
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 2
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1372
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 1573
	SpriteName: "G_ELDER"
	Name: "Elder"
	Lv: 92
	Hp: 7341
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [359, 402]
	Def: 72
	Mdef: 41
	Stats: {
		Str: 67
		Agi: 63
		Vit: 35
		Int: 99
		Dex: 106
		Luk: 61
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1552
	AttackMotion: 1152
	DamageMotion: 336
},
{
	Id: 1574
	SpriteName: "G_ELDER_WILOW"
	Name: "Elder Willow"
	Lv: 34
	Hp: 599
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [80, 14]
	Def: 45
	Mdef: 0
	Stats: {
		Str: 10
		Agi: 14
		Vit: 25
		Int: 0
		Dex: 29
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1372
	AttackMotion: 672
	DamageMotion: 432
},
{
	Id: 1575
	SpriteName: "G_FLORA"
	Name: "Flora"
	Lv: 59
	Hp: 2301
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [163, 31]
	Def: 99
	Mdef: 29
	Stats: {
		Str: 49
		Agi: 29
		Vit: 35
		Int: 5
		Dex: 46
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 1000
	AttackDelay: 1432
	AttackMotion: 432
	DamageMotion: 576
},
{
	Id: 1576
	SpriteName: "G_GHOSTRING"
	Name: "Ghostring"
	Lv: 90
	Hp: 26700
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [385, 162]
	Def: 88
	Mdef: 72
	Stats: {
		Str: 66
		Agi: 85
		Vit: 66
		Int: 66
		Dex: 119
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1220
	AttackMotion: 1080
	DamageMotion: 648
},
{
	Id: 1577
	SpriteName: "G_GOBLIN_ARCHER"
	Name: "Goblin Archer"
	Lv: 55
	Hp: 1575
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 9
	Attack: [100, 24]
	Def: 69
	Mdef: 0
	Stats: {
		Str: 40
		Agi: 34
		Vit: 20
		Int: 15
		Dex: 53
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_DemiHuman"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1172
	AttackMotion: 672
	DamageMotion: 420
},
{
	Id: 1578
	SpriteName: "G_HORONG"
	Name: "Horong"
	Lv: 66
	Hp: 2304
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [275, 70]
	Def: 84
	Mdef: 35
	Stats: {
		Str: 36
		Agi: 32
		Vit: 35
		Int: 45
		Dex: 62
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 1888
	AttackMotion: 1152
	DamageMotion: 828
},
{
	Id: 1579
	SpriteName: "G_HYDRA"
	Name: "Hydra"
	Lv: 34
	Hp: 854
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 7
	Attack: [35, 6]
	Def: 20
	Mdef: 32
	Stats: {
		Str: 10
		Agi: 9
		Vit: 14
		Int: 0
		Dex: 35
		Luk: 2
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Water", 2)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 1000
	AttackDelay: 800
	AttackMotion: 432
	DamageMotion: 600
},
{
	Id: 1580
	SpriteName: "G_INCUBUS"
	Name: "Incubus"
	Lv: 120
	Hp: 28000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [956, 375]
	Def: 72
	Mdef: 46
	Stats: {
		Str: 120
		Agi: 56
		Vit: 52
		Int: 75
		Dex: 139
		Luk: 70
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 850
	AttackMotion: 600
	DamageMotion: 336
},
{
	Id: 1581
	SpriteName: "G_VOCAL"
	Name: "Vocal"
	Lv: 18
	Hp: 3317
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [71, 11]
	Def: 77
	Mdef: 26
	Stats: {
		Str: 77
		Agi: 26
		Vit: 26
		Int: 30
		Dex: 53
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1080
	AttackMotion: 648
	DamageMotion: 480
},
{
	Id: 1582
	SpriteName: "DEVILING"
	Name: "Deviling"
	Lv: 66
	Hp: 16890
	Sp: 1
	Exp: 2394
	JExp: 2379
	AttackRange: 1
	Attack: [313, 183]
	Def: 67
	Mdef: 70
	Stats: {
		Str: 48
		Agi: 50
		Vit: 33
		Int: 75
		Dex: 85
		Luk: 200
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1072
	AttackMotion: 1056
	DamageMotion: 384
	Drops: {
		Petite_DiablOfs_Wing: 3000
		Zargon: 4850
		Satanic_Chain: 100
		Apple: 5000
		Blade_Lost_In_Darkness: 1
		Black_Dyestuffs: 100
		Ghost_Scroll_1_3: 100
		Deviling_Card: 1
	}
},
{
	Id: 1583
	SpriteName: "TAO_GUNKA"
	Name: "Tao Gunka"
	Lv: 110
	Hp: 1252000
	Sp: 1
	Exp: 1080000
	JExp: 720000
	AttackRange: 2
	Attack: [3757, 1260]
	Def: 404
	Mdef: 143
	Stats: {
		Str: 135
		Agi: 175
		Vit: 98
		Int: 110
		Dex: 239
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1020
	AttackMotion: 288
	DamageMotion: 144
	DamageTakenRate: 10
	MvpExp: 450000
	MvpDrops: {
		Oridecon: 6000
		Old_Violet_Box: 3000
		Blue_Potion: 6000
	}
	Drops: {
		Gemstone: 4850
		Stone_Piece: 4850
		Golden_Jewel: 1000
		Binoculars: 400
		White_Potion: 3000
		Runstone_Rare: 200
		Gemmed_Sallet_: 5
		Tao_Gunka_Card: 1
	}
},
// Ayothaya (9.0)
{
	Id: 1584
	SpriteName: "TAMRUAN"
	Name: "Tamruan"
	Lv: 73
	Hp: 3195
	Sp: 1
	Exp: 988
	JExp: 1010
	AttackRange: 1
	Attack: [336, 37]
	Def: 63
	Mdef: 30
	Stats: {
		Str: 60
		Agi: 38
		Vit: 40
		Int: 20
		Dex: 73
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 140
	AttackDelay: 512
	AttackMotion: 1152
	DamageMotion: 672
	Drops: {
		Sword_Accessory: 4850
		Broken_Armor_Piece: 3000
		Katana_: 40
		Bastard_Sword_: 8
		Chain_Mail_: 3
		Runstone_Mystic: 300
		Tamruan_Card: 1
	}
},
/*{
	Id: 1585
	SpriteName: "MIME_MONKEY"
	Name: "Mime Monkey"
	Lv: 40
	Hp: 6000
	Sp: 0
	Exp: 200
	JExp: 22
	AttackRange: 3
	Attack: [300, 350]
	Def: 40
	Mdef: 40
	Stats: {
		Str: 1
		Agi: 40
		Vit: 40
		Int: 40
		Dex: 40
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Jellopy: 7000
		Knife_: 100
		Sticky_Mucus: 400
		Apple: 1000
		Empty_Bottle: 1500
		Poring_Doll: 5
		Unripe_Apple: 20
	}
},*/
{
	Id: 1586
	SpriteName: "LEAF_CAT"
	Name: "Leaf Cat"
	Lv: 64
	Hp: 2635
	Sp: 1
	Exp: 624
	JExp: 669
	AttackRange: 1
	Attack: [147, 41]
	Def: 88
	Mdef: 16
	Stats: {
		Str: 46
		Agi: 16
		Vit: 12
		Int: 45
		Dex: 36
		Luk: 29
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 960
	AttackMotion: 864
	DamageMotion: 720
	Drops: {
		Great_Leaf: 4365
		Leaflet_Of_Hinal: 300
		Seed_Of_Yggdrasil: 5
		Fish_Tail: 1100
		Lemon: 250
		Prawn: 500
		Leaf_Clothes: 5335
		Leaf_Cat_Card: 1
	}
},
{
	Id: 1587
	SpriteName: "KRABEN"
	Name: "Kraben"
	Lv: 70
	Hp: 2901
	Sp: 1
	Exp: 536
	JExp: 1095
	AttackRange: 1
	Attack: [279, 45]
	Def: 108
	Mdef: 20
	Stats: {
		Str: 54
		Agi: 33
		Vit: 35
		Int: 15
		Dex: 68
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Ghost", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1152
	AttackMotion: 1536
	DamageMotion: 576
	Drops: {
		Zargon: 3500
		Milk: 3000
		Leaflet_Of_Aloe: 1000
		Guard_: 1
		Bamboo_Basket: 4850
		Chilli: 1000
		Old_Blue_Box: 10
		Kraben_Card: 1
	}
},
// Additional G_Mobs & Xmas_Orc
{
	Id: 1588
	SpriteName: "ORC_XMAS"
	Name: "Christmas Orc"
	Lv: 24
	Hp: 1400
	Sp: 1
	Exp: 235
	JExp: 144
	AttackRange: 1
	Attack: [104, 22]
	Def: 16
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 24
		Vit: 48
		Int: 25
		Dex: 34
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1864
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Iron: 210
		Orcish_Voucher: 5500
		Oridecon_Stone: 40
		Packing_Paper: 1600
		Battle_Axe_: 10
		Gift_Box: 15
		Packing_Ribbon: 1600
		Orc_Warrior_Card: 1
	}
},
{
	Id: 1589
	SpriteName: "G_MANDRAGORA"
	Name: "Mandragora"
	Lv: 13
	Hp: 156
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 4
	Attack: [38, 3]
	Def: 13
	Mdef: 2
	Stats: {
		Str: 12
		Agi: 3
		Vit: 5
		Int: 5
		Dex: 10
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 3)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 1000
	AttackDelay: 1768
	AttackMotion: 768
	DamageMotion: 576
},
{
	Id: 1590
	SpriteName: "G_GEOGRAPHER"
	Name: "Geographer"
	Lv: 73
	Hp: 3866
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [309, 82]
	Def: 158
	Mdef: 42
	Stats: {
		Str: 81
		Agi: 26
		Vit: 35
		Int: 56
		Dex: 72
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 3)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 2000
	AttackDelay: 1308
	AttackMotion: 1008
	DamageMotion: 480
},
{
	Id: 1591
	SpriteName: "A_LUNATIC"
	Name: "Lunatic"
	Lv: 29
	Hp: 2334
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [221, 24]
	Def: 16
	Mdef: 20
	Stats: {
		Str: 1
		Agi: 15
		Vit: 22
		Int: 5
		Dex: 40
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Boss: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1456
	AttackMotion: 456
	DamageMotion: 336
	Drops: {
		Orange_Potion: 2000
	}
},
{
	Id: 1592
	SpriteName: "A_MOBSTER"
	Name: "Gangster"
	Lv: 40
	Hp: 8000
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [300, 55]
	Def: 32
	Mdef: 27
	Stats: {
		Str: 1
		Agi: 50
		Vit: 45
		Int: 45
		Dex: 73
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Assist: true
		Boss: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 250
	AttackDelay: 1100
	AttackMotion: 560
	DamageMotion: 580
	Drops: {
		Stone: 10000
		Wing_Of_Fly: 2000
		Cutter__: 3000
		Empty_Bottle: 1000
		Popped_Rice: 10000
	}
},
{
	Id: 1593
	SpriteName: "A_ANCIENT_MUMMY"
	Name: "Ancient Mummy"
	Lv: 52
	Hp: 8613
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [830, 100]
	Def: 64
	Mdef: 27
	Stats: {
		Str: 58
		Agi: 47
		Vit: 42
		Int: 5
		Dex: 69
		Luk: 26
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
	}
	MoveSpeed: 175
	AttackDelay: 1772
	AttackMotion: 120
	DamageMotion: 384
	Drops: {
		Orange_Potion: 2000
	}
},
{
	Id: 1594
	SpriteName: "G_FREEZER"
	Name: "Freezer"
	Lv: 94
	Hp: 9990
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [604, 50]
	Def: 127
	Mdef: 38
	Stats: {
		Str: 68
		Agi: 47
		Vit: 50
		Int: 45
		Dex: 66
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1452
	AttackMotion: 483
	DamageMotion: 528
},
{
	Id: 1595
	SpriteName: "G_MARIN"
	Name: "Marin"
	Lv: 37
	Hp: 987
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [69, 14]
	Def: 32
	Mdef: 8
	Stats: {
		Str: 24
		Agi: 5
		Vit: 10
		Int: 5
		Dex: 30
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 1596
	SpriteName: "G_TAMRUAN"
	Name: "Tamruan"
	Lv: 73
	Hp: 3195
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [336, 37]
	Def: 63
	Mdef: 30
	Stats: {
		Str: 60
		Agi: 38
		Vit: 40
		Int: 20
		Dex: 73
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 140
	AttackDelay: 512
	AttackMotion: 1152
	DamageMotion: 672
},
{
	Id: 1597
	SpriteName: "G_GARGOYLE"
	Name: "Gargoyle"
	Lv: 100
	Hp: 8772
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 9
	Attack: [498, 89]
	Def: 98
	Mdef: 43
	Stats: {
		Str: 100
		Agi: 61
		Vit: 60
		Int: 57
		Dex: 120
		Luk: 70
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1020
	AttackMotion: 720
	DamageMotion: 384
},
{
	Id: 1598
	SpriteName: "G_BLAZZER"
	Name: "Blazzer"
	Lv: 101
	Hp: 8121
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [599, 94]
	Def: 116
	Mdef: 60
	Stats: {
		Str: 99
		Agi: 75
		Vit: 55
		Int: 70
		Dex: 72
		Luk: 65
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 1732
	AttackMotion: 1332
	DamageMotion: 540
},
{
	Id: 1599
	SpriteName: "G_WHISPER_BOSS"
	Name: "Giant Whisper"
	Lv: 66
	Hp: 2570
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [191, 59]
	Def: 94
	Mdef: 45
	Stats: {
		Str: 40
		Agi: 79
		Vit: 44
		Int: 51
		Dex: 74
		Luk: 31
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 2536
	AttackMotion: 1536
	DamageMotion: 672
},
{
	Id: 1600
	SpriteName: "G_HEATER"
	Name: "Heater"
	Lv: 96
	Hp: 7480
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [644, 79]
	Def: 186
	Mdef: 42
	Stats: {
		Str: 75
		Agi: 49
		Vit: 50
		Int: 30
		Dex: 96
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1452
	AttackMotion: 483
	DamageMotion: 528
},
{
	Id: 1601
	SpriteName: "G_PERMETER"
	Name: "Permeter"
	Lv: 90
	Hp: 6575
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [292, 56]
	Def: 144
	Mdef: 50
	Stats: {
		Str: 68
		Agi: 28
		Vit: 55
		Int: 40
		Dex: 50
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1100
	AttackMotion: 483
	DamageMotion: 528
},
{
	Id: 1602
	SpriteName: "G_SOLIDER"
	Name: "Solider"
	Lv: 92
	Hp: 8768
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [367, 40]
	Def: 206
	Mdef: 58
	Stats: {
		Str: 65
		Agi: 44
		Vit: 60
		Int: 15
		Dex: 56
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1452
	AttackMotion: 483
	DamageMotion: 528
},
{
	Id: 1603
	SpriteName: "G_BIGFOOT"
	Name: "Bigfoot"
	Lv: 29
	Hp: 587
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [50, 12]
	Def: 55
	Mdef: 7
	Stats: {
		Str: 18
		Agi: 4
		Vit: 7
		Int: 0
		Dex: 12
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1260
	AttackMotion: 192
	DamageMotion: 192
},
{
	Id: 1604
	SpriteName: "G_GIANT_HONET"
	Name: "Giant Hornet"
	Lv: 82
	Hp: 3960
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [303, 53]
	Def: 80
	Mdef: 43
	Stats: {
		Str: 70
		Agi: 45
		Vit: 47
		Int: 32
		Dex: 74
		Luk: 34
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 155
	AttackDelay: 1292
	AttackMotion: 792
	DamageMotion: 340
},
{
	Id: 1605
	SpriteName: "G_DARK_ILLUSION"
	Name: "Dark Illusion"
	Lv: 96
	Hp: 46255
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1166, 360]
	Def: 145
	Mdef: 30
	Stats: {
		Str: 82
		Agi: 36
		Vit: 55
		Int: 100
		Dex: 182
		Luk: 88
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 145
	AttackDelay: 1024
	AttackMotion: 768
	DamageMotion: 480
},
{
	Id: 1606
	SpriteName: "G_GARM_BABY"
	Name: "Garm Baby"
	JName: "Hatii Baby"
	Lv: 94
	Hp: 10016
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [498, 61]
	Def: 62
	Mdef: 43
	Stats: {
		Str: 69
		Agi: 61
		Vit: 55
		Int: 61
		Dex: 106
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 450
	AttackDelay: 879
	AttackMotion: 672
	DamageMotion: 576
},
{
	Id: 1607
	SpriteName: "G_GOBLINE_XMAS"
	Name: "Christmas Goblin"
	JName: "Santa Goblin"
	Lv: 25
	Hp: 1176
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [118, 22]
	Def: 16
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 53
		Vit: 25
		Int: 20
		Dex: 38
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1120
	AttackMotion: 620
	DamageMotion: 240
},
{
	Id: 1608
	SpriteName: "G_THIEF_BUG__"
	Name: "Thief Bug Male"
	JName: "Male Thief Bug"
	Lv: 19
	Hp: 583
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [76, 12]
	Def: 24
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 29
		Vit: 16
		Int: 5
		Dex: 36
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 988
	AttackMotion: 288
	DamageMotion: 768
},
{
	Id: 1609
	SpriteName: "G_DANCING_DRAGON"
	Name: "Dancing Dragon"
	JName: "Zhu Po Long"
	Lv: 82
	Hp: 3943
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [295, 35]
	Def: 83
	Mdef: 36
	Stats: {
		Str: 59
		Agi: 76
		Vit: 40
		Int: 30
		Dex: 73
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Dragon"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Looter: true
		Boss: true
		CanAttack: true
	}
	MoveSpeed: 160
	AttackDelay: 600
	AttackMotion: 840
	DamageMotion: 504
	Drops: {
		Lucky_Candy: 500
		Lucky_Candy_Cane: 50
		Lucky_Cookie: 20
		Carrot: 10000
		Fire_Cracker: 5000
		Handsei: 100
	}
},
{
	Id: 1610
	SpriteName: "A_MUNAK"
	Name: "Munak"
	Lv: 30
	Hp: 2872
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [40, 10]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 15
		Vit: 20
		Int: 5
		Dex: 120
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 2468
	AttackMotion: 768
	DamageMotion: 288
	Drops: {
		Orange_Potion: 2000
		Slow_Down_Potion: 100
		Speed_Up_Potion: 100
	}
},
{
	Id: 1611
	SpriteName: "A_BON_GUN"
	Name: "Bongun"
	Lv: 59
	Hp: 2510
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [189, 29]
	Def: 88
	Mdef: 5
	Stats: {
		Str: 55
		Agi: 24
		Vit: 24
		Int: 5
		Dex: 34
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1720
	AttackMotion: 500
	DamageMotion: 420
	Drops: {
		Orange_Potion: 2000
		Slow_Down_Potion: 100
		Speed_Up_Potion: 100
	}
},
{
	Id: 1612
	SpriteName: "A_HYEGUN"
	Name: "Hyegun"
	JName: "Yao Jun"
	Lv: 56
	Hp: 9981
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [710, 418]
	Def: 20
	Mdef: 10
	Stats: {
		Str: 60
		Agi: 40
		Vit: 36
		Int: 10
		Dex: 73
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 890
	AttackMotion: 1320
	DamageMotion: 720
	Drops: {
		Orange_Potion: 2000
		Slow_Down_Potion: 100
		Speed_Up_Potion: 100
	}
},
// Einbroch (10.1)
{
	Id: 1613
	SpriteName: "METALING"
	Name: "Metaling"
	Lv: 81
	Hp: 4300
	Sp: 1
	Exp: 1048
	JExp: 1074
	AttackRange: 1
	Attack: [188, 39]
	Def: 69
	Mdef: 28
	Stats: {
		Str: 58
		Agi: 30
		Vit: 49
		Int: 17
		Dex: 60
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 384
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Tube: 4000
		Iron_Ore: 1000
		Iron: 500
		Large_Jellopy: 1000
		Screw: 200
		Crimson_Bolt_: 5
		Jubilee: 5000
		Metaling_Card: 1
	}
},
{
	Id: 1614
	SpriteName: "MINERAL"
	Name: "Mineral"
	Lv: 96
	Hp: 8300
	Sp: 1
	Exp: 1604
	JExp: 2026
	AttackRange: 1
	Attack: [751, 57]
	Def: 127
	Mdef: 23
	Stats: {
		Str: 70
		Agi: 61
		Vit: 40
		Int: 50
		Dex: 74
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 250
	AttackDelay: 648
	AttackMotion: 480
	DamageMotion: 360
	Drops: {
		Fragment_Of_Crystal: 3000
		Golden_Jewel: 500
		Emperium: 2
		Oridecon: 80
		Emveretarcon: 800
		Yellow_Gemstone: 100
		Gold: 2
		Mineral_Card: 1
	}
},
{
	Id: 1615
	SpriteName: "OBSIDIAN"
	Name: "Obsidian"
	Lv: 97
	Hp: 10088
	Sp: 1
	Exp: 1782
	JExp: 2038
	AttackRange: 1
	Attack: [767, 80]
	Def: 129
	Mdef: 37
	Stats: {
		Str: 84
		Agi: 38
		Vit: 40
		Int: 60
		Dex: 64
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 720
	AttackMotion: 864
	DamageMotion: 504
	Drops: {
		Dark_Crystal_Fragment: 3000
		Crystal_Jewel: 500
		Coal: 500
		Elunium: 50
		Steel: 500
		Unholy_Touch: 10
		Obsidian_Card: 1
	}
},
{
	Id: 1616
	SpriteName: "PITMAN"
	Name: "Pitman"
	Lv: 90
	Hp: 7208
	Sp: 1
	Exp: 1550
	JExp: 1586
	AttackRange: 1
	Attack: [200, 60]
	Def: 104
	Mdef: 48
	Stats: {
		Str: 78
		Agi: 56
		Vit: 45
		Int: 35
		Dex: 60
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 180
	AttackDelay: 960
	AttackMotion: 336
	DamageMotion: 300
	Drops: {
		Old_Pick: 3000
		Old_Steel_Plate: 500
		Gun_Powder: 900
		Steel: 500
		Coal: 100
		Lantern: 1000
		Headlamp: 80
		Pitman_Card: 1
	}
},
{
	Id: 1617
	SpriteName: "WASTE_STOVE"
	Name: "Waste Stove"
	JName: "Old Stove"
	Lv: 92
	Hp: 7400
	Sp: 1
	Exp: 1652
	JExp: 1548
	AttackRange: 1
	Attack: [530, 60]
	Def: 100
	Mdef: 47
	Stats: {
		Str: 76
		Agi: 61
		Vit: 50
		Int: 30
		Dex: 67
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1152
	AttackMotion: 528
	DamageMotion: 360
	Drops: {
		Battered_Kettle: 1000
		Burn_Tree: 1000
		Tear_Gas: 200
		Lusty_Iron: 50
		Elder_Branch: 100
		Branch_Of_Dead_Tree: 50
		Old_Steel_Plate: 3800
		Waste_Stove_Card: 1
	}
},
{
	Id: 1618
	SpriteName: "UNGOLIANT"
	Name: "Ungoliant"
	Lv: 94
	Hp: 27070
	Sp: 1
	Exp: 4100
	JExp: 2456
	AttackRange: 1
	Attack: [1296, 144]
	Def: 108
	Mdef: 28
	Stats: {
		Str: 71
		Agi: 70
		Vit: 58
		Int: 43
		Dex: 110
		Luk: 38
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Poison", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 420
	AttackMotion: 576
	DamageMotion: 420
	Drops: {
		Long_Limb: 4500
		Jaws_Of_Ant: 3500
		Colorful_Shell: 1000
		Olivine: 1500
		Fluorescent_Liquid: 2500
		Dark_Red_Jewel: 1500
		Boots_: 500
		Ungoliant_Card: 1
	}
},
{
	Id: 1619
	SpriteName: "PORCELLIO"
	Name: "Porcellio"
	Lv: 85
	Hp: 5544
	Sp: 1
	Exp: 1422
	JExp: 1455
	AttackRange: 1
	Attack: [293, 53]
	Def: 79
	Mdef: 37
	Stats: {
		Str: 67
		Agi: 48
		Vit: 28
		Int: 40
		Dex: 74
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 150
	AttackDelay: 720
	AttackMotion: 360
	DamageMotion: 360
	Drops: {
		Jubilee: 5000
		Main_Gauche_: 25
		Insect_Feeler: 1000
		Single_Cell: 3000
		Dew_Laden_Moss: 2
		Fluorescent_Liquid: 30
		Porcellio_Card: 1
	}
},
{
	Id: 1620
	SpriteName: "NOXIOUS"
	Name: "Noxious"
	Lv: 87
	Hp: 5430
	Sp: 1
	Exp: 976
	JExp: 1785
	AttackRange: 1
	Attack: [281, 71]
	Def: 117
	Mdef: 66
	Stats: {
		Str: 58
		Agi: 45
		Vit: 60
		Int: 55
		Dex: 68
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 768
	AttackMotion: 1440
	DamageMotion: 672
	Drops: {
		Poisonous_Gas: 1000
		Mould_Powder: 3000
		Anodyne: 50
		Air_Pollutant: 3000
		Explosive_Powder: 600
		Tear_Gas: 300
		Old_Blue_Box: 1
		Noxious_Card: 1
	}
},
{
	Id: 1621
	SpriteName: "VENOMOUS"
	Name: "Venomous"
	Lv: 87
	Hp: 4770
	Sp: 1
	Exp: 1306
	JExp: 1337
	AttackRange: 1
	Attack: [316, 50]
	Def: 104
	Mdef: 65
	Stats: {
		Str: 61
		Agi: 28
		Vit: 60
		Int: 55
		Dex: 54
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 768
	AttackMotion: 1440
	DamageMotion: 672
	Drops: {
		Air_Pollutant: 5000
		Spawns: 3000
		Poison_Powder: 1000
		Poisonous_Gas: 2000
		Explosive_Powder: 300
		Tear_Gas: 600
		Old_Blue_Box: 1
		Venomous_Card: 1
	}
},
{
	Id: 1622
	SpriteName: "TEDDY_BEAR"
	Name: "Teddy Bear"
	Lv: 91
	Hp: 7238
	Sp: 1
	Exp: 1620
	JExp: 1799
	AttackRange: 1
	Attack: [482, 62]
	Def: 106
	Mdef: 39
	Stats: {
		Str: 57
		Agi: 81
		Vit: 66
		Int: 20
		Dex: 82
		Luk: 44
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 512
	AttackMotion: 780
	DamageMotion: 504
	Drops: {
		Screw: 3800
		Honey: 1000
		Oridecon_Hammer: 300
		Gold_Lux: 5
		Angry_Mouth: 50
		Cursed_Lucky_Brooch: 10
		Elunium: 100
		Teddy_Bear_Card: 1
	}
},
{
	Id: 1623
	SpriteName: "RSX_0806"
	Name: "RSX 0806"
	JName: "RSX-0806"
	Lv: 100
	Hp: 1001000
	Sp: 1
	Exp: 864000
	JExp: 576000
	AttackRange: 1
	Attack: [3010, 976]
	Def: 317
	Mdef: 96
	Stats: {
		Str: 153
		Agi: 143
		Vit: 110
		Int: 128
		Dex: 198
		Luk: 84
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 220
	AttackDelay: 128
	AttackMotion: 1104
	DamageMotion: 240
	DamageTakenRate: 10
	MvpExp: 360000
	MvpDrops: {
		Yggdrasilberry: 5500
		Dark_Blindfold: 3500
		Crystal_Jewel__: 5500
	}
	Drops: {
		Wheel: 6000
		House_Auger: 5
		House_Auger_: 1
		Old_Violet_Box: 1000
		Headlamp: 5000
		Counter_Dagger: 100
		Spanner: 40
		Rsx_0806_Card: 1
	}
},
{
	Id: 1624
	SpriteName: "G_WASTE_STOVE"
	Name: "Waste Stove"
	JName: "Old Stove"
	Lv: 92
	Hp: 7400
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [530, 60]
	Def: 100
	Mdef: 47
	Stats: {
		Str: 76
		Agi: 61
		Vit: 50
		Int: 30
		Dex: 67
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 220
	AttackDelay: 1152
	AttackMotion: 528
	DamageMotion: 360
},
{
	Id: 1625
	SpriteName: "G_PORCELLIO"
	Name: "Porcellio"
	Lv: 85
	Hp: 5544
	Sp: 1
	Exp: 1014
	JExp: 624
	AttackRange: 1
	Attack: [182, 53]
	Def: 79
	Mdef: 37
	Stats: {
		Str: 67
		Agi: 48
		Vit: 28
		Int: 40
		Dex: 74
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 720
	AttackMotion: 360
	DamageMotion: 360
},
// Hellion Revenant
{
	Id: 1626
	SpriteName: "G_DARK_PRIEST"
	Name: "Hellion Revenant"
	Lv: 79
	Hp: 8600
	Sp: 1
	Exp: 1
	JExp: 1
	AttackRange: 2
	Attack: [196, 60]
	Def: 88
	Mdef: 50
	Stats: {
		Str: 54
		Agi: 63
		Vit: 40
		Int: 78
		Dex: 67
		Luk: 99
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Undead", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 432
	AttackMotion: 384
	DamageMotion: 192
	Drops: {
		Eye_Of_Hellion: 8000
		Eye_Of_Hellion: 5000
		Eye_Of_Hellion: 3000
		Eye_Of_Hellion: 1000
		Eye_Of_Hellion: 500
		Eye_Of_Hellion: 100
	}
},
// Lighthalzen (10.2)
{
	Id: 1627
	SpriteName: "ANOPHELES"
	Name: "Anopheles"
	Lv: 95
	Hp: 7238
	Sp: 1
	Exp: 2028
	JExp: 1902
	AttackRange: 1
	Attack: [315, 18]
	Def: 7
	Mdef: 10
	Stats: {
		Str: 64
		Agi: 60
		Vit: 42
		Int: 58
		Dex: 106
		Luk: 42
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 1084
	AttackMotion: 2304
	DamageMotion: 576
	Drops: {
		Wing_Of_Fly: 1000
		Spawns: 500
		Anopheles_Card: 1
	}
},
{
	Id: 1628
	SpriteName: "MOLE"
	Name: "Mole"
	JName: "Holden"
	Lv: 85
	Hp: 6228
	Sp: 1
	Exp: 1326
	JExp: 1358
	AttackRange: 9
	Attack: [286, 49]
	Def: 82
	Mdef: 16
	Stats: {
		Str: 53
		Agi: 65
		Vit: 31
		Int: 30
		Dex: 58
		Luk: 31
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 300
	AttackDelay: 1400
	AttackMotion: 960
	DamageMotion: 504
	Drops: {
		Moustache_Of_Mole: 5000
		Nail_Of_Mole: 5000
		Super_Novice_Hat_: 50
		Six_Shooter_: 5
		Mole_Card: 1
	}
},
{
	Id: 1629
	SpriteName: "HILL_WIND"
	Name: "Hill Wind"
	Lv: 43
	Hp: 2870
	Sp: 0
	Exp: 340
	JExp: 340
	AttackRange: 3
	Attack: [290, 190]
	Def: 9
	Mdef: 15
	Stats: {
		Str: 21
		Agi: 50
		Vit: 31
		Int: 50
		Dex: 59
		Luk: 23
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 336
	AttackMotion: 540
	DamageMotion: 432
	Drops: {
		Meat: 1000
		Monsters_Feed: 1000
		Hill_Wind_Card: 1
	}
},
{
	Id: 1630
	SpriteName: "BACSOJIN_"
	Name: "Bacsojin"
	JName: "White Lady"
	Lv: 97
	Hp: 720500
	Sp: 1
	Exp: 801792
	JExp: 542880
	AttackRange: 3
	Attack: [1414, 2036]
	Def: 210
	Mdef: 178
	Stats: {
		Str: 118
		Agi: 244
		Vit: 98
		Int: 126
		Dex: 246
		Luk: 102
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 130
	AttackDelay: 576
	AttackMotion: 960
	DamageMotion: 480
	DamageTakenRate: 10
	MvpExp: 334080
	MvpDrops: {
		Yggdrasilberry: 5500
		Celestial_Robe: 2000
		Old_Violet_Box: 5000
	}
	Drops: {
		Long_Hair: 5500
		Old_Blue_Box: 5000
		Old_Violet_Box: 3000
		Limpid_Celestial_Robe: 3000
		Tantanmen: 50
		Red_Silk_Seal: 100
		Tiara: 10
		Bacsojin_Card: 1
	}
},
{
	Id: 1631
	SpriteName: "CHUNG_E_"
	Name: "Chung E"
	JName: "Green Maiden"
	Lv: 82
	Hp: 3901
	Sp: 0
	Exp: 1154
	JExp: 1481
	AttackRange: 2
	Attack: [272, 63]
	Def: 69
	Mdef: 15
	Stats: {
		Str: 66
		Agi: 79
		Vit: 36
		Int: 48
		Dex: 79
		Luk: 43
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1728
	AttackMotion: 816
	DamageMotion: 1188
	Drops: {
		Cyfar: 4200
		Stuffed_Doll: 100
		Hora_: 10
		Honey: 500
		Tantanmen: 10
		Hair_Protector: 50
		Chung_E_Card: 1
	}
},
{
	Id: 1632
	SpriteName: "GREMLIN"
	Name: "Gremlin"
	Lv: 118
	Hp: 20313
	Sp: 1
	Exp: 4018
	JExp: 2318
	AttackRange: 1
	Attack: [848, 138]
	Def: 76
	Mdef: 25
	Stats: {
		Str: 141
		Agi: 75
		Vit: 48
		Int: 61
		Dex: 126
		Luk: 37
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 140
	AttackDelay: 432
	AttackMotion: 540
	DamageMotion: 432
	Drops: {
		Will_Of_Darkness: 3000
		Sticky_Mucus: 3000
		Violet_Jewel: 100
		Boots_: 1
		Bloody_Roar: 1
		Old_Blue_Box: 2
		Gremlin_Card: 1
	}
},
{
	Id: 1633
	SpriteName: "BEHOLDER"
	Name: "Beholder"
	Lv: 120
	Hp: 19280
	Sp: 1
	Exp: 4270
	JExp: 2463
	AttackRange: 6
	Attack: [823, 130]
	Def: 50
	Mdef: 30
	Stats: {
		Str: 96
		Agi: 82
		Vit: 65
		Int: 107
		Dex: 132
		Luk: 82
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 190
	AttackDelay: 336
	AttackMotion: 840
	DamageMotion: 360
	Drops: {
		Prickly_Fruit: 3000
		Anodyne: 100
		Rough_Wind: 100
		Elunium: 10
		Old_Blue_Box: 2
		Beholder_Card: 1
	}
},
// Normal advanced class mobs
{
	Id: 1634
	SpriteName: "SEYREN"
	Name: "Seyren"
	JName: "Seyren Windsor"
	Lv: 142
	Hp: 204962
	Sp: 1
	Exp: 17751
	JExp: 14895
	AttackRange: 1
	Attack: [3505, 1317]
	Def: 166
	Mdef: 12
	Stats: {
		Str: 162
		Agi: 99
		Vit: 186
		Int: 49
		Dex: 198
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Armlet_Of_Prisoner: 3000
		Dragon_Killer: 2
		High_Weapon_Box: 5
		Carnium: 10
		Goast_Chill: 1
		Will_Of_Warrior: 200
		Ruber: 100
		Seyren_Card: 1
	}
},
{
	Id: 1635
	SpriteName: "EREMES"
	Name: "Eremes"
	JName: "Eremes Guile"
	Lv: 140
	Hp: 220525
	Sp: 1
	Exp: 16714
	JExp: 13423
	AttackRange: 1
	Attack: [3055, 1171]
	Def: 122
	Mdef: 12
	Stats: {
		Str: 145
		Agi: 137
		Vit: 59
		Int: 67
		Dex: 191
		Luk: 76
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Poison", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Lab_Staff_Record: 2000
		Carnium: 1
		Pauldron: 1
		Nail_Of_Loki: 3
		Various_Jur: 30
		Poison_Bottle: 110
		Krishna: 100
		Eremes_Card: 1
	}
},
{
	Id: 1636
	SpriteName: "HARWORD"
	Name: "Harword"
	JName: "Howard Alt-Eisen"
	Lv: 142
	Hp: 378100
	Sp: 1
	Exp: 17055
	JExp: 13620
	AttackRange: 1
	Attack: [2762, 1282]
	Def: 131
	Mdef: 10
	Stats: {
		Str: 158
		Agi: 79
		Vit: 92
		Int: 53
		Dex: 123
		Luk: 48
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Water", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Armlet_Of_Prisoner: 3000
		Goast_Chill: 1
		Vecer_Axe: 100
		High_Weapon_Box: 3
		Will_Of_Warrior: 200
		Clothes_Of_The_Lord: 1
		Carnium: 10
		Harword_Card: 1
	}
},
{
	Id: 1637
	SpriteName: "MAGALETA"
	Name: "Magaleta"
	JName: "Margaretha Sorin"
	Lv: 140
	Hp: 250800
	Sp: 1
	Exp: 15432
	JExp: 11710
	AttackRange: 1
	Attack: [1277, 3554]
	Def: 108
	Mdef: 93
	Stats: {
		Str: 126
		Agi: 74
		Vit: 71
		Int: 123
		Dex: 149
		Luk: 65
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 1152
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Lab_Staff_Record: 2000
		Croce_Staff: 100
		Goast_Chill: 1
		Hardback: 5
		Bible_Of_Promise2: 5
		Recovery_Light: 10
		Will_Of_Warrior: 200
		Magaleta_Card: 1
	}
},
{
	Id: 1638
	SpriteName: "SHECIL"
	Name: "Shecil"
	JName: "Cecil Damon"
	Lv: 141
	Hp: 200255
	Sp: 1
	Exp: 16567
	JExp: 13788
	AttackRange: 14
	Attack: [3737, 1248]
	Def: 76
	Mdef: 15
	Stats: {
		Str: 121
		Agi: 126
		Vit: 67
		Int: 80
		Dex: 308
		Luk: 42
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Armlet_Of_Prisoner: 3000
		Imma_Arrow_Container: 110
		Big_CrossBow: 10
		High_Weapon_Box: 3
		Will_Of_Warrior: 200
		Goast_Chill: 1
		Falken_Blitz: 100
		Shecil_Card: 1
	}
},
{
	Id: 1639
	SpriteName: "KATRINN"
	Name: "Katrinn"
	JName: "Kathryne Keyron"
	Lv: 141
	Hp: 209780
	Sp: 1
	Exp: 13484
	JExp: 13452
	AttackRange: 1
	Attack: [1089, 3123]
	Def: 77
	Mdef: 333
	Stats: {
		Str: 108
		Agi: 78
		Vit: 55
		Int: 144
		Dex: 209
		Luk: 49
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1152
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Armlet_Of_Prisoner: 3000
		Carnium: 1
		Lacryma_Stick: 100
		High_Weapon_Box: 1
		Will_Of_Warrior: 200
		Pair_Of_Red_Ribbon: 1
		Goast_Chill: 1
		Katrinn_Card: 1
	}
},
// MVP Slaves
{
	Id: 1640
	SpriteName: "G_SEYREN"
	Name: "Lord Knight Seyren"
	Lv: 160
	Hp: 2680000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [6435, 2342]
	Def: 567
	Mdef: 155
	Stats: {
		Str: 303
		Agi: 165
		Vit: 181
		Int: 110
		Dex: 267
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Carnium: 100
		Old_Violet_Box: 10
	}
},
{
	Id: 1641
	SpriteName: "G_EREMES"
	Name: "Assassin Cross Eremes"
	Lv: 160
	Hp: 1230000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [6083, 1378]
	Def: 445
	Mdef: 98
	Stats: {
		Str: 211
		Agi: 338
		Vit: 114
		Int: 83
		Dex: 338
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Poison", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Carnium: 100
		Old_Violet_Box: 10
	}
},
{
	Id: 1642
	SpriteName: "G_HARWORD"
	Name: "Whitesmith Harword"
	JName: "MasterSmith Howard"
	Lv: 160
	Hp: 3750000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [5250, 1465]
	Def: 301
	Mdef: 106
	Stats: {
		Str: 275
		Agi: 148
		Vit: 156
		Int: 72
		Dex: 266
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Carnium: 100
		Old_Violet_Box: 10
	}
},
{
	Id: 1643
	SpriteName: "G_MAGALETA"
	Name: "High Priest Magaleta"
	JName: "High Priest Margaretha"
	Lv: 160
	Hp: 2800000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [2499, 3396]
	Def: 231
	Mdef: 349
	Stats: {
		Str: 172
		Agi: 150
		Vit: 164
		Int: 203
		Dex: 233
		Luk: 88
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Holy", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 125
	AttackDelay: 1152
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Carnium: 100
		Old_Violet_Box: 10
	}
},
{
	Id: 1644
	SpriteName: "G_SHECIL"
	Name: "Sniper Shecil"
	JName: "Sniper Cecil"
	Lv: 160
	Hp: 4140000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 14
	Attack: [4155, 1550]
	Def: 178
	Mdef: 135
	Stats: {
		Str: 176
		Agi: 258
		Vit: 155
		Int: 132
		Dex: 464
		Luk: 95
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Carnium: 100
		Old_Violet_Box: 10
	}
},
{
	Id: 1645
	SpriteName: "G_KATRINN"
	Name: "High Wizard Katrinn"
	JName: "High Wizard Kathryne"
	Lv: 160
	Hp: 4500000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [2097, 4254]
	Def: 215
	Mdef: 555
	Stats: {
		Str: 165
		Agi: 190
		Vit: 142
		Int: 236
		Dex: 299
		Luk: 93
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1152
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Carnium: 100
		Old_Violet_Box: 10
	}
},
// MVP Monsters
{
	Id: 1646
	SpriteName: "B_SEYREN"
	Name: "Lord Knight Seyren"
	Lv: 160
	Hp: 4680000
	Sp: 1
	Exp: 6035328
	JExp: 3481920
	AttackRange: 1
	Attack: [6435, 2342]
	Def: 567
	Mdef: 155
	Stats: {
		Str: 303
		Agi: 165
		Vit: 181
		Int: 110
		Dex: 267
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	MvpExp: 2321280
	MvpDrops: {
		Old_Violet_Box: 5500
		Old_Blue_Box: 5000
		Crystal_Jewel__: 2000
	}
	Drops: {
		Edge: 2500
		Full_Plate_Armor_: 3500
		Grave_: 9000
		Brionac: 3500
		Longinuss_Spear: 3000
		Dragon_Slayer: 2500
		Skewer: 1500
		B_Seyren_Card: 1
	}
},
{
	Id: 1647
	SpriteName: "B_EREMES"
	Name: "Assassin Cross Eremes"
	Lv: 160
	Hp: 4230000
	Sp: 1
	Exp: 5440500
	JExp: 3147120
	AttackRange: 1
	Attack: [6083, 1378]
	Def: 445
	Mdef: 98
	Stats: {
		Str: 211
		Agi: 338
		Vit: 114
		Int: 83
		Dex: 338
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Poison", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	MvpExp: 2092500
	MvpDrops: {
		Old_Violet_Box: 5500
		Old_Blue_Box: 5000
		Crystal_Jewel__: 2000
	}
	Drops: {
		Moonlight_Sword: 1500
		House_Auger: 1500
		Glittering_Clothes: 9000
		Exercise: 3500
		Assasin_Dagger: 3500
		Bloody_Roar: 3500
		Ginnungagap: 3500
		B_Eremes_Card: 1
	}
},
{
	Id: 1648
	SpriteName: "B_HARWORD"
	Name: "Whitesmith Harword"
	JName: "MasterSmith Howard"
	Lv: 160
	Hp: 6750000
	Sp: 1
	Exp: 4621500
	JExp: 2664000
	AttackRange: 1
	Attack: [5250, 1465]
	Def: 301
	Mdef: 106
	Stats: {
		Str: 275
		Agi: 148
		Vit: 156
		Int: 72
		Dex: 266
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	MvpExp: 1777500
	MvpDrops: {
		Old_Violet_Box: 5500
		Old_Blue_Box: 5000
		Crystal_Jewel__: 2000
	}
	Drops: {
		Mysteltainn_: 3500
		Byeorrun_Gum: 2500
		Clothes_Of_The_Lord: 9000
		Sabbath: 3500
		Great_Axe: 3500
		Guillotine: 2500
		Tomahawk: 3500
		B_Harword_Card: 1
	}
},
{
	Id: 1649
	SpriteName: "B_MAGALETA"
	Name: "High Priest Magaleta"
	JName: "High Priest Margaretha"
	Lv: 160
	Hp: 4800000
	Sp: 1
	Exp: 4504500
	JExp: 2520000
	AttackRange: 1
	Attack: [2499, 3396]
	Def: 231
	Mdef: 349
	Stats: {
		Str: 172
		Agi: 150
		Vit: 164
		Int: 203
		Dex: 233
		Luk: 88
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Holy", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 125
	AttackDelay: 1152
	AttackMotion: 384
	DamageMotion: 288
	MvpExp: 1732500
	MvpDrops: {
		Old_Violet_Box: 5500
		Old_Blue_Box: 5000
		Crystal_Jewel__: 2000
	}
	Drops: {
		Berserk: 3500
		Safety_Ring: 2500
		Celestial_Robe: 9000
		Book_Of_The_Apocalypse: 3500
		Quadrille: 3500
		Grand_Cross: 2500
		Diary_Of_Great_Sage: 3500
		B_Magaleta_Card: 1
	}
},
{
	Id: 1650
	SpriteName: "B_SHECIL"
	Name: "Sniper Shecil"
	JName: "Sniper Cecil"
	Lv: 160
	Hp: 4140000
	Sp: 1
	Exp: 5338944
	JExp: 3080160
	AttackRange: 14
	Attack: [4155, 1550]
	Def: 178
	Mdef: 135
	Stats: {
		Str: 176
		Agi: 258
		Vit: 155
		Int: 132
		Dex: 464
		Luk: 95
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	MvpExp: 2053440
	MvpDrops: {
		Old_Violet_Box: 5500
		Old_Blue_Box: 5000
		Luna_Bow: 2000
	}
	Drops: {
		Combat_Knife: 3500
		Sucsamad: 3500
		Old_Violet_Box: 9000
		Moonlight_Sword: 1500
		Grimtooth_: 3500
		Bow_Of_Rudra: 1500
		Dragon_Wing: 2500
		B_Shecil_Card: 1
	}
},
{
	Id: 1651
	SpriteName: "B_KATRINN"
	Name: "High Wizard Katrinn"
	JName: "High Wizard Kathryne"
	Lv: 160
	Hp: 4500000
	Sp: 1
	Exp: 4212000
	JExp: 2430000
	AttackRange: 1
	Attack: [2097, 4254]
	Def: 215
	Mdef: 555
	Stats: {
		Str: 165
		Agi: 190
		Vit: 142
		Int: 236
		Dex: 299
		Luk: 93
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1152
	AttackMotion: 384
	DamageMotion: 288
	MvpExp: 1620000
	MvpDrops: {
		Old_Violet_Box: 5500
		Old_Blue_Box: 5000
		Crystal_Jewel__: 2000
	}
	Drops: {
		Cursed_Dagger: 3500
		Counter_Dagger: 3500
		Critical_Ring: 9000
		Robe_Of_Casting: 2500
		Celestial_Robe: 2500
		Survival_Rod_: 3000
		Glittering_Clothes: 3500
		B_Katrinn_Card: 1
	}
},
// 1'st Class Mobs
{
	Id: 1652
	SpriteName: "YGNIZEM"
	Name: "Ygnizem"
	JName: "Egnigem Cenia"
	Lv: 136
	Hp: 40327
	Sp: 1
	Exp: 7398
	JExp: 5460
	AttackRange: 1
	Attack: [1985, 328]
	Def: 224
	Mdef: 8
	Stats: {
		Str: 144
		Agi: 92
		Vit: 86
		Int: 69
		Dex: 149
		Luk: 68
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 145
	AttackDelay: 576
	AttackMotion: 432
	DamageMotion: 288
	Drops: {
		Lab_Staff_Record: 1000
		Katzbalger: 1
		Two_Hand_Sword_: 20
		Saber_: 20
		Padded_Armor_: 10
		Slayer_: 80
		Plate_Armor_: 1
		Ygnizem_Card: 1
	}
},
{
	Id: 1653
	SpriteName: "WHIKEBAIN"
	Name: "Whikebain"
	JName: "Wickebine Tres"
	Lv: 132
	Hp: 43191
	Sp: 1
	Exp: 6622
	JExp: 4721
	AttackRange: 1
	Attack: [1414, 144]
	Def: 114
	Mdef: 66
	Stats: {
		Str: 114
		Agi: 91
		Vit: 69
		Int: 42
		Dex: 128
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Poison", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 576
	AttackMotion: 432
	DamageMotion: 288
	Drops: {
		Armlet_Of_Prisoner: 2000
		Forturn_Sword: 1
		Adventureres_Suit_: 40
		Gladius_: 10
		Chain_Mail_: 2
		Ring_Of_Rogue: 1
		Coward_: 10
		Whikebain_Card: 1
	}
},
{
	Id: 1654
	SpriteName: "ARMAIA"
	Name: "Armaia"
	JName: "Armeyer Dinze"
	Lv: 134
	Hp: 46878
	Sp: 1
	Exp: 6364
	JExp: 5908
	AttackRange: 1
	Attack: [1390, 155]
	Def: 199
	Mdef: 4
	Stats: {
		Str: 123
		Agi: 59
		Vit: 85
		Int: 65
		Dex: 144
		Luk: 62
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 576
	AttackMotion: 432
	DamageMotion: 288
	Drops: {
		Armlet_Of_Prisoner: 1000
		Muffler_: 1
		Buster_: 50
		Battle_Axe_: 40
		Mink_Coat: 10
		Axe_: 80
		Windhawk: 10
		Armaia_Card: 1
	}
},
{
	Id: 1655
	SpriteName: "EREND"
	Name: "Erend"
	JName: "Errende Ebecee"
	Lv: 133
	Hp: 42764
	Sp: 1
	Exp: 6318
	JExp: 4545
	AttackRange: 1
	Attack: [937, 552]
	Def: 106
	Mdef: 99
	Stats: {
		Str: 77
		Agi: 66
		Vit: 90
		Int: 145
		Dex: 131
		Luk: 62
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Holy", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 130
	AttackDelay: 576
	AttackMotion: 432
	DamageMotion: 288
	Drops: {
		Armlet_Of_Prisoner: 500
		Biretta_: 5
		Morning_Star_: 50
		Sword_Mace_: 20
		Saint_Robe_: 5
		Scapulare_: 10
		Spike: 1
		Erend_Card: 1
	}
},
{
	Id: 1656
	SpriteName: "KAVAC"
	Name: "Kavac"
	JName: "Kavach Icarus"
	Lv: 135
	Hp: 43079
	Sp: 1
	Exp: 6934
	JExp: 5276
	AttackRange: 9
	Attack: [1195, 129]
	Def: 86
	Mdef: 48
	Stats: {
		Str: 103
		Agi: 109
		Vit: 62
		Int: 50
		Dex: 274
		Luk: 48
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 576
	AttackMotion: 432
	DamageMotion: 288
	Drops: {
		Lab_Staff_Record: 2000
		Kakkung_: 1
		Steel_Arrow_Container: 100
		Great_Bow_: 10
		Mantle_: 5
		Sandals_: 30
		Shoes_: 2
		Kavac_Card: 1
	}
},
{
	Id: 1657
	SpriteName: "RAWREL"
	Name: "Rawrel"
	JName: "Laurell Weinder"
	Lv: 133
	Hp: 40282
	Sp: 1
	Exp: 5850
	JExp: 5476
	AttackRange: 1
	Attack: [668, 1032]
	Def: 76
	Mdef: 180
	Stats: {
		Str: 67
		Agi: 79
		Vit: 65
		Int: 162
		Dex: 168
		Luk: 57
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Ghost", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 576
	AttackMotion: 432
	DamageMotion: 288
	Drops: {
		Mementos: 1000
		Staff_Of_Wing: 1
		Guard_: 5
		Staff_: 50
		Silk_Robe_: 10
		Silver_Robe_: 30
		Clip: 1
		Rawrel_Card: 1
	}
},
// 1'st Class MvP (Ygnizem/Egnigem Cenia) and her mobs.
{
	Id: 1658
	SpriteName: "B_YGNIZEM"
	Name: "Ygnizem"
	JName: "Egnigem Cenia"
	Lv: 141
	Hp: 2910088
	Sp: 1
	Exp: 1370720
	JExp: 1860000
	AttackRange: 1
	Attack: [5986, 2351]
	Def: 373
	Mdef: 175
	Stats: {
		Str: 188
		Agi: 177
		Vit: 165
		Int: 142
		Dex: 278
		Luk: 105
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1008
	AttackMotion: 864
	DamageMotion: 288
	MvpExp: 527200
	MvpDrops: {
		Old_Violet_Box: 5500
		Old_Blue_Box: 5000
		Crystal_Jewel__: 2000
	}
	Drops: {
		Broad_Sword_: 1000
		Gift_Box: 5000
		Old_Blue_Box: 5000
		Schweizersabel: 1000
		Formal_Suit: 1000
		Boots_: 1000
		Nagan: 1000
		B_Ygnizem_Card: 1
	}
},
{
	Id: 1659
	SpriteName: "G_WHIKEBAIN"
	Name: "Whikebain"
	JName: "Wickebine Tres"
	Lv: 132
	Hp: 43191
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1414, 144]
	Def: 114
	Mdef: 66
	Stats: {
		Str: 114
		Agi: 91
		Vit: 69
		Int: 42
		Dex: 128
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Poison", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 1008
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Gift_Box: 10
	}
},
{
	Id: 1660
	SpriteName: "G_ARMAIA"
	Name: "Armaia"
	JName: "Armeyer Dinze"
	Lv: 134
	Hp: 46878
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1390, 155]
	Def: 199
	Mdef: 4
	Stats: {
		Str: 123
		Agi: 59
		Vit: 85
		Int: 65
		Dex: 144
		Luk: 62
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 1008
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Gift_Box: 10
	}
},
{
	Id: 1661
	SpriteName: "G_EREND"
	Name: "Erend"
	JName: "Errende Ebecee"
	Lv: 133
	Hp: 42764
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [937, 552]
	Def: 106
	Mdef: 99
	Stats: {
		Str: 77
		Agi: 66
		Vit: 90
		Int: 145
		Dex: 131
		Luk: 62
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Holy", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 130
	AttackDelay: 1008
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Gift_Box: 10
	}
},
{
	Id: 1662
	SpriteName: "G_KAVAC"
	Name: "Kavac"
	JName: "Kavach Icarus"
	Lv: 135
	Hp: 43079
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 9
	Attack: [1195, 129]
	Def: 86
	Mdef: 48
	Stats: {
		Str: 103
		Agi: 109
		Vit: 62
		Int: 50
		Dex: 274
		Luk: 48
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1008
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Gift_Box: 10
	}
},
{
	Id: 1663
	SpriteName: "G_RAWREL"
	Name: "Rawrel"
	JName: "Laurell Weinder"
	Lv: 133
	Hp: 40282
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [668, 832]
	Def: 76
	Mdef: 180
	Stats: {
		Str: 67
		Agi: 79
		Vit: 65
		Int: 162
		Dex: 168
		Luk: 57
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Ghost", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1008
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Gift_Box: 10
	}
},
// Juperos
{
	Id: 1664
	SpriteName: "POTON_CANON"
	Name: "Photon Cannon"
	Lv: 66
	Hp: 8000
	Sp: 0
	Exp: 840
	JExp: 600
	AttackRange: 9
	Attack: [840, 100]
	Def: 16
	Mdef: 30
	Stats: {
		Str: 1
		Agi: 40
		Vit: 25
		Int: 20
		Dex: 88
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 2)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1536
	AttackMotion: 960
	DamageMotion: 480
	Drops: {
		Large_Jellopy: 5000
		Dark_Red_Jewel: 1000
		Sticky_Mucus: 1000
	}
},
{
	Id: 1665
	SpriteName: "POTON_CANON_1"
	Name: "Photon Cannon"
	Lv: 67
	Hp: 7500
	Sp: 0
	Exp: 630
	JExp: 800
	AttackRange: 9
	Attack: [735, 100]
	Def: 24
	Mdef: 30
	Stats: {
		Str: 1
		Agi: 40
		Vit: 30
		Int: 40
		Dex: 95
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 2)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1536
	AttackMotion: 960
	DamageMotion: 480
	Drops: {
		Large_Jellopy: 5000
		Blue_Jewel: 1000
		Sticky_Mucus: 1000
		Destroyer: 5
	}
},
{
	Id: 1666
	SpriteName: "POTON_CANON_2"
	Name: "Photon Cannon"
	Lv: 64
	Hp: 7100
	Sp: 0
	Exp: 840
	JExp: 600
	AttackRange: 9
	Attack: [840, 100]
	Def: 13
	Mdef: 30
	Stats: {
		Str: 1
		Agi: 40
		Vit: 21
		Int: 29
		Dex: 88
		Luk: 91
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 2)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1536
	AttackMotion: 960
	DamageMotion: 480
	Drops: {
		Large_Jellopy: 5000
		Azure_Jewel: 1000
		Sticky_Mucus: 1000
	}
},
{
	Id: 1667
	SpriteName: "POTON_CANON_3"
	Name: "Photon Cannon"
	Lv: 65
	Hp: 7800
	Sp: 0
	Exp: 630
	JExp: 800
	AttackRange: 9
	Attack: [735, 100]
	Def: 24
	Mdef: 30
	Stats: {
		Str: 1
		Agi: 40
		Vit: 23
		Int: 30
		Dex: 99
		Luk: 99
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 2)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1536
	AttackMotion: 960
	DamageMotion: 480
	Drops: {
		Large_Jellopy: 5000
		Golden_Jewel: 1000
		Sticky_Mucus: 1000
	}
},
{
	Id: 1668
	SpriteName: "ARCHDAM"
	Name: "Archdam"
	Lv: 119
	Hp: 20700
	Sp: 1
	Exp: 3720
	JExp: 2147
	AttackRange: 3
	Attack: [844, 119]
	Def: 98
	Mdef: 15
	Stats: {
		Str: 118
		Agi: 64
		Vit: 70
		Int: 65
		Dex: 92
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 580
	AttackMotion: 288
	DamageMotion: 360
	Drops: {
		Screw: 5000
		Steel: 500
		Oridecon: 200
		Elunium: 200
		Gate_Keeper: 5
		Gate_KeeperDD: 5
		Archdam_Card: 1
	}
},
{
	Id: 1669
	SpriteName: "DIMIK"
	Name: "Dimik"
	Lv: 77
	Hp: 10000
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 5
	Attack: [1144, 840]
	Def: 45
	Mdef: 28
	Stats: {
		Str: 15
		Agi: 69
		Vit: 40
		Int: 15
		Dex: 76
		Luk: 42
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 576
	AttackMotion: 720
	DamageMotion: 432
	Drops: {
		Dimik_Card: 1
	}
},
{
	Id: 1670
	SpriteName: "DIMIK_1"
	Name: "Dimik"
	Lv: 116
	Hp: 17552
	Sp: 1
	Exp: 3790
	JExp: 2586
	AttackRange: 7
	Attack: [1618, 107]
	Def: 93
	Mdef: 28
	Stats: {
		Str: 114
		Agi: 90
		Vit: 66
		Int: 52
		Dex: 201
		Luk: 41
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 576
	AttackMotion: 720
	DamageMotion: 432
	Drops: {
		Old_Steel_Plate: 2000
		Transparent_Plate01: 50
		Oil_Bottle: 70
		Mystery_Piece: 300
		Dusk: 5
		Oridecon: 10
		Imperial_Cooking_Kits: 50
		Dimik_Card: 1
	}
},
{
	Id: 1671
	SpriteName: "DIMIK_2"
	Name: "Dimik"
	Lv: 116
	Hp: 23840
	Sp: 1
	Exp: 3790
	JExp: 2586
	AttackRange: 5
	Attack: [982, 103]
	Def: 76
	Mdef: 21
	Stats: {
		Str: 118
		Agi: 72
		Vit: 62
		Int: 55
		Dex: 153
		Luk: 38
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 576
	AttackMotion: 720
	DamageMotion: 432
	Drops: {
		Old_Steel_Plate: 2000
		Transparent_Plate02: 50
		Steel: 300
		Mystery_Piece: 300
		Thunder_P_: 10
		Oridecon: 10
		Imperial_Cooking_Kits: 50
		Dimik_Card: 1
	}
},
{
	Id: 1672
	SpriteName: "DIMIK_3"
	Name: "Dimik"
	Lv: 116
	Hp: 21920
	Sp: 1
	Exp: 3790
	JExp: 2586
	AttackRange: 5
	Attack: [954, 95]
	Def: 114
	Mdef: 24
	Stats: {
		Str: 115
		Agi: 64
		Vit: 68
		Int: 50
		Dex: 135
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 576
	AttackMotion: 720
	DamageMotion: 432
	Drops: {
		Old_Steel_Plate: 2000
		Transparent_Plate03: 50
		Steel: 300
		Mystery_Piece: 300
		Hyper_Changer: 10
		Oridecon: 10
		Imperial_Cooking_Kits: 50
		Dimik_Card: 1
	}
},
{
	Id: 1673
	SpriteName: "DIMIK_4"
	Name: "Dimik"
	Lv: 116
	Hp: 16940
	Sp: 1
	Exp: 3790
	JExp: 2586
	AttackRange: 5
	Attack: [1079, 124]
	Def: 98
	Mdef: 28
	Stats: {
		Str: 112
		Agi: 79
		Vit: 72
		Int: 53
		Dex: 150
		Luk: 47
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 576
	AttackMotion: 720
	DamageMotion: 432
	Drops: {
		Old_Steel_Plate: 2000
		Transparent_Plate04: 50
		Steel: 300
		Mystery_Piece: 300
		Hyper_Changer: 10
		Oridecon: 10
		Oil_Bottle: 70
		Dimik_Card: 1
	}
},
{
	Id: 1674
	SpriteName: "MONEMUS"
	Name: "Monemus"
	Lv: 88
	Hp: 80000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 5
	Attack: [2640, 1000]
	Def: 87
	Mdef: 25
	Stats: {
		Str: 0
		Agi: 1
		Vit: 90
		Int: 24
		Dex: 173
		Luk: 45
	}
	ViewRange: 14
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 3)
	Mode: {
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 400
	AttackDelay: 1368
	AttackMotion: 1344
	DamageMotion: 432
	Drops: {
		Stone: 2000
		Stone_Heart: 1000
	}
},
{
	Id: 1675
	SpriteName: "VENATU"
	Name: "Venatu"
	Lv: 77
	Hp: 12717
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [717, 127]
	Def: 96
	Mdef: 20
	Stats: {
		Str: 99
		Agi: 56
		Vit: 58
		Int: 62
		Dex: 58
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 504
	AttackMotion: 1020
	DamageMotion: 360
	Drops: {
		Venatu_Card: 1
	}
},
{
	Id: 1676
	SpriteName: "VENATU_1"
	Name: "Venatu"
	Lv: 113
	Hp: 15900
	Sp: 1
	Exp: 3182
	JExp: 2036
	AttackRange: 2
	Attack: [1662, 85]
	Def: 95
	Mdef: 20
	Stats: {
		Str: 109
		Agi: 54
		Vit: 60
		Int: 50
		Dex: 84
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 504
	AttackMotion: 1020
	DamageMotion: 360
	Drops: {
		Screw: 2000
		Piece_Of_Crest1: 350
		Oil_Bottle: 100
		Mystery_Piece: 300
		Drifter: 5
		Elunium: 10
		High_end_Cooking_Kits: 100
		Venatu_Card: 1
	}
},
{
	Id: 1677
	SpriteName: "VENATU_2"
	Name: "Venatu"
	Lv: 113
	Hp: 14717
	Sp: 1
	Exp: 3428
	JExp: 2080
	AttackRange: 2
	Attack: [917, 107]
	Def: 86
	Mdef: 20
	Stats: {
		Str: 99
		Agi: 73
		Vit: 58
		Int: 62
		Dex: 137
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 504
	AttackMotion: 1020
	DamageMotion: 360
	Drops: {
		Screw: 2000
		Piece_Of_Crest2: 500
		Steel: 300
		Mystery_Piece: 300
		Long_Barrel_: 10
		Elunium: 10
		High_end_Cooking_Kits: 100
		Venatu_Card: 1
	}
},
{
	Id: 1678
	SpriteName: "VENATU_3"
	Name: "Venatu"
	Lv: 113
	Hp: 21040
	Sp: 1
	Exp: 3436
	JExp: 2082
	AttackRange: 2
	Attack: [977, 100]
	Def: 104
	Mdef: 16
	Stats: {
		Str: 103
		Agi: 50
		Vit: 62
		Int: 57
		Dex: 97
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 504
	AttackMotion: 1020
	DamageMotion: 360
	Drops: {
		Screw: 2000
		Piece_Of_Crest3: 400
		Steel: 300
		Mystery_Piece: 300
		Hyper_Changer: 10
		Elunium: 10
		High_end_Cooking_Kits: 100
		Venatu_Card: 1
	}
},
{
	Id: 1679
	SpriteName: "VENATU_4"
	Name: "Venatu"
	Lv: 113
	Hp: 21810
	Sp: 1
	Exp: 3436
	JExp: 2082
	AttackRange: 2
	Attack: [918, 89]
	Def: 74
	Mdef: 15
	Stats: {
		Str: 106
		Agi: 69
		Vit: 61
		Int: 55
		Dex: 101
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 504
	AttackMotion: 1020
	DamageMotion: 360
	Drops: {
		Screw: 2000
		Piece_Of_Crest4: 300
		Steel: 300
		Mystery_Piece: 300
		Hyper_Changer: 10
		Elunium: 10
		Oil_Bottle: 100
		Venatu_Card: 1
	}
},
{
	Id: 1680
	SpriteName: "HILL_WIND_1"
	Name: "Hill Wind"
	Lv: 101
	Hp: 9100
	Sp: 1
	Exp: 2280
	JExp: 1425
	AttackRange: 3
	Attack: [400, 67]
	Def: 90
	Mdef: 37
	Stats: {
		Str: 105
		Agi: 69
		Vit: 59
		Int: 35
		Dex: 96
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 504
	AttackMotion: 480
	DamageMotion: 360
	Drops: {
		Harpys_Feather: 4000
		Harpys_Claw: 3000
		Monsters_Feed: 1000
		Blue_Herb: 10
		Hill_Wind_Card: 1
	}
},
{
	Id: 1681
	SpriteName: "GEMINI"
	Name: "Gemini-S58"
	Lv: 135
	Hp: 108999
	Sp: 1
	Exp: 6071
	JExp: 4771
	AttackRange: 3
	Attack: [2178, 622]
	Def: 89
	Mdef: 45
	Stats: {
		Str: 115
		Agi: 92
		Vit: 81
		Int: 92
		Dex: 141
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1872
	AttackMotion: 360
	DamageMotion: 864
	Drops: {
		Skull: 3000
		Old_Blue_Box: 1000
		Butcher_: 5
		Yellow_Slim_Potion: 500
		White_Slim_Potion: 400
		Cookbook08: 6
		Stone_Of_Intelligence_: 300
		Gemini_Card: 1
	}
},
{
	Id: 1682
	SpriteName: "REMOVAL"
	Name: "Removal"
	JName: "Remover"
	Lv: 121
	Hp: 32235
	Sp: 0
	Exp: 4504
	JExp: 2829
	AttackRange: 1
	Attack: [998, 120]
	Def: 110
	Mdef: 47
	Stats: {
		Str: 127
		Agi: 50
		Vit: 82
		Int: 35
		Dex: 125
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1536
	AttackMotion: 1056
	DamageMotion: 1152
	Drops: {
		Empty_Bottle: 5000
		Old_Steel_Plate: 5000
		Gas_Mask: 10
		Nice_Sweet_Potato: 500
		Detrimindexta: 50
		Karvodailnirol: 100
		Fedora_: 6
		Removal_Card: 1
	}
},
{
	Id: 1683
	SpriteName: "G_POTON_CANON"
	Name: "Photon Cannon"
	Lv: 66
	Hp: 8000
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 9
	Attack: [840, 100]
	Def: 16
	Mdef: 30
	Stats: {
		Str: 1
		Agi: 40
		Vit: 25
		Int: 20
		Dex: 88
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1536
	AttackMotion: 960
	DamageMotion: 480
},
{
	Id: 1684
	SpriteName: "G_ARCHDAM"
	Name: "Archdam"
	Lv: 119
	Hp: 20700
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [844, 119]
	Def: 98
	Mdef: 15
	Stats: {
		Str: 118
		Agi: 64
		Vit: 70
		Int: 65
		Dex: 92
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Angel"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 1080
	AttackMotion: 288
	DamageMotion: 360
},
{
	Id: 1685
	SpriteName: "APOCALIPS_H"
	Name: "Vesper"
	Lv: 128
	Hp: 3802000
	Sp: 1
	Exp: 3510000
	JExp: 2250000
	AttackRange: 3
	Attack: [3668, 4656]
	Def: 402
	Mdef: 109
	Stats: {
		Str: 177
		Agi: 195
		Vit: 165
		Int: 130
		Dex: 255
		Luk: 102
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Holy", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 504
	AttackMotion: 912
	DamageMotion: 432
	MvpExp: 100000
	MvpDrops: {
		Old_Violet_Box: 5500
		Old_Blue_Box: 5000
		Crystal_Jewel__: 2000
	}
	Drops: {
		Broken_Steel_Piece: 5000
		Mystery_Piece: 3000
		Old_Violet_Box: 1000
		Vesper_Core01: 100
		Vesper_Core02: 100
		Vesper_Core03: 100
		Vesper_Core04: 100
		Apocalips_H_Card: 1
	}
},
{
	Id: 1686
	SpriteName: "ORC_BABY"
	Name: "Orc Baby"
	Lv: 43
	Hp: 1122
	Sp: 1
	Exp: 315
	JExp: 354
	AttackRange: 1
	Attack: [64, 11]
	Def: 49
	Mdef: 3
	Stats: {
		Str: 25
		Agi: 1
		Vit: 32
		Int: 20
		Dex: 31
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 672
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Large_Jellopy: 1000
		Pacifier: 100
		Viking_Helm: 1
		Milk: 5000
		Milk_Bottle: 200
		Bib: 100
		Orc_Baby_Card_Card: 1
	}
},
{
	Id: 1687
	SpriteName: "GREEN_IGUANA"
	Name: "Green Iguana"
	JName: "Grove"
	Lv: 55
	Hp: 2090
	Sp: 1
	Exp: 510
	JExp: 548
	AttackRange: 1
	Attack: [146, 35]
	Def: 96
	Mdef: 18
	Stats: {
		Str: 58
		Agi: 42
		Vit: 22
		Int: 5
		Dex: 50
		Luk: 17
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1152
	AttackMotion: 1152
	DamageMotion: 480
	Drops: {
		Leaflet_Of_Aloe: 1500
		Reptile_Tongue: 1000
		Leaflet_Of_Hinal: 1000
		Green_Herb: 1000
		Monsters_Feed: 2000
		Aloebera: 10
		Melon: 500
		Green_Iguana_Card: 1
	}
},
{
	Id: 1688
	SpriteName: "LADY_TANEE"
	Name: "Lady Tanee"
	Lv: 80
	Hp: 360000
	Sp: 1
	Exp: 367488
	JExp: 261000
	AttackRange: 14
	Attack: [1936, 925]
	Def: 241
	Mdef: 104
	Stats: {
		Str: 86
		Agi: 108
		Vit: 88
		Int: 121
		Dex: 240
		Luk: 71
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Plant"
	Element: ("Ele_Wind", 3)
	Mode: {
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 100
	AttackDelay: 576
	AttackMotion: 432
	DamageMotion: 360
	DamageTakenRate: 10
	MvpExp: 167040
	MvpDrops: {
		Old_Violet_Box: 5500
		Dex_Dish10: 5000
		Crystal_Jewel__: 2000
	}
	Drops: {
		Agi_Dish10: 5000
		Tropical_Banana: 4000
		Fantastic_Cooking_Kits: 1000
		Banana_Hat: 1000
		Elunium: 5000
		Old_Violet_Box: 2000
		Kakkung_: 6000
		Lady_Tanee_Card: 1
	}
},
{
	Id: 1689
	SpriteName: "G_BACSOJIN"
	Name: "Bacsojin"
	JName: "White Lady"
	Lv: 97
	Hp: 720500
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [1414, 2036]
	Def: 210
	Mdef: 178
	Stats: {
		Str: 118
		Agi: 244
		Vit: 98
		Int: 126
		Dex: 246
		Luk: 102
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 130
	AttackDelay: 576
	AttackMotion: 960
	DamageMotion: 480
},
{
	Id: 1690
	SpriteName: "G_SPRING_RABBIT"
	Name: "Spring Rabbit"
	JName: "Lunar Rabbit"
	Lv: 12
	Hp: 15
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Looter: true
		Plant: true
		CanAttack: true
	}
	MoveSpeed: 160
	AttackDelay: 1120
	AttackMotion: 552
	DamageMotion: 0
	Drops: {
		New_Year_Rice_Cake: 5000
	}
},
{
	Id: 1691
	SpriteName: "G_KRABEN"
	Name: "Kraben"
	Lv: 70
	Hp: 2901
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [279, 45]
	Def: 108
	Mdef: 20
	Stats: {
		Str: 54
		Agi: 33
		Vit: 35
		Int: 15
		Dex: 68
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Ghost", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1152
	AttackMotion: 1536
	DamageMotion: 576
	Drops: {
		Leaflet_Of_Aloe: 1
		Leaflet_Of_Aloe: 1
		Leaflet_Of_Aloe: 1
		Leaflet_Of_Aloe: 1
		Leaflet_Of_Aloe: 1
		Leaflet_Of_Aloe: 1
		Leaflet_Of_Aloe: 1
	}
},
// Thanatos Tower (10.3)
{
	Id: 1692
	SpriteName: "BREEZE"
	Name: "Breeze"
	Lv: 92
	Hp: 6755
	Sp: 1
	Exp: 1918
	JExp: 1797
	AttackRange: 2
	Attack: [493, 52]
	Def: 83
	Mdef: 32
	Stats: {
		Str: 75
		Agi: 101
		Vit: 46
		Int: 35
		Dex: 79
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 140
	AttackMotion: 384
	DamageMotion: 504
	Drops: {
		Raccoon_Leaf: 500
		Four_Leaf_Clover: 10
		Centimental_Leaf: 10
		Gust_Bow: 10
		Branch_Of_Dead_Tree: 10
		Centimental_Flower: 10
		Rough_Wind: 10
		Breeze_Card: 1
	}
},
{
	Id: 1693
	SpriteName: "PLASMA_Y"
	Name: "Plasma"
	Lv: 119
	Hp: 20600
	Sp: 1
	Exp: 2744
	JExp: 2882
	AttackRange: 1
	Attack: [861, 135]
	Def: 130
	Mdef: 45
	Stats: {
		Str: 141
		Agi: 94
		Vit: 75
		Int: 91
		Dex: 144
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Ghost", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1056
	AttackMotion: 1056
	DamageMotion: 336
	Drops: {
		Scell: 100
		Gift_Box: 10
		Crystal_Jewel_: 2
		Yellow_Gemstone: 100
		Gold: 1
		Light_Granule: 300
		Plasma_Card: 1
	}
},
{
	Id: 1694
	SpriteName: "PLASMA_R"
	Name: "Plasma"
	Lv: 118
	Hp: 16789
	Sp: 1
	Exp: 4614
	JExp: 2661
	AttackRange: 1
	Attack: [1169, 100]
	Def: 111
	Mdef: 12
	Stats: {
		Str: 147
		Agi: 77
		Vit: 66
		Int: 65
		Dex: 133
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 912
	AttackMotion: 1248
	DamageMotion: 576
	Drops: {
		Scell: 100
		Gift_Box: 10
		Crystal_Jewel_: 2
		Red_Gemstone: 100
		Boody_Red: 45
		Plasma_Card: 1
	}
},
{
	Id: 1695
	SpriteName: "PLASMA_G"
	Name: "Plasma"
	Lv: 116
	Hp: 24975
	Sp: 1
	Exp: 4352
	JExp: 2511
	AttackRange: 1
	Attack: [851, 112]
	Def: 120
	Mdef: 3
	Stats: {
		Str: 121
		Agi: 60
		Vit: 58
		Int: 62
		Dex: 102
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1000
	AttackMotion: 500
	DamageMotion: 1000
	Drops: {
		Scell: 100
		Gift_Box: 10
		Crystal_Jewel_: 2
		Blue_Gemstone: 100
		Yellow_Live: 40
		Plasma_Card: 1
	}
},
{
	Id: 1696
	SpriteName: "PLASMA_P"
	Name: "Plasma"
	Lv: 117
	Hp: 18955
	Sp: 1
	Exp: 4352
	JExp: 2511
	AttackRange: 1
	Attack: [872, 139]
	Def: 78
	Mdef: 49
	Stats: {
		Str: 130
		Agi: 71
		Vit: 72
		Int: 70
		Dex: 122
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 768
	AttackMotion: 1440
	DamageMotion: 672
	Drops: {
		Scell: 100
		Gift_Box: 10
		Crystal_Jewel_: 2
		Red_Gemstone: 100
		Cardinal_Jewel_: 100
		Plasma_Card: 1
	}
},
{
	Id: 1697
	SpriteName: "PLASMA_B"
	Name: "Plasma"
	Lv: 115
	Hp: 24651
	Sp: 1
	Exp: 4134
	JExp: 2384
	AttackRange: 1
	Attack: [599, 70]
	Def: 51
	Mdef: 18
	Stats: {
		Str: 124
		Agi: 74
		Vit: 60
		Int: 55
		Dex: 92
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Water", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 720
	AttackMotion: 360
	DamageMotion: 360
	Drops: {
		Scell: 100
		Gift_Box: 10
		Crystal_Jewel_: 2
		Blue_Gemstone: 100
		Crystal_Blue: 35
		Plasma_Card: 1
	}
},
{
	Id: 1698
	SpriteName: "DEATHWORD"
	Name: "Deathword"
	JName: "Death Word"
	Lv: 114
	Hp: 16390
	Sp: 1
	Exp: 3334
	JExp: 1923
	AttackRange: 1
	Attack: [834, 125]
	Def: 68
	Mdef: 40
	Stats: {
		Str: 91
		Agi: 64
		Vit: 53
		Int: 88
		Dex: 139
		Luk: 54
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 176
	AttackMotion: 912
	DamageMotion: 300
	Drops: {
		Worn_Out_Page: 4000
		Bookclip_In_Memory: 300
		Legend_Of_Kafra01: 50
		Bloody_Page: 500
		Vidars_Boots: 10
		Cookbook08: 2
		Cookbook09: 1
		Deathword_Card: 1
	}
},
{
	Id: 1699
	SpriteName: "ANCIENT_MIMIC"
	Name: "Ancient Mimic"
	Lv: 112
	Hp: 14700
	Sp: 1
	Exp: 3182
	JExp: 2069
	AttackRange: 1
	Attack: [959, 84]
	Def: 100
	Mdef: 40
	Stats: {
		Str: 121
		Agi: 70
		Vit: 63
		Int: 43
		Dex: 141
		Luk: 67
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 168
	AttackMotion: 480
	DamageMotion: 360
	Drops: {
		Old_Blue_Box: 30
		Old_Violet_Box: 1
		Gift_Box: 50
		Shoes_: 5
		Manteau_: 1
		Fricco_Shoes: 10
		Gold_Ring: 100
		Ancient_Mimic_Card: 1
	}
},
{
	Id: 1700
	SpriteName: "OBSERVATION"
	Name: "Observation"
	JName: "Dame of Sentinel"
	Lv: 127
	Hp: 34538
	Sp: 1
	Exp: 5556
	JExp: 5100
	AttackRange: 2
	Attack: [1400, 152]
	Def: 98
	Mdef: 55
	Stats: {
		Str: 99
		Agi: 75
		Vit: 52
		Int: 55
		Dex: 178
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Angel"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 432
	AttackMotion: 480
	DamageMotion: 360
	Drops: {
		Blue_Feather: 500
		Ring_: 1
		Cursed_Seal: 100
		Golden_Jewel: 1000
		Stone_Of_Intelligence_: 100
		Hair_Band: 10
		Golden_Bracelet: 100
		Observation_Card: 1
	}
},
{
	Id: 1701
	SpriteName: "SHELTER"
	Name: "Shelter"
	JName: "Mistress of Shelter"
	Lv: 125
	Hp: 27000
	Sp: 1
	Exp: 5212
	JExp: 5050
	AttackRange: 2
	Attack: [1067, 944]
	Def: 80
	Mdef: 89
	Stats: {
		Str: 99
		Agi: 66
		Vit: 41
		Int: 153
		Dex: 133
		Luk: 89
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 160
	AttackDelay: 432
	AttackMotion: 420
	DamageMotion: 360
	Drops: {
		Red_Feather: 200
		Cursed_Seal: 1
		Stone_Of_Intelligence_: 50
		Scarlet_Jewel: 1000
		Skull: 1000
		Cursed_Seal: 50
		Shelter_Card: 1
	}
},
{
	Id: 1702
	SpriteName: "RETRIBUTION"
	Name: "Retribution"
	JName: "Baroness of Retribution"
	Lv: 121
	Hp: 22152
	Sp: 1
	Exp: 4986
	JExp: 4462
	AttackRange: 2
	Attack: [1117, 804]
	Def: 61
	Mdef: 35
	Stats: {
		Str: 112
		Agi: 60
		Vit: 45
		Int: 127
		Dex: 149
		Luk: 70
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Angel"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 360
	AttackMotion: 480
	DamageMotion: 360
	Drops: {
		Red_Feather: 400
		Ring_: 1
		Stone_Of_Intelligence_: 50
		Cardinal_Jewel: 1000
		Manteau_: 5
		Two_Hand_Sword_: 10
		Cursed_Seal: 50
		Retribution_Card: 1
	}
},
{
	Id: 1703
	SpriteName: "SOLACE"
	Name: "Solace"
	JName: "Lady Solace"
	Lv: 123
	Hp: 24729
	Sp: 1
	Exp: 4884
	JExp: 4818
	AttackRange: 2
	Attack: [1234, 165]
	Def: 96
	Mdef: 96
	Stats: {
		Str: 106
		Agi: 65
		Vit: 61
		Int: 42
		Dex: 125
		Luk: 72
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 576
	AttackMotion: 420
	DamageMotion: 360
	Drops: {
		Blue_Feather: 200
		Ring_: 1
		Stone_Of_Intelligence_: 50
		Dark_Red_Jewel: 1000
		Harp_: 50
		Harp: 100
		Cursed_Seal: 50
		Solace_Card: 1
	}
},
{
	Id: 1704
	SpriteName: "THA_ODIUM"
	Name: "Thanatos Odium"
	JName: "Odium of Thanatos"
	Lv: 129
	Hp: 40200
	Sp: 1
	Exp: 5148
	JExp: 3666
	AttackRange: 9
	Attack: [1061, 144]
	Def: 120
	Mdef: 30
	Stats: {
		Str: 106
		Agi: 78
		Vit: 71
		Int: 54
		Dex: 181
		Luk: 31
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Ghost", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 432
	AttackMotion: 288
	DamageMotion: 420
	Drops: {
		Brigan: 1000
		Crystal_Jewel_: 500
		Crystal_Jewel__: 100
		Piece_Of_Memory_Blue: 10000
		Old_Card_Album: 10
		Goibnes_Shoulder_Arms: 1000
		Tha_Odium_Card: 1
	}
},
{
	Id: 1705
	SpriteName: "THA_DESPERO"
	Name: "Thanatos Despero"
	JName: "Despero of Thanatos"
	Lv: 129
	Hp: 41111
	Sp: 1
	Exp: 5148
	JExp: 3666
	AttackRange: 2
	Attack: [1032, 171]
	Def: 95
	Mdef: 69
	Stats: {
		Str: 111
		Agi: 96
		Vit: 66
		Int: 65
		Dex: 127
		Luk: 52
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Ghost", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 160
	AttackMotion: 528
	DamageMotion: 360
	Drops: {
		Brigan: 1000
		Crystal_Jewel_: 500
		Crystal_Jewel__: 100
		Piece_Of_Memory_Red: 10000
		Old_Card_Album: 10
		Goibnes_Combat_Boots: 1000
		Tha_Despero_Card: 1
	}
},
{
	Id: 1706
	SpriteName: "THA_MAERO"
	Name: "Thanatos Maero"
	JName: "Maero of Thanatos"
	Lv: 129
	Hp: 42599
	Sp: 1
	Exp: 5148
	JExp: 3666
	AttackRange: 2
	Attack: [1058, 245]
	Def: 96
	Mdef: 90
	Stats: {
		Str: 97
		Agi: 111
		Vit: 70
		Int: 133
		Dex: 115
		Luk: 67
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Ghost", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 160
	AttackMotion: 480
	DamageMotion: 360
	Drops: {
		Brigan: 1000
		Crystal_Jewel_: 500
		Crystal_Jewel__: 100
		Piece_Of_Memory_Purple: 10000
		Old_Card_Album: 10
		Goibnes_Armor: 1000
		Tha_Maero_Card: 1
	}
},
{
	Id: 1707
	SpriteName: "THA_DOLOR"
	Name: "Thanatos Dolor"
	JName: "Dolor of Thanatos"
	Lv: 129
	Hp: 45000
	Sp: 1
	Exp: 5148
	JExp: 3666
	AttackRange: 2
	Attack: [980, 201]
	Def: 71
	Mdef: 80
	Stats: {
		Str: 91
		Agi: 72
		Vit: 59
		Int: 96
		Dex: 109
		Luk: 79
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Undead"
	Element: ("Ele_Ghost", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 160
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Brigan: 1000
		Crystal_Jewel_: 500
		Crystal_Jewel__: 100
		Piece_Of_Memory_Green: 10000
		Old_Card_Album: 10
		Goibnes_Helmet: 1000
		Tha_Dolor_Card: 1
	}
},
{
	Id: 1708
	SpriteName: "THANATOS"
	Name: "Thanatos"
	JName: "Memory of Thanatos"
	Lv: 99
	Hp: 1445660
	Sp: 1
	Exp: 1559280
	JExp: 1930554
	AttackRange: 3
	Attack: [4956, 1671]
	Def: 364
	Mdef: 35
	Stats: {
		Str: 100
		Agi: 129
		Vit: 30
		Int: 86
		Dex: 247
		Luk: 32
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 115
	AttackMotion: 816
	DamageMotion: 504
	DamageTakenRate: 10
	MvpExp: 649700
	MvpDrops: {
		Old_Violet_Box: 5500
		Old_Blue_Box: 5000
		Crystal_Jewel__: 2000
	}
	Drops: {
		Treasure_Box: 1000
		Morriganes_Manteau: 1000
		Piece_Of_Bone_Armor: 5000
		Full_Plate_Armor_: 5000
		Grave_: 5000
		Wing_Of_Eagle: 1000
		Bloody_Iron_Ball: 500
		Thanatos_Card: 1
	}
},
{
	Id: 1709
	SpriteName: "G_THA_ODIUM"
	Name: "Thanatos Odium"
	JName: "Odium of Thanatos"
	Lv: 129
	Hp: 40200
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 9
	Attack: [1061, 144]
	Def: 120
	Mdef: 30
	Stats: {
		Str: 106
		Agi: 78
		Vit: 71
		Int: 54
		Dex: 181
		Luk: 31
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Ghost", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 115
	AttackMotion: 288
	DamageMotion: 420
	Drops: {
		Brigan: 1000
		Crystal_Jewel_: 500
		Crystal_Jewel__: 100
	}
},
{
	Id: 1710
	SpriteName: "G_THA_DESPERO"
	Name: "Thanatos Despero"
	JName: "Despero of Thanatos"
	Lv: 129
	Hp: 41111
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1032, 171]
	Def: 95
	Mdef: 69
	Stats: {
		Str: 111
		Agi: 96
		Vit: 66
		Int: 65
		Dex: 127
		Luk: 52
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Ghost", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 160
	AttackMotion: 528
	DamageMotion: 360
	Drops: {
		Brigan: 1000
		Crystal_Jewel_: 500
		Crystal_Jewel__: 100
	}
},
{
	Id: 1711
	SpriteName: "G_THA_MAERO"
	Name: "Thanatos Maero"
	JName: "Maero of Thanatos"
	Lv: 129
	Hp: 42599
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1058, 245]
	Def: 96
	Mdef: 90
	Stats: {
		Str: 97
		Agi: 111
		Vit: 70
		Int: 133
		Dex: 115
		Luk: 67
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Ghost", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 160
	AttackMotion: 480
	DamageMotion: 360
	Drops: {
		Brigan: 1000
		Crystal_Jewel_: 500
		Crystal_Jewel__: 100
	}
},
{
	Id: 1712
	SpriteName: "G_THA_DOLOR"
	Name: "Thanatos Dolor"
	JName: "Dolor of Thanatos"
	Lv: 129
	Hp: 45000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [980, 201]
	Def: 71
	Mdef: 80
	Stats: {
		Str: 91
		Agi: 72
		Vit: 59
		Int: 96
		Dex: 109
		Luk: 79
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Undead"
	Element: ("Ele_Ghost", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 160
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Brigan: 1000
		Crystal_Jewel_: 500
		Crystal_Jewel__: 100
	}
},
// Abyss Lake
{
	Id: 1713
	SpriteName: "ACIDUS"
	Name: "Acidus"
	Lv: 130
	Hp: 48430
	Sp: 1
	Exp: 6176
	JExp: 3988
	AttackRange: 2
	Attack: [871, 695]
	Def: 101
	Mdef: 90
	Stats: {
		Str: 109
		Agi: 78
		Vit: 50
		Int: 55
		Dex: 108
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Holy", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 168
	AttackMotion: 1008
	DamageMotion: 300
	Drops: {
		Light_Granule: 500
		Dragon_Canine: 4000
		Treasure_Box: 5
		White_Wing_Brooch: 10
		Dragonball_Yellow: 800
		Inverse_Scale: 10
		Stone_Buckler: 50
		Acidus_Card: 1
	}
},
{
	Id: 1714
	SpriteName: "FERUS"
	Name: "Ferus"
	Lv: 126
	Hp: 25668
	Sp: 1
	Exp: 5180
	JExp: 2989
	AttackRange: 2
	Attack: [969, 115]
	Def: 96
	Mdef: 45
	Stats: {
		Str: 94
		Agi: 80
		Vit: 55
		Int: 60
		Dex: 109
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 108
	AttackMotion: 576
	DamageMotion: 432
	Drops: {
		Black_wing_Brooch: 10
		Dragon_Canine: 1000
		Dragons_Skin: 1000
		Dragon_Scale: 2000
		Dragonball_Red: 800
		Flame_Heart: 20
		Magni_Cap: 50
		Ferus_Card: 1
	}
},
{
	Id: 1715
	SpriteName: "NOVUS"
	Name: "Novus"
	Lv: 90
	Hp: 6670
	Sp: 1
	Exp: 1436
	JExp: 1505
	AttackRange: 1
	Attack: [427, 57]
	Def: 95
	Mdef: 48
	Stats: {
		Str: 74
		Agi: 56
		Vit: 57
		Int: 25
		Dex: 108
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Dragon"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 110
	AttackDelay: 151
	AttackMotion: 288
	DamageMotion: 360
	Drops: {
		Green_Herb: 3000
		Cyfar: 1035
		Dragon_Scale: 589
		Novus_Card: 1
	}
},
{
	Id: 1716
	SpriteName: "ACIDUS_"
	Name: "Acidus"
	Lv: 130
	Hp: 40718
	Sp: 1
	Exp: 5876
	JExp: 3389
	AttackRange: 2
	Attack: [1484, 158]
	Def: 98
	Mdef: 47
	Stats: {
		Str: 106
		Agi: 110
		Vit: 61
		Int: 53
		Dex: 133
		Luk: 53
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 168
	AttackMotion: 768
	DamageMotion: 360
	Drops: {
		Blue_Potion: 150
		Dragon_Canine: 4000
		White_Wing_Brooch: 10
		Dragon_Scale: 3589
		Dragonball_Blue: 800
		Rough_Wind: 20
		Dragonball_Blue: 100
		Acidus__Card: 1
	}
},
{
	Id: 1717
	SpriteName: "FERUS_"
	Name: "Ferus"
	Lv: 126
	Hp: 39054
	Sp: 1
	Exp: 5440
	JExp: 2989
	AttackRange: 2
	Attack: [906, 122]
	Def: 111
	Mdef: 33
	Stats: {
		Str: 91
		Agi: 57
		Vit: 57
		Int: 61
		Dex: 87
		Luk: 51
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 108
	AttackMotion: 576
	DamageMotion: 432
	Drops: {
		Delicious_Fish: 5100
		Dragon_Canine: 1000
		Black_wing_Brooch: 10
		Dragon_Scale: 3589
		Dragonball_Green: 800
		Great_Nature: 20
		Dragonball_Green: 100
		Ferus__Card: 1
	}
},
{
	Id: 1718
	SpriteName: "NOVUS_"
	Name: "Novus"
	Lv: 84
	Hp: 5028
	Sp: 1
	Exp: 1188
	JExp: 1215
	AttackRange: 1
	Attack: [293, 48]
	Def: 88
	Mdef: 28
	Stats: {
		Str: 53
		Agi: 43
		Vit: 43
		Int: 55
		Dex: 108
		Luk: 58
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Dragon"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 252
	AttackMotion: 816
	DamageMotion: 480
	Drops: {
		Yellow_Herb: 2000
		Cyfar: 1035
		Dragon_Scale: 589
		Novus__Card: 1
	}
},
{
	Id: 1719
	SpriteName: "DETALE"
	Name: "Detale"
	JName: "Detardeurus"
	Lv: 135
	Hp: 6005000
	Sp: 1
	Exp: 5616000
	JExp: 3420000
	AttackRange: 3
	Attack: [6108, 2662]
	Def: 364
	Mdef: 166
	Stats: {
		Str: 165
		Agi: 153
		Vit: 171
		Int: 136
		Dex: 278
		Luk: 72
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 432
	AttackMotion: 936
	DamageMotion: 360
	DamageTakenRate: 10
	MvpExp: 2160000
	MvpDrops: {
		Old_Violet_Box: 5500
		Old_Blue_Box: 5000
		Crystal_Jewel__: 2000
	}
	Drops: {
		Morpheuss_Armlet: 1000
		Morpheuss_Ring: 1000
		Treasure_Box: 5000
		Scale_Of_Red_Dragon: 3589
		Int_Dish10: 1000
		Pole_Axe: 100
		Gemmed_Crown: 500
		Detale_Card: 1
	}
},
{
	Id: 1720
	SpriteName: "HYDRO"
	Name: "Hydro"
	JName: "Hydrolancer"
	Lv: 121
	Hp: 41500
	Sp: 0
	Exp: 8170
	JExp: 4463
	AttackRange: 3
	Attack: [1064, 150]
	Def: 92
	Mdef: 58
	Stats: {
		Str: 120
		Agi: 72
		Vit: 67
		Int: 66
		Dex: 123
		Luk: 58
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 160
	AttackDelay: 140
	AttackMotion: 672
	DamageMotion: 432
	Drops: {
		Dragons_Skin: 4000
		Dragon_Canine: 4000
		Tri_Headed_Dragon_Head: 3880
		Morpheuss_Hood: 500
		Morriganes_Helm: 500
		Vit_Dish10: 300
		Fricca_Circlet: 500
		Hydro_Card: 1
	}
},
{
	Id: 1721
	SpriteName: "DRAGON_EGG"
	Name: "Dragon Egg"
	Lv: 119
	Hp: 20990
	Sp: 1
	Exp: 3720
	JExp: 2147
	AttackRange: 0
	Attack: [704, 150]
	Def: 172
	Mdef: 85
	Stats: {
		Str: 84
		Agi: 59
		Vit: 85
		Int: 40
		Dex: 165
		Luk: 65
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Dragon"
	Element: ("Ele_Neutral", 2)
	MoveSpeed: 1000
	AttackDelay: 24
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Elunium: 5
		Piece_Of_Egg_Shell: 100
		Crystal_Jewel_: 10
		Crystal_Jewel__: 5
		Dark_Red_Jewel: 10
		Skyblue_Jewel: 10
		Golden_Jewel: 10
		Dragon_Egg_Card: 1
	}
},
{
	Id: 1722
	SpriteName: "EVENT_JAKK"
	Name: "Jakk"
	JName: "Halloween Jakk"
	Lv: 99
	Hp: 10310
	Sp: 0
	Exp: 112
	JExp: 90
	AttackRange: 1
	Attack: [150, 67]
	Def: 8
	Mdef: 11
	Stats: {
		Str: 1
		Agi: 28
		Vit: 18
		Int: 13
		Dex: 42
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 240
	AttackDelay: 1180
	AttackMotion: 480
	DamageMotion: 648
	Drops: {
		Pumpkin_Bucket: 1000
		Pumpkin_Head: 1000
		Pumpkin: 1000
		Pumpkin_Hat: 10000
	}
},
{
	Id: 1723
	SpriteName: "A_SHECIL"
	Name: "Shecil Damon"
	JName: "Cecil Damon"
	Lv: 82
	Hp: 30000
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 14
	Attack: [660, 300]
	Def: 40
	Mdef: 15
	Stats: {
		Str: 1
		Agi: 145
		Vit: 27
		Int: 32
		Dex: 161
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 1008
	AttackMotion: 384
	DamageMotion: 288
},
{
	Id: 1724
	SpriteName: "A_POTON_CANON"
	Name: "Photon Cannon"
	Lv: 66
	Hp: 8000
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 9
	Attack: [1000, 300]
	Def: 16
	Mdef: 30
	Stats: {
		Str: 1
		Agi: 40
		Vit: 25
		Int: 20
		Dex: 80
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 2)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1536
	AttackMotion: 960
	DamageMotion: 480
},
{
	Id: 1725
	SpriteName: "R_PORING"
	Name: "Poring"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 3]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Stone: 10000
	}
},
{
	Id: 1726
	SpriteName: "R_LUNATIC"
	Name: "Lunatic"
	Lv: 3
	Hp: 60
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [9, 3]
	Def: 0
	Mdef: 20
	Stats: {
		Str: 1
		Agi: 3
		Vit: 3
		Int: 10
		Dex: 8
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 1456
	AttackMotion: 456
	DamageMotion: 336
},
{
	Id: 1727
	SpriteName: "R_SAVAGE_BABE"
	Name: "Savage Babe"
	Lv: 7
	Hp: 182
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [20, 5]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 7
		Vit: 14
		Int: 5
		Dex: 12
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 1624
	AttackMotion: 624
	DamageMotion: 576
},
{
	Id: 1728
	SpriteName: "R_DESERT_WOLF_B"
	Name: "Desert Wolf Baby"
	JName: "Baby Desert Wolf"
	Lv: 14
	Hp: 140
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [33, 8]
	Def: 13
	Mdef: 0
	Stats: {
		Str: 10
		Agi: 12
		Vit: 8
		Int: 5
		Dex: 28
		Luk: 7
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 1600
	AttackMotion: 900
	DamageMotion: 240
},
{
	Id: 1729
	SpriteName: "R_BAPHOMET_"
	Name: "Baphomet Jr."
	Lv: 50
	Hp: 8578
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [487, 103]
	Def: 24
	Mdef: 25
	Stats: {
		Str: 1
		Agi: 75
		Vit: 55
		Int: 1
		Dex: 93
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 150
	AttackDelay: 868
	AttackMotion: 480
	DamageMotion: 120
},
{
	Id: 1730
	SpriteName: "R_DEVIRUCHI"
	Name: "Deviruchi"
	Lv: 64
	Hp: 2300
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [210, 73]
	Def: 62
	Mdef: 30
	Stats: {
		Str: 61
		Agi: 17
		Vit: 30
		Int: 35
		Dex: 52
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 150
	AttackDelay: 980
	AttackMotion: 600
	DamageMotion: 384
},
{
	Id: 1731
	SpriteName: "G_DOPPELGANGER"
	Name: "Doppelganger"
	JName: "Outrageous Doppelganger"
	Lv: 77
	Hp: 380000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1803, 1176]
	Def: 246
	Mdef: 86
	Stats: {
		Str: 122
		Agi: 122
		Vit: 105
		Int: 67
		Dex: 203
		Luk: 72
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Angel"
	Element: ("Ele_Ghost", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 190
	AttackDelay: 480
	AttackMotion: 480
	DamageMotion: 288
	Drops: {
		Warrior_Symbol: 10000
	}
},
{
	Id: 1732
	SpriteName: "G_TREASURE_BOX"
	Name: "Treasure Chest"
	JName: "New Year Treasure Chest"
	Lv: 98
	Hp: 500
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		3rd_Floor_Pass: 1000
	}
},
// Kiel Dungeon (10.4)
{
	Id: 1733
	SpriteName: "KIEL"
	Name: "Kiel"
	Lv: 90
	Hp: 523500
	Sp: 1
	Exp: 36134
	JExp: 21065
	AttackRange: 3
	Attack: [2220, 1629]
	Def: 45
	Mdef: 32
	Stats: {
		Str: 100
		Agi: 112
		Vit: 76
		Int: 89
		Dex: 187
		Luk: 102
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 140
	AttackDelay: 1152
	AttackMotion: 576
	DamageMotion: 432
	Drops: {
	}
},
{
	Id: 1734
	SpriteName: "KIEL_"
	Name: "Kiel D-01"
	Lv: 125
	Hp: 2502000
	Sp: 1
	Exp: 2340000
	JExp: 1440000
	AttackRange: 3
	Attack: [4112, 3580]
	Def: 314
	Mdef: 232
	Stats: {
		Str: 166
		Agi: 187
		Vit: 155
		Int: 141
		Dex: 279
		Luk: 180
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 130
	AttackDelay: 1152
	AttackMotion: 576
	DamageMotion: 432
	DamageTakenRate: 10
	MvpExp: 900000
	MvpDrops: {
		Old_Violet_Box: 5500
		Old_Blue_Box: 5000
		Old_Card_Album: 2000
	}
	Drops: {
		Pocket_Watch: 3000
		Old_Violet_Box: 3000
		Morriganes_Pendant: 1000
		Glittering_Clothes: 1000
		Survival_Rod_: 500
		Counter_Dagger: 500
		Morriganes_Belt: 1000
		Kiel_Card: 1
	}
},
{
	Id: 1735
	SpriteName: "ALICEL"
	Name: "Alicel"
	Lv: 115
	Hp: 18000
	Sp: 1
	Exp: 3334
	JExp: 1961
	AttackRange: 2
	Attack: [952, 398]
	Def: 109
	Mdef: 30
	Stats: {
		Str: 121
		Agi: 53
		Vit: 59
		Int: 63
		Dex: 102
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1080
	AttackMotion: 480
	DamageMotion: 504
	Drops: {
		Burnt_Parts: 2000
		Sturdy_Iron_Piece: 3000
		Rotha_Shield: 5
		Smoke_Powder: 200
		Drill_Katar: 5
		Elunium: 10
		Valis_Manteau: 20
		Alicel_Card: 1
	}
},
{
	Id: 1736
	SpriteName: "ALIOT"
	Name: "Aliot"
	Lv: 112
	Hp: 15669
	Sp: 1
	Exp: 3182
	JExp: 1918
	AttackRange: 2
	Attack: [1051, 89]
	Def: 106
	Mdef: 15
	Stats: {
		Str: 111
		Agi: 56
		Vit: 55
		Int: 42
		Dex: 107
		Luk: 75
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1296
	AttackMotion: 432
	DamageMotion: 360
	Drops: {
		Burnt_Parts: 2000
		Sturdy_Iron_Piece: 3000
		Falcon_Robe: 10
		Smoke_Powder: 200
		Claw_: 10
		Elunium: 10
		Curved_Sword: 15
		Aliot_Card: 1
	}
},
{
	Id: 1737
	SpriteName: "ALIZA"
	Name: "Aliza"
	Lv: 112
	Hp: 14450
	Sp: 1
	Exp: 2448
	JExp: 1836
	AttackRange: 1
	Attack: [840, 397]
	Def: 98
	Mdef: 5
	Stats: {
		Str: 115
		Agi: 50
		Vit: 51
		Int: 62
		Dex: 88
		Luk: 54
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 220
	AttackDelay: 1440
	AttackMotion: 576
	DamageMotion: 600
	Drops: {
		Brigan: 4000
		Morpheuss_Shawl: 10
		Rosary_: 10
		Alices_Apron: 5
		Imperial_Cooking_Kits: 50
		Sway_Apron: 1
		Orleans_Server: 5
		Aliza_Card: 1
	}
},
{
	Id: 1738
	SpriteName: "CONSTANT"
	Name: "Constant"
	Lv: 108
	Hp: 12050
	Sp: 0
	Exp: 3006
	JExp: 1879
	AttackRange: 1
	Attack: [858, 144]
	Def: 92
	Mdef: 82
	Stats: {
		Str: 126
		Agi: 98
		Vit: 62
		Int: 57
		Dex: 109
		Luk: 34
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 720
	AttackMotion: 360
	DamageMotion: 360
	Drops: {
		Burnt_Parts: 100
		Sturdy_Iron_Piece: 1500
		Tube: 10
		Steel: 10
		Elunium_Stone: 10
	}
},
{
	Id: 1739
	SpriteName: "G_ALICEL"
	Name: "Alicel"
	Lv: 115
	Hp: 18000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [952, 398]
	Def: 109
	Mdef: 30
	Stats: {
		Str: 121
		Agi: 53
		Vit: 59
		Int: 63
		Dex: 102
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1080
	AttackMotion: 480
	DamageMotion: 504
	Drops: {
		Sturdy_Iron_Piece: 500
	}
},
{
	Id: 1740
	SpriteName: "G_ALIOT"
	Name: "Aliot"
	Lv: 112
	Hp: 15669
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1051, 89]
	Def: 106
	Mdef: 15
	Stats: {
		Str: 111
		Agi: 56
		Vit: 55
		Int: 42
		Dex: 107
		Luk: 75
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1296
	AttackMotion: 432
	DamageMotion: 360
	Drops: {
		Sturdy_Iron_Piece: 500
	}
},
{
	Id: 1741
	SpriteName: "G_COOKIE_XMAS"
	Name: "Christmas Cookie"
	Lv: 37
	Hp: 733
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [70, 35]
	Def: 48
	Mdef: 36
	Stats: {
		Str: 21
		Agi: 16
		Vit: 30
		Int: 20
		Dex: 25
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_DemiHuman"
	Element: ("Ele_Holy", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 1248
	AttackMotion: 1248
	DamageMotion: 240
	Drops: {
		Undelivered_Gift: 10000
	}
},
{
	Id: 1742
	SpriteName: "G_CARAT"
	Name: "Carat"
	Lv: 103
	Hp: 9222
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [777, 76]
	Def: 111
	Mdef: 67
	Stats: {
		Str: 102
		Agi: 64
		Vit: 60
		Int: 40
		Dex: 80
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1078
	AttackMotion: 768
	DamageMotion: 384
},
{
	Id: 1743
	SpriteName: "G_MYSTCASE"
	Name: "Myst Case"
	Lv: 39
	Hp: 879
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [68, 21]
	Def: 50
	Mdef: 11
	Stats: {
		Str: 26
		Agi: 19
		Vit: 40
		Int: 35
		Dex: 31
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 1248
	AttackMotion: 1248
	DamageMotion: 432
	Drops: {
		Undelivered_Gift: 10000
	}
},
{
	Id: 1744
	SpriteName: "G_WILD_ROSE"
	Name: "Wild Rose"
	Lv: 70
	Hp: 2682
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [147, 45]
	Def: 75
	Mdef: 15
	Stats: {
		Str: 44
		Agi: 87
		Vit: 31
		Int: 35
		Dex: 69
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 964
	AttackMotion: 864
	DamageMotion: 288
},
{
	Id: 1745
	SpriteName: "G_CONSTANT"
	Name: "Constant"
	Lv: 108
	Hp: 2000
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [728, 144]
	Def: 92
	Mdef: 82
	Stats: {
		Str: 126
		Agi: 98
		Vit: 62
		Int: 57
		Dex: 109
		Luk: 34
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		ChangeTargetChase: true
	}
	MoveSpeed: 110
	AttackDelay: 720
	AttackMotion: 360
	DamageMotion: 360
	Drops: {
		Sturdy_Iron_Piece: 500
	}
},
{
	Id: 1746
	SpriteName: "G_ALIZA"
	Name: "Aliza"
	Lv: 112
	Hp: 14450
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [840, 397]
	Def: 98
	Mdef: 5
	Stats: {
		Str: 115
		Agi: 50
		Vit: 51
		Int: 62
		Dex: 88
		Luk: 54
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 220
	AttackDelay: 1440
	AttackMotion: 576
	DamageMotion: 600
	Drops: {
		Sturdy_Iron_Piece: 500
	}
},
{
	Id: 1747
	SpriteName: "G_SNAKE"
	Name: "Snake"
	JName: "Boa"
	Lv: 18
	Hp: 217
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [29, 5]
	Def: 9
	Mdef: 8
	Stats: {
		Str: 10
		Agi: 8
		Vit: 18
		Int: 10
		Dex: 14
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 576
},
{
	Id: 1748
	SpriteName: "G_ANACONDAQ"
	Name: "Anacondaq"
	Lv: 100
	Hp: 8510
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [504, 55]
	Def: 92
	Mdef: 0
	Stats: {
		Str: 79
		Agi: 46
		Vit: 28
		Int: 43
		Dex: 67
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 576
},
{
	Id: 1749
	SpriteName: "G_MEDUSA"
	Name: "Medusa"
	Lv: 102
	Hp: 10045
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [620, 113]
	Def: 87
	Mdef: 66
	Stats: {
		Str: 99
		Agi: 68
		Vit: 65
		Int: 79
		Dex: 83
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 1720
	AttackMotion: 1320
	DamageMotion: 360
},
{
	Id: 1750
	SpriteName: "G_RED_PLANT"
	Name: "Red Plant"
	Lv: 1
	Hp: 100
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [100, 100]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 100
	}
	ViewRange: 7
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		Plant: true
	}
	MoveSpeed: 2000
	AttackDelay: 1
	AttackMotion: 1
	DamageMotion: 1
},
// Odin's Temple
{
	Id: 1751
	SpriteName: "RANDGRIS"
	Name: "Valkyrie Randgris"
	Lv: 141
	Hp: 3205000
	Sp: 1
	Exp: 2600000
	JExp: 2200000
	AttackRange: 3
	Attack: [7343, 4412]
	Def: 588
	Mdef: 506
	Stats: {
		Str: 196
		Agi: 131
		Vit: 125
		Int: 276
		Dex: 401
		Luk: 156
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 576
	AttackMotion: 576
	DamageMotion: 480
	DamageTakenRate: 10
	MvpExp: 1000000
	MvpDrops: {
		Old_Violet_Box: 5500
		Old_Blue_Box: 5000
		Old_Card_Album: 2000
	}
	Drops: {
		Valhalla_Flower: 6000
		Valkyrie_Armor: 600
		Valkyrie_Manteau: 2000
		Valkyrie_Shoes: 2000
		Helm_: 6000
		Bloody_Edge: 3000
		Randgris_Card: 1
	}
},
{
	Id: 1752
	SpriteName: "SKOGUL"
	Name: "Skogul"
	Lv: 126
	Hp: 34240
	Sp: 1
	Exp: 5904
	JExp: 5210
	AttackRange: 2
	Attack: [1007, 456]
	Def: 72
	Mdef: 15
	Stats: {
		Str: 100
		Agi: 71
		Vit: 63
		Int: 85
		Dex: 115
		Luk: 37
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 190
	AttackDelay: 720
	AttackMotion: 384
	DamageMotion: 480
	Drops: {
		Rune_Of_Darkness: 3500
		Peuz_Seal: 10
		Red_Gemstone: 1000
		Rouge: 500
		Skul_Ring: 100
		Elunium_Stone: 500
		Blood_Tears: 5
		Skogul_Card: 1
	}
},
{
	Id: 1753
	SpriteName: "FRUS"
	Name: "Frus"
	Lv: 128
	Hp: 39520
	Sp: 1
	Exp: 5930
	JExp: 5420
	AttackRange: 2
	Attack: [1494, 169]
	Def: 65
	Mdef: 35
	Stats: {
		Str: 114
		Agi: 77
		Vit: 66
		Int: 51
		Dex: 111
		Luk: 27
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 480
	AttackMotion: 576
	DamageMotion: 432
	Drops: {
		Rune_Of_Darkness: 3500
		Peuz_Seal: 10
		Red_Gemstone: 1000
		Earring_: 3
		Mantle_: 10
		Elunium_Stone: 500
		Frus_Card: 1
	}
},
{
	Id: 1754
	SpriteName: "SKEGGIOLD"
	Name: "Skeggiold"
	Lv: 131
	Hp: 53290
	Sp: 1
	Exp: 7218
	JExp: 4419
	AttackRange: 1
	Attack: [1100, 325]
	Def: 85
	Mdef: 92
	Stats: {
		Str: 91
		Agi: 89
		Vit: 65
		Int: 118
		Dex: 147
		Luk: 75
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 672
	AttackMotion: 780
	DamageMotion: 480
	Drops: {
		Rune_Of_Darkness: 6000
		Angelic_Chain: 1
		Soft_Feather: 1000
		Divine_Cross: 25
		Rune_Of_Darkness: 1000
		Silk_Robe_: 100
		Odins_Blessing: 100
		Skeggiold_Card: 1
	}
},
{
	Id: 1755
	SpriteName: "SKEGGIOLD_"
	Name: "Skeggiold"
	Lv: 131
	Hp: 52280
	Sp: 1
	Exp: 7214
	JExp: 4411
	AttackRange: 1
	Attack: [1151, 218]
	Def: 80
	Mdef: 86
	Stats: {
		Str: 91
		Agi: 86
		Vit: 67
		Int: 116
		Dex: 153
		Luk: 71
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 672
	AttackMotion: 780
	DamageMotion: 480
	Drops: {
		Rune_Of_Darkness: 6000
		Angelic_Chain: 1
		Soft_Feather: 1000
		Divine_Cross: 25
		Rune_Of_Darkness: 1000
		Silk_Robe_: 100
		Odins_Blessing: 100
		Skeggiold_Card: 1
	}
},
{
	Id: 1756
	SpriteName: "G_HYDRO"
	Name: "Hydro"
	JName: "Hydrolancer"
	Lv: 121
	Hp: 41500
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [1064, 150]
	Def: 92
	Mdef: 95
	Stats: {
		Str: 120
		Agi: 72
		Vit: 67
		Int: 66
		Dex: 123
		Luk: 58
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 160
	AttackDelay: 140
	AttackMotion: 672
	DamageMotion: 432
},
{
	Id: 1757
	SpriteName: "G_ACIDUS"
	Name: "Acidus"
	Lv: 130
	Hp: 48430
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [871, 695]
	Def: 101
	Mdef: 47
	Stats: {
		Str: 109
		Agi: 78
		Vit: 50
		Int: 55
		Dex: 108
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Holy", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 168
	AttackMotion: 1008
	DamageMotion: 300
},
{
	Id: 1758
	SpriteName: "G_FERUS"
	Name: "Ferus"
	Lv: 126
	Hp: 25668
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [969, 115]
	Def: 96
	Mdef: 45
	Stats: {
		Str: 94
		Agi: 80
		Vit: 55
		Int: 60
		Dex: 109
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 108
	AttackMotion: 576
	DamageMotion: 432
},
{
	Id: 1759
	SpriteName: "G_ACIDUS_"
	Name: "Acidus"
	Lv: 130
	Hp: 40718
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1484, 158]
	Def: 98
	Mdef: 90
	Stats: {
		Str: 106
		Agi: 110
		Vit: 61
		Int: 53
		Dex: 133
		Luk: 53
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 168
	AttackMotion: 768
	DamageMotion: 360
},
{
	Id: 1760
	SpriteName: "G_FERUS_"
	Name: "Ferus"
	Lv: 126
	Hp: 39054
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [906, 122]
	Def: 111
	Mdef: 33
	Stats: {
		Str: 91
		Agi: 57
		Vit: 57
		Int: 61
		Dex: 87
		Luk: 51
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 108
	AttackMotion: 576
	DamageMotion: 432
},
{
	Id: 1761
	SpriteName: "G_SKOGUL"
	Name: "Skogul"
	Lv: 126
	Hp: 34240
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1007, 456]
	Def: 72
	Mdef: 15
	Stats: {
		Str: 100
		Agi: 71
		Vit: 63
		Int: 85
		Dex: 115
		Luk: 37
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 720
	AttackMotion: 384
	DamageMotion: 480
	Drops: {
		Rune_Of_Darkness: 500
	}
},
{
	Id: 1762
	SpriteName: "G_FRUS"
	Name: "Frus"
	Lv: 128
	Hp: 39520
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1494, 169]
	Def: 65
	Mdef: 35
	Stats: {
		Str: 114
		Agi: 77
		Vit: 66
		Int: 51
		Dex: 111
		Luk: 27
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 130
	AttackDelay: 480
	AttackMotion: 576
	DamageMotion: 432
	Drops: {
		Rune_Of_Darkness: 500
	}
},
{
	Id: 1763
	SpriteName: "G_SKEGGIOLD"
	Name: "Skeggiold"
	Lv: 131
	Hp: 53290
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1100, 325]
	Def: 85
	Mdef: 92
	Stats: {
		Str: 91
		Agi: 89
		Vit: 65
		Int: 118
		Dex: 147
		Luk: 75
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 672
	AttackMotion: 780
	DamageMotion: 480
	Drops: {
		Rune_Of_Darkness: 500
	}
},
{
	Id: 1764
	SpriteName: "G_SKEGGIOLD_"
	Name: "Skeggiold"
	Lv: 131
	Hp: 52280
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1151, 218]
	Def: 80
	Mdef: 86
	Stats: {
		Str: 91
		Agi: 86
		Vit: 67
		Int: 116
		Dex: 153
		Luk: 71
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 672
	AttackMotion: 780
	DamageMotion: 480
	Drops: {
		Rune_Of_Darkness: 500
	}
},
{
	Id: 1765
	SpriteName: "G_RANDGRIS"
	Name: "Valkyrie"
	Lv: 141
	Hp: 1005000
	Sp: 1
	Exp: 13000
	JExp: 10000
	AttackRange: 3
	Attack: [6343, 3206]
	Def: 588
	Mdef: 506
	Stats: {
		Str: 196
		Agi: 131
		Vit: 125
		Int: 276
		Dex: 401
		Luk: 156
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 576
	AttackMotion: 576
	DamageMotion: 480
	Drops: {
		Valhalla_Flower: 160
		Old_Violet_Box: 40
		Valkyrjas_Shield: 100
	}
},
{
	Id: 1766
	SpriteName: "EM_ANGELING"
	Name: "Angeling"
	Lv: 99
	Hp: 128430
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [78, 11]
	Def: 64
	Mdef: 50
	Stats: {
		Str: 1
		Agi: 17
		Vit: 80
		Int: 80
		Dex: 151
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		ChangeChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 384
	MvpDrops: {
		Jellopy: 5000
		Jellopy: 5000
		Poring_Doll: 5000
	}
},
{
	Id: 1767
	SpriteName: "EM_DEVILING"
	Name: "Deviling"
	Lv: 99
	Hp: 128430
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [78, 11]
	Def: 64
	Mdef: 50
	Stats: {
		Str: 1
		Agi: 17
		Vit: 80
		Int: 80
		Dex: 151
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		ChangeChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 384
	MvpDrops: {
		Jellopy: 5000
		Jellopy: 5000
		Poring_Doll: 5000
	}
},
// Rachel / Ice Dungeon (11.1)
{
	Id: 1768
	SpriteName: "GLOOMUNDERNIGHT"
	Name: "Gloom Under Night"
	Lv: 139
	Hp: 3005000
	Sp: 1
	Exp: 2808000
	JExp: 1800000
	AttackRange: 3
	Attack: [6592, 2785]
	Def: 479
	Mdef: 262
	Stats: {
		Str: 191
		Agi: 223
		Vit: 187
		Int: 155
		Dex: 362
		Luk: 163
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1344
	AttackMotion: 2880
	DamageMotion: 576
	DamageTakenRate: 10
	MvpExp: 1080000
	MvpDrops: {
		Yggdrasilberry: 5500
		Old_Violet_Box: 5000
		Old_Violet_Box: 5000
	}
	Drops: {
		Will_Of_Darkness_: 7000
		Blade_Lost_In_Darkness: 4000
		Old_Hilt: 2000
		Old_Card_Album: 5000
		Celestial_Robe: 1000
		Hurricane_Fury: 100
		Gloom_Under_Night_Card: 1
	}
},
{
	Id: 1769
	SpriteName: "AGAV"
	Name: "Agav"
	Lv: 128
	Hp: 40000
	Sp: 1
	Exp: 5112
	JExp: 2949
	AttackRange: 1
	Attack: [892, 181]
	Def: 77
	Mdef: 82
	Stats: {
		Str: 85
		Agi: 66
		Vit: 55
		Int: 113
		Dex: 120
		Luk: 61
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 768
	AttackMotion: 360
	DamageMotion: 360
	Drops: {
		Suspicious_Hat: 2500
		High_Fashion_Sandals: 2
		Bloody_Rune: 4000
		Memorize_Book: 1
		Holy_Arrow_Quiver: 50
		Bloody_Rune: 100
		Starsand_Of_Witch: 2500
		Agav_Card: 1
	}
},
{
	Id: 1770
	SpriteName: "ECHIO"
	Name: "Echio"
	Lv: 126
	Hp: 31620
	Sp: 1
	Exp: 4796
	JExp: 2768
	AttackRange: 1
	Attack: [848, 159]
	Def: 66
	Mdef: 11
	Stats: {
		Str: 111
		Agi: 63
		Vit: 51
		Int: 37
		Dex: 132
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 768
	AttackMotion: 360
	DamageMotion: 360
	Drops: {
		Suspicious_Hat: 2500
		Seed_Of_Yggdrasil: 10
		Bloody_Rune: 4000
		Beret: 25
		Holy_Arrow_Quiver: 20
		Bloody_Rune: 100
		Divine_Cloth: 20
		Echio_Card: 1
	}
},
{
	Id: 1771
	SpriteName: "VANBERK"
	Name: "Vanberk"
	Lv: 123
	Hp: 24605
	Sp: 1
	Exp: 4212
	JExp: 2430
	AttackRange: 1
	Attack: [918, 141]
	Def: 100
	Mdef: 6
	Stats: {
		Str: 109
		Agi: 70
		Vit: 55
		Int: 60
		Dex: 122
		Luk: 54
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 768
	AttackMotion: 360
	DamageMotion: 360
	Drops: {
		White_Mask: 2500
		Royal_Jelly: 10
		Bloody_Rune: 1000
		Beret: 25
		Scalpel: 5
		Bloody_Rune: 100
		Ur_Seal: 10
		Vanberk_Card: 1
	}
},
{
	Id: 1772
	SpriteName: "ISILLA"
	Name: "Isilla"
	Lv: 124
	Hp: 26324
	Sp: 1
	Exp: 4492
	JExp: 2592
	AttackRange: 1
	Attack: [848, 168]
	Def: 69
	Mdef: 19
	Stats: {
		Str: 90
		Agi: 65
		Vit: 43
		Int: 82
		Dex: 127
		Luk: 75
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 768
	AttackMotion: 360
	DamageMotion: 432
	Drops: {
		White_Mask: 2500
		High_Fashion_Sandals: 1
		Bloody_Rune: 1000
		Gold_Ring: 10
		Ring: 1
		Bloody_Rune: 100
		Ur_Seal: 10
		Isilla_Card: 1
	}
},
{
	Id: 1773
	SpriteName: "HODREMLIN"
	Name: "Hodremlin"
	Lv: 122
	Hp: 23182
	Sp: 1
	Exp: 4884
	JExp: 2819
	AttackRange: 1
	Attack: [955, 154]
	Def: 75
	Mdef: 25
	Stats: {
		Str: 106
		Agi: 70
		Vit: 77
		Int: 60
		Dex: 83
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 140
	AttackDelay: 960
	AttackMotion: 528
	DamageMotion: 432
	Drops: {
		Prickly_Fruit_: 1000
		Will_Of_Darkness: 1000
		Boots_: 2
		Sticky_Mucus: 1000
		Bloody_Rune: 1000
		Starsand_Of_Witch: 2000
		Shadow_Walk: 10
		Hodremlin_Card: 1
	}
},
{
	Id: 1774
	SpriteName: "SEEKER"
	Name: "Seeker"
	Lv: 124
	Hp: 24500
	Sp: 1
	Exp: 5212
	JExp: 3006
	AttackRange: 6
	Attack: [855, 120]
	Def: 64
	Mdef: 30
	Stats: {
		Str: 91
		Agi: 90
		Vit: 35
		Int: 75
		Dex: 176
		Luk: 31
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 190
	AttackDelay: 576
	AttackMotion: 432
	DamageMotion: 300
	Drops: {
		Prickly_Fruit_: 1000
		Will_Of_Darkness: 1000
		Elunium: 20
		Starsand_Of_Witch: 4000
		Bloody_Rune: 1000
		Berdysz: 20
		Seeker_Card: 1
	}
},
{
	Id: 1775
	SpriteName: "SNOWIER"
	Name: "Snowier"
	Lv: 103
	Hp: 13934
	Sp: 1
	Exp: 2332
	JExp: 1458
	AttackRange: 2
	Attack: [763, 82]
	Def: 121
	Mdef: 47
	Stats: {
		Str: 91
		Agi: 61
		Vit: 67
		Int: 45
		Dex: 83
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 220
	AttackDelay: 936
	AttackMotion: 1020
	DamageMotion: 420
	Drops: {
		Ice_Heart: 3000
		Ice_Piece: 1000
		Elunium_Stone: 100
		Blue_Herb: 50
		White_Herb: 500
		Icicle_Fist: 3
		Crystal_Blue: 100
		Snowier_Card: 1
	}
},
{
	Id: 1776
	SpriteName: "SIROMA"
	Name: "Siroma"
	Lv: 98
	Hp: 11910
	Sp: 1
	Exp: 1827
	JExp: 1369
	AttackRange: 1
	Attack: [506, 100]
	Def: 64
	Mdef: 38
	Stats: {
		Str: 83
		Agi: 43
		Vit: 50
		Int: 70
		Dex: 96
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 180
	AttackDelay: 432
	AttackMotion: 648
	DamageMotion: 240
	Drops: {
		Ice_Heart: 500
		Ice_Piece: 1500
		Blue_Herb: 10
		Crystal_Blue: 20
		Siroma_Card: 1
	}
},
{
	Id: 1777
	SpriteName: "ICE_TITAN"
	Name: "Ice Titan"
	Lv: 110
	Hp: 20820
	Sp: 1
	Exp: 3268
	JExp: 2644
	AttackRange: 1
	Attack: [1088, 98]
	Def: 344
	Mdef: 11
	Stats: {
		Str: 133
		Agi: 54
		Vit: 78
		Int: 33
		Dex: 94
		Luk: 26
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 861
	AttackMotion: 660
	DamageMotion: 144
	Drops: {
		Ice_Heart: 5000
		Ice_Piece: 3000
		Frozen_Rose: 100
		Oridecon: 10
		Elunium: 30
		Cold_Ice: 500
		Mistic_Frozen: 100
		Ice_Titan_Card: 1
	}
},
{
	Id: 1778
	SpriteName: "GAZETI"
	Name: "Gazeti"
	Lv: 106
	Hp: 14000
	Sp: 1
	Exp: 2430
	JExp: 1518
	AttackRange: 10
	Attack: [775, 68]
	Def: 71
	Mdef: 21
	Stats: {
		Str: 105
		Agi: 37
		Vit: 42
		Int: 38
		Dex: 116
		Luk: 38
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 190
	AttackDelay: 576
	AttackMotion: 370
	DamageMotion: 270
	Drops: {
		Ice_Heart: 3000
		Ice_Piece: 3000
		Elunium: 20
		Frozen_Bow: 1
		Cold_Ice: 100
		Ice_Fragment: 500
		Gazeti_Card: 1
	}
},
{
	Id: 1779
	SpriteName: "KTULLANUX"
	Name: "Ktullanux"
	Lv: 98
	Hp: 2626000
	Sp: 1
	Exp: 1242690
	JExp: 949942
	AttackRange: 3
	Attack: [3754, 2680]
	Def: 129
	Mdef: 78
	Stats: {
		Str: 85
		Agi: 126
		Vit: 30
		Int: 125
		Dex: 212
		Luk: 112
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Water", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 432
	AttackMotion: 840
	DamageMotion: 216
	DamageTakenRate: 10
	MvpExp: 517788
	MvpDrops: {
		Yggdrasilberry: 5500
		Old_Violet_Box: 5000
		Old_Violet_Box: 5000
	}
	Drops: {
		Ice_Scale: 9000
		Old_Card_Album: 3000
		Clack_Of_Servival: 3000
		Herald_Of_GOD: 5000
		Old_Violet_Box: 5000
		Yggdrasilberry: 5000
		Ktullanux_Card: 1
	}
},
{
	Id: 1780
	SpriteName: "MUSCIPULAR"
	Name: "Muscipular"
	Lv: 105
	Hp: 12550
	Sp: 1
	Exp: 2332
	JExp: 1458
	AttackRange: 3
	Attack: [521, 76]
	Def: 114
	Mdef: 43
	Stats: {
		Str: 100
		Agi: 60
		Vit: 58
		Int: 37
		Dex: 72
		Luk: 47
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 2000
	AttackDelay: 672
	AttackMotion: 648
	DamageMotion: 360
	Drops: {
		Sticky_Poison: 3000
		Blossom_Of_Maneater: 3000
		Singing_Flower: 2
		Root_Of_Maneater: 2000
		Stem: 1000
		Deadly_Noxious_Herb: 3
		Mandragora_Flowerpot: 400
		Muscipular_Card: 1
	}
},
{
	Id: 1781
	SpriteName: "DROSERA"
	Name: "Drosera"
	Lv: 101
	Hp: 10878
	Sp: 1
	Exp: 1620
	JExp: 1013
	AttackRange: 7
	Attack: [218, 54]
	Def: 86
	Mdef: 52
	Stats: {
		Str: 79
		Agi: 32
		Vit: 64
		Int: 38
		Dex: 94
		Luk: 14
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 2000
	AttackDelay: 864
	AttackMotion: 576
	DamageMotion: 336
	Drops: {
		Sticky_Poison: 3000
		Drocera_Tentacle: 100
		Blossom_Of_Maneater: 2000
		Root_Of_Maneater: 2000
		Bitter_Herb: 3
		Stem: 1000
		Mandragora_Flowerpot: 200
		Drosera_Card: 1
	}
},
{
	Id: 1782
	SpriteName: "ROWEEN"
	Name: "Roween"
	Lv: 95
	Hp: 7385
	Sp: 1
	Exp: 2028
	JExp: 1902
	AttackRange: 1
	Attack: [588, 35]
	Def: 73
	Mdef: 33
	Stats: {
		Str: 70
		Agi: 82
		Vit: 55
		Int: 45
		Dex: 108
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 1500
	AttackMotion: 500
	DamageMotion: 1000
	Drops: {
		Rotten_Meat: 3000
		Animals_Skin: 3000
		Wind_Of_Verdure: 50
		Combo_Battle_Glove: 2
		Roween_Card: 1
	}
},
{
	Id: 1783
	SpriteName: "GALION"
	Name: "Galion"
	Lv: 100
	Hp: 8821
	Sp: 1
	Exp: 2122
	JExp: 1327
	AttackRange: 1
	Attack: [527, 77]
	Def: 100
	Mdef: 62
	Stats: {
		Str: 106
		Agi: 79
		Vit: 62
		Int: 45
		Dex: 108
		Luk: 36
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		Boss: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 150
	AttackDelay: 864
	AttackMotion: 624
	DamageMotion: 360
	Drops: {
		Rotten_Meat: 3000
		Animals_Skin: 3000
		Rough_Wind: 10
		Ulfhedinn: 5
		Galion_Card: 1
	}
},
{
	Id: 1784
	SpriteName: "STAPO"
	Name: "Stapo"
	Lv: 95
	Hp: 8805
	Sp: 1
	Exp: 1888
	JExp: 1772
	AttackRange: 1
	Attack: [573, 51]
	Def: 129
	Mdef: 36
	Stats: {
		Str: 20
		Agi: 46
		Vit: 25
		Int: 35
		Dex: 64
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 936
	AttackMotion: 792
	DamageMotion: 432
	Drops: {
		Jellopy: 1000
		Jubilee: 1000
		Apple: 1000
		Large_Jellopy: 100
		Yellow_Live: 10
		Seismic_Fist: 3
		Stapo_Card: 1
	}
},
{
	Id: 1785
	SpriteName: "ATROCE"
	Name: "Atroce"
	Lv: 113
	Hp: 1502000
	Sp: 1
	Exp: 1404000
	JExp: 855000
	AttackRange: 2
	Attack: [2843, 1503]
	Def: 316
	Mdef: 176
	Stats: {
		Str: 121
		Agi: 165
		Vit: 135
		Int: 99
		Dex: 213
		Luk: 113
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 576
	AttackMotion: 600
	DamageMotion: 240
	DamageTakenRate: 10
	MvpExp: 540000
	MvpDrops: {
		Yggdrasilberry: 5500
		Old_Violet_Box: 5000
		Old_Violet_Box: 5000
	}
	Drops: {
		Bloody_Rune: 7000
		Seed_Of_Yggdrasil: 1000
		Ring_: 1000
		Old_Violet_Box: 5000
		Yggdrasilberry: 5000
		Ulle_Cap: 100
		Altas_Weapon: 100
		Atroce_Card: 1
	}
},
{
	Id: 1786
	SpriteName: "G_AGAV"
	Name: "Agav"
	Lv: 128
	Hp: 40000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [892, 181]
	Def: 77
	Mdef: 82
	Stats: {
		Str: 85
		Agi: 66
		Vit: 55
		Int: 113
		Dex: 92
		Luk: 61
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 768
	AttackMotion: 360
	DamageMotion: 360
	Drops: {
		Suspicious_Hat: 1
	}
},
{
	Id: 1787
	SpriteName: "G_ECHIO"
	Name: "Echio"
	Lv: 126
	Hp: 31620
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [848, 159]
	Def: 66
	Mdef: 11
	Stats: {
		Str: 111
		Agi: 63
		Vit: 51
		Int: 37
		Dex: 132
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 768
	AttackMotion: 360
	DamageMotion: 360
	Drops: {
		Suspicious_Hat: 1
	}
},
{
	Id: 1788
	SpriteName: "G_ICE_TITAN"
	Name: "Ice Titan"
	Lv: 110
	Hp: 20820
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1088, 98]
	Def: 344
	Mdef: 11
	Stats: {
		Str: 133
		Agi: 54
		Vit: 78
		Int: 33
		Dex: 94
		Luk: 26
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 861
	AttackMotion: 660
	DamageMotion: 144
	Drops: {
		Ice_Heart: 1
	}
},
{
	Id: 1789
	SpriteName: "ICEICLE"
	Name: "Iceicle"
	Lv: 100
	Hp: 1012
	Sp: 1
	Exp: 196
	JExp: 122
	AttackRange: 3
	Attack: [553, 1]
	Def: 2
	Mdef: 15
	Stats: {
		Str: 99
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 194
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Water", 2)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 2000
	AttackDelay: 1344
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Ice_Piece: 1000
		Ice_Piece: 1000
		Ice_Crystal: 500
		Ice_Piece: 500
		Ice_Piece: 500
		Ice_Piece: 500
		Ice_Piece: 500
		Ice_Piece: 500
	}
},
{
	Id: 1790
	SpriteName: "G_RAFFLESIA"
	Name: "Rafflesia"
	Lv: 86
	Hp: 5819
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [325, 41]
	Def: 86
	Mdef: 2
	Stats: {
		Str: 47
		Agi: 41
		Vit: 44
		Int: 29
		Dex: 78
		Luk: 31
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 512
	AttackMotion: 528
	DamageMotion: 240
	Drops: {
		Golden_Jewel_: 3000
		Red_Jewel_: 4000
		Blue_Jewel_: 2000
	}
},
{
	Id: 1791
	SpriteName: "G_GALION"
	Name: "Galion"
	Lv: 100
	Hp: 8821
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [527, 77]
	Def: 100
	Mdef: 62
	Stats: {
		Str: 106
		Agi: 79
		Vit: 62
		Int: 45
		Dex: 108
		Luk: 36
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		Boss: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 150
	AttackDelay: 864
	AttackMotion: 624
	DamageMotion: 360
},
{
	Id: 1792
	SpriteName: "SOCCER_BALL"
	Name: "Soccer Ball"
	Lv: 1
	Hp: 10
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 128
	Mdef: 99
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Plant: true
	}
	MoveSpeed: 2000
	AttackDelay: 96
	AttackMotion: 96
	DamageMotion: 96
	Drops: {
		Small_Horn_Of_Devil: 5000
		Small_Horn_Of_Devil: 3000
		J_Firecracker: 3000
		Old_Blue_Box: 1000
		Old_Violet_Box: 1000
	}
},
{
	Id: 1793
	SpriteName: "G_MEGALITH"
	Name: "Megalith"
	Lv: 65
	Hp: 2451
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 9
	Attack: [122, 30]
	Def: 66
	Mdef: 18
	Stats: {
		Str: 57
		Agi: 14
		Vit: 35
		Int: 10
		Dex: 99
		Luk: 3
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1332
	AttackMotion: 1332
	DamageMotion: 672
	Drops: {
	}
},
{
	Id: 1794
	SpriteName: "G_ROWEEN"
	Name: "Roween"
	Lv: 95
	Hp: 7385
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [228, 35]
	Def: 73
	Mdef: 33
	Stats: {
		Str: 70
		Agi: 82
		Vit: 55
		Int: 45
		Dex: 88
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 412
	AttackMotion: 840
	DamageMotion: 300
},
{
	Id: 1795
	SpriteName: "BLOODY_KNIGHT_"
	Name: "Bloody Knight"
	Lv: 116
	Hp: 68500
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [1319, 123]
	Def: 122
	Mdef: 50
	Stats: {
		Str: 132
		Agi: 59
		Vit: 70
		Int: 57
		Dex: 137
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Angel"
	Element: ("Ele_Ghost", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 828
	AttackMotion: 528
	DamageMotion: 192
	Drops: {
		Pole_Axe: 100
		Grave_: 100
		Pauldron: 200
		Full_Plate_Armor_: 300
		Celestial_Robe: 200
		Survival_Rod2_: 200
		Old_Violet_Box: 7000
		Anti_Spell_Bead: 10000
	}
},
// WoE SE Guild Dungeon
{
	Id: 1796
	SpriteName: "AUNOE"
	Name: "Aunoe"
	Lv: 110
	Hp: 13050
	Sp: 0
	Exp: 2322
	JExp: 1454
	AttackRange: 1
	Attack: [840, 81]
	Def: 107
	Mdef: 42
	Stats: {
		Str: 118
		Agi: 63
		Vit: 62
		Int: 77
		Dex: 84
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 768
	AttackMotion: 432
	DamageMotion: 360
	Drops: {
		White_Mask: 2500
		High_Fashion_Sandals: 2
		Bloody_Rune: 4000
		Memorize_Book: 1
		Holy_Arrow_Quiver: 50
		Bloody_Rune: 100
		Musika: 5
		Aunoe_Card: 1
	}
},
{
	Id: 1797
	SpriteName: "FANAT"
	Name: "Fanat"
	Lv: 120
	Hp: 21000
	Sp: 1
	Exp: 3954
	JExp: 2282
	AttackRange: 1
	Attack: [839, 106]
	Def: 81
	Mdef: 64
	Stats: {
		Str: 102
		Agi: 66
		Vit: 70
		Int: 47
		Dex: 111
		Luk: 57
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 768
	AttackMotion: 432
	DamageMotion: 360
	Drops: {
		Kandura: 10
		High_Fashion_Sandals: 2
		Bloody_Rune: 4000
		Memorize_Book: 1
		Holy_Arrow_Quiver: 50
		White_Mask: 2500
		Panat_Card: 1
	}
},
// Additional Event Monsters
{
	Id: 1798
	SpriteName: "TREASURE_BOX_"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Plant: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Gem_Of_Ruin: 10000
	}
},
{
	Id: 1799
	SpriteName: "B_SEYREN_"
	Name: "Lord Knight Seyren"
	Lv: 99
	Hp: 1647590
	Sp: 0
	Exp: 5222448
	JExp: 1412973
	AttackRange: 1
	Attack: [9409, 3802]
	Def: 72
	Mdef: 37
	Stats: {
		Str: 120
		Agi: 110
		Vit: 81
		Int: 65
		Dex: 156
		Luk: 52
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Evil_Mind: 10000
	}
},
{
	Id: 1800
	SpriteName: "B_EREMES_"
	Name: "Assassin Cross Eremes"
	Lv: 99
	Hp: 1411230
	Sp: 0
	Exp: 4410072
	JExp: 1433142
	AttackRange: 1
	Attack: [5446, 4100]
	Def: 37
	Mdef: 39
	Stats: {
		Str: 90
		Agi: 181
		Vit: 62
		Int: 37
		Dex: 146
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Poison", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Evil_Mind: 10000
	}
},
{
	Id: 1801
	SpriteName: "B_HARWORD_"
	Name: "Whitesmith Harword"
	JName: "Master Smith Howard"
	Lv: 99
	Hp: 1460000
	Sp: 0
	Exp: 4322526
	JExp: 1278900
	AttackRange: 1
	Attack: [10169, 429]
	Def: 66
	Mdef: 36
	Stats: {
		Str: 100
		Agi: 73
		Vit: 112
		Int: 35
		Dex: 163
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Evil_Mind: 10000
	}
},
{
	Id: 1802
	SpriteName: "B_MAGALETA_"
	Name: "High Priest Magaleta"
	JName: "High Priest Margaretha"
	Lv: 99
	Hp: 1092910
	Sp: 0
	Exp: 4597560
	JExp: 1186920
	AttackRange: 1
	Attack: [6094, 892]
	Def: 35
	Mdef: 78
	Stats: {
		Str: 1
		Agi: 84
		Vit: 64
		Int: 182
		Dex: 110
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Holy", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 125
	AttackDelay: 1152
	AttackMotion: 384
	DamageMotion: 288
	MvpExp: 9000
	Drops: {
		Evil_Mind: 10000
	}
},
{
	Id: 1803
	SpriteName: "B_SHECIL_"
	Name: "Sniper Shecil"
	JName: "Sniper Cecil"
	Lv: 99
	Hp: 1349000
	Sp: 0
	Exp: 4420440
	JExp: 1373400
	AttackRange: 14
	Attack: [6360, 4221]
	Def: 22
	Mdef: 35
	Stats: {
		Str: 1
		Agi: 180
		Vit: 39
		Int: 67
		Dex: 232
		Luk: 130
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Evil_Mind: 10000
	}
},
{
	Id: 1804
	SpriteName: "B_KATRINN_"
	Name: "High Wizard Katrinn"
	JName: "High Wizard Kathryne"
	Lv: 99
	Hp: 1069920
	Sp: 0
	Exp: 4328856
	JExp: 1473030
	AttackRange: 1
	Attack: [1556, 3197]
	Def: 10
	Mdef: 88
	Stats: {
		Str: 1
		Agi: 89
		Vit: 42
		Int: 223
		Dex: 154
		Luk: 93
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1152
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Evil_Mind: 10000
	}
},
{
	Id: 1805
	SpriteName: "G_SEYREN_"
	Name: "Lord Knight Seyren"
	Lv: 10
	Hp: 10
	Sp: 1
	Exp: 1
	JExp: 1
	AttackRange: 1
	Attack: [1, 1]
	Def: 1
	Mdef: 1
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		3D_Glasses_Box: 5000
	}
},
{
	Id: 1806
	SpriteName: "G_EREMES_"
	Name: "Assassin Cross Eremes"
	Lv: 10
	Hp: 10
	Sp: 1
	Exp: 1
	JExp: 1
	AttackRange: 1
	Attack: [1, 1]
	Def: 1
	Mdef: 1
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Poison", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		3D_Glasses_Box: 5000
	}
},
{
	Id: 1807
	SpriteName: "G_HARWORD_"
	Name: "Whitesmith Harword"
	JName: "MasterSmith Howard"
	Lv: 10
	Hp: 10
	Sp: 1
	Exp: 1
	JExp: 1
	AttackRange: 1
	Attack: [1, 1]
	Def: 1
	Mdef: 1
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Water", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		3D_Glasses_Box: 5000
	}
},
{
	Id: 1808
	SpriteName: "G_MAGALETA_"
	Name: "High Priest Magaleta"
	JName: "High Priest Margaretha"
	Lv: 10
	Hp: 10
	Sp: 1
	Exp: 1
	JExp: 1
	AttackRange: 1
	Attack: [1, 1]
	Def: 1
	Mdef: 1
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Holy", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 125
	AttackDelay: 1152
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		3D_Glasses_Box: 5000
	}
},
{
	Id: 1809
	SpriteName: "G_SHECIL_"
	Name: "Sniper Shecil"
	JName: "Sniper Cecil"
	Lv: 10
	Hp: 10
	Sp: 1
	Exp: 1
	JExp: 1
	AttackRange: 14
	Attack: [1, 1]
	Def: 1
	Mdef: 1
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		3D_Glasses_Box: 5000
	}
},
{
	Id: 1810
	SpriteName: "G_KATRINN_"
	Name: "High Wizard Katrinn"
	JName: "High Wizard Kathryne"
	Lv: 10
	Hp: 10
	Sp: 1
	Exp: 1
	JExp: 1
	AttackRange: 1
	Attack: [1, 1]
	Def: 1
	Mdef: 1
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1152
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		3D_Glasses_Box: 5000
	}
},
{
	Id: 1811
	SpriteName: "G_SMOKIE_"
	Name: "Smokie"
	JName: "Bandit"
	Lv: 18
	Hp: 641
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [61, 11]
	Def: 0
	Mdef: 10
	Stats: {
		Str: 1
		Agi: 18
		Vit: 36
		Int: 25
		Dex: 26
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 420
	Drops: {
		Sunglasses: 100
		Tiger_Skin_Panties: 500
		Aloebera: 1000
		Ice_Cream: 2000
		Bamboo_Basket: 500
	}
},
{
	Id: 1812
	SpriteName: "EVENT_LUDE"
	Name: "Lude"
	JName: "Delightful Lude"
	Lv: 10
	Hp: 20
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [13, 8]
	Def: 1
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 50
		Dex: 100
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		Plant: true
	}
	MoveSpeed: 150
	AttackDelay: 890
	AttackMotion: 960
	DamageMotion: 480
	Drops: {
		Chocolate: 10000
		White_Chocolate: 6000
		Candy: 16000
		Candy_Striper: 16000
	}
},
{
	Id: 1813
	SpriteName: "EVENT_HYDRO"
	Name: "Hydro"
	JName: "Hydrolancer"
	Lv: 99
	Hp: 1880000
	Sp: 0
	Exp: 4320000
	JExp: 1800000
	AttackRange: 3
	Attack: [19500, 32767]
	Def: 96
	Mdef: 55
	Stats: {
		Str: 1
		Agi: 142
		Vit: 200
		Int: 250
		Dex: 227
		Luk: 32
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Angel"
	Element: ("Ele_Ghost", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 972
	AttackMotion: 672
	DamageMotion: 432
	MvpDrops: {
		Old_Violet_Box: 5500
		Old_Blue_Box: 5000
		Old_Violet_Box: 5500
	}
	Drops: {
		Evil_Dragon_Head: 10000
		Dragon_Killer: 500
		Gemmed_Crown: 500
		Pole_Axe: 500
		Int_Dish10: 1500
		Treasure_Box: 5500
	}
},
{
	Id: 1814
	SpriteName: "EVENT_MOON"
	Name: "Moonlight Flower"
	JName: "Fox Queen"
	Lv: 80
	Hp: 30000
	Sp: 0
	Exp: 29700
	JExp: 27000
	AttackRange: 1
	Attack: [550, 300]
	Def: 80
	Mdef: 50
	Stats: {
		Str: 1
		Agi: 35
		Vit: 45
		Int: 112
		Dex: 83
		Luk: 93
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1276
	AttackMotion: 576
	DamageMotion: 288
},
{
	Id: 1815
	SpriteName: "EVENT_RICECAKE"
	Name: "Rice Cake"
	JName: "Hot Ricecake"
	Lv: 12
	Hp: 777
	Sp: 1
	Exp: 7
	JExp: 7
	AttackRange: 1
	Attack: [7, 7]
	Def: 0
	Mdef: 99
	Stats: {
		Str: 7
		Agi: 7
		Vit: 7
		Int: 17
		Dex: 17
		Luk: 7
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Plant: true
	}
	MoveSpeed: 250
	AttackDelay: 1320
	AttackMotion: 0
	DamageMotion: 300
},
{
	Id: 1816
	SpriteName: "EVENT_GOURD"
	Name: "Gourd"
	Lv: 12
	Hp: 1000
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Plant: true
	}
	MoveSpeed: 2000
	AttackDelay: 96
	AttackMotion: 96
	DamageMotion: 96
	MvpDrops: {
		Fatty_Chubby_Earthworm: 5000
		Fatty_Chubby_Earthworm: 5000
		Fatty_Chubby_Earthworm: 5000
	}
	Drops: {
		Apple: 10000
	}
},
{
	Id: 1817
	SpriteName: "EVENT_DETALE"
	Name: "Detale"
	JName: "Detardeurus"
	Lv: 99
	Hp: 8880000
	Sp: 0
	Exp: 4860000
	JExp: 2250000
	AttackRange: 3
	Attack: [42597, 32767]
	Def: 104
	Mdef: 65
	Stats: {
		Str: 1
		Agi: 142
		Vit: 200
		Int: 250
		Dex: 227
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Angel"
	Element: ("Ele_Ghost", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 972
	AttackMotion: 936
	DamageMotion: 360
	MvpDrops: {
		Bloody_Dead_Branch: 5500
		Old_Violet_Box: 5000
		Old_Violet_Box: 5500
	}
	Drops: {
		Dragon_Spirit: 10000
		Dragon_Wing: 500
		Wizardy_Staff: 500
		Bloody_Roar: 500
		Int_Dish10: 1500
		Luk_Dish10: 1500
	}
},
{
	Id: 1818
	SpriteName: "EVENT_ALARM"
	Name: "Alarm"
	JName: "Imperfect Alarm"
	Lv: 58
	Hp: 10647
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [1, 1]
	Def: 24
	Mdef: 15
	Stats: {
		Str: 1
		Agi: 62
		Vit: 72
		Int: 10
		Dex: 85
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 1000
	AttackDelay: 1020
	AttackMotion: 500
	DamageMotion: 768
	Drops: {
		Piece_Of_Cogwheel: 7000
	}
},
{
	Id: 1819
	SpriteName: "EVENT_BATHORY"
	Name: "Bathory"
	Lv: 86
	Hp: 5242
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [252, 96]
	Def: 61
	Mdef: 41
	Stats: {
		Str: 66
		Agi: 38
		Vit: 40
		Int: 55
		Dex: 67
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1504
	AttackMotion: 840
	DamageMotion: 900
	Drops: {
		Wooden_Block_: 2000
	}
},
{
	Id: 1820
	SpriteName: "EVENT_BIGFOOT"
	Name: "Bigfoot"
	Lv: 29
	Hp: 587
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [50, 12]
	Def: 55
	Mdef: 7
	Stats: {
		Str: 18
		Agi: 4
		Vit: 7
		Int: 0
		Dex: 12
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1260
	AttackMotion: 192
	DamageMotion: 192
	Drops: {
		Wooden_Block_: 2000
	}
},
{
	Id: 1821
	SpriteName: "EVENT_DESERT_WOLF"
	Name: "Desert Wolf"
	Lv: 103
	Hp: 9447
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [676, 59]
	Def: 114
	Mdef: 47
	Stats: {
		Str: 93
		Agi: 69
		Vit: 63
		Int: 61
		Dex: 98
		Luk: 42
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1120
	AttackMotion: 420
	DamageMotion: 288
	Drops: {
		Wooden_Block_: 2000
	}
},
{
	Id: 1822
	SpriteName: "EVENT_DEVIRUCHI"
	Name: "Deviruchi"
	Lv: 64
	Hp: 2300
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [210, 73]
	Def: 62
	Mdef: 30
	Stats: {
		Str: 61
		Agi: 17
		Vit: 30
		Int: 35
		Dex: 52
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 980
	AttackMotion: 600
	DamageMotion: 384
	Drops: {
		Wooden_Block_: 3000
	}
},
{
	Id: 1823
	SpriteName: "EVENT_FREEZER"
	Name: "Freezer"
	Lv: 94
	Hp: 9990
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [244, 50]
	Def: 68
	Mdef: 38
	Stats: {
		Str: 68
		Agi: 47
		Vit: 50
		Int: 45
		Dex: 59
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1452
	AttackMotion: 483
	DamageMotion: 528
	Drops: {
		Wooden_Block_: 3000
	}
},
{
	Id: 1824
	SpriteName: "EVENT_GARM_BABY"
	Name: "Garm Baby"
	JName: "Baby Hatii"
	Lv: 94
	Hp: 10016
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [238, 61]
	Def: 62
	Mdef: 43
	Stats: {
		Str: 69
		Agi: 61
		Vit: 55
		Int: 61
		Dex: 64
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 450
	AttackDelay: 879
	AttackMotion: 672
	DamageMotion: 576
	Drops: {
		Wooden_Block_: 5000
	}
},
{
	Id: 1825
	SpriteName: "EVENT_GOBLINE_XMAS"
	Name: "Christmas Goblin"
	JName: "Santa Goblin"
	Lv: 25
	Hp: 1176
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [118, 22]
	Def: 16
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 53
		Vit: 25
		Int: 20
		Dex: 38
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1120
	AttackMotion: 620
	DamageMotion: 240
	Drops: {
		Wooden_Block_: 5000
	}
},
{
	Id: 1826
	SpriteName: "EVENT_MYST"
	Name: "Myst"
	Lv: 39
	Hp: 879
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [68, 21]
	Def: 50
	Mdef: 11
	Stats: {
		Str: 26
		Agi: 19
		Vit: 40
		Int: 35
		Dex: 31
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 384
	Drops: {
		Wooden_Block_: 3000
	}
},
{
	Id: 1827
	SpriteName: "EVENT_SASQUATCH"
	Name: "Sasquatch"
	Lv: 30
	Hp: 3163
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [250, 30]
	Def: 8
	Mdef: 0
	Stats: {
		Str: 75
		Agi: 25
		Vit: 60
		Int: 10
		Dex: 34
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1260
	AttackMotion: 192
	DamageMotion: 192
	Drops: {
		Wooden_Block_: 3000
	}
},
{
	Id: 1828
	SpriteName: "EVENT_GULLINBURSTI"
	Name: "Gullinbrusti"
	JName: "Gullinbursti"
	Lv: 20
	Hp: 20
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [59, 13]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 14
		Vit: 14
		Int: 0
		Dex: 19
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1960
	AttackMotion: 960
	DamageMotion: 384
	Drops: {
		Bag_Of_Rice: 6000
		Lucky_Candy: 9000
		Lucky_Candy_Cane: 8000
	}
},
// Thor Volcano (11.2)
{
	Id: 1829
	SpriteName: "SWORD_GUARDIAN"
	Name: "Sword Guardian"
	JName: "Sword Master"
	Lv: 133
	Hp: 70000
	Sp: 0
	Exp: 5850
	JExp: 3375
	AttackRange: 2
	Attack: [1127, 129]
	Def: 122
	Mdef: 62
	Stats: {
		Str: 122
		Agi: 87
		Vit: 54
		Int: 65
		Dex: 155
		Luk: 65
	}
	ViewRange: 14
	ChaseRange: 16
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 140
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Broken_Armor_Piece: 3000
		Doom_Slayer: 30
		Claymore: 50
		Zweihander: 1
		Platinum_Shield: 10
		Muscle_Cutter: 50
		Carnium: 100
		Sword_Guardian_Card: 1
	}
},
{
	Id: 1830
	SpriteName: "BOW_GUARDIAN"
	Name: "Bow Guardian"
	JName: "Bow Master"
	Lv: 132
	Hp: 63000
	Sp: 0
	Exp: 5710
	JExp: 3294
	AttackRange: 12
	Attack: [1149, 120]
	Def: 127
	Mdef: 62
	Stats: {
		Str: 109
		Agi: 80
		Vit: 65
		Int: 52
		Dex: 183
		Luk: 55
	}
	ViewRange: 14
	ChaseRange: 16
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Broken_Armor_Piece: 3000
		Luna_Bow: 30
		Bow: 50
		Sniping_Suit: 20
		Orleans_Glove: 4
		Carnium: 100
		Bow_Guardian_Card: 1
	}
},
{
	Id: 1831
	SpriteName: "SALAMANDER"
	Name: "Salamander"
	Lv: 138
	Hp: 80390
	Sp: 1
	Exp: 7694
	JExp: 7139
	AttackRange: 2
	Attack: [2299, 600]
	Def: 141
	Mdef: 68
	Stats: {
		Str: 189
		Agi: 105
		Vit: 92
		Int: 85
		Dex: 198
		Luk: 72
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 160
	AttackDelay: 140
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Burning_Heart: 3000
		Flame_Heart: 30
		Carnium: 20
		Lesser_Elemental_Ring: 1
		Berserk_Guitar: 50
		Ring_: 1
		Meteo_Plate_Armor: 20
		Salamander_Card: 1
	}
},
{
	Id: 1832
	SpriteName: "IFRIT"
	Name: "Ifrit"
	Lv: 146
	Hp: 6935000
	Sp: 1
	Exp: 8704800
	JExp: 4860000
	AttackRange: 3
	Attack: [8063, 3389]
	Def: 436
	Mdef: 218
	Stats: {
		Str: 180
		Agi: 201
		Vit: 156
		Int: 190
		Dex: 299
		Luk: 77
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 130
	AttackDelay: 212
	AttackMotion: 384
	DamageMotion: 360
	DamageTakenRate: 10
	MvpExp: 3348000
	MvpDrops: {
		Old_Violet_Box: 5500
		Carnium: 5000
		Old_Card_Album: 2000
	}
	Drops: {
		Flame_Heart: 12000
		Spiritual_Ring: 3000
		Ring_Of_Flame_Lord: 100
		Ring_Of_Resonance: 100
		Hell_Fire: 2400
		Fire_Brand: 2000
		Flame_Sprits_Armor_: 200
		Ifrit_Card: 1
	}
},
{
	Id: 1833
	SpriteName: "KASA"
	Name: "Kasa"
	Lv: 135
	Hp: 70128
	Sp: 1
	Exp: 7278
	JExp: 7709
	AttackRange: 2
	Attack: [1506, 305]
	Def: 104
	Mdef: 70
	Stats: {
		Str: 111
		Agi: 74
		Vit: 65
		Int: 78
		Dex: 162
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 800
	AttackMotion: 600
	DamageMotion: 288
	Drops: {
		Burning_Heart: 3000
		Hot_Hair: 2500
		Flame_Heart: 30
		Lesser_Elemental_Ring: 1
		Flame_Sprits_Armor: 10
		Burning_Bow: 10
		Piercing_Staff: 10
		Kasa_Card: 1
	}
},
{
	Id: 1834
	SpriteName: "G_SALAMANDER"
	Name: "Salamander"
	Lv: 138
	Hp: 80390
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [2299, 600]
	Def: 141
	Mdef: 68
	Stats: {
		Str: 189
		Agi: 105
		Vit: 92
		Int: 85
		Dex: 198
		Luk: 72
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 160
	AttackDelay: 140
	AttackMotion: 384
	DamageMotion: 288
},
{
	Id: 1835
	SpriteName: "G_KASA"
	Name: "Kasa"
	Lv: 135
	Hp: 70128
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1506, 305]
	Def: 104
	Mdef: 70
	Stats: {
		Str: 111
		Agi: 74
		Vit: 65
		Int: 78
		Dex: 162
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 800
	AttackMotion: 600
	DamageMotion: 288
},
{
	Id: 1836
	SpriteName: "MAGMARING"
	Name: "Magmaring"
	Lv: 110
	Hp: 13079
	Sp: 1
	Exp: 3042
	JExp: 1903
	AttackRange: 1
	Attack: [881, 44]
	Def: 190
	Mdef: 45
	Stats: {
		Str: 107
		Agi: 33
		Vit: 35
		Int: 47
		Dex: 73
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1472
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Burning_Heart: 3000
		Elunium_Stone: 34
		Magmaring_Card: 1
	}
},
{
	Id: 1837
	SpriteName: "IMP"
	Name: "Imp"
	Lv: 129
	Hp: 36830
	Sp: 1
	Exp: 5972
	JExp: 3445
	AttackRange: 1
	Attack: [1239, 406]
	Def: 56
	Mdef: 75
	Stats: {
		Str: 66
		Agi: 83
		Vit: 65
		Int: 88
		Dex: 101
		Luk: 27
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 824
	AttackMotion: 432
	DamageMotion: 360
	Drops: {
		Hot_Hair: 3000
		Huuma_Blaze: 100
		Live_Coal: 2500
		Heart_Breaker: 10
		Electric_Eel: 25
		Flaming_Ice: 1
		Carnium: 1
		Imp_Card: 1
	}
},
{
	Id: 1838
	SpriteName: "KNOCKER"
	Name: "Knocker"
	Lv: 126
	Hp: 43900
	Sp: 1
	Exp: 4796
	JExp: 3768
	AttackRange: 1
	Attack: [886, 103]
	Def: 126
	Mdef: 62
	Stats: {
		Str: 93
		Agi: 62
		Vit: 58
		Int: 56
		Dex: 139
		Luk: 70
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1548
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Great_Nature: 30
		Coal: 150
		Elder_Pixies_Beard: 5500
		Elven_Ears: 1
		Carnium: 10
		Thorny_Buckler: 3
		Earth_Bow: 5
		Knocker_Card: 1
	}
},
{
	Id: 1839
	SpriteName: "BYORGUE"
	Name: "Byorgue"
	JName: "Byrogue"
	Lv: 135
	Hp: 92544
	Sp: 1
	Exp: 10042
	JExp: 5543
	AttackRange: 2
	Attack: [1190, 141]
	Def: 120
	Mdef: 13
	Stats: {
		Str: 114
		Agi: 86
		Vit: 70
		Int: 65
		Dex: 122
		Luk: 70
	}
	ViewRange: 14
	ChaseRange: 16
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 800
	AttackMotion: 600
	DamageMotion: 360
	Drops: {
		Drill_Katar: 50
		Assassin_Mask_: 3
		Scalpel: 150
		Agi_Dish07: 100
		Old_Blue_Box: 40
		Rider_Insignia_: 1
		Vroken_Sword: 4365
		Byorgue_Card: 1
	}
},
// Additional Event Monsters
{
	Id: 1840
	SpriteName: "GOLDEN_SAVAGE"
	Name: "Golden Savage"
	Lv: 99
	Hp: 500
	Sp: 1
	Exp: 1
	JExp: 1
	AttackRange: 1
	Attack: [650, 200]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 0
		Agi: 1
		Vit: 1
		Int: 50
		Dex: 144
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		Boss: true
		Plant: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 1960
	AttackMotion: 480
	DamageMotion: 384
	Drops: {
		Leaf_Of_Yggdrasil: 3000
		Treasure_Box: 100
		Old_Card_Album: 5
		Gold: 500
		Emperium: 100
		Golden_Gear_: 1
		New_Year_Rice_Cake_1: 3000
		New_Year_Rice_Cake_2: 3000
	}
},
{
	Id: 1841
	SpriteName: "G_SNAKE_"
	Name: "Snake Lord's Minion"
	Lv: 15
	Hp: 10
	Sp: 1
	Exp: 1
	JExp: 1
	AttackRange: 1
	Attack: [46, 9]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 15
		Vit: 15
		Int: 10
		Dex: 35
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 576
	Drops: {
		Copper_Coin_: 1000
		Black_Treasure_Box: 500
	}
},
{
	Id: 1842
	SpriteName: "G_ANACONDAQ_"
	Name: "Snake Lord's Minion"
	Lv: 23
	Hp: 15
	Sp: 1
	Exp: 1
	JExp: 1
	AttackRange: 1
	Attack: [124, 33]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 46
		Vit: 28
		Int: 10
		Dex: 51
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 576
	Drops: {
		Copper_Coin_: 1000
		Copper_Coin_: 1000
		Black_Treasure_Box: 500
	}
},
{
	Id: 1843
	SpriteName: "G_SIDE_WINDER_"
	Name: "Snake Lord's Minion"
	Lv: 43
	Hp: 18
	Sp: 1
	Exp: 1
	JExp: 1
	AttackRange: 1
	Attack: [240, 80]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 38
		Agi: 43
		Vit: 40
		Int: 15
		Dex: 115
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 576
	Drops: {
		Copper_Coin_: 1000
		Silver_Coin_: 1000
		Black_Treasure_Box: 500
	}
},
{
	Id: 1844
	SpriteName: "G_ISIS_"
	Name: "Snake Lord's Minion"
	Lv: 47
	Hp: 25
	Sp: 1
	Exp: 1
	JExp: 1
	AttackRange: 1
	Attack: [423, 84]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 38
		Agi: 65
		Vit: 43
		Int: 50
		Dex: 66
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1384
	AttackMotion: 768
	DamageMotion: 336
	Drops: {
		Copper_Coin_: 1000
		Silver_Coin_: 1000
		Copper_Coin_: 1000
		Silver_Coin_: 1000
		Black_Treasure_Box: 500
	}
},
{
	Id: 1845
	SpriteName: "G_TREASURE_BOX_"
	Name: "Treasure Box"
	JName: "Treasure Chest"
	Lv: 98
	Hp: 500
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Gold_Coin_US: 10000
		Gold_Coin_US: 10000
		Gold_Coin_US: 10000
		Treasure_Box_: 10000
		Green_Ale_US: 2500
		Gold_Coin_US: 5000
		Green_Ale_US: 2500
		Green_Ale_US: 2500
	}
},
{
	Id: 1846
	SpriteName: "DREAMMETAL"
	Name: "Dream Metal"
	Lv: 90
	Hp: 1499
	Sp: 0
	Exp: 1
	JExp: 1
	AttackRange: 1
	Attack: [1, 1]
	Def: 100
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Holy", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 300
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 384
	Drops: {
		Dragonball_Yellow_: 2000
	}
},
{
	Id: 1848
	SpriteName: "EVENT_BAPHOMET"
	Name: "Baphomet"
	Lv: 50
	Hp: 10000
	Sp: 0
	Exp: 900
	JExp: 900
	AttackRange: 3
	Attack: [1500, 1500]
	Def: 16
	Mdef: 10
	Stats: {
		Str: 1
		Agi: 60
		Vit: 15
		Int: 15
		Dex: 160
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 768
	AttackMotion: 768
	DamageMotion: 576
},
{
	Id: 1849
	SpriteName: "EVENT_OSIRIS"
	Name: "Osiris"
	Lv: 60
	Hp: 125000
	Sp: 0
	Exp: 1800
	JExp: 1800
	AttackRange: 1
	Attack: [3500, 1500]
	Def: 32
	Mdef: 20
	Stats: {
		Str: 1
		Agi: 60
		Vit: 25
		Int: 25
		Dex: 160
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1072
	AttackMotion: 672
	DamageMotion: 384
},
{
	Id: 1850
	SpriteName: "EVENT_ORCHERO"
	Name: "Orc Hero"
	Lv: 50
	Hp: 175000
	Sp: 0
	Exp: 2700
	JExp: 2700
	AttackRange: 1
	Attack: [4000, 1500]
	Def: 40
	Mdef: 45
	Stats: {
		Str: 1
		Agi: 60
		Vit: 35
		Int: 80
		Dex: 160
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1678
	AttackMotion: 780
	DamageMotion: 648
},
{
	Id: 1851
	SpriteName: "EVENT_MOBSTER"
	Name: "Mobster"
	Lv: 61
	Hp: 7991
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [910, 218]
	Def: 66
	Mdef: 37
	Stats: {
		Str: 76
		Agi: 46
		Vit: 20
		Int: 35
		Dex: 76
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1100
	AttackMotion: 560
	DamageMotion: 580
},
{
	Id: 1852
	SpriteName: "G_EM_ANGELING"
	Name: "Angeling"
	Lv: 99
	Hp: 120
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [60, 71]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 17
		Vit: 80
		Int: 80
		Dex: 126
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 384
},
{
	Id: 1853
	SpriteName: "G_EM_DEVILING"
	Name: "Deviling"
	Lv: 99
	Hp: 120
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [60, 71]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 17
		Vit: 80
		Int: 80
		Dex: 126
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 384
},
{
	Id: 1854
	SpriteName: "E_MUKA"
	Name: "Muka"
	Lv: 17
	Hp: 610
	Sp: 0
	Exp: 246
	JExp: 108
	AttackRange: 1
	Attack: [40, 49]
	Def: 8
	Mdef: 5
	Stats: {
		Str: 15
		Agi: 15
		Vit: 30
		Int: 5
		Dex: 20
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1960
	AttackMotion: 960
	DamageMotion: 384
	Drops: {
		Yellow_Live: 70
		Cactus_Needle: 9000
		Empty_Bottle: 2000
		Kaong: 400
		Red_Herb: 1000
		Guisarme: 50
		Iron_Ore: 250
		Muka_Card: 1
	}
},
{
	Id: 1855
	SpriteName: "E_POISONSPORE"
	Name: "Poison Spore"
	Lv: 19
	Hp: 665
	Sp: 0
	Exp: 167
	JExp: 84
	AttackRange: 1
	Attack: [89, 101]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 19
		Vit: 25
		Int: 0
		Dex: 24
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 288
	Drops: {
		Poison_Spore: 9000
		Hat_: 20
		Green_Herb: 550
		Gulaman: 60
		Karvodailnirol: 50
		Mushroom_Spore: 1200
		Zargon: 5
		Poison_Spore_Card: 1
	}
},
{
	Id: 1856
	SpriteName: "E_MAGNOLIA"
	Name: "Magnolia"
	Lv: 26
	Hp: 3195
	Sp: 0
	Exp: 354
	JExp: 223
	AttackRange: 1
	Attack: [120, 151]
	Def: 8
	Mdef: 30
	Stats: {
		Str: 1
		Agi: 26
		Vit: 26
		Int: 0
		Dex: 39
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 250
	AttackDelay: 1560
	AttackMotion: 360
	DamageMotion: 360
	Drops: {
		Old_Frying_Pan: 9000
		Garlet: 800
		Scell: 100
		Zargon: 10
		Black_Ladle: 40
		Leche_Flan: 400
		High_end_Cooking_Kits: 5
		Magnolia_Card: 1
	}
},
{
	Id: 1857
	SpriteName: "E_MARIN"
	Name: "Marin"
	Lv: 15
	Hp: 742
	Sp: 0
	Exp: 59
	JExp: 40
	AttackRange: 1
	Attack: [39, 43]
	Def: 0
	Mdef: 10
	Stats: {
		Str: 1
		Agi: 10
		Vit: 10
		Int: 5
		Dex: 35
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Garlet: 3200
		Sticky_Mucus: 1500
		Cold_Scroll_2_1: 100
		Skyblue_Jewel: 40
		Ube_Jam: 75
		Candy: 350
		Poring_Hat: 1
		Marin_Card: 1
	}
},
{
	Id: 1858
	SpriteName: "E_PLANKTON"
	Name: "Plankton"
	Lv: 10
	Hp: 354
	Sp: 0
	Exp: 21
	JExp: 16
	AttackRange: 1
	Attack: [26, 31]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 10
		Vit: 10
		Int: 0
		Dex: 15
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 2208
	AttackMotion: 1008
	DamageMotion: 324
	Drops: {
		Single_Cell: 9000
		Sago: 300
		Sticky_Mucus: 700
		Alchol: 4
		Empty_Bottle: 1000
		Dew_Laden_Moss: 20
		Center_Potion: 50
		Plankton_Card: 1
	}
},
{
	Id: 1859
	SpriteName: "E_MANDRAGORA"
	Name: "Mandragora"
	Lv: 12
	Hp: 405
	Sp: 0
	Exp: 41
	JExp: 29
	AttackRange: 4
	Attack: [26, 35]
	Def: 0
	Mdef: 25
	Stats: {
		Str: 1
		Agi: 12
		Vit: 24
		Int: 0
		Dex: 36
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 3)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 1000
	AttackDelay: 1768
	AttackMotion: 768
	DamageMotion: 576
	Drops: {
		Yellow_Live: 50
		Stem: 9000
		Spear_: 30
		Langka: 350
		Shoot: 300
		Four_Leaf_Clover: 3
		Whip_Of_Earth: 10
		Mandragora_Card: 1
	}
},
{
	Id: 1860
	SpriteName: "E_COCO"
	Name: "Coco"
	Lv: 17
	Hp: 817
	Sp: 0
	Exp: 108
	JExp: 70
	AttackRange: 1
	Attack: [56, 67]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 24
		Agi: 17
		Vit: 34
		Int: 20
		Dex: 24
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 1864
	AttackMotion: 864
	DamageMotion: 1008
	Drops: {
		Acorn: 9000
		Hood_: 20
		Fluff: 3000
		Animals_Skin: 2500
		Sweet_Potato: 500
		Sandals_: 25
		Sweet_Bean: 600
		Coco_Card: 1
	}
},
{
	Id: 1861
	SpriteName: "E_CHOCO"
	Name: "Choco"
	Lv: 43
	Hp: 4278
	Sp: 0
	Exp: 1139
	JExp: 1139
	AttackRange: 1
	Attack: [315, 402]
	Def: 8
	Mdef: 5
	Stats: {
		Str: 65
		Agi: 68
		Vit: 55
		Int: 45
		Dex: 65
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1500
	AttackMotion: 500
	DamageMotion: 1000
	Drops: {
		Claw_Of_Monkey: 5335
		Yoyo_Tail: 7000
		Elunium: 53
		Banana: 5000
		Tropical_Banana: 20
		Sweet_Banana: 1000
		Yggdrasilberry: 25
		Choco_Card: 1
	}
},
{
	Id: 1862
	SpriteName: "E_MARTIN"
	Name: "Martin"
	Lv: 18
	Hp: 1109
	Sp: 0
	Exp: 121
	JExp: 77
	AttackRange: 1
	Attack: [52, 63]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 12
		Agi: 18
		Vit: 30
		Int: 15
		Dex: 15
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1480
	AttackMotion: 480
	DamageMotion: 480
	Drops: {
		Moustache_Of_Mole: 9000
		Macapuno: 500
		Jur_: 10
		Goggle_: 5
		Safety_Helmet: 1
		Battered_Pot: 10
		Goggle: 15
		Martin_Card: 1
	}
},
{
	Id: 1863
	SpriteName: "E_SPRING_RABBIT"
	Name: "Spring Rabbit"
	Lv: 25
	Hp: 4500
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [292, 406]
	Def: 23
	Mdef: 10
	Stats: {
		Str: 20
		Agi: 15
		Vit: 15
		Int: 5
		Dex: 15
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 160
	AttackDelay: 1120
	AttackMotion: 552
	DamageMotion: 0
	Drops: {
		Peeps: 5000
		Jelly_Bean: 5000
		Marshmallow: 5000
	}
},
// Cursed Abbey (11.3)
{
	Id: 1864
	SpriteName: "ZOMBIE_SLAUGHTER"
	Name: "Zombie Slaughter"
	Lv: 124
	Hp: 40440
	Sp: 1
	Exp: 4138
	JExp: 2702
	AttackRange: 1
	Attack: [1190, 117]
	Def: 100
	Mdef: 45
	Stats: {
		Str: 117
		Agi: 58
		Vit: 82
		Int: 13
		Dex: 136
		Luk: 21
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 676
	AttackMotion: 648
	DamageMotion: 432
	Drops: {
		Clattering_Skull: 3000
		Platinum_Shotel: 10
		Mementos: 1500
		Broken_Farming_Utensil: 3000
		Sticky_Mucus: 3000
		Carnium: 1
		Sabah_Ring: 10
		Zombie_Slaughter_Card: 1
	}
},
{
	Id: 1865
	SpriteName: "RAGGED_ZOMBIE"
	Name: "Ragged Zombie"
	Lv: 123
	Hp: 38574
	Sp: 1
	Exp: 3814
	JExp: 3087
	AttackRange: 9
	Attack: [1334, 130]
	Def: 85
	Mdef: 35
	Stats: {
		Str: 81
		Agi: 50
		Vit: 64
		Int: 56
		Dex: 178
		Luk: 23
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1960
	AttackMotion: 576
	DamageMotion: 420
	Drops: {
		Clattering_Skull: 3000
		Tidal_Shoes: 15
		Nab_Ring: 100
		Skel_Bone: 4500
		Expert_Ring: 2
		Wasteland_Outlaw: 10
		Carnium: 1
		Ragged_Zombie_Card: 1
	}
},
{
	Id: 1866
	SpriteName: "HELL_POODLE"
	Name: "Hell Poodle"
	JName: "Hellhound"
	Lv: 115
	Hp: 17168
	Sp: 1
	Exp: 3334
	JExp: 1923
	AttackRange: 1
	Attack: [899, 145]
	Def: 86
	Mdef: 20
	Stats: {
		Str: 114
		Agi: 56
		Vit: 59
		Int: 82
		Dex: 108
		Luk: 54
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 140
	AttackDelay: 824
	AttackMotion: 432
	DamageMotion: 360
	Drops: {
		Monsters_Feed: 5000
		Tooth_Blade: 10
		Wild_Beast_Claw: 10
		Skel_Bone: 4500
		Well_Dried_Bone: 20
		Animals_Skin: 5500
		Pet_Food: 400
		Hell_Poodle_Card: 1
	}
},
{
	Id: 1867
	SpriteName: "BANSHEE"
	Name: "Banshee"
	Lv: 130
	Hp: 48666
	Sp: 1
	Exp: 5876
	JExp: 3500
	AttackRange: 1
	Attack: [1014, 703]
	Def: 73
	Mdef: 96
	Stats: {
		Str: 97
		Agi: 71
		Vit: 55
		Int: 143
		Dex: 137
		Luk: 72
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 676
	AttackMotion: 504
	DamageMotion: 504
	Drops: {
		Old_White_Cloth: 3000
		Orleans_Gown: 10
		Scalpel: 10
		Wool_Scarf: 10
		Mementos: 1500
		Brigan: 5335
		Banshee_Card: 1
	}
},
{
	Id: 1868
	SpriteName: "G_BANSHEE"
	Name: "Banshee"
	Lv: 130
	Hp: 48666
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1014, 703]
	Def: 73
	Mdef: 96
	Stats: {
		Str: 97
		Agi: 71
		Vit: 55
		Int: 143
		Dex: 137
		Luk: 72
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 676
	AttackMotion: 504
	DamageMotion: 504
},
{
	Id: 1869
	SpriteName: "FLAME_SKULL"
	Name: "Flame Skull"
	Lv: 121
	Hp: 21276
	Sp: 1
	Exp: 2332
	JExp: 2890
	AttackRange: 1
	Attack: [1074, 135]
	Def: 93
	Mdef: 40
	Stats: {
		Str: 111
		Agi: 90
		Vit: 60
		Int: 70
		Dex: 139
		Luk: 65
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 972
	AttackMotion: 648
	DamageMotion: 432
	Drops: {
		Skull: 5000
		Black_Leather_Boots: 20
		Lever_Action_Rifle: 20
		Horrendous_Mouth: 6000
		Flame_Skull_Card: 1
	}
},
{
	Id: 1870
	SpriteName: "NECROMANCER"
	Name: "Necromancer"
	Lv: 133
	Hp: 91304
	Sp: 1
	Exp: 5980
	JExp: 5980
	AttackRange: 1
	Attack: [1359, 1006]
	Def: 84
	Mdef: 73
	Stats: {
		Str: 108
		Agi: 54
		Vit: 77
		Int: 116
		Dex: 137
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1816
	AttackMotion: 1320
	DamageMotion: 420
	Drops: {
		Clattering_Skull: 3000
		Lich_Bone_Wand: 20
		Skel_Bone: 4500
		Mithril_Magic_Cape: 10
		Blue_Gemstone: 100
		Amulet: 100
		Rent_Spell_Book: 1500
		Necromancer_Card: 1
	}
},
{
	Id: 1871
	SpriteName: "FALLINGBISHOP"
	Name: "Fallen Bishop"
	JName: "Falling Bishop"
	Lv: 138
	Hp: 5655000
	Sp: 1
	Exp: 3510000
	JExp: 1890000
	AttackRange: 1
	Attack: [4290, 4636]
	Def: 274
	Mdef: 382
	Stats: {
		Str: 186
		Agi: 165
		Vit: 95
		Int: 226
		Dex: 273
		Luk: 86
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 432
	AttackMotion: 432
	DamageMotion: 360
	DamageTakenRate: 10
	MvpExp: 1350000
	MvpDrops: {
		Yggdrasilberry: 5500
		Seed_Of_Yggdrasil: 3500
		Crystal_Jewel__: 2000
	}
	Drops: {
		Holy_Water: 10000
		Long_Horn: 1000
		Spiritual_Ring: 500
		Hunting_Spear: 1000
		Elunium: 5432
		Blessed_Wand: 2000
		Carnium: 500
		Fallen_Bishop_Card: 1
	}
},
{
	Id: 1872
	SpriteName: "BEELZEBUB_FLY"
	Name: "Hell Fly"
	Lv: 127
	Hp: 502000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [900, 152]
	Def: 98
	Mdef: 55
	Stats: {
		Str: 99
		Agi: 90
		Vit: 52
		Int: 55
		Dex: 125
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Angel"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 432
	AttackMotion: 480
	DamageMotion: 360
},
{
	Id: 1873
	SpriteName: "BEELZEBUB"
	Name: "Beelzebub"
	Lv: 147
	Hp: 6805000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [5250, 2100]
	Def: 288
	Mdef: 265
	Stats: {
		Str: 155
		Agi: 235
		Vit: 200
		Int: 225
		Dex: 306
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 100
	AttackMotion: 576
	DamageMotion: 480
},
{
	Id: 1874
	SpriteName: "BEELZEBUB_"
	Name: "Beelzebub"
	Lv: 147
	Hp: 4805000
	Sp: 1
	Exp: 9165000
	JExp: 7050000
	AttackRange: 2
	Attack: [6666, 4444]
	Def: 418
	Mdef: 265
	Stats: {
		Str: 178
		Agi: 236
		Vit: 200
		Int: 250
		Dex: 327
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 212
	AttackMotion: 504
	DamageMotion: 432
	DamageTakenRate: 10
	MvpExp: 3525000
	MvpDrops: {
		Old_Violet_Box: 5500
		Yggdrasilberry: 5000
		Box_Of_Grudge: 5500
	}
	Drops: {
		Broken_Crown: 9000
		Variant_Shoes: 2000
		Death_Note: 2000
		Destruction_Rod: 2000
		Bison_Horn: 2000
		Carnium: 1000
		Yggdrasilberry: 2750
		Berzebub_Card: 1
	}
},
{
	Id: 1875
	SpriteName: "TRISTAN_3RD"
	Name: "Tristan III"
	Lv: 80
	Hp: 43000
	Sp: 0
	Exp: 1
	JExp: 1
	AttackRange: 2
	Attack: [1503, 260]
	Def: 25
	Mdef: 30
	Stats: {
		Str: 5
		Agi: 10
		Vit: 10
		Int: 69
		Dex: 84
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 1816
	AttackMotion: 1152
	DamageMotion: 360
	Drops: {
		Broken_Crown: 9000
		Sticky_Mucus: 9000
	}
},
{
	Id: 1876
	SpriteName: "E_LORD_OF_DEATH"
	Name: "Lord of the Dead"
	Lv: 99
	Hp: 99000000
	Sp: 0
	Exp: 141850
	JExp: 39011
	AttackRange: 3
	Attack: [4459, 802]
	Def: 75
	Mdef: 73
	Stats: {
		Str: 120
		Agi: 120
		Vit: 120
		Int: 169
		Dex: 180
		Luk: 106
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 1446
	AttackMotion: 1296
	DamageMotion: 360
	MvpExp: 59104
	MvpDrops: {
		Helm_Of_Sun: 10000
	}
},
{
	Id: 1877
	SpriteName: "CRYSTAL_5"
	Name: "Crystal"
	Lv: 1
	Hp: 15
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 999
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 190
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		GOLD_ID4: 10
		Gift_Box: 100
	}
},
{
	Id: 1878
	SpriteName: "E_SHINING_PLANT"
	Name: "Shining Plant"
	JName: "Mystic Plant"
	Lv: 1
	Hp: 100
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 100
	Mdef: 99
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 90
	}
	ViewRange: 7
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Holy", 1)
	Mode: {
		Plant: true
	}
	MoveSpeed: 2000
	AttackDelay: 1
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		Love_Flower: 3000
		Pointed_Scale: 1500
		Green_Herb: 500
		Red_Herb: 2000
		Yellow_Herb: 1500
		Fluff: 500
	}
},
{
	Id: 1879
	SpriteName: "ECLIPSE_P"
	Name: "Eclipse Pet"
	Lv: 6
	Hp: 1800
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [20, 6]
	Def: 0
	Mdef: 40
	Stats: {
		Str: 1
		Agi: 36
		Vit: 6
		Int: 0
		Dex: 11
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1456
	AttackMotion: 456
	DamageMotion: 336
},
// Moscovia
{
	Id: 1880
	SpriteName: "WOOD_GOBLIN"
	Name: "Wood Goblin"
	JName: "Leshij"
	Lv: 81
	Hp: 5499
	Sp: 1
	Exp: 1216
	JExp: 1245
	AttackRange: 1
	Attack: [212, 15]
	Def: 144
	Mdef: 12
	Stats: {
		Str: 73
		Agi: 19
		Vit: 56
		Int: 15
		Dex: 67
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 320
	AttackDelay: 2304
	AttackMotion: 840
	DamageMotion: 360
	Drops: {
		Iron_Wrist: 5
		Solid_Twig: 4000
		Log: 2000
		Resin: 2000
		Feather_Of_Birds: 500
		Piece_Of_Egg_Shell: 500
		Egg: 50
	}
},
{
	Id: 1881
	SpriteName: "LES"
	Name: "Les"
	JName: "Lesavka"
	Lv: 82
	Hp: 6216
	Sp: 1
	Exp: 1326
	JExp: 1356
	AttackRange: 1
	Attack: [297, 30]
	Def: 123
	Mdef: 30
	Stats: {
		Str: 63
		Agi: 20
		Vit: 35
		Int: 25
		Dex: 62
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 4)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 230
	AttackDelay: 1728
	AttackMotion: 720
	DamageMotion: 576
	Drops: {
		Sharp_Leaf: 2000
		Green_Herb: 1000
		Shoot: 1000
		Stem: 2500
		Centimental_Leaf: 1
		Leaflet_Of_Aloe: 500
		Blue_Herb: 50
	}
},
{
	Id: 1882
	SpriteName: "VAVAYAGA"
	Name: "Baba Yaga"
	JName: "Baba-Yaga"
	Lv: 87
	Hp: 6498
	Sp: 1
	Exp: 1306
	JExp: 1337
	AttackRange: 2
	Attack: [310, 71]
	Def: 63
	Mdef: 60
	Stats: {
		Str: 69
		Agi: 45
		Vit: 30
		Int: 60
		Dex: 61
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 270
	AttackDelay: 1536
	AttackMotion: 600
	DamageMotion: 420
	Drops: {
		Old_Magic_Circle: 1000
		Yaga_Pestle: 5000
		Release_Of_Wish: 10
		Pill: 150
		Piece_Of_Cake: 1500
		Milk: 1500
		Bread: 1500
	}
},
{
	Id: 1883
	SpriteName: "UZHAS"
	Name: "Uzhas"
	JName: "Kikimora"
	Lv: 85
	Hp: 7140
	Sp: 1
	Exp: 1422
	JExp: 1455
	AttackRange: 1
	Attack: [298, 35]
	Def: 49
	Mdef: 8
	Stats: {
		Str: 69
		Agi: 14
		Vit: 41
		Int: 30
		Dex: 66
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 576
	AttackMotion: 672
	DamageMotion: 384
	Drops: {
		Leaflet_Of_Hinal: 900
		Ancient_Magic: 5
		Bitter_Herb: 100
		Fruit_Of_Mastela: 100
		Sticky_Webfoot: 3500
		Delicious_Fish: 1500
		Old_Blue_Box: 3
	}
},
{
	Id: 1884
	SpriteName: "MAVKA"
	Name: "Mavka"
	Lv: 84
	Hp: 5421
	Sp: 1
	Exp: 1378
	JExp: 1530
	AttackRange: 7
	Attack: [289, 60]
	Def: 98
	Mdef: 58
	Stats: {
		Str: 65
		Agi: 31
		Vit: 50
		Int: 35
		Dex: 97
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 1536
	AttackMotion: 504
	DamageMotion: 360
	Drops: {
		Principles_Of_Magic: 5
		Singing_Flower: 300
		Singing_Plant: 300
		Illusion_Flower: 50
		Crystal_Mirror: 1500
		Witherless_Rose: 300
		Blue_Herb: 3000
	}
},
{
	Id: 1885
	SpriteName: "GOPINICH"
	Name: "Gopinich"
	JName: "Gopinch"
	Lv: 97
	Hp: 1120500
	Sp: 1
	Exp: 857088
	JExp: 580320
	AttackRange: 3
	Attack: [2584, 1861]
	Def: 355
	Mdef: 121
	Stats: {
		Str: 127
		Agi: 102
		Vit: 143
		Int: 102
		Dex: 182
		Luk: 76
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1536
	AttackMotion: 864
	DamageMotion: 432
	DamageTakenRate: 10
	MvpExp: 357120
	MvpDrops: {
		Yggdrasilberry: 5500
		Old_Violet_Box: 5000
		Old_Violet_Box: 5000
	}
	Drops: {
		Old_Violet_Box: 4000
		Ring_: 200
		Int_Dish10: 1000
		Ixion_Wing: 100
		Pole_Axe: 5
		Treasure_Box: 5000
		Loard_Circlet: 1
	}
},
{
	Id: 1886
	SpriteName: "G_MAVKA"
	Name: "Mavka"
	Lv: 84
	Hp: 5421
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 7
	Attack: [289, 60]
	Def: 98
	Mdef: 58
	Stats: {
		Str: 65
		Agi: 31
		Vit: 50
		Int: 35
		Dex: 97
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 1536
	AttackMotion: 504
	DamageMotion: 360
},
// Additional Monsters
{
	Id: 1887
	SpriteName: "FREEZER_R"
	Name: "Freezer"
	Lv: 94
	Hp: 9990
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [604, 50]
	Def: 68
	Mdef: 38
	Stats: {
		Str: 68
		Agi: 47
		Vit: 50
		Int: 45
		Dex: 59
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1452
	AttackMotion: 483
	DamageMotion: 528
	Drops: {
		Cyfar: 2000
		Ice_Piece: 2000
	}
},
{
	Id: 1888
	SpriteName: "GARM_BABY_R"
	Name: "Hatii Baby"
	Lv: 61
	Hp: 15199
	Sp: 0
	Exp: 90
	JExp: 90
	AttackRange: 1
	Attack: [680, 900]
	Def: 24
	Mdef: 13
	Stats: {
		Str: 45
		Agi: 30
		Vit: 36
		Int: 55
		Dex: 85
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 450
	AttackDelay: 879
	AttackMotion: 672
	DamageMotion: 576
	Drops: {
		Ice_Piece: 2000
	}
},
{
	Id: 1889
	SpriteName: "GARM_R"
	Name: "Marozka's Guard"
	Lv: 73
	Hp: 100000
	Sp: 0
	Exp: 990
	JExp: 900
	AttackRange: 3
	Attack: [990, 1300]
	Def: 20
	Mdef: 23
	Stats: {
		Str: 85
		Agi: 126
		Vit: 10
		Int: 50
		Dex: 114
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Water", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 608
	AttackMotion: 408
	DamageMotion: 336
	Drops: {
		Cyfar: 2000
		Ice_Piece: 2000
	}
},
{
	Id: 1890
	SpriteName: "GOPINICH_R"
	Name: "Koschei the Immortal"
	Lv: 85
	Hp: 599321
	Sp: 0
	Exp: 990
	JExp: 900
	AttackRange: 3
	Attack: [2055, 4256]
	Def: 20
	Mdef: 42
	Stats: {
		Str: 50
		Agi: 65
		Vit: 55
		Int: 50
		Dex: 182
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1536
	AttackMotion: 864
	DamageMotion: 432
},
{
	Id: 1891
	SpriteName: "G_RANDGRIS_"
	Name: "Valkyrie"
	Lv: 141
	Hp: 1005000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [6343, 3206]
	Def: 588
	Mdef: 506
	Stats: {
		Str: 196
		Agi: 131
		Vit: 125
		Int: 276
		Dex: 401
		Luk: 156
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 576
	AttackMotion: 576
	DamageMotion: 480
	Drops: {
	}
},
{
	Id: 1892
	SpriteName: "G_LOLI_RURI"
	Name: "Lolo Ruri"
	Lv: 109
	Hp: 15280
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [787, 1017]
	Def: 53
	Mdef: 44
	Stats: {
		Str: 111
		Agi: 50
		Vit: 47
		Int: 79
		Dex: 79
		Luk: 79
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 125
	AttackDelay: 747
	AttackMotion: 1632
	DamageMotion: 576
},
{
	Id: 1893
	SpriteName: "G_KNIGHT_OF_ABYSS"
	Name: "Knight of the Abyss"
	JName: "Abysmal Knight"
	Lv: 122
	Hp: 23297
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [810, 1002]
	Def: 102
	Mdef: 50
	Stats: {
		Str: 121
		Agi: 55
		Vit: 68
		Int: 70
		Dex: 97
		Luk: 37
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1500
	AttackMotion: 500
	DamageMotion: 1000
},
{
	Id: 1894
	SpriteName: "POURING"
	Name: "Pouring"
	Lv: 15
	Hp: 777
	Sp: 1
	Exp: 7
	JExp: 7
	AttackRange: 1
	Attack: [7, 7]
	Def: 0
	Mdef: 7
	Stats: {
		Str: 7
		Agi: 7
		Vit: 7
		Int: 17
		Dex: 17
		Luk: 7
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		Boss: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 300
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Unknown_Fish: 10000
		Unknown_Fish: 10000
		Unknown_Fish: 10000
		Unknown_Fish: 10000
		Unknown_Fish: 10000
		Unknown_Fish: 10000
		Unknown_Fish: 10000
		Unknown_Fish: 10000
	}
},
{
	Id: 1895
	SpriteName: "EVENT_SEYREN"
	Name: "Seyren"
	JName: "Seyren Windsor"
	Lv: 91
	Hp: 88902
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [2100, 2530]
	Def: 63
	Mdef: 12
	Stats: {
		Str: 90
		Agi: 89
		Vit: 72
		Int: 20
		Dex: 99
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
},
{
	Id: 1896
	SpriteName: "EVENT_KATRINN"
	Name: "Katrinn"
	JName: "Kathryne Keyron"
	Lv: 92
	Hp: 47780
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [497, 1697]
	Def: 10
	Mdef: 74
	Stats: {
		Str: 1
		Agi: 5
		Vit: 77
		Int: 180
		Dex: 110
		Luk: 39
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1152
	AttackMotion: 384
	DamageMotion: 288
},
{
	Id: 1897
	SpriteName: "EVENT_BAPHOMET_"
	Name: "Baphomet"
	Lv: 81
	Hp: 668000
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [3220, 4040]
	Def: 35
	Mdef: 45
	Stats: {
		Str: 1
		Agi: 152
		Vit: 30
		Int: 85
		Dex: 120
		Luk: 95
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 768
	AttackMotion: 768
	DamageMotion: 576
},
{
	Id: 1898
	SpriteName: "EVENT_ZOMBIE"
	Name: "Zombie"
	Lv: 12
	Hp: 434
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [67, 79]
	Def: 0
	Mdef: 10
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 2612
	AttackMotion: 912
	DamageMotion: 288
	Drops: {
		Jade_Plate: 10000
	}
},
// WoE Second Edition; Battlegrounds
{
	Id: 1899
	SpriteName: "SWORD_GUARDIAN_"
	Name: "Sword Guardian"
	Lv: 133
	Hp: 70000
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [677, 129]
	Def: 122
	Mdef: 33
	Stats: {
		Str: 122
		Agi: 87
		Vit: 54
		Int: 65
		Dex: 155
		Luk: 65
	}
	ViewRange: 14
	ChaseRange: 16
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 140
	AttackMotion: 384
	DamageMotion: 288
},
{
	Id: 1900
	SpriteName: "BOW_GUARDIAN_"
	Name: "Archer Guardian"
	Lv: 80
	Hp: 80404
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 12
	Attack: [2024, 680]
	Def: 64
	Mdef: 62
	Stats: {
		Str: 95
		Agi: 80
		Vit: 33
		Int: 90
		Dex: 198
		Luk: 55
	}
	ViewRange: 14
	ChaseRange: 16
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
},
{
	Id: 1901
	SpriteName: "E_CONDOR"
	Name: "Condor"
	Lv: 10
	Hp: 15
	Sp: 0
	Exp: 90
	JExp: 90
	AttackRange: 1
	Attack: [13, 7]
	Def: 10
	Mdef: 15
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 50
		Dex: 100
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Holy", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 150
	AttackDelay: 1148
	AttackMotion: 648
	DamageMotion: 480
	Drops: {
		Immortality_Egg: 1000
	}
},
{
	Id: 1902
	SpriteName: "E_TREASURE1"
	Name: "Treasure Box"
	JName: "Treasure Chest"
	Lv: 99
	Hp: 49
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 100
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Holy", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Gold_Key77: 1000
	}
},
{
	Id: 1903
	SpriteName: "E_TREASURE2"
	Name: "Treasure Box"
	JName: "Treasure Chest"
	Lv: 99
	Hp: 49
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 100
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Holy", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Silver_Key77: 1000
	}
},
{
	Id: 1904
	SpriteName: "BOMBPORING"
	Name: "Bomb Poring"
	JName: "Bombring"
	Lv: 28
	Hp: 1000000
	Sp: 1
	Exp: 415
	JExp: 256
	AttackRange: 1
	Attack: [120, 200]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 28
		Vit: 28
		Int: 0
		Dex: 33
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 1905
	SpriteName: "BARRICADE"
	Name: "Barricade"
	Lv: 98
	Hp: 600500
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 17
		Vit: 1
		Int: 80
		Dex: 151
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 300
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 384
},
{
	Id: 1906
	SpriteName: "BARRICADE_"
	Name: "Barricade"
	Lv: 98
	Hp: 600
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 17
		Vit: 1
		Int: 80
		Dex: 151
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 300
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 384
},
{
	Id: 1907
	SpriteName: "S_EMPEL_1"
	Name: "Guardian Stone"
	Lv: 90
	Hp: 120500
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [1, 1]
	Def: 64
	Mdef: 50
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 300
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 384
},
{
	Id: 1908
	SpriteName: "S_EMPEL_2"
	Name: "Guardian Stone"
	Lv: 90
	Hp: 120500
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [1, 1]
	Def: 64
	Mdef: 50
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 300
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 384
},
{
	Id: 1909
	SpriteName: "OBJ_A"
	Name: "Food Storage"
	Lv: 90
	Hp: 750
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [1, 1]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 300
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 384
},
{
	Id: 1910
	SpriteName: "OBJ_B"
	Name: "Food Depot"
	Lv: 90
	Hp: 750
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [1, 1]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 300
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 384
},
{
	Id: 1911
	SpriteName: "OBJ_NEUTRAL"
	Name: "Neutrality Flag"
	Lv: 90
	Hp: 650
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [1, 1]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 300
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 384
},
{
	Id: 1912
	SpriteName: "OBJ_FLAG_A"
	Name: "Lion Flag"
	Lv: 90
	Hp: 650
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [1, 1]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 300
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 384
},
{
	Id: 1913
	SpriteName: "OBJ_FLAG_B"
	Name: "Eagle Flag"
	Lv: 90
	Hp: 650
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [1, 1]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 300
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 384
},
{
	Id: 1914
	SpriteName: "OBJ_A2"
	Name: "Blue Crystal"
	Lv: 90
	Hp: 750
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [1, 1]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 300
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 384
},
{
	Id: 1915
	SpriteName: "OBJ_B2"
	Name: "Pink Crystal"
	Lv: 90
	Hp: 750
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [1, 1]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 300
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 384
},
// Dimentional Gorge (12.1)
{
	Id: 1916
	SpriteName: "MOROCC"
	Name: "Satan Morroc"
	Lv: 151
	Hp: 7000000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [5340, 2640]
	Def: 400
	Mdef: 65
	Stats: {
		Str: 165
		Agi: 182
		Vit: 180
		Int: 225
		Dex: 270
		Luk: 89
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 312
	AttackMotion: 624
	DamageMotion: 432
	Drops: {
		Diabolus_Helmet: 1500
		Diabolus_Robe: 7000
		Diabolus_Armor: 7000
		Diabolus_Boots: 7000
		Dark_Crystal: 9000
		Dark_Debris: 9000
	}
},
{
	Id: 1917
	SpriteName: "MOROCC_"
	Name: "Wounded Morroc"
	Lv: 151
	Hp: 5000000
	Sp: 1
	Exp: 5265000
	JExp: 3042000
	AttackRange: 2
	Attack: [4530, 2880]
	Def: 425
	Mdef: 65
	Stats: {
		Str: 165
		Agi: 185
		Vit: 200
		Int: 245
		Dex: 270
		Luk: 89
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 312
	AttackMotion: 624
	DamageMotion: 432
	DamageTakenRate: 10
	MvpExp: 2025000
	MvpDrops: {
		Yggdrasilberry: 5500
		Old_Violet_Box: 5000
		Old_Violet_Box: 5000
	}
	Drops: {
		Diabolus_Helmet: 1000
		Diabolus_Robe: 5000
		Diabolus_Armor: 5000
		Diabolus_Boots: 5000
		Dark_Crystal: 9000
		Dark_Debris: 9000
	}
},
{
	Id: 1918
	SpriteName: "MOROCC_1"
	Name: "Incarnation of Morroc"
	Lv: 132
	Hp: 63900
	Sp: 1
	Exp: 5710
	JExp: 3294
	AttackRange: 1
	Attack: [1901, 145]
	Def: 199
	Mdef: 35
	Stats: {
		Str: 126
		Agi: 91
		Vit: 63
		Int: 61
		Dex: 114
		Luk: 37
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Angel"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 110
	AttackDelay: 576
	AttackMotion: 480
	DamageMotion: 432
	Drops: {
		Herald_Of_GOD: 10
		Dark_Crystal: 1000
		Dark_Debris: 3000
		Elunium: 160
		Brigan: 4850
		Diabolus_Manteau: 3
		Nemesis: 20
	}
},
{
	Id: 1919
	SpriteName: "MOROCC_2"
	Name: "Incarnation of Morroc"
	Lv: 132
	Hp: 64922
	Sp: 1
	Exp: 6622
	JExp: 3821
	AttackRange: 1
	Attack: [1625, 159]
	Def: 92
	Mdef: 5
	Stats: {
		Str: 121
		Agi: 86
		Vit: 71
		Int: 65
		Dex: 113
		Luk: 44
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 576
	AttackMotion: 648
	DamageMotion: 300
	Drops: {
		Skin_Of_Ventus: 3
		Dark_Crystal: 1000
		Dark_Debris: 3000
		Oridecon: 160
		Cyfar: 3500
		Cross_Shield: 15
	}
},
{
	Id: 1920
	SpriteName: "MOROCC_3"
	Name: "Incarnation of Morroc"
	Lv: 133
	Hp: 94800
	Sp: 1
	Exp: 6786
	JExp: 3780
	AttackRange: 2
	Attack: [1218, 363]
	Def: 111
	Mdef: 37
	Stats: {
		Str: 102
		Agi: 59
		Vit: 55
		Int: 82
		Dex: 147
		Luk: 54
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Undead", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 212
	AttackMotion: 432
	DamageMotion: 360
	Drops: {
		Ragamuffin_Cape: 10
		Dark_Crystal: 1000
		Dark_Debris: 3000
		Elunium: 160
		Brigan: 4850
		Cursed_Hand: 3
		Bloody_Eater: 15
	}
},
{
	Id: 1921
	SpriteName: "MOROCC_4"
	Name: "Incarnation of Morroc"
	Lv: 134
	Hp: 77389
	Sp: 1
	Exp: 5990
	JExp: 4056
	AttackRange: 1
	Attack: [1235, 599]
	Def: 109
	Mdef: 54
	Stats: {
		Str: 114
		Agi: 88
		Vit: 62
		Int: 97
		Dex: 164
		Luk: 43
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1536
	AttackMotion: 648
	DamageMotion: 300
	Drops: {
		Diabolus_Ring: 5
		Dark_Crystal: 1000
		Dark_Debris: 3000
		Oridecon: 160
		Cyfar: 3500
		Exorcism_Bible: 20
	}
},
{
	Id: 1922
	SpriteName: "G_MOROCC_1"
	Name: "Incarnation of Morroc"
	JName: "Shadow of Morroc"
	Lv: 132
	Hp: 63900
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1901, 145]
	Def: 199
	Mdef: 35
	Stats: {
		Str: 126
		Agi: 91
		Vit: 63
		Int: 61
		Dex: 114
		Luk: 37
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Angel"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 110
	AttackDelay: 312
	AttackMotion: 480
	DamageMotion: 432
},
{
	Id: 1923
	SpriteName: "G_MOROCC_2"
	Name: "Incarnation of Morroc"
	JName: "Shadow of Morroc"
	Lv: 132
	Hp: 64922
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1625, 159]
	Def: 92
	Mdef: 5
	Stats: {
		Str: 121
		Agi: 86
		Vit: 71
		Int: 65
		Dex: 113
		Luk: 44
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 312
	AttackMotion: 648
	DamageMotion: 300
},
{
	Id: 1924
	SpriteName: "G_MOROCC_3"
	Name: "Incarnation of Morroc"
	JName: "Shadow of Morroc"
	Lv: 133
	Hp: 94800
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1218, 363]
	Def: 111
	Mdef: 37
	Stats: {
		Str: 102
		Agi: 59
		Vit: 55
		Int: 82
		Dex: 147
		Luk: 54
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Undead", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 212
	AttackMotion: 432
	DamageMotion: 360
},
{
	Id: 1925
	SpriteName: "G_MOROCC_4"
	Name: "Incarnation of Morroc"
	JName: "Shadow of Morroc"
	Lv: 134
	Hp: 77389
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1235, 599]
	Def: 109
	Mdef: 54
	Stats: {
		Str: 114
		Agi: 88
		Vit: 62
		Int: 97
		Dex: 164
		Luk: 43
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1536
	AttackMotion: 648
	DamageMotion: 300
},
// God Item Creation (WoE SE); Catacombs
{
	Id: 1926
	SpriteName: "JAKK_H"
	Name: "Jakk"
	JName: "Shameless Jakk"
	Lv: 1
	Hp: 1000
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 1
	Mdef: 1
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1180
	AttackMotion: 480
	DamageMotion: 648
	Drops: {
		Pumpkin_Pie: 2000
		Pumpkin: 10000
		Pumpkin_Head_Crushed: 5000
		Pumpkin_Pie: 1000
		Pumpkin: 5000
		Cookie_Bag: 1000
		Pumpkin_Cake: 1000
	}
},
{
	Id: 1927
	SpriteName: "WHISPER_H"
	Name: "Whisper"
	Lv: 1
	Hp: 1000
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 1
	Mdef: 1
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1960
	AttackMotion: 960
	DamageMotion: 504
	Drops: {
		Pumpkin_Pie: 2000
		Worn_Cloth_Piece: 5000
		Pumpkin: 10000
		Cookie_Bag: 2000
		Pumpkin_Cake: 1000
	}
},
{
	Id: 1928
	SpriteName: "DEVIRUCHI_H"
	Name: "Deviruchi"
	Lv: 46
	Hp: 500
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [5, 5]
	Def: 10
	Mdef: 25
	Stats: {
		Str: 1
		Agi: 69
		Vit: 40
		Int: 55
		Dex: 70
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 980
	AttackMotion: 600
	DamageMotion: 384
	Drops: {
		Petite_DiablOfs_Horn: 3000
		Petite_DiablOfs_Wing: 3000
	}
},
{
	Id: 1929
	SpriteName: "BAPHOMET_I"
	Name: "Great Demon Baphomet"
	JName: "Unsealed Baphomet"
	Lv: 98
	Hp: 4520500
	Sp: 1
	Exp: 4881600
	JExp: 2268000
	AttackRange: 2
	Attack: [5460, 2300]
	Def: 190
	Mdef: 45
	Stats: {
		Str: 140
		Agi: 152
		Vit: 5
		Int: 85
		Dex: 240
		Luk: 95
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 768
	AttackMotion: 768
	DamageMotion: 576
	Drops: {
		Bapho_Doll: 500
		Pauldron: 7000
		Tae_Goo_Lyeon: 5000
		Bloody_Iron_Ball: 100
		Celestial_Robe: 7000
		Holy_Robe: 7000
		Crescent_Scythe: 9000
		Baphomet_Card: 1
	}
},
{
	Id: 1930
	SpriteName: "PIAMETTE"
	Name: "Piamette"
	Lv: 90
	Hp: 3000500
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1650, 1200]
	Def: 56
	Mdef: 35
	Stats: {
		Str: 1
		Agi: 66
		Vit: 5
		Int: 99
		Dex: 144
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 432
	AttackMotion: 768
	DamageMotion: 576
},
{
	Id: 1931
	SpriteName: "WISH_MAIDEN"
	Name: "Wish Maiden"
	Lv: 98
	Hp: 3567700
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [8450, 3300]
	Def: 40
	Mdef: 42
	Stats: {
		Str: 100
		Agi: 120
		Vit: 30
		Int: 120
		Dex: 264
		Luk: 210
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Angel"
	Element: ("Ele_Ghost", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 576
	AttackMotion: 576
	DamageMotion: 480
},
{
	Id: 1932
	SpriteName: "GARDEN_KEEPER"
	Name: "Garden Keeper"
	Lv: 80
	Hp: 100
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Boss: true
		Plant: true
		CanAttack: true
	}
	MoveSpeed: 100
	AttackDelay: 768
	AttackMotion: 768
	DamageMotion: 576
	Drops: {
		Crystal_Key: 9000
	}
},
{
	Id: 1933
	SpriteName: "GARDEN_WATCHER"
	Name: "Garden Watcher"
	Lv: 81
	Hp: 300000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1833, 943]
	Def: 88
	Mdef: 55
	Stats: {
		Str: 30
		Agi: 57
		Vit: 56
		Int: 126
		Dex: 154
		Luk: 114
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Angel"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 432
	AttackMotion: 480
	DamageMotion: 360
},
{
	Id: 1934
	SpriteName: "BLUE_FLOWER"
	Name: "Blue Flower"
	Lv: 98
	Hp: 10500
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [1, 1]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		Boss: true
		Plant: true
	}
	MoveSpeed: 100
	AttackDelay: 768
	AttackMotion: 768
	DamageMotion: 576
},
{
	Id: 1935
	SpriteName: "RED_FLOWER"
	Name: "Red Flower"
	Lv: 98
	Hp: 10500
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [1, 1]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		Boss: true
		Plant: true
	}
	MoveSpeed: 100
	AttackDelay: 768
	AttackMotion: 768
	DamageMotion: 576
},
{
	Id: 1936
	SpriteName: "YELL_FLOWER"
	Name: "Yellow Flower"
	Lv: 98
	Hp: 10500
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [1, 1]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		Boss: true
		Plant: true
	}
	MoveSpeed: 100
	AttackDelay: 768
	AttackMotion: 768
	DamageMotion: 576
},
{
	Id: 1937
	SpriteName: "CONSTANT_"
	Name: "Constant"
	Lv: 108
	Hp: 11000
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [858, 144]
	Def: 92
	Mdef: 82
	Stats: {
		Str: 126
		Agi: 98
		Vit: 62
		Int: 57
		Dex: 109
		Luk: 34
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 720
	AttackMotion: 360
	DamageMotion: 360
},
{
	Id: 1938
	SpriteName: "TREASURE_BOX41"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Goddess_Tear: 10
		Union_Of_Tribe: 500
		Branch_Of_Dead_Tree: 10000
		Oridecon: 4850
		Elunium: 7275
		Pauldron: 40
		Healing_Staff: 150
		Wild_Beast_Claw: 150
	}
},
{
	Id: 1939
	SpriteName: "TREASURE_BOX42"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Valkyrie_Token: 10
		Union_Of_Tribe: 500
		Branch_Of_Dead_Tree: 10000
		Oridecon: 4850
		Elunium: 7275
		Celestial_Robe: 40
		Berdysz: 150
		Inverse_Scale: 150
	}
},
{
	Id: 1940
	SpriteName: "TREASURE_BOX43"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Brynhild_Armor_Piece: 10
		Union_Of_Tribe: 500
		Branch_Of_Dead_Tree: 10000
		Oridecon: 4850
		Elunium: 7275
		Scalpel: 150
		Heart_Breaker: 150
		Blood_Tears: 150
	}
},
{
	Id: 1941
	SpriteName: "TREASURE_BOX44"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Hero_Remains: 10
		Union_Of_Tribe: 500
		Branch_Of_Dead_Tree: 10000
		Oridecon: 4850
		Elunium: 7275
		Platinum_Shotel: 150
		Burning_Bow: 150
		Divine_Cross: 50
	}
},
{
	Id: 1942
	SpriteName: "TREASURE_BOX45"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Andvari_Ring: 10
		Union_Of_Tribe: 500
		Branch_Of_Dead_Tree: 10000
		Oridecon: 4850
		Elunium: 7275
		Muscle_Cutter: 150
		Orc_Archer_Bow: 150
		Icicle_Fist: 150
	}
},
{
	Id: 1943
	SpriteName: "TREASURE_BOX46"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Dusk_Glow: 10
		Union_Of_Tribe: 500
		Branch_Of_Dead_Tree: 10000
		Oridecon: 4850
		Elunium: 7275
		Battle_Hook: 150
		Frozen_Bow: 150
		Combo_Battle_Glove: 150
	}
},
{
	Id: 1944
	SpriteName: "TREASURE_BOX47"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Dawn_Essence: 10
		Union_Of_Tribe: 500
		Branch_Of_Dead_Tree: 10000
		Oridecon: 4850
		Elunium: 7275
		Ahlspiess: 150
		Earth_Bow: 150
		Ulfhedinn: 50
	}
},
{
	Id: 1945
	SpriteName: "TREASURE_BOX48"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Cold_Moonlight: 10
		Union_Of_Tribe: 500
		Branch_Of_Dead_Tree: 10000
		Oridecon: 4850
		Elunium: 7275
		Lich_Bone_Wand: 150
		Gust_Bow: 150
		Seismic_Fist: 150
	}
},
{
	Id: 1946
	SpriteName: "TREASURE_BOX49"
	Name: "Treasure Chest"
	Lv: 99
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Hazy_Starlight: 10
		Union_Of_Tribe: 500
		Branch_Of_Dead_Tree: 10000
		Oridecon: 4850
		Elunium: 7275
		Piercing_Staff: 150
		Drill_Katar: 150
		Mithril_Magic_Cape: 50
	}
},
{
	Id: 1947
	SpriteName: "PIAMETTE_"
	Name: "Piamette"
	Lv: 90
	Hp: 500500
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1650, 1200]
	Def: 56
	Mdef: 35
	Stats: {
		Str: 1
		Agi: 66
		Vit: 5
		Int: 99
		Dex: 144
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 432
	AttackMotion: 768
	DamageMotion: 576
},
{
	Id: 1948
	SpriteName: "G_YGNIZEM"
	Name: "Ygnizem"
	Lv: 136
	Hp: 40327
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1985, 328]
	Def: 224
	Mdef: 8
	Stats: {
		Str: 144
		Agi: 92
		Vit: 86
		Int: 69
		Dex: 149
		Luk: 68
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 145
	AttackDelay: 576
	AttackMotion: 432
	DamageMotion: 288
},
// Battlegrounds Guardians
{
	Id: 1949
	SpriteName: "B_S_GUARDIAN"
	Name: "Camp Guardian"
	Lv: 86
	Hp: 457599
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [8349, 1550]
	Def: 96
	Mdef: 33
	Stats: {
		Str: 110
		Agi: 40
		Vit: 5
		Int: 65
		Dex: 150
		Luk: 65
	}
	ViewRange: 14
	ChaseRange: 16
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 140
	AttackMotion: 384
	DamageMotion: 288
},
{
	Id: 1950
	SpriteName: "B_B_GUARDIAN"
	Name: "Camp Guardian"
	Lv: 80
	Hp: 241212
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 12
	Attack: [2024, 680]
	Def: 64
	Mdef: 62
	Stats: {
		Str: 95
		Agi: 80
		Vit: 5
		Int: 90
		Dex: 198
		Luk: 55
	}
	ViewRange: 14
	ChaseRange: 16
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
},
// Ravies Sister's 'Valyrie's Gift' monsters.
{
	Id: 1951
	SpriteName: "CRYSTAL_6"
	Name: "Crystal"
	Lv: 1
	Hp: 15
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 999
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 190
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Piece_Of_Cake: 3800
		Candy_Striper: 4500
		White_Chocolate: 5000
		Gift_Box_2: 4900
		Banana_Juice: 6500
		Chocolate: 5000
		Yggdrasilberry: 200
	}
},
{
	Id: 1952
	SpriteName: "CRYSTAL_7"
	Name: "Crystal"
	Lv: 1
	Hp: 15
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 999
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 190
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Piece_Of_Cake: 3800
		Candy_Striper: 4500
		White_Chocolate: 5000
		Gift_Box_4: 4900
		Apple_Juice: 6500
		Chocolate: 5000
		Seed_Of_Yggdrasil: 250
	}
},
{
	Id: 1953
	SpriteName: "CRYSTAL_8"
	Name: "Crystal"
	Lv: 1
	Hp: 15
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 999
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 190
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Piece_Of_Cake: 3800
		Candy_Striper: 4500
		White_Chocolate: 5000
		Gift_Box_1: 4900
		Carrot_Juice: 6500
		Chocolate: 5000
		Branch_Of_Dead_Tree: 300
	}
},
{
	Id: 1954
	SpriteName: "CRYSTAL_9"
	Name: "Crystal"
	Lv: 1
	Hp: 15
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 999
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 190
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Piece_Of_Cake: 3800
		Candy_Striper: 4500
		White_Chocolate: 5000
		Gift_Box_3: 4900
		Grape_Juice: 6500
		Chocolate: 5000
		Old_Blue_Box: 100
	}
},
// ?
{
	Id: 1955
	SpriteName: "TREASURE_BOX_I"
	Name: "Treasure Chest"
	Lv: 1
	Hp: 40
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Fools_Day_Box: 1000
		Fools_Day_Box2: 1000
		Halloween_Fragment: 1000
		Jellopy: 5000
		Well_Baked_Cookie: 1000
		Candy_Striper: 1000
	}
},
// Endless Tower
{
	Id: 1956
	SpriteName: "NAGHT_SIEGER"
	Name: "Naght Sieger"
	Lv: 99
	Hp: 5000000
	Sp: 1
	Exp: 4320000
	JExp: 1800000
	AttackRange: 2
	Attack: [7020, 3200]
	Def: 410
	Mdef: 40
	Stats: {
		Str: 190
		Agi: 60
		Vit: 80
		Int: 220
		Dex: 317
		Luk: 30
	}
	ViewRange: 16
	ChaseRange: 16
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 432
	DamageMotion: 504
	Drops: {
		Twin_Edge_B: 9000
		Twin_Edge_R: 9000
		Flame_Manteau: 9000
		Bone_Helm: 9000
		Old_Card_Album: 9000
		Pauldron: 9000
		Turquoise: 9000
		Nahtzigger_Card: 1
	}
},
{
	Id: 1957
	SpriteName: "ENTWEIHEN"
	Name: "Entweihen Crothen"
	Lv: 90
	Hp: 2400500
	Sp: 1
	Exp: 1573000
	JExp: 1215000
	AttackRange: 12
	Attack: [4840, 3600]
	Def: 171
	Mdef: 66
	Stats: {
		Str: 90
		Agi: 70
		Vit: 40
		Int: 160
		Dex: 228
		Luk: 30
	}
	ViewRange: 14
	ChaseRange: 16
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 4)
	Mode: {
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 140
	AttackMotion: 540
	DamageMotion: 576
	Drops: {
		Thorn_Staff: 9000
		Holy_Stick: 9000
		Celestial_Robe: 9000
		Lich_Bone_Wand: 9000
		Old_Card_Album: 9000
		Survival_Rod_: 9000
		Agate: 9000
		Ant_Buyanne_Card: 1
	}
},
{
	Id: 1958
	SpriteName: "G_ENTWEIHEN_R"
	Name: "Thorny Skeleton"
	Lv: 89
	Hp: 5400000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 12
	Attack: [4444, 680]
	Def: 71
	Mdef: 66
	Stats: {
		Str: 1
		Agi: 35
		Vit: 33
		Int: 180
		Dex: 150
		Luk: 30
	}
	ViewRange: 14
	ChaseRange: 16
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 4)
	Mode: {
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 432
	AttackMotion: 288
	DamageMotion: 576
},
{
	Id: 1959
	SpriteName: "G_ENTWEIHEN_H"
	Name: "Thorn of Recovery"
	Lv: 89
	Hp: 350000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 12
	Attack: [2244, 680]
	Def: 71
	Mdef: 66
	Stats: {
		Str: 1
		Agi: 35
		Vit: 33
		Int: 180
		Dex: 150
		Luk: 30
	}
	ViewRange: 14
	ChaseRange: 16
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 4)
	Mode: {
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 2864
	AttackMotion: 288
	DamageMotion: 576
},
{
	Id: 1960
	SpriteName: "G_ENTWEIHEN_M"
	Name: "Thorn of Magic"
	Lv: 89
	Hp: 5400000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 12
	Attack: [2244, 680]
	Def: 71
	Mdef: 66
	Stats: {
		Str: 1
		Agi: 35
		Vit: 33
		Int: 180
		Dex: 150
		Luk: 30
	}
	ViewRange: 14
	ChaseRange: 16
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 4)
	Mode: {
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 1024
	AttackMotion: 288
	DamageMotion: 576
},
{
	Id: 1961
	SpriteName: "G_ENTWEIHEN_S"
	Name: "Thorn of Purification"
	Lv: 89
	Hp: 5400000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 12
	Attack: [2244, 680]
	Def: 71
	Mdef: 66
	Stats: {
		Str: 1
		Agi: 35
		Vit: 33
		Int: 180
		Dex: 150
		Luk: 30
	}
	ViewRange: 14
	ChaseRange: 16
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 4)
	Mode: {
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 2864
	AttackMotion: 288
	DamageMotion: 576
},
// Additional Monsters
{
	Id: 1962
	SpriteName: "ANTONIO_"
	Name: "Christmas Thief"
	Lv: 10
	Hp: 15
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [13, 7]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 50
		Dex: 100
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 100
	AttackDelay: 720
	AttackMotion: 720
	DamageMotion: 432
},
{
	Id: 1963
	SpriteName: "P_CHUNG_E"
	Name: "New Year Doll"
	Lv: 49
	Hp: 23900
	Sp: 0
	Exp: 2156
	JExp: 894
	AttackRange: 1
	Attack: [460, 590]
	Def: 8
	Mdef: 15
	Stats: {
		Str: 38
		Agi: 65
		Vit: 43
		Int: 30
		Dex: 90
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 1728
	AttackMotion: 816
	DamageMotion: 1188
},
{
	Id: 1964
	SpriteName: "NIGHTMARE_T"
	Name: "Nightmare"
	Lv: 30
	Hp: 2000
	Sp: 0
	Exp: 461
	JExp: 348
	AttackRange: 1
	Attack: [100, 200]
	Def: 0
	Mdef: 40
	Stats: {
		Str: 1
		Agi: 100
		Vit: 1
		Int: 1
		Dex: 100
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Ghost", 3)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 150
	AttackDelay: 1816
	AttackMotion: 816
	DamageMotion: 432
	Drops: {
		Blue_Potion: 2000
		Blue_Herb: 3000
		Test_Certificate: 5000
	}
},
{
	Id: 1965
	SpriteName: "M_WILD_ROSE"
	Name: "Wild Rose"
	Lv: 38
	Hp: 4000
	Sp: 50
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [100, 45]
	Def: 0
	Mdef: 15
	Stats: {
		Str: 0
		Agi: 85
		Vit: 15
		Int: 35
		Dex: 65
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 100
	AttackDelay: 964
	AttackMotion: 864
	DamageMotion: 288
},
{
	Id: 1966
	SpriteName: "M_DOPPELGANGER"
	Name: "Doppelganger"
	Lv: 72
	Hp: 7800
	Sp: 200
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [220, 50]
	Def: 30
	Mdef: 20
	Stats: {
		Str: 0
		Agi: 38
		Vit: 30
		Int: 35
		Dex: 78
		Luk: 65
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 100
	AttackDelay: 300
	AttackMotion: 480
	DamageMotion: 288
},
{
	Id: 1967
	SpriteName: "M_YGNIZEM"
	Name: "Ygnizem"
	JName: "Egnigem Cenia"
	Lv: 79
	Hp: 7800
	Sp: 200
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [220, 50]
	Def: 30
	Mdef: 20
	Stats: {
		Str: 0
		Agi: 38
		Vit: 30
		Int: 35
		Dex: 78
		Luk: 65
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 100
	AttackDelay: 300
	AttackMotion: 480
	DamageMotion: 288
},
{
	Id: 1968
	SpriteName: "E_STROUF"
	Name: "Strouf"
	Lv: 48
	Hp: 11990
	Sp: 0
	Exp: 5544
	JExp: 3776
	AttackRange: 1
	Attack: [200, 1050]
	Def: 8
	Mdef: 50
	Stats: {
		Str: 1
		Agi: 40
		Vit: 45
		Int: 92
		Dex: 43
		Luk: 65
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Fish"
	Element: ("Ele_Water", 3)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 150
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 384
	Drops: {
		Fin: 5335
		Oridecon_Stone: 230
		Granpa_Beard: 4
		Trident_: 4
		Feather: 3000
		Skyblue_Jewel: 40
		Gill: 1500
		Strouf_Card: 1
	}
},
{
	Id: 1969
	SpriteName: "E_MARC"
	Name: "Marc"
	Lv: 36
	Hp: 6900
	Sp: 0
	Exp: 1778
	JExp: 1125
	AttackRange: 1
	Attack: [220, 60]
	Def: 8
	Mdef: 10
	Stats: {
		Str: 1
		Agi: 36
		Vit: 36
		Int: 20
		Dex: 56
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 150
	AttackDelay: 1272
	AttackMotion: 72
	DamageMotion: 480
	Drops: {
		Mistic_Frozen: 36
		Gill: 9000
		Oridecon_Stone: 190
		Fin: 1000
		Skyblue_Jewel: 20
		Blue_Gemstone: 200
		White_Herb: 700
		Marc_Card: 1
	}
},
{
	Id: 1970
	SpriteName: "E_OBEAUNE"
	Name: "Obeune"
	JName: "Obeaune"
	Lv: 31
	Hp: 3952
	Sp: 0
	Exp: 1159
	JExp: 733
	AttackRange: 1
	Attack: [141, 24]
	Def: 0
	Mdef: 40
	Stats: {
		Str: 1
		Agi: 31
		Vit: 31
		Int: 55
		Dex: 74
		Luk: 85
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 288
	Drops: {
		Mistic_Frozen: 26
		Heart_Of_Mermaid: 9000
		Fin_Helm: 2
		Saint_Robe_: 20
		Skyblue_Jewel: 20
		Fin: 500
		Witherless_Rose: 60
		Obeaune_Card: 1
	}
},
{
	Id: 1971
	SpriteName: "E_VADON"
	Name: "Vadon"
	Lv: 19
	Hp: 5000
	Sp: 0
	Exp: 243
	JExp: 153
	AttackRange: 1
	Attack: [74, 11]
	Def: 32
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 19
		Vit: 16
		Int: 10
		Dex: 36
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 300
	AttackDelay: 1632
	AttackMotion: 432
	DamageMotion: 540
	Drops: {
		Crystal_Blue: 40
		Nipper: 9000
		Garlet: 3000
		Padded_Armor_: 10
		Solid_Shell: 100
		Elunium_Stone: 80
		Blue_Gemstone: 50
		Vadon_Card: 1
	}
},
{
	Id: 1972
	SpriteName: "E_MARINA"
	Name: "Marina"
	Lv: 21
	Hp: 2087
	Sp: 0
	Exp: 392
	JExp: 252
	AttackRange: 1
	Attack: [84, 22]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 21
		Vit: 21
		Int: 0
		Dex: 36
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Water", 2)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 400
	AttackDelay: 2280
	AttackMotion: 1080
	DamageMotion: 864
	Drops: {
		Single_Cell: 5000
		Sticky_Mucus: 1500
		Crystal_Blue: 90
		Mistic_Frozen: 4
		Blue_Gemstone: 200
		Deadly_Noxious_Herb: 40
		Marina_Card: 1
	}
},
{
	Id: 1973
	SpriteName: "E_PORING"
	Name: "Poring"
	Lv: 99
	Hp: 10
	Sp: 0
	Exp: 2
	JExp: 1
	AttackRange: 1
	Attack: [7, 3]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Gift_Box: 10000
		Old_Blue_Box: 10000
		Old_Violet_Box: 10000
		Old_Card_Album: 5000
		Jellopy: 5000
	}
},
// WoE SE Guild Dungeon
{
	Id: 1974
	SpriteName: "BANSHEE_MASTER"
	Name: "Banshee Master"
	Lv: 118
	Hp: 20320
	Sp: 0
	Exp: 4422
	JExp: 2556
	AttackRange: 2
	Attack: [839, 298]
	Def: 87
	Mdef: 94
	Stats: {
		Str: 121
		Agi: 58
		Vit: 48
		Int: 122
		Dex: 84
		Luk: 44
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 676
	AttackMotion: 504
	DamageMotion: 504
	Drops: {
		Old_White_Cloth: 3000
		Orleans_Gown: 10
		Cursed_Star: 2
		Wool_Scarf: 10
		Mementos: 1500
		Brigan: 5335
		Shadow_Guard: 20
		Banshee_Master_Card: 1
	}
},
{
	Id: 1975
	SpriteName: "BEHOLDER_MASTER"
	Name: "Beholder Master"
	Lv: 106
	Hp: 10135
	Sp: 0
	Exp: 2916
	JExp: 1845
	AttackRange: 6
	Attack: [612, 88]
	Def: 73
	Mdef: 62
	Stats: {
		Str: 103
		Agi: 67
		Vit: 42
		Int: 69
		Dex: 83
		Luk: 32
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 190
	AttackDelay: 336
	AttackMotion: 840
	DamageMotion: 360
	Drops: {
		Prickly_Fruit: 3000
		Anodyne: 100
		Rough_Wind: 100
		Elunium: 10
		Chameleon_Armor: 10
		Linen_Glove: 2
		Old_Blue_Box: 2
		Beholder_Master_Card: 1
	}
},
{
	Id: 1976
	SpriteName: "COBALT_MINERAL"
	Name: "Cobalt Mineral"
	Lv: 113
	Hp: 15800
	Sp: 0
	Exp: 3510
	JExp: 2070
	AttackRange: 1
	Attack: [903, 92]
	Def: 113
	Mdef: 44
	Stats: {
		Str: 110
		Agi: 55
		Vit: 65
		Int: 57
		Dex: 133
		Luk: 41
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 648
	AttackMotion: 480
	DamageMotion: 360
	Drops: {
		Fragment_Of_Crystal: 3000
		Golden_Jewel: 500
		Elemental_Sword: 5
		Oridecon: 80
		Emveretarcon: 800
		Yellow_Gemstone: 100
		Gold: 2
		Cobalt_Mineral_Card: 1
	}
},
{
	Id: 1977
	SpriteName: "HEAVY_METALING"
	Name: "Heavy Metaling"
	Lv: 107
	Hp: 11500
	Sp: 0
	Exp: 3132
	JExp: 1980
	AttackRange: 1
	Attack: [874, 112]
	Def: 134
	Mdef: 65
	Stats: {
		Str: 105
		Agi: 63
		Vit: 86
		Int: 58
		Dex: 67
		Luk: 38
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 384
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Tube: 4000
		Iron_Ore: 1000
		Iron: 500
		Large_Jellopy: 1000
		Screw: 200
		Dagger_Of_Hunter: 5
		Jubilee: 5000
		Heavy_Metaling_Card: 1
	}
},
{
	Id: 1978
	SpriteName: "HELL_APOCALIPS"
	Name: "Hell Apocalips"
	JName: "Hell Vesper"
	Lv: 121
	Hp: 22100
	Sp: 0
	Exp: 4352
	JExp: 3020
	AttackRange: 2
	Attack: [1092, 122]
	Def: 155
	Mdef: 43
	Stats: {
		Str: 135
		Agi: 62
		Vit: 80
		Int: 48
		Dex: 125
		Luk: 37
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1840
	AttackMotion: 1440
	DamageMotion: 384
	Drops: {
		Broken_Steel_Piece: 5335
		Mystery_Piece: 2400
		Wheel: 2200
		Elunium: 5
		Life_Link: 10
		Cardo: 4
		Steel: 2500
		Hell_Apocalips_Card: 1
	}
},
{
	Id: 1979
	SpriteName: "ZAKUDAM"
	Name: "Zukadam"
	JName: "Zakudam"
	Lv: 115
	Hp: 17200
	Sp: 0
	Exp: 3744
	JExp: 2160
	AttackRange: 3
	Attack: [910, 130]
	Def: 106
	Mdef: 92
	Stats: {
		Str: 122
		Agi: 66
		Vit: 70
		Int: 61
		Dex: 92
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 580
	AttackMotion: 288
	DamageMotion: 360
	Drops: {
		Screw: 5000
		Steel: 500
		Oridecon: 200
		Elunium: 200
		Gate_Keeper: 5
		Gate_KeeperDD: 5
		Improved_Tights: 10
		Jakudam_Card: 1
	}
},
{
	Id: 1980
	SpriteName: "KUBLIN"
	Name: "Kubkin"
	JName: "Kublin"
	Lv: 85
	Hp: 633600
	Sp: 0
	Exp: 99000
	JExp: 90000
	AttackRange: 1
	Attack: [1298, 220]
	Def: 22
	Mdef: 10
	Stats: {
		Str: 85
		Agi: 81
		Vit: 25
		Int: 40
		Dex: 66
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 964
	AttackMotion: 648
	DamageMotion: 300
	MvpExp: 45000
	MvpDrops: {
		Pickaxe: 10000
	}
	Drops: {
		Iron: 270
		Scell: 9000
		Oridecon_Stone: 43
		Goblini_Mask: 3
		Starsand_Of_Witch: 2500
		Red_Herb: 1800
	}
},
// Orc Dungeon Instance
{
	Id: 1981
	SpriteName: "I_HIGH_ORC"
	Name: "Safeguard Chief"
	JName: "Orc Elite Guard"
	Lv: 81
	Hp: 44193
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [538, 150]
	Def: 101
	Mdef: 45
	Stats: {
		Str: 75
		Agi: 16
		Vit: 40
		Int: 31
		Dex: 83
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1500
	AttackMotion: 500
	DamageMotion: 1000
},
{
	Id: 1982
	SpriteName: "I_ORC_ARCHER"
	Name: "Orc Sniper"
	JName: "Orc Bowman"
	Lv: 78
	Hp: 54835
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 9
	Attack: [506, 43]
	Def: 67
	Mdef: 31
	Stats: {
		Str: 55
		Agi: 32
		Vit: 24
		Int: 30
		Dex: 150
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1960
	AttackMotion: 620
	DamageMotion: 480
},
{
	Id: 1983
	SpriteName: "I_ORC_SKELETON"
	Name: "Depraved Orc Spirit"
	JName: "Orc Undead"
	Lv: 87
	Hp: 80087
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [546, 263]
	Def: 23
	Mdef: 30
	Stats: {
		Str: 1
		Agi: 31
		Vit: 41
		Int: 93
		Dex: 80
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 130
	AttackDelay: 2420
	AttackMotion: 720
	DamageMotion: 648
},
{
	Id: 1984
	SpriteName: "I_ORC_LADY"
	Name: "Shaman Cargalache"
	JName: "Orc Lady"
	Lv: 80
	Hp: 50058
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [465, 389]
	Def: 56
	Mdef: 10
	Stats: {
		Str: 60
		Agi: 35
		Vit: 52
		Int: 18
		Dex: 95
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 145
	AttackDelay: 1050
	AttackMotion: 900
	DamageMotion: 288
},
// Another World (13.1)
{
	Id: 1985
	SpriteName: "DANDELION"
	Name: "Dandelion Member"
	Lv: 37
	Hp: 45000
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [305, 55]
	Def: 0
	Mdef: 10
	Stats: {
		Str: 28
		Agi: 19
		Vit: 32
		Int: 0
		Dex: 63
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1772
	AttackMotion: 72
	DamageMotion: 384
},
{
	Id: 1986
	SpriteName: "TATACHO"
	Name: "Tatacho"
	Lv: 128
	Hp: 33336
	Sp: 1
	Exp: 4890
	JExp: 3092
	AttackRange: 2
	Attack: [1018, 72]
	Def: 151
	Mdef: 14
	Stats: {
		Str: 119
		Agi: 33
		Vit: 70
		Int: 56
		Dex: 109
		Luk: 33
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 1000
	AttackMotion: 768
	DamageMotion: 360
	Drops: {
		Lunakaligo: 20
		Cello: 10
		Fur: 4000
		Peaked_Hat: 3000
		Delicious_Fish: 3100
		Bradium: 10
		Starsand_Of_Witch: 2500
		Tatacho_Card: 1
	}
},
{
	Id: 1987
	SpriteName: "CENTIPEDE"
	Name: "Centipede"
	Lv: 125
	Hp: 24992
	Sp: 1
	Exp: 4160
	JExp: 2711
	AttackRange: 2
	Attack: [841, 112]
	Def: 143
	Mdef: 25
	Stats: {
		Str: 133
		Agi: 71
		Vit: 69
		Int: 39
		Dex: 120
		Luk: 49
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Poison", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1000
	AttackMotion: 792
	DamageMotion: 336
	Drops: {
		Cold_Heart: 2
		Black_Cat: 2
		Cursed_Lyre: 10
		Short_Leg: 5335
		Zargon: 5000
		Bradium: 10
		Solid_Shell: 2500
		Centipede_Card: 1
	}
},
{
	Id: 1988
	SpriteName: "NEPENTHES"
	Name: "Nepenthes"
	Lv: 114
	Hp: 15099
	Sp: 1
	Exp: 3378
	JExp: 1793
	AttackRange: 7
	Attack: [843, 125]
	Def: 25
	Mdef: 5
	Stats: {
		Str: 94
		Agi: 32
		Vit: 41
		Int: 39
		Dex: 210
		Luk: 59
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Poison", 2)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 1000
	AttackDelay: 500
	AttackMotion: 576
	DamageMotion: 504
	Drops: {
		Mandragora_Cap: 1
		Stem_Of_Nepenthes: 1
		Harp_Of_Nepenthes: 1
		Nepenthes_Bow: 1
		Strong_Bine: 3000
		Yellow_Live: 50
		Stem: 9000
		Nepenthes_Card: 1
	}
},
{
	Id: 1989
	SpriteName: "HILLSRION"
	Name: "Hillslion"
	Lv: 123
	Hp: 21422
	Sp: 1
	Exp: 3782
	JExp: 1698
	AttackRange: 1
	Attack: [630, 102]
	Def: 83
	Mdef: 11
	Stats: {
		Str: 110
		Agi: 69
		Vit: 72
		Int: 41
		Dex: 143
		Luk: 12
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 130
	AttackDelay: 400
	AttackMotion: 780
	DamageMotion: 576
	Drops: {
		Sprint_Shoes: 10
		Horn_Of_Hilthrion: 20
		Horn_Of_Hilsrion: 3000
		Fur: 2000
		Wild_Beast_Claw: 10
		Light_Granule: 1200
		Brigan: 4850
		Hilsrion_Card: 1
	}
},
{
	Id: 1990
	SpriteName: "HARDROCK_MOMMOTH"
	Name: "Hardrock Mammoth"
	Lv: 137
	Hp: 1900944
	Sp: 1
	Exp: 184980
	JExp: 81178
	AttackRange: 2
	Attack: [2328, 774]
	Def: 449
	Mdef: 43
	Stats: {
		Str: 191
		Agi: 66
		Vit: 102
		Int: 49
		Dex: 197
		Luk: 51
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1000
	AttackMotion: 660
	DamageMotion: 588
	Drops: {
		Bone_Head: 100
		Tournament_Shield: 200
		Ivory_Lance: 500
		Ivory_Knife: 400
		Hard_Skin: 9000
		Snowy_Horn: 20
		Elunium: 9000
		Hardrock_Mommos_Card: 1
	}
},
{
	Id: 1991
	SpriteName: "TENDRILRION"
	Name: "Tendrillion"
	Lv: 126
	Hp: 1397451
	Sp: 1
	Exp: 131004
	JExp: 75299
	AttackRange: 2
	Attack: [1403, 1320]
	Def: 132
	Mdef: 123
	Stats: {
		Str: 144
		Agi: 66
		Vit: 77
		Int: 181
		Dex: 203
		Luk: 132
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 500
	AttackMotion: 960
	DamageMotion: 360
	Drops: {
		Leather_Of_Tendrilion: 500
		Death_Guidance: 100
		Eraser: 100
		Horn_Of_Tendrilion: 9000
		Bradium: 10
		Tough_Vines: 5335
		Stiff_Horn: 4850
		Tendrilion_Card: 1
	}
},
{
	Id: 1992
	SpriteName: "CORNUS"
	Name: "Cornus"
	Lv: 120
	Hp: 20722
	Sp: 1
	Exp: 8112
	JExp: 4004
	AttackRange: 2
	Attack: [403, 522]
	Def: 66
	Mdef: 95
	Stats: {
		Str: 51
		Agi: 47
		Vit: 59
		Int: 99
		Dex: 130
		Luk: 77
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 120
	AttackDelay: 1000
	AttackMotion: 624
	DamageMotion: 300
	Drops: {
		Sprint_Mail: 10
		Angelic_Ring: 1
		Mystic_Horn: 4000
		Soft_Feather: 3000
		Bradium: 10
		Snowy_Horn: 2
		Long_Horn: 1
		Cornus_Card: 1
	}
},
{
	Id: 1993
	SpriteName: "NAGA"
	Name: "Naga"
	Lv: 117
	Hp: 21099
	Sp: 1
	Exp: 3826
	JExp: 2212
	AttackRange: 3
	Attack: [685, 102]
	Def: 72
	Mdef: 5
	Stats: {
		Str: 112
		Agi: 65
		Vit: 71
		Int: 32
		Dex: 99
		Luk: 33
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 400
	AttackMotion: 864
	DamageMotion: 432
	Drops: {
		Armor_Of_Naga: 10
		Shield_Of_Naga: 10
		Battle_Fork: 10
		Bradium: 10
		Scales_Shell: 3500
		Shining_Scales: 2000
		Pike_: 20
		Naga_Card: 1
	}
},
{
	Id: 1994
	SpriteName: "LUCIOLA_VESPA"
	Name: "Luciola Vespa"
	Lv: 109
	Hp: 12466
	Sp: 1
	Exp: 2946
	JExp: 1806
	AttackRange: 1
	Attack: [589, 111]
	Def: 59
	Mdef: 55
	Stats: {
		Str: 88
		Agi: 89
		Vit: 55
		Int: 32
		Dex: 143
		Luk: 59
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
		TargetWeak: true
	}
	MoveSpeed: 110
	AttackDelay: 1000
	AttackMotion: 864
	DamageMotion: 432
	Drops: {
		Sprint_Ring: 2
		Bradium: 1
		Black_Wing_Suits: 10
		Honey: 300
		Wind_Of_Verdure: 160
		Royal_Jelly: 200
		Solid_Shell: 3000
		Luciola_Vespa_Card: 1
	}
},
{
	Id: 1995
	SpriteName: "PINGUICULA"
	Name: "Pinguicula"
	Lv: 105
	Hp: 13058
	Sp: 1
	Exp: 2920
	JExp: 2662
	AttackRange: 1
	Attack: [546, 322]
	Def: 46
	Mdef: 77
	Stats: {
		Str: 67
		Agi: 60
		Vit: 64
		Int: 107
		Dex: 77
		Luk: 34
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 700
	AttackMotion: 600
	DamageMotion: 360
	Drops: {
		Pinguicula_Corsage: 1
		Whip_Of_Balance: 10
		Centimental_Leaf: 10
		Sharp_Leaf: 5000
		Great_Leaf: 2000
		Browny_Root: 3000
		Elder_Branch: 1000
		Pinguicula_Card: 1
	}
},
{
	Id: 1996
	SpriteName: "BACSOJIN_T"
	Name: "White Lady"
	Lv: 97
	Hp: 720500
	Sp: 1
	Exp: 801792
	JExp: 542880
	AttackRange: 3
	Attack: [1414, 2036]
	Def: 210
	Mdef: 178
	Stats: {
		Str: 118
		Agi: 244
		Vit: 98
		Int: 126
		Dex: 246
		Luk: 102
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 130
	AttackDelay: 576
	AttackMotion: 960
	DamageMotion: 480
	Drops: {
		White_Snake_Hat: 3
		Exorcize_Sachet: 80
		Purification_Sachet: 80
	}
},
{
	Id: 1997
	SpriteName: "G_TATACHO"
	Name: "Tatacho"
	Lv: 128
	Hp: 33336
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1018, 72]
	Def: 151
	Mdef: 14
	Stats: {
		Str: 119
		Agi: 33
		Vit: 70
		Int: 56
		Dex: 109
		Luk: 33
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 1000
	AttackMotion: 768
	DamageMotion: 360
},
{
	Id: 1998
	SpriteName: "G_HILLSRION"
	Name: "Hillslion"
	Lv: 123
	Hp: 21422
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [630, 102]
	Def: 83
	Mdef: 15
	Stats: {
		Str: 110
		Agi: 69
		Vit: 72
		Int: 41
		Dex: 143
		Luk: 12
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 400
	AttackMotion: 780
	DamageMotion: 576
},
{
	Id: 1999
	SpriteName: "CENTIPEDE_LARVA"
	Name: "Centipede Larva"
	Lv: 118
	Hp: 20667
	Sp: 1
	Exp: 3808
	JExp: 2003
	AttackRange: 2
	Attack: [729, 88]
	Def: 98
	Mdef: 17
	Stats: {
		Str: 103
		Agi: 62
		Vit: 66
		Int: 27
		Dex: 108
		Luk: 44
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1000
	AttackMotion: 792
	DamageMotion: 336
	Drops: {
		Boots_: 9
		Crystal_Jewel__: 50
		Short_Leg: 5335
		Zargon: 5000
		Worm_Peelings: 9000
		Solid_Shell: 2500
		Centipede_Larva_Card: 1
	}
},
// Additional Monsters
{
	Id: 2000
	SpriteName: "M_GAMEMASTER"
	Name: "Male Game Master"
	Lv: 50
	Hp: 7000
	Sp: 250
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [25, 0]
	Def: 10
	Mdef: 10
	Stats: {
		Str: 44
		Agi: 121
		Vit: 1
		Int: 60
		Dex: 75
		Luk: 110
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 300
	AttackMotion: 384
	DamageMotion: 288
},
{
	Id: 2001
	SpriteName: "F_GAMEMASTER"
	Name: "Female Game Master"
	Lv: 50
	Hp: 7000
	Sp: 250
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [25, 0]
	Def: 10
	Mdef: 10
	Stats: {
		Str: 44
		Agi: 121
		Vit: 1
		Int: 60
		Dex: 75
		Luk: 110
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 300
	AttackMotion: 384
	DamageMotion: 288
},
{
	Id: 2002
	SpriteName: "T_SPRING_RABBIT"
	Name: "Talisman Ghost"
	Lv: 50
	Hp: 8000
	Sp: 0
	Exp: 3584
	JExp: 1589
	AttackRange: 1
	Attack: [585, 228]
	Def: 47
	Mdef: 21
	Stats: {
		Str: 45
		Agi: 61
		Vit: 5
		Int: 15
		Dex: 77
		Luk: 90
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 160
	AttackDelay: 1120
	AttackMotion: 552
	DamageMotion: 0
	Drops: {
		Magical_Moon_Cake: 1000
		Plantain: 500
		Rabbit_Skin: 1500
	}
},
{
	Id: 2003
	SpriteName: "T_BACSOJIN"
	Name: "Talisman Ghost"
	Lv: 97
	Hp: 720500
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1414, 2036]
	Def: 210
	Mdef: 178
	Stats: {
		Str: 118
		Agi: 244
		Vit: 98
		Int: 126
		Dex: 246
		Luk: 102
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 160
	AttackDelay: 576
	AttackMotion: 960
	DamageMotion: 480
	Drops: {
		Moon_Cake1: 1000
		Moon_Cake2: 1000
		Moon_Cake15: 1000
		Moon_Cake16: 1000
		Moon_Cake17: 1000
		Moon_Cake18: 1000
		Moon_Cake19: 1000
	}
},
{
	Id: 2004
	SpriteName: "T_WICKED_NYMPH"
	Name: "Talisman Ghost"
	Lv: 63
	Hp: 16029
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [399, 691]
	Def: 20
	Mdef: 75
	Stats: {
		Str: 1
		Agi: 64
		Vit: 12
		Int: 69
		Dex: 100
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 637
	AttackMotion: 1008
	DamageMotion: 360
	Drops: {
		Moon_Cake1: 800
		Moon_Cake2: 800
		Moon_Cake16: 800
		Moon_Cake17: 800
		Moon_Cake18: 800
		Moon_Cake19: 800
		Moon_Cake20: 800
	}
},
{
	Id: 2005
	SpriteName: "T_PLASMA_B"
	Name: "Plasma"
	Lv: 44
	Hp: 8200
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [300, 400]
	Def: 0
	Mdef: 30
	Stats: {
		Str: 1
		Agi: 30
		Vit: 5
		Int: 73
		Dex: 90
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Water", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 608
	AttackMotion: 1440
	DamageMotion: 576
	Drops: {
		Moon_Cake1: 500
		Moon_Cake2: 500
		Moon_Cake15: 500
		Moon_Cake16: 500
		Moon_Cake17: 500
	}
},
{
	Id: 2006
	SpriteName: "T_PLASMA_P"
	Name: "Plasma"
	Lv: 49
	Hp: 5900
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [300, 400]
	Def: 0
	Mdef: 30
	Stats: {
		Str: 1
		Agi: 30
		Vit: 5
		Int: 54
		Dex: 90
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 608
	AttackMotion: 1440
	DamageMotion: 576
	Drops: {
		Moon_Cake15: 500
		Moon_Cake16: 500
		Moon_Cake17: 500
		Moon_Cake18: 500
		Moon_Cake19: 500
	}
},
{
	Id: 2007
	SpriteName: "T_PLASMA_R"
	Name: "Plasma"
	Lv: 43
	Hp: 5700
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [300, 400]
	Def: 0
	Mdef: 30
	Stats: {
		Str: 1
		Agi: 30
		Vit: 5
		Int: 56
		Dex: 90
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 608
	AttackMotion: 1440
	DamageMotion: 576
	Drops: {
		Moon_Cake1: 500
		Moon_Cake2: 500
		Moon_Cake17: 500
		Moon_Cake18: 500
		Moon_Cake19: 500
		Moon_Cake20: 500
	}
},
{
	Id: 2008
	SpriteName: "WOOMAWANG"
	Name: "Woomawang"
	Lv: 82
	Hp: 4000000
	Sp: 0
	Exp: 99000
	JExp: 90000
	AttackRange: 3
	Attack: [8800, 2000]
	Def: 40
	Mdef: 40
	Stats: {
		Str: 60
		Agi: 110
		Vit: 200
		Int: 250
		Dex: 199
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 828
	AttackMotion: 528
	DamageMotion: 192
},
{
	Id: 2009
	SpriteName: "WOOMAWANG_"
	Name: "Woomawang"
	Lv: 82
	Hp: 2000000
	Sp: 0
	Exp: 99000
	JExp: 90000
	AttackRange: 1
	Attack: [17600, 4000]
	Def: 40
	Mdef: 40
	Stats: {
		Str: 60
		Agi: 110
		Vit: 200
		Int: 250
		Dex: 199
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 414
	AttackMotion: 1080
	DamageMotion: 336
	Drops: {
		Cowkings_Nose_Ring: 10000
	}
},
{
	Id: 2010
	SpriteName: "G_MAJORUROS"
	Name: "Ox"
	Lv: 66
	Hp: 500000
	Sp: 0
	Exp: 9
	JExp: 9
	AttackRange: 1
	Attack: [1260, 2000]
	Def: 25
	Mdef: 15
	Stats: {
		Str: 65
		Agi: 50
		Vit: 20
		Int: 20
		Dex: 94
		Luk: 48
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1100
	AttackMotion: 960
	DamageMotion: 780
},
{
	Id: 2011
	SpriteName: "E_GHOUL"
	Name: "Tenacious Ghoul"
	Lv: 40
	Hp: 99999
	Sp: 0
	Exp: 979
	JExp: 560
	AttackRange: 1
	Attack: [420, 80]
	Def: 100
	Mdef: 20
	Stats: {
		Str: 1
		Agi: 20
		Vit: 29
		Int: 0
		Dex: 45
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 2456
	AttackMotion: 912
	DamageMotion: 504
	Drops: {
		Horrendous_Mouth: 6000
		Oridecon_Stone: 110
		White_Herb: 700
		Green_Herb: 800
		Pumpkin_Pie: 100
		Ghoul_Card: 1
	}
},
{
	Id: 2012
	SpriteName: "E_ZOMBIE"
	Name: "Tenacious Zombie"
	Lv: 15
	Hp: 99999
	Sp: 0
	Exp: 45
	JExp: 30
	AttackRange: 1
	Attack: [67, 12]
	Def: 100
	Mdef: 10
	Stats: {
		Str: 1
		Agi: 8
		Vit: 7
		Int: 0
		Dex: 15
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 2612
	AttackMotion: 912
	DamageMotion: 288
	Drops: {
		Decayed_Nail: 9000
		Cardinal_Jewel_: 6
		Sticky_Mucus: 1000
		Horrendous_Mouth: 50
		Pumpkin_Pie: 100
		Zombie_Card: 1
	}
},
// Enter The Unknown (13.2)
{
	Id: 2013
	SpriteName: "DRACO"
	Name: "Draco"
	Lv: 114
	Hp: 20099
	Sp: 1
	Exp: 2594
	JExp: 1205
	AttackRange: 1
	Attack: [778, 110]
	Def: 56
	Mdef: 3
	Stats: {
		Str: 21
		Agi: 58
		Vit: 47
		Int: 34
		Dex: 99
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Dragon"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 250
	AttackDelay: 576
	AttackMotion: 960
	DamageMotion: 504
	Drops: {
		Dragons_Mane: 3000
		Dragons_Skin: 100
		Dragon_Canine: 100
		Dragon_Train: 1000
		Dragon_Scale: 1000
		Honey: 500
		Dragon_Vest: 10
		Draco_Card: 1
	}
},
{
	Id: 2014
	SpriteName: "DRACO_EGG"
	Name: "Draco Egg"
	Lv: 101
	Hp: 100000
	Sp: 1
	Exp: 2400
	JExp: 1500
	AttackRange: 0
	Attack: [1, 1]
	Def: 384
	Mdef: 30
	Stats: {
		Str: 1
		Agi: 1
		Vit: 135
		Int: 92
		Dex: 1
		Luk: 98
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Dragon"
	Element: ("Ele_Earth", 4)
	MoveSpeed: 1000
	AttackDelay: 24
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Piece_Of_Egg_Shell: 5000
		Egg_Shell: 20
		Egg_Of_Draco_Card: 1
	}
},
{
	Id: 2015
	SpriteName: "PINGUICULA_D"
	Name: "Dark Pinguicula"
	Lv: 113
	Hp: 17002
	Sp: 1
	Exp: 2730
	JExp: 2419
	AttackRange: 1
	Attack: [451, 789]
	Def: 59
	Mdef: 35
	Stats: {
		Str: 89
		Agi: 55
		Vit: 55
		Int: 95
		Dex: 92
		Luk: 12
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Poison", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 290
	AttackDelay: 1426
	AttackMotion: 600
	DamageMotion: 360
	Drops: {
		Sharp_Leaf: 5000
		Great_Leaf: 2000
		Browny_Root: 3000
		Karvodailnirol: 10
		Withered_Flower: 1000
		Elder_Branch: 1500
		Rotha_Shield: 10
		Pinguicula_Dark_Card: 1
	}
},
{
	Id: 2016
	SpriteName: "AQUA_ELEMENTAL"
	Name: "Aqua Elemental"
	Lv: 121
	Hp: 33209
	Sp: 1
	Exp: 5402
	JExp: 4155
	AttackRange: 1
	Attack: [862, 450]
	Def: 23
	Mdef: 8
	Stats: {
		Str: 95
		Agi: 61
		Vit: 25
		Int: 25
		Dex: 120
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Water", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 230
	AttackDelay: 504
	AttackMotion: 960
	DamageMotion: 576
	Drops: {
		Crystalized_Teardrop: 1000
		Fluorescent_Liquid: 5000
		Tiny_Waterbottle: 100
		Starsand_Of_Witch: 2500
		Waterdrop_Brooch: 10
		Aqua_Elemental_Card: 1
	}
},
{
	Id: 2017
	SpriteName: "RATA"
	Name: "Rata"
	Lv: 131
	Hp: 58299
	Sp: 1
	Exp: 10122
	JExp: 6119
	AttackRange: 1
	Attack: [1080, 211]
	Def: 81
	Mdef: 46
	Stats: {
		Str: 101
		Agi: 74
		Vit: 71
		Int: 51
		Dex: 147
		Luk: 56
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 792
	AttackMotion: 540
	DamageMotion: 420
	Drops: {
		Unripe_Acorn: 5000
		Acorn: 5000
		Piece_Of_Darkness: 500
		Veteran_Hammer: 100
		Bradium: 10
		Lata_Card: 1
	}
},
{
	Id: 2018
	SpriteName: "DUNEYRR"
	Name: "Duneyrr"
	Lv: 135
	Hp: 63342
	Sp: 1
	Exp: 11180
	JExp: 7298
	AttackRange: 1
	Attack: [1250, 301]
	Def: 144
	Mdef: 28
	Stats: {
		Str: 133
		Agi: 69
		Vit: 72
		Int: 55
		Dex: 165
		Luk: 44
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 672
	AttackMotion: 420
	DamageMotion: 360
	Drops: {
		Carrot: 5000
		Fur: 4000
		Piece_Of_Darkness: 500
		Eyes_Stone_Ring: 1
		Veteran_Sword: 10
		Veteran_Axe: 100
		Bradium: 10
		Duneirre_Card: 1
	}
},
{
	Id: 2019
	SpriteName: "ANCIENT_TREE"
	Name: "Ancient Tree"
	Lv: 144
	Hp: 388933
	Sp: 1
	Exp: 9500
	JExp: 5481
	AttackRange: 1
	Attack: [1182, 76]
	Def: 226
	Mdef: 37
	Stats: {
		Str: 148
		Agi: 72
		Vit: 93
		Int: 58
		Dex: 149
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 290
	AttackDelay: 504
	AttackMotion: 960
	DamageMotion: 576
	Drops: {
		Tough_Vines: 1000
		Great_Leaf: 1000
		Log: 5000
		Dead_Tree_Cane: 10
		Vital_Tree_Shoes: 30
		Elder_Branch: 1000
		Ancient_Tree_Card: 1
	}
},
{
	Id: 2020
	SpriteName: "RHYNCHO"
	Name: "Rhyncho"
	Lv: 139
	Hp: 337220
	Sp: 1
	Exp: 7938
	JExp: 4579
	AttackRange: 1
	Attack: [863, 201]
	Def: 68
	Mdef: 12
	Stats: {
		Str: 119
		Agi: 98
		Vit: 62
		Int: 48
		Dex: 119
		Luk: 46
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 240
	AttackDelay: 576
	AttackMotion: 660
	DamageMotion: 420
	Drops: {
		Fluorescent_Liquid: 5000
		Karvodailnirol: 5
		Crystal_Of_Soul_01: 500
		Ringco_Card: 1
	}
},
{
	Id: 2021
	SpriteName: "PHYLLA"
	Name: "Phylla"
	Lv: 139
	Hp: 345560
	Sp: 1
	Exp: 7938
	JExp: 4579
	AttackRange: 10
	Attack: [825, 176]
	Def: 61
	Mdef: 14
	Stats: {
		Str: 107
		Agi: 85
		Vit: 60
		Int: 58
		Dex: 152
		Luk: 42
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 240
	AttackDelay: 360
	AttackMotion: 780
	DamageMotion: 432
	Drops: {
		Fluorescent_Liquid: 5000
		Detrimindexta: 5
		Crystal_Of_Soul_02: 500
		Pillar_Card: 1
	}
},
{
	Id: 2022
	SpriteName: "S_NYDHOG"
	Name: "Nidhoggr's Shadow"
	JName: "Nidhoggur's Shadow"
	Lv: 117
	Hp: 3452000
	Sp: 0
	Exp: 5616000
	JExp: 3510000
	AttackRange: 2
	Attack: [6656, 3840]
	Def: 60
	Mdef: 75
	Stats: {
		Str: 1
		Agi: 34
		Vit: 62
		Int: 236
		Dex: 263
		Luk: 34
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1596
	AttackMotion: 1620
	DamageMotion: 864
	MvpExp: 2160000
	MvpDrops: {
		Old_Violet_Box: 5500
		Old_Violet_Box: 5000
		Old_Card_Album: 2000
	}
	Drops: {
		Dark_Red_Scale: 5000
		Treasure_Box: 5000
		Bradium: 1000
		Cardo: 500
		Katzbalger: 500
		Pole_Axe: 500
		Piece_Of_Angent_Skin: 2000
		Nidhogg_Shadow_Card: 1
	}
},
{
	Id: 2023
	SpriteName: "DARK_SHADOW"
	Name: "Dark Shadow"
	Lv: 147
	Hp: 434300
	Sp: 1
	Exp: 9918
	JExp: 5721
	AttackRange: 1
	Attack: [1353, 157]
	Def: 140
	Mdef: 44
	Stats: {
		Str: 155
		Agi: 126
		Vit: 89
		Int: 108
		Dex: 213
		Luk: 76
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 220
	AttackDelay: 768
	AttackMotion: 1776
	DamageMotion: 648
	Drops: {
		Piece_Of_Black_Cloth: 5000
		Skul_Ring: 1000
		Dagger_Of_Hunter: 5
		Piece_Of_Darkness: 1000
		Eyes_Stone_Ring: 5
		Bradium_Stonehammer: 10
		Bradium: 10
		Dark_Shadow_Card: 1
	}
},
{
	Id: 2024
	SpriteName: "BRADIUM_GOLEM"
	Name: "Bradium Golem"
	Lv: 133
	Hp: 45739
	Sp: 1
	Exp: 8518
	JExp: 3595
	AttackRange: 1
	Attack: [1307, 103]
	Def: 559
	Mdef: 12
	Stats: {
		Str: 189
		Agi: 25
		Vit: 125
		Int: 45
		Dex: 104
		Luk: 33
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1008
	AttackMotion: 1200
	DamageMotion: 540
	Drops: {
		Stone_Piece: 3000
		Stone_Heart: 5000
		Purified_Bradium: 500
		Bradium_Shield: 10
		Runstone_Rare: 10
		Bradium: 500
		Bradium_Goram_Card: 1
	}
},
{
	Id: 2025
	SpriteName: "MYSTCASE_EVENT"
	Name: "Wild Gift Box"
	Lv: 10
	Hp: 10
	Sp: 0
	Exp: 77
	JExp: 77
	AttackRange: 1
	Attack: [10, 10]
	Def: 1
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 48
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1248
	AttackMotion: 1248
	DamageMotion: 432
	Drops: {
		Chocolate: 5000
		Chocolate: 5000
		HandMade_Chocolate: 1000
		HandMade_Chocolate_: 1000
		White_Chocolate: 1000
		Chocolate_Drink: 1000
		Chocolate_Drink: 10
		Chocolate_Drink: 10
	}
},
{
	Id: 2026
	SpriteName: "DANDELION_"
	Name: "Runaway Dandelion Member"
	Lv: 90
	Hp: 552500
	Sp: 0
	Exp: 49500
	JExp: 22500
	AttackRange: 1
	Attack: [3355, 1250]
	Def: 40
	Mdef: 35
	Stats: {
		Str: 1
		Agi: 66
		Vit: 66
		Int: 45
		Dex: 106
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 230
	AttackDelay: 1772
	AttackMotion: 72
	DamageMotion: 384
	Drops: {
		Old_Frying_Pan: 5000
		Delicious_Fish: 500
		Spoon_Stub: 2000
		Mushroom: 3000
		Outdoor_Cooking_Kits: 500
		Green_Herb: 5000
		Piece_Of_Egg_Shell: 3000
		Tree_Root: 2000
	}
},
{
	Id: 2027
	SpriteName: "G_DARK_SHADOW"
	Name: "Dark Shadow"
	Lv: 147
	Hp: 434300
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1353, 157]
	Def: 140
	Mdef: 44
	Stats: {
		Str: 155
		Agi: 126
		Vit: 89
		Int: 108
		Dex: 213
		Luk: 76
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 220
	AttackDelay: 768
	AttackMotion: 1776
	DamageMotion: 648
},
// Additional Monsters
/*{
	Id: 2028
	SpriteName: "E_MINOROUS"
	Name: "Minorous"
	Lv: 1
	Hp: 741
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [30, 48]
	Def: 4
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 4
		Vit: 6
		Int: 6
		Dex: 5
		Luk: 3
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 2)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1360
	AttackMotion: 960
	DamageMotion: 432
	Drops: {
		Coin: 5000
	}
},
{
	Id: 2029
	SpriteName: "E_MINOROUS_"
	Name: "Minorous"
	Lv: 10
	Hp: 15
	Sp: 0
	Exp: 9
	JExp: 0
	AttackRange: 1
	Attack: [100, 150]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 100
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 2)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1360
	AttackMotion: 960
	DamageMotion: 432
	Drops: {
		Nose_Ring: 10
		Natural_Leather: 2000
		Natural_Leather: 4000
		Natural_Leather: 1000
		Sweet_Potato: 1000
		Poo_Poo_Hat: 1
		Grain: 1000
		Gift_Box: 1
	}
},*/
{
	Id: 2030
	SpriteName: "HIDEN_PRIEST"
	Name: "Hiden Priest"
	JName: "Hidden Priest"
	Lv: 90
	Hp: 240500
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1430, 683]
	Def: 0
	Mdef: 30
	Stats: {
		Str: 1
		Agi: 32
		Vit: 40
		Int: 100
		Dex: 98
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 432
	AttackMotion: 432
	DamageMotion: 360
	Drops: {
		Popes_Cookie: 5000
	}
},
{
	Id: 2031
	SpriteName: "DANDELION_H"
	Name: "Dandelion"
	JName: "Dandelion Executive"
	Lv: 80
	Hp: 120000
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [336, 305]
	Def: 0
	Mdef: 10
	Stats: {
		Str: 1
		Agi: 19
		Vit: 32
		Int: 0
		Dex: 76
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1772
	AttackMotion: 72
	DamageMotion: 384
	Drops: {
		Popes_Cookie: 5000
	}
},
{
	Id: 2032
	SpriteName: "GUARDIAN_FOREST"
	Name: "Forest Guardian"
	Lv: 50
	Hp: 99999
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [3000, 3000]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 100
		Agi: 100
		Vit: 100
		Int: 100
		Dex: 100
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 868
	AttackMotion: 480
	DamageMotion: 120
},
{
	Id: 2033
	SpriteName: "GOLDEN_TULIP"
	Name: "Golden Tulip"
	Lv: 1
	Hp: 100
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 7
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	MoveSpeed: 2000
	AttackDelay: 1
	AttackMotion: 1
	DamageMotion: 1
	Drops: {
		Gold_Tulip: 10000
	}
},
{
	Id: 2034
	SpriteName: "M_DESERT_WOLF_B"
	Name: "Baby Desert Wolf"
	Lv: 9
	Hp: 164
	Sp: 15
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [500, 100]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 9
		Vit: 9
		Int: 5
		Dex: 40
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 100
	AttackDelay: 1600
	AttackMotion: 900
	DamageMotion: 240
},
{
	Id: 2035
	SpriteName: "NIHILITY_ZEM"
	Name: "Nihility Zem"
	JName: "Stone of Futility"
	Lv: 90
	Hp: 200500
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [1, 1]
	Def: 0
	Mdef: 20
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 1
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		Detector: true
	}
	MoveSpeed: 1000
	AttackDelay: 1001
	AttackMotion: 1
	DamageMotion: 1
},
{
	Id: 2036
	SpriteName: "VALKYRIE_N"
	Name: "Valkyrie Randgris"
	JName: "Valkyrie"
	Lv: 98
	Hp: 11780
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1014, 150]
	Def: 16
	Mdef: 20
	Stats: {
		Str: 1
		Agi: 24
		Vit: 39
		Int: 0
		Dex: 86
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 576
	AttackMotion: 576
	DamageMotion: 480
	Drops: {
		Broken_Horn_Pipe: 9000
		Broken_Horn_Pipe: 5000
		Broken_Horn_Pipe: 5000
	}
},
{
	Id: 2037
	SpriteName: "VALKYRIE_A"
	Name: "Valkyrie"
	Lv: 90
	Hp: 5500
	Sp: 15
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [11, 150]
	Def: 16
	Mdef: 20
	Stats: {
		Str: 1
		Agi: 20
		Vit: 40
		Int: 0
		Dex: 24
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 100
	AttackDelay: 576
	AttackMotion: 576
	DamageMotion: 480
},
{
	Id: 2038
	SpriteName: "VALKYRIE_B"
	Name: "Valkyrie"
	Lv: 90
	Hp: 10500
	Sp: 15
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [330, 150]
	Def: 16
	Mdef: 40
	Stats: {
		Str: 1
		Agi: 20
		Vit: 80
		Int: 0
		Dex: 96
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 100
	AttackDelay: 576
	AttackMotion: 576
	DamageMotion: 480
},
{
	Id: 2039
	SpriteName: "EXECUTIONER_R"
	Name: "Executioner"
	Lv: 65
	Hp: 28980
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [599, 380]
	Def: 56
	Mdef: 35
	Stats: {
		Str: 64
		Agi: 85
		Vit: 40
		Int: 25
		Dex: 97
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 768
	AttackMotion: 500
	DamageMotion: 384
},
{
	Id: 2040
	SpriteName: "TIRFING_R"
	Name: "Tirfing"
	JName: "Ogretooth"
	Lv: 71
	Hp: 29900
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1045, 196]
	Def: 48
	Mdef: 35
	Stats: {
		Str: 58
		Agi: 87
		Vit: 55
		Int: 35
		Dex: 158
		Luk: 65
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 816
	AttackMotion: 500
	DamageMotion: 240
},
{
	Id: 2041
	SpriteName: "MYSTELTAINN_R"
	Name: "Mysteltainn"
	Lv: 76
	Hp: 33350
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1276, 280]
	Def: 48
	Mdef: 30
	Stats: {
		Str: 77
		Agi: 139
		Vit: 80
		Int: 35
		Dex: 191
		Luk: 65
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1152
	AttackMotion: 500
	DamageMotion: 240
},
// Mechanic Fixed Autonomous Weapon Platforms
{
	Id: 2042
	SpriteName: "SILVERSNIPER"
	Name: "Silver Sniper"
	Lv: 100
	Hp: 4500
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 9
	Attack: [390, 0]
	Def: 80
	Mdef: 10
	Stats: {
		Str: 10
		Agi: 60
		Vit: 10
		Int: 10
		Dex: 120
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 2000
	AttackDelay: 504
	AttackMotion: 1020
	DamageMotion: 360
	Drops: {
		Steel: 1000
	}
},
{
	Id: 2043
	SpriteName: "MAGICDECOY_FIRE"
	Name: "Magic Decoy"
	Lv: 100
	Hp: 2500
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 7
	Attack: [195, 0]
	Def: 16
	Mdef: 60
	Stats: {
		Str: 10
		Agi: 10
		Vit: 10
		Int: 100
		Dex: 60
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 1)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 2000
	AttackDelay: 504
	AttackMotion: 1020
	DamageMotion: 360
	Drops: {
		Steel: 1000
	}
},
{
	Id: 2044
	SpriteName: "MAGICDECOY_WATER"
	Name: "Magic Decoy"
	Lv: 100
	Hp: 2500
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 7
	Attack: [195, 0]
	Def: 16
	Mdef: 60
	Stats: {
		Str: 10
		Agi: 10
		Vit: 10
		Int: 100
		Dex: 60
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Water", 1)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 2000
	AttackDelay: 504
	AttackMotion: 1020
	DamageMotion: 360
	Drops: {
		Steel: 1000
	}
},
{
	Id: 2045
	SpriteName: "MAGICDECOY_EARTH"
	Name: "Magic Decoy"
	Lv: 100
	Hp: 2500
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 7
	Attack: [195, 0]
	Def: 16
	Mdef: 60
	Stats: {
		Str: 10
		Agi: 10
		Vit: 10
		Int: 100
		Dex: 60
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 1)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 2000
	AttackDelay: 504
	AttackMotion: 1020
	DamageMotion: 360
	Drops: {
		Steel: 1000
	}
},
{
	Id: 2046
	SpriteName: "MAGICDECOY_WIND"
	Name: "Magic Decoy"
	Lv: 100
	Hp: 2500
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 7
	Attack: [195, 0]
	Def: 16
	Mdef: 60
	Stats: {
		Str: 10
		Agi: 10
		Vit: 10
		Int: 100
		Dex: 60
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Wind", 1)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 2000
	AttackDelay: 504
	AttackMotion: 1020
	DamageMotion: 360
	Drops: {
		Steel: 1000
	}
},
// Additional Monsters
{
	Id: 2047
	SpriteName: "W_NAGA"
	Name: "Naga"
	Lv: 99
	Hp: 46708
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [640, 113]
	Def: 61
	Mdef: 15
	Stats: {
		Str: 113
		Agi: 42
		Vit: 30
		Int: 18
		Dex: 146
		Luk: 13
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 400
	AttackMotion: 864
	DamageMotion: 432
	Drops: {
		Scale_Of_Snakes: 5000
	}
},
{
	Id: 2048
	SpriteName: "W_PINGUICULA_D"
	Name: "Dark Pinguicula"
	Lv: 99
	Hp: 8780
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [697, 120]
	Def: 24
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 23
		Vit: 22
		Int: 1
		Dex: 107
		Luk: 2
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Poison", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 290
	AttackDelay: 1426
	AttackMotion: 600
	DamageMotion: 360
	Drops: {
		Withered_Flower: 1000
	}
},
{
	Id: 2049
	SpriteName: "W_BRADIUM_GOLEM"
	Name: "Bradium Golem"
	Lv: 99
	Hp: 45200
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [936, 166]
	Def: 125
	Mdef: 18
	Stats: {
		Str: 0
		Agi: 10
		Vit: 82
		Int: 2
		Dex: 72
		Luk: 12
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1008
	AttackMotion: 1200
	DamageMotion: 540
	Drops: {
		Purified_Bradium: 500
	}
},
{
	Id: 2050
	SpriteName: "W_AQUA_ELEMENTAL"
	Name: "Aqua Elemental"
	Lv: 99
	Hp: 33220
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [547, 95]
	Def: 13
	Mdef: 12
	Stats: {
		Str: 1
		Agi: 23
		Vit: 19
		Int: 8
		Dex: 92
		Luk: 2
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Water", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 230
	AttackDelay: 504
	AttackMotion: 960
	DamageMotion: 576
	Drops: {
		Tiny_Waterbottle: 100
	}
},
{
	Id: 2051
	SpriteName: "E_BAPHOMET"
	Name: "Baphomet"
	Lv: 1
	Hp: 1
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 2
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 768
	AttackMotion: 768
	DamageMotion: 576
	Drops: {
		Fools_Day_Box: 5000
		Fools_Day_Box2: 5000
	}
},
{
	Id: 2052
	SpriteName: "E_DARKLORD"
	Name: "Dark Lord"
	Lv: 1
	Hp: 1
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 2
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 868
	AttackMotion: 768
	DamageMotion: 480
	MvpExp: 1005
	Drops: {
		Fools_Day_Box: 5000
		Fools_Day_Box2: 5000
	}
},
{
	Id: 2053
	SpriteName: "NC_DIMIK"
	Name: "Dimik"
	Lv: 77
	Hp: 10000
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 5
	Attack: [1144, 840]
	Def: 72
	Mdef: 28
	Stats: {
		Str: 15
		Agi: 35
		Vit: 40
		Int: 15
		Dex: 144
		Luk: 42
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 576
	AttackMotion: 720
	DamageMotion: 432
	Drops: {
		Old_Steel_Plate: 2000
		Transparent_Plate01: 50
		Steel: 300
		Mystery_Piece: 300
		Dusk: 5
		Oridecon: 10
		Imperial_Cooking_Kits: 50
		Dimik_Card: 1
	}
},
/*{
	Id: 2054
	SpriteName: "E_BATHORY"
	Name: "Bathory"
	Lv: 86
	Hp: 5242
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [229, 325]
	Def: 61
	Mdef: 41
	Stats: {
		Str: 66
		Agi: 38
		Vit: 40
		Int: 55
		Dex: 56
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1504
	AttackMotion: 840
	DamageMotion: 900
},
{
	Id: 2055
	SpriteName: "E_INCUBUS"
	Name: "Incubus"
	Lv: 75
	Hp: 17281
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [0, 0]
	Def: 58
	Mdef: 46
	Stats: {
		Str: 1
		Agi: 97
		Vit: 95
		Int: 103
		Dex: 89
		Luk: 87
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 850
	AttackMotion: 600
	DamageMotion: 336
},
{
	Id: 2056
	SpriteName: "E_ZHERLTHSH"
	Name: "Zherlthsh"
	Lv: 63
	Hp: 18300
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 10
	Mdef: 15
	Stats: {
		Str: 70
		Agi: 85
		Vit: 40
		Int: 30
		Dex: 125
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 800
	AttackMotion: 2112
	DamageMotion: 768
},*/
{
	Id: 2057
	SpriteName: "E_CRAMP"
	Name: "Suspicious Mouse"
	JName: "Sticky Rat"
	Lv: 1
	Hp: 4720
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 100
	Mdef: 100
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Poison", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1000
	AttackMotion: 500
	DamageMotion: 1000
},
{
	Id: 2058
	SpriteName: "M_MIMIC"
	Name: "Mimic"
	Lv: 51
	Hp: 6120
	Sp: 182
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [800, 150]
	Def: 10
	Mdef: 40
	Stats: {
		Str: 44
		Agi: 121
		Vit: 1
		Int: 60
		Dex: 75
		Luk: 110
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 972
	AttackMotion: 500
	DamageMotion: 288
},
{
	Id: 2059
	SpriteName: "M_DISGUISE"
	Name: "Disguise"
	Lv: 55
	Hp: 7543
	Sp: 180
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [526, 167]
	Def: 18
	Mdef: 29
	Stats: {
		Str: 0
		Agi: 72
		Vit: 45
		Int: 35
		Dex: 48
		Luk: 65
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Earth", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 147
	AttackDelay: 516
	AttackMotion: 768
	DamageMotion: 384
},
{
	Id: 2060
	SpriteName: "M_ALICE"
	Name: "Alice"
	Lv: 62
	Hp: 10000
	Sp: 221
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [700, 150]
	Def: 5
	Mdef: 5
	Stats: {
		Str: 64
		Agi: 64
		Vit: 42
		Int: 85
		Dex: 100
		Luk: 130
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 502
	AttackMotion: 1999
	DamageMotion: 480
},
/*{
	Id: 2061
	SpriteName: "E_STAPO"
	Name: "Stapo"
	Lv: 23
	Hp: 666
	Sp: 0
	Exp: 299
	JExp: 199
	AttackRange: 1
	Attack: [135, 370]
	Def: 90
	Mdef: 5
	Stats: {
		Str: 12
		Agi: 11
		Vit: 15
		Int: 12
		Dex: 23
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 936
	AttackMotion: 792
	DamageMotion: 432
	Drops: {
		Jellopy: 1000
		Jubilee: 1000
		Apple: 1000
		Large_Jellopy: 100
		Yellow_Live: 10
		Seismic_Fist: 3
		Lost_Card2: 5000
		Stapo_Card: 1
	}
},
{
	Id: 2062
	SpriteName: "E_POPORING"
	Name: "Poporing"
	Lv: 14
	Hp: 344
	Sp: 0
	Exp: 73
	JExp: 40
	AttackRange: 1
	Attack: [59, 72]
	Def: 0
	Mdef: 10
	Stats: {
		Str: 1
		Agi: 14
		Vit: 14
		Int: 0
		Dex: 19
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Sticky_Mucus: 5500
		Garlet: 1500
		Green_Herb: 500
		Grape: 200
		Lost_Card3: 2000
		Main_Gauche: 5
		Apple: 250
		Poporing_Card: 1
	}
},
{
	Id: 2063
	SpriteName: "E_DROPS"
	Name: "Drops"
	Lv: 3
	Hp: 55
	Sp: 0
	Exp: 4
	JExp: 3
	AttackRange: 1
	Attack: [10, 13]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 3
		Vit: 3
		Int: 0
		Dex: 12
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1372
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Jellopy: 7500
		Rod_: 80
		Sticky_Mucus: 500
		Apple: 1100
		Empty_Bottle: 1700
		Lost_Card1: 2000
		Orange_Juice: 20
		Drops_Card: 1
	}
},
{
	Id: 2064
	SpriteName: "E_MAGMARING"
	Name: "Magmaring"
	Lv: 40
	Hp: 5300
	Sp: 0
	Exp: 1899
	JExp: 1719
	AttackRange: 1
	Attack: [550, 700]
	Def: 25
	Mdef: 24
	Stats: {
		Str: 40
		Agi: 60
		Vit: 30
		Int: 10
		Dex: 60
		Luk: 17
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1472
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Burning_Heart: 3000
		Elunium_Stone: 34
		Lost_Card1: 2000
		Lost_Card2: 2000
		Lost_Card3: 2000
		Lost_Card4: 2000
		Magmaring_Card: 1
	}
},
{
	Id: 2065
	SpriteName: "E_METALING"
	Name: "Metaling"
	Lv: 26
	Hp: 889
	Sp: 0
	Exp: 443
	JExp: 224
	AttackRange: 1
	Attack: [135, 270]
	Def: 5
	Mdef: 3
	Stats: {
		Str: 30
		Agi: 15
		Vit: 10
		Int: 18
		Dex: 35
		Luk: 2
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 384
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Tube: 4000
		Lost_Card4: 4000
		Iron: 500
		Large_Jellopy: 1000
		Screw: 200
		Crimson_Bolt_: 5
		Jubilee: 5000
		Metaling_Card: 1
	}
},*/
{
	Id: 2066
	SpriteName: "E_ANOPHELES"
	Name: "Anopheles"
	Lv: 5
	Hp: 50
	Sp: 1
	Exp: 1
	JExp: 1
	AttackRange: 1
	Attack: [140, 158]
	Def: 8
	Mdef: 10
	Stats: {
		Str: 1
		Agi: 30
		Vit: 1
		Int: 1
		Dex: 30
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 1084
	AttackMotion: 2304
	DamageMotion: 576
	MvpDrops: {
		Mosquito_Coil: 10000
	}
	Drops: {
		Wing_Of_Fly: 1000
		Anopheles_Card: 1
	}
},
{
	Id: 2067
	SpriteName: "E_ANOPHELES_"
	Name: "Anopheles"
	Lv: 3
	Hp: 500
	Sp: 1
	Exp: 1
	JExp: 1
	AttackRange: 1
	Attack: [40, 58]
	Def: 8
	Mdef: 100
	Stats: {
		Str: 1
		Agi: 100
		Vit: 1
		Int: 1
		Dex: 100
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 3)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 170
	AttackDelay: 1084
	AttackMotion: 2304
	DamageMotion: 576
	Drops: {
		Wing_Of_Fly: 1000
		Animal_Blood: 10
		Anopheles_Card: 1
	}
},
// Brasilis
{
	Id: 2068
	SpriteName: "BOITATA"
	Name: "Boitata"
	Lv: 93
	Hp: 1283990
	Sp: 1
	Exp: 89146
	JExp: 77950
	AttackRange: 2
	Attack: [1378, 962]
	Def: 32
	Mdef: 66
	Stats: {
		Str: 140
		Agi: 99
		Vit: 30
		Int: 109
		Dex: 120
		Luk: 90
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1152
	AttackMotion: 1152
	DamageMotion: 576
	DamageTakenRate: 10
	MvpExp: 37144
	MvpDrops: {
		Old_Violet_Box: 5500
		Old_Violet_Box: 5000
		Old_Card_Album: 2000
	}
	Drops: {
		Treasure_Box: 5000
		Hurricane_Fury: 100
		Hunting_Spear: 100
		Yggdrasilberry: 500
		Elunium: 1000
		Oridecon: 1000
		Hell_Fire: 100
	}
},
{
	Id: 2069
	SpriteName: "IARA"
	Name: "Iara"
	Lv: 79
	Hp: 5890
	Sp: 1
	Exp: 1176
	JExp: 890
	AttackRange: 1
	Attack: [188, 99]
	Def: 0
	Mdef: 76
	Stats: {
		Str: 69
		Agi: 14
		Vit: 41
		Int: 60
		Dex: 83
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 384
	AttackMotion: 672
	DamageMotion: 288
	Drops: {
		Mistic_Frozen: 5
		Heart_Of_Mermaid: 9000
		Fin: 500
		Witherless_Rose: 50
		Crystal_Mirror: 100
		Illusion_Flower: 10
		Mage_Coat: 1
	}
},
{
	Id: 2070
	SpriteName: "PIRANHA"
	Name: "Piranha"
	Lv: 75
	Hp: 4522
	Sp: 1
	Exp: 988
	JExp: 1023
	AttackRange: 1
	Attack: [200, 41]
	Def: 7
	Mdef: 12
	Stats: {
		Str: 69
		Agi: 45
		Vit: 30
		Int: 30
		Dex: 79
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Fish"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 768
	AttackMotion: 480
	DamageMotion: 864
	Drops: {
		Gill: 600
		Mistic_Frozen: 5
		Sharp_Scale: 9000
		Tooth_Of_Ancient_Fish: 500
		Lip_Of_Ancient_Fish: 500
		Scalpel: 1
		Fishermans_Dagger: 5
	}
},
{
	Id: 2071
	SpriteName: "HEADLESS_MULE"
	Name: "Headless Mule"
	Lv: 80
	Hp: 6620
	Sp: 1
	Exp: 1112
	JExp: 1120
	AttackRange: 1
	Attack: [231, 57]
	Def: 33
	Mdef: 44
	Stats: {
		Str: 68
		Agi: 51
		Vit: 50
		Int: 35
		Dex: 80
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1216
	AttackMotion: 816
	DamageMotion: 432
	Drops: {
		Burning_Horse_Shoe: 4000
		Plate_Armor_: 5
		Burning_Heart: 1000
		Hot_Hair: 1000
		Inverse_Scale: 1
		Plate_Armor_: 1
		Jamadhar_: 2
	}
},
{
	Id: 2072
	SpriteName: "JAGUAR"
	Name: "Jaguar"
	Lv: 71
	Hp: 3914
	Sp: 1
	Exp: 792
	JExp: 512
	AttackRange: 1
	Attack: [211, 42]
	Def: 44
	Mdef: 15
	Stats: {
		Str: 69
		Agi: 30
		Vit: 45
		Int: 5
		Dex: 71
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 576
	AttackMotion: 1248
	DamageMotion: 480
	Drops: {
		Leopard_Skin: 3000
		Leopard_Talon: 2000
		Animals_Skin: 1000
		Oridecon_Stone: 40
		Claw_: 1
	}
},
{
	Id: 2073
	SpriteName: "TOUCAN"
	Name: "Toucan"
	Lv: 70
	Hp: 3640
	Sp: 1
	Exp: 692
	JExp: 544
	AttackRange: 1
	Attack: [174, 35]
	Def: 12
	Mdef: 12
	Stats: {
		Str: 54
		Agi: 14
		Vit: 40
		Int: 35
		Dex: 48
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 155
	AttackDelay: 960
	AttackMotion: 1440
	DamageMotion: 960
	Drops: {
		Talon: 3000
		Cyfar: 1000
		Blue_Herb: 50
		Yellow_Herb: 100
		Flower_Ring: 200
	}
},
{
	Id: 2074
	SpriteName: "CURUPIRA"
	Name: "Curupira"
	Lv: 68
	Hp: 3096
	Sp: 1
	Exp: 652
	JExp: 450
	AttackRange: 1
	Attack: [147, 35]
	Def: 42
	Mdef: 12
	Stats: {
		Str: 32
		Agi: 23
		Vit: 38
		Int: 20
		Dex: 50
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 250
	AttackDelay: 528
	AttackMotion: 480
	DamageMotion: 384
	Drops: {
		Meat: 3000
		Elunium_Stone: 250
		Emveretarcon: 10
		Tiger_Skin_Panties: 500
		Mace_: 100
	}
},
// Event MVP
{
	Id: 2075
	SpriteName: "E_VADON_X"
	Name: "Vadon"
	Lv: 1
	Hp: 700
	Sp: 0
	Exp: 32000
	JExp: 26000
	AttackRange: 5
	Attack: [4620, 7220]
	Def: 42
	Mdef: 32
	Stats: {
		Str: 200
		Agi: 1
		Vit: 30
		Int: 35
		Dex: 222
		Luk: 32
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 150
	AttackDelay: 1632
	AttackMotion: 432
	DamageMotion: 540
	Drops: {
		Nipper: 5000
		Broken_Steel_Piece: 3000
		Wheel: 3000
		Oridecon: 1000
		Elunium: 500
		Treasure_Box: 50
		Old_Violet_Box: 10
		Vadon_Card: 1
	}
},
// Additional Monsters
{
	Id: 2076
	SpriteName: "S_WIND_GHOST"
	Name: "Shadow of Deception"
	Lv: 105
	Hp: 190800
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [601, 495]
	Def: 64
	Mdef: 51
	Stats: {
		Str: 62
		Agi: 44
		Vit: 25
		Int: 105
		Dex: 102
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1056
	AttackMotion: 1056
	DamageMotion: 336
},
{
	Id: 2077
	SpriteName: "S_SKOGUL"
	Name: "Shadow of Illusion"
	Lv: 105
	Hp: 244400
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1183, 256]
	Def: 72
	Mdef: 15
	Stats: {
		Str: 100
		Agi: 88
		Vit: 63
		Int: 99
		Dex: 114
		Luk: 37
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 190
	AttackDelay: 720
	AttackMotion: 384
	DamageMotion: 480
},
{
	Id: 2078
	SpriteName: "S_SUCCUBUS"
	Name: "Shadow of Pleasure"
	Lv: 105
	Hp: 206660
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1144, 324]
	Def: 76
	Mdef: 48
	Stats: {
		Str: 100
		Agi: 70
		Vit: 45
		Int: 110
		Dex: 122
		Luk: 85
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 155
	AttackDelay: 1306
	AttackMotion: 1056
	DamageMotion: 288
},
{
	Id: 2079
	SpriteName: "CRYSTAL_H"
	Name: "Mother Crystal"
	Lv: 77
	Hp: 7777777
	Sp: 1
	Exp: 4155554
	JExp: 3777777
	AttackRange: 0
	Attack: [19555, 7777]
	Def: 77
	Mdef: 77
	Stats: {
		Str: 1
		Agi: 7
		Vit: 7
		Int: 77
		Dex: 92
		Luk: 77
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 177
	AttackDelay: 1152
	AttackMotion: 1152
	DamageMotion: 288
},
{
	Id: 2080
	SpriteName: "CRYSTAL_L"
	Name: "Large Crystal"
	Lv: 7
	Hp: 77
	Sp: 1
	Exp: 7
	JExp: 7
	AttackRange: 0
	Attack: [7, 7]
	Def: 7
	Mdef: 7
	Stats: {
		Str: 1
		Agi: 7
		Vit: 7
		Int: 7
		Dex: 7
		Luk: 77
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 177
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
{
	Id: 2081
	SpriteName: "E_HYDRA"
	Name: "Suspicious Hydra"
	JName: "Strange Hydra"
	Lv: 34
	Hp: 854
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 7
	Attack: [1, 1]
	Def: 100
	Mdef: 100
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Water", 2)
	MoveSpeed: 1000
	AttackDelay: 800
	AttackMotion: 432
	DamageMotion: 600
},
{
	Id: 2082
	SpriteName: "G_PIRANHA"
	Name: "Piranha"
	Lv: 75
	Hp: 4522
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [200, 41]
	Def: 7
	Mdef: 12
	Stats: {
		Str: 69
		Agi: 45
		Vit: 30
		Int: 30
		Dex: 79
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Fish"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 768
	AttackMotion: 480
	DamageMotion: 864
},
// El Dicastes (13.3)
{
	Id: 2083
	SpriteName: "HORN_SCARABA"
	Name: "Scaraba"
	JName: "Uni Horn Scaraba"
	Lv: 130
	Hp: 51100
	Sp: 1
	Exp: 5220
	JExp: 4011
	AttackRange: 1
	Attack: [886, 91]
	Def: 135
	Mdef: 20
	Stats: {
		Str: 44
		Agi: 59
		Vit: 55
		Int: 21
		Dex: 99
		Luk: 33
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 384
	AttackMotion: 672
	DamageMotion: 360
	Drops: {
		Singlehorn_Helm: 6500
		Imperial_Spear: 10
		Runstone_Ancient: 10
		Elder_Branch: 100
		Yellow_Live: 100
		Scaraba_Card: 1
	}
},
{
	Id: 2084
	SpriteName: "HORN_SCARABA2"
	Name: "Scaraba"
	JName: "Horn Scaraba"
	Lv: 134
	Hp: 58900
	Sp: 1
	Exp: 5780
	JExp: 4549
	AttackRange: 1
	Attack: [1935, 105]
	Def: 150
	Mdef: 38
	Stats: {
		Str: 44
		Agi: 68
		Vit: 72
		Int: 45
		Dex: 126
		Luk: 51
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 150
	AttackDelay: 336
	AttackMotion: 360
	DamageMotion: 360
	Drops: {
		Twinhorn_Helm: 6500
		Black_Wing: 10
		Runstone_Ancient: 10
		Elder_Branch: 100
		Yellow_Live: 100
		Scaraba_Card: 1
	}
},
{
	Id: 2085
	SpriteName: "ANTLER_SCARABA"
	Name: "Antler Scaraba"
	Lv: 136
	Hp: 62600
	Sp: 1
	Exp: 6330
	JExp: 5255
	AttackRange: 1
	Attack: [1418, 410]
	Def: 155
	Mdef: 102
	Stats: {
		Str: 23
		Agi: 99
		Vit: 59
		Int: 129
		Dex: 137
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 504
	AttackMotion: 624
	DamageMotion: 360
	Drops: {
		Antler_Helm: 6500
		Green_Whistle: 10
		Runstone_Ancient: 10
		Elder_Branch: 100
		Yellow_Live: 100
		Scaraba_Card: 1
	}
},
{
	Id: 2086
	SpriteName: "RAKE_SCARABA"
	Name: "Rake Scaraba"
	Lv: 139
	Hp: 67700
	Sp: 1
	Exp: 6990
	JExp: 5995
	AttackRange: 1
	Attack: [1645, 112]
	Def: 250
	Mdef: 70
	Stats: {
		Str: 90
		Agi: 66
		Vit: 145
		Int: 52
		Dex: 168
		Luk: 77
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 588
	AttackMotion: 768
	DamageMotion: 480
	Drops: {
		Rakehorn_Helm: 6500
		Red_Ether_Bag: 10
		Runstone_Ancient: 10
		Bone_Plate: 100
		Yellow_Live: 100
		Scaraba_Card: 1
	}
},
{
	Id: 2087
	SpriteName: "QUEEN_SCARABA"
	Name: "Queen Scaraba"
	Lv: 140
	Hp: 2441600
	Sp: 1
	Exp: 533286
	JExp: 212200
	AttackRange: 3
	Attack: [2834, 1240]
	Def: 350
	Mdef: 220
	Stats: {
		Str: 100
		Agi: 88
		Vit: 82
		Int: 149
		Dex: 317
		Luk: 144
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 864
	AttackMotion: 1000
	DamageMotion: 360
	DamageTakenRate: 10
	MvpExp: 205110
	MvpDrops: {
		Old_Card_Album: 5500
		Old_Card_Album: 5000
		Old_Card_Album: 2000
	}
	Drops: {
		Queen_Wing_Piece: 7000
		Alca_Bringer: 1000
		Meteo_Plate_Armor: 1000
		Chrome_Twohand_Sword: 400
		Mystic_Bow: 500
		Q_Scaraba_Card: 1
	}
},
{
	Id: 2088
	SpriteName: "HORN_SCARABA_EGG"
	Name: "Scaraba Egg"
	JName: "Uni Horn Scaraba Egg"
	Lv: 125
	Hp: 63000
	Sp: 1
	Exp: 5200
	JExp: 3000
	AttackRange: 0
	Attack: [1, 1]
	Def: 230
	Mdef: 55
	Stats: {
		Str: 1
		Agi: 1
		Vit: 130
		Int: 34
		Dex: 1
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Detector: true
	}
	MoveSpeed: 2000
	AttackDelay: 96
	AttackMotion: 1
	DamageMotion: 480
	Drops: {
		Piece_Of_Egg_Shell: 5000
		Honey: 100
		Elunium: 10
	}
},
{
	Id: 2089
	SpriteName: "HORN_SCARABA2_EGG"
	Name: "Scaraba Egg"
	JName: "Horn Scaraba Egg"
	Lv: 126
	Hp: 66000
	Sp: 1
	Exp: 5200
	JExp: 3000
	AttackRange: 0
	Attack: [1, 1]
	Def: 250
	Mdef: 62
	Stats: {
		Str: 1
		Agi: 1
		Vit: 130
		Int: 48
		Dex: 1
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Detector: true
	}
	MoveSpeed: 2000
	AttackDelay: 96
	AttackMotion: 1
	DamageMotion: 480
	Drops: {
		Piece_Of_Egg_Shell: 5000
		Honey: 100
		Elunium: 10
	}
},
{
	Id: 2090
	SpriteName: "ANTLER_SCARABA_EGG"
	Name: "Antler Scaraba Egg"
	Lv: 127
	Hp: 69000
	Sp: 1
	Exp: 5200
	JExp: 3000
	AttackRange: 0
	Attack: [1, 1]
	Def: 235
	Mdef: 180
	Stats: {
		Str: 1
		Agi: 1
		Vit: 130
		Int: 82
		Dex: 1
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Detector: true
	}
	MoveSpeed: 2000
	AttackDelay: 96
	AttackMotion: 1
	DamageMotion: 480
	Drops: {
		Piece_Of_Egg_Shell: 5000
		Honey: 100
		Elunium: 10
	}
},
{
	Id: 2091
	SpriteName: "RAKE_SCARABA_EGG"
	Name: "Rake Scaraba Egg"
	Lv: 128
	Hp: 72000
	Sp: 1
	Exp: 5200
	JExp: 3000
	AttackRange: 0
	Attack: [1, 1]
	Def: 290
	Mdef: 44
	Stats: {
		Str: 1
		Agi: 1
		Vit: 130
		Int: 39
		Dex: 1
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Detector: true
	}
	MoveSpeed: 2000
	AttackDelay: 96
	AttackMotion: 1
	DamageMotion: 480
	Drops: {
		Piece_Of_Egg_Shell: 5000
		Honey: 100
		Elunium: 10
		Imperial_Guard: 500
	}
},
{
	Id: 2092
	SpriteName: "DOLOMEDES"
	Name: "Dolomedes"
	Lv: 132
	Hp: 54591
	Sp: 1
	Exp: 6702
	JExp: 5154
	AttackRange: 3
	Attack: [1016, 286]
	Def: 112
	Mdef: 52
	Stats: {
		Str: 149
		Agi: 34
		Vit: 82
		Int: 55
		Dex: 143
		Luk: 67
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 360
	AttackMotion: 360
	DamageMotion: 600
	Drops: {
		Small_Bradium: 3000
		White_Spider_Limb: 5000
		Purified_Bradium: 500
		Bradium_Ring: 10
		Runstone_Rare: 10
		Bradium: 500
		Stem_Whip: 10
		Dolomedes_Card: 1
	}
},
{
	Id: 2093
	SpriteName: "BOTARING"
	Name: "Botaring"
	Lv: 15
	Hp: 15
	Sp: 1
	Exp: 7
	JExp: 7
	AttackRange: 2
	Attack: [20, 20]
	Def: 20
	Mdef: 20
	Stats: {
		Str: 10
		Agi: 10
		Vit: 10
		Int: 10
		Dex: 77
		Luk: 77
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Holy", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 170
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Crumpled_Paper: 7000
		Crumpled_Paper: 3500
		Crumpled_Paper: 1000
		Event_Pierrot_Nose: 700
		Gift_Box_1: 2000
		Gift_Box_2: 2000
		Gift_Box_3: 2000
		Old_Blue_Box: 500
	}
},
// Additional MVPs
{
	Id: 2094
	SpriteName: "E_ORK_HERO2"
	Name: "Orc Hero"
	Lv: 50
	Hp: 362000
	Sp: 1
	Exp: 2010
	JExp: 2010
	AttackRange: 1
	Attack: [662, 441]
	Def: 197
	Mdef: 70
	Stats: {
		Str: 97
		Agi: 82
		Vit: 107
		Int: 71
		Dex: 144
		Luk: 43
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1678
	AttackMotion: 780
	DamageMotion: 648
	MvpExp: 1005
	MvpDrops: {
		Red_Jewel: 2000
		Yggdrasilberry: 5000
		Yggdrasilberry: 5000
	}
	Drops: {
		Voucher_Of_Orcish_Hero: 9700
		Monkey_Circlet: 500
		Right_Epsilon: 150
		Splendid_Box: 50
		Orcish_Sword: 1000
		Elunium: 4559
		Giant_Axe: 100
		Orc_Hero_Card: 1
	}
},
{
	Id: 2095
	SpriteName: "E_EDDGA"
	Name: "Eddga"
	Lv: 65
	Hp: 947500
	Sp: 1
	Exp: 2010
	JExp: 2010
	AttackRange: 1
	Attack: [1509, 776]
	Def: 166
	Mdef: 70
	Stats: {
		Str: 92
		Agi: 80
		Vit: 103
		Int: 66
		Dex: 139
		Luk: 85
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 872
	AttackMotion: 1344
	DamageMotion: 432
	MvpExp: 1005
	MvpDrops: {
		Tigers_Skin: 5000
		Tiger_Footskin: 3000
		Tiger_Footskin: 3000
	}
	Drops: {
		Fire_Brand: 150
		Smoking_Pipe: 250
		Honey: 10000
		Splendid_Box: 50
		Tiger_Footskin: 250
		Elunium: 2300
		Krieg: 100
		BigFoot_Card: 1
	}
},
{
	Id: 2096
	SpriteName: "E_OSIRIS2"
	Name: "Osiris"
	Lv: 68
	Hp: 475840
	Sp: 1
	Exp: 2010
	JExp: 2010
	AttackRange: 1
	Attack: [1580, 903]
	Def: 172
	Mdef: 164
	Stats: {
		Str: 97
		Agi: 99
		Vit: 86
		Int: 131
		Dex: 145
		Luk: 67
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1072
	AttackMotion: 672
	DamageMotion: 384
	MvpExp: 1005
	MvpDrops: {
		Old_Blue_Box: 4000
		Seed_Of_Yggdrasil: 500
		Seed_Of_Yggdrasil: 500
	}
	Drops: {
		Old_Violet_Box: 2000
		Assasin_Dagger: 150
		Crown: 200
		Splendid_Box: 50
		Sacred_Marks: 1000
		Spinx_Helm: 150
		Cakram: 100
		Osiris_Card: 1
	}
},
{
	Id: 2097
	SpriteName: "E_DRACULA"
	Name: "Dracula"
	Lv: 75
	Hp: 350000
	Sp: 1
	Exp: 2210
	JExp: 2010
	AttackRange: 3
	Attack: [1454, 1812]
	Def: 152
	Mdef: 146
	Stats: {
		Str: 86
		Agi: 99
		Vit: 88
		Int: 92
		Dex: 174
		Luk: 82
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 145
	AttackDelay: 1290
	AttackMotion: 1140
	DamageMotion: 576
	MvpExp: 1005
	MvpDrops: {
		Yggdrasilberry: 5500
		Crystal_Jewel__: 5000
		Crystal_Jewel__: 5000
	}
	Drops: {
		Yggdrasilberry: 4700
		Wizardy_Staff: 5
		Balistar: 5
		Cape_Of_Ancient_Lord: 15
		Ring_: 4
		Book_Of_The_Apocalypse: 4
		Splendid_Box: 50
		Dracula_Card: 1
	}
},
{
	Id: 2098
	SpriteName: "E_DOPPELGANGER"
	Name: "Doppelganger"
	Lv: 77
	Hp: 380000
	Sp: 1
	Exp: 2210
	JExp: 2010
	AttackRange: 1
	Attack: [1803, 1176]
	Def: 246
	Mdef: 86
	Stats: {
		Str: 122
		Agi: 122
		Vit: 105
		Int: 67
		Dex: 203
		Luk: 72
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 480
	AttackMotion: 480
	DamageMotion: 288
	MvpExp: 1005
	MvpDrops: {
		Cardinal_Jewel_: 1500
	}
	Drops: {
		Plate_Armor_: 250
		Broad_Sword_: 220
		Zweihander: 150
		Sharp_Gear: 350
		Splendid_Box: 50
		Elunium: 3686
		Oridecon: 2700
		Nightmare_Card: 1
	}
},
{
	Id: 2099
	SpriteName: "E_MISTRESS"
	Name: "Mistress"
	Lv: 78
	Hp: 378000
	Sp: 1
	Exp: 2010
	JExp: 2010
	AttackRange: 1
	Attack: [985, 1367]
	Def: 187
	Mdef: 192
	Stats: {
		Str: 76
		Agi: 186
		Vit: 88
		Int: 113
		Dex: 172
		Luk: 79
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1148
	AttackMotion: 648
	DamageMotion: 300
	MvpExp: 1005
	MvpDrops: {
		Rough_Wind: 1500
		Royal_Jelly: 3000
		Royal_Jelly: 3000
	}
	Drops: {
		Splendid_Box: 50
		Honey: 10000
		Coronet: 250
		Old_Card_Album: 1000
		Young_Twig: 10
		Elunium: 4268
		Red_Square_Bag: 100
		Mistress_Card: 1
	}
},
{
	Id: 2100
	SpriteName: "E_BAPHOMET2"
	Name: "Baphomet"
	Lv: 81
	Hp: 668000
	Sp: 1
	Exp: 2210
	JExp: 2010
	AttackRange: 2
	Attack: [3150, 1284]
	Def: 279
	Mdef: 45
	Stats: {
		Str: 120
		Agi: 125
		Vit: 30
		Int: 85
		Dex: 186
		Luk: 85
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 768
	AttackMotion: 768
	DamageMotion: 576
	MvpExp: 1005
	MvpDrops: {
		Yggdrasilberry: 2000
		Baphomet_Doll: 5000
		Baphomet_Doll: 5000
	}
	Drops: {
		Splendid_Box: 100
		Magestic_Goat: 300
		Crescent_Scythe_: 50
		Emperium: 500
		Magestic_Goat_: 10
		Elunium: 5432
		Oridecon: 4171
		Baphomet_Card: 1
	}
},
{
	Id: 2101
	SpriteName: "E_LORD_OF_DEATH2"
	Name: "Lord of Death"
	JName: "Lord of the Dead"
	Lv: 94
	Hp: 603883
	Sp: 1
	Exp: 2412
	JExp: 2010
	AttackRange: 3
	Attack: [5351, 962]
	Def: 336
	Mdef: 73
	Stats: {
		Str: 140
		Agi: 99
		Vit: 30
		Int: 109
		Dex: 120
		Luk: 90
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 1446
	AttackMotion: 1296
	DamageMotion: 360
	MvpExp: 1005
	MvpDrops: {
		Yggdrasilberry: 5500
		Crystal_Jewel__: 5000
		Crystal_Jewel__: 5000
	}
	Drops: {
		Boroken_Shiled_Piece: 5335
		Pole_Axe: 5
		Splendid_Box: 100
		Ring_: 2
		Shine_Spear_Blade: 10
		War_Axe: 1
		Iron_Driver: 2
		Wander_Man_Card: 1
	}
},
{
	Id: 2102
	SpriteName: "E_DARK_LORD"
	Name: "Dark Lord"
	Lv: 96
	Hp: 1190900
	Sp: 1
	Exp: 2412
	JExp: 2010
	AttackRange: 2
	Attack: [3935, 2085]
	Def: 330
	Mdef: 168
	Stats: {
		Str: 118
		Agi: 136
		Vit: 154
		Int: 142
		Dex: 193
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 868
	AttackMotion: 768
	DamageMotion: 480
	MvpDrops: {
		Skull: 6000
		Blue_Coif_: 2000
		Blue_Coif_: 2000
	}
	Drops: {
		Bone_Wand: 800
		Kronos: 100
		Grimtooth_: 300
		Mage_Coat: 300
		Splendid_Box: 100
		Elunium: 5141
		Bone_Helm_: 10
		Dark_Illusion_Card: 1
	}
},
{
	Id: 2103
	SpriteName: "E_KTULLANUX"
	Name: "Ktullanux"
	Lv: 98
	Hp: 2626000
	Sp: 1
	Exp: 2412
	JExp: 2010
	AttackRange: 3
	Attack: [3754, 2680]
	Def: 129
	Mdef: 78
	Stats: {
		Str: 85
		Agi: 126
		Vit: 30
		Int: 125
		Dex: 212
		Luk: 112
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Water", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 432
	AttackMotion: 840
	DamageMotion: 216
	MvpExp: 1005
	MvpDrops: {
		Yggdrasilberry: 5500
		Old_Violet_Box: 5000
		Old_Violet_Box: 5000
	}
	Drops: {
		Ice_Scale: 9000
		Old_Card_Album: 3000
		Clack_Of_Servival: 3000
		Herald_Of_GOD: 5000
		Old_Violet_Box: 5000
		Yggdrasilberry: 5000
		Splendid_Box: 100
		Ktullanux_Card: 1
	}
},
{
	Id: 2104
	SpriteName: "E_DARK_SNAKE_LORD"
	Name: "Dark Snake Lord"
	JName: "Evil Snake Lord"
	Lv: 105
	Hp: 1101000
	Sp: 1
	Exp: 2412
	JExp: 2010
	AttackRange: 3
	Attack: [2882, 1986]
	Def: 314
	Mdef: 185
	Stats: {
		Str: 122
		Agi: 172
		Vit: 107
		Int: 135
		Dex: 235
		Luk: 88
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 588
	AttackMotion: 816
	DamageMotion: 420
	MvpExp: 1005
	MvpDrops: {
		Yggdrasilberry: 5500
		Old_Violet_Box: 5500
		Old_Violet_Box: 5500
	}
	Drops: {
		Taegeuk_Plate: 5820
		Sword_Of_Grave_Keeper: 5100
		Hell_Fire: 80
		Splendid_Box: 50
		Gae_Bolg: 500
		Pill: 900
		Sway_Apron: 2000
		Dark_Snake_Lord_Card: 1
	}
},
{
	Id: 2105
	SpriteName: "E_TURTLE_GENERAL"
	Name: "Turtle General"
	Lv: 110
	Hp: 1442000
	Sp: 1
	Exp: 2412
	JExp: 2010
	AttackRange: 2
	Attack: [3169, 2066]
	Def: 394
	Mdef: 123
	Stats: {
		Str: 116
		Agi: 123
		Vit: 154
		Int: 99
		Dex: 217
		Luk: 98
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 900
	AttackMotion: 1000
	DamageMotion: 500
	MvpExp: 1005
	MvpDrops: {
		Turtle_Shell: 5500
		Yggdrasilberry: 2000
		Yggdrasilberry: 2000
	}
	Drops: {
		Iron_Driver: 8
		War_Axe: 5
		Cookbook09: 200
		Pole_Axe: 9
		Broken_Shell: 5335
		Immaterial_Sword: 80
		Splendid_Box: 50
		Assulter_Card: 1
	}
},
{
	Id: 2106
	SpriteName: "E_APOCALIPS_H"
	Name: "Vesper"
	Lv: 128
	Hp: 3802000
	Sp: 1
	Exp: 2612
	JExp: 2010
	AttackRange: 3
	Attack: [3668, 4656]
	Def: 402
	Mdef: 109
	Stats: {
		Str: 177
		Agi: 195
		Vit: 165
		Int: 130
		Dex: 255
		Luk: 102
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Holy", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 504
	AttackMotion: 912
	DamageMotion: 432
	DamageTakenRate: 10
	MvpExp: 1005
	MvpDrops: {
		Old_Violet_Box: 5500
		Old_Blue_Box: 2000
		Old_Blue_Box: 2000
	}
	Drops: {
		Broken_Steel_Piece: 5000
		Mystery_Piece: 3000
		Splendid_Box: 50
		Vesper_Core01: 100
		Vesper_Core02: 100
		Vesper_Core03: 100
		Vesper_Core04: 100
		Apocalips_H_Card: 1
	}
},
{
	Id: 2107
	SpriteName: "E_FALLINGBISHOP"
	Name: "Fallen Bishop"
	Lv: 138
	Hp: 5655000
	Sp: 1
	Exp: 2612
	JExp: 2010
	AttackRange: 1
	Attack: [4290, 4636]
	Def: 274
	Mdef: 382
	Stats: {
		Str: 186
		Agi: 165
		Vit: 95
		Int: 226
		Dex: 273
		Luk: 86
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 432
	AttackMotion: 432
	DamageMotion: 360
	MvpExp: 1005
	MvpDrops: {
		Yggdrasilberry: 5500
		Seed_Of_Yggdrasil: 2000
		Seed_Of_Yggdrasil: 2000
	}
	Drops: {
		Holy_Water: 10000
		Long_Horn: 1000
		Spiritual_Ring: 500
		Hunting_Spear: 1000
		Elunium: 5432
		Splendid_Box: 200
		Carnium: 500
		Fallen_Bishop_Card: 1
	}
},
{
	Id: 2108
	SpriteName: "E_GLOOMUNDERNIGHT"
	Name: "Gloom Under Night"
	Lv: 139
	Hp: 3005000
	Sp: 1
	Exp: 2612
	JExp: 2010
	AttackRange: 3
	Attack: [6592, 2785]
	Def: 479
	Mdef: 262
	Stats: {
		Str: 191
		Agi: 223
		Vit: 187
		Int: 155
		Dex: 362
		Luk: 163
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1344
	AttackMotion: 2880
	DamageMotion: 576
	MvpExp: 1005
	MvpDrops: {
		Yggdrasilberry: 5500
		Old_Violet_Box: 5000
		Old_Violet_Box: 5000
	}
	Drops: {
		Will_Of_Darkness_: 7000
		Blade_Lost_In_Darkness: 4000
		Old_Hilt: 2000
		Old_Card_Album: 5000
		Celestial_Robe: 1000
		Hurricane_Fury: 100
		Splendid_Box: 200
		Echio_Card: 1
	}
},
{
	Id: 2109
	SpriteName: "E_RANDGRIS"
	Name: "Valkyrie Randgris"
	Lv: 141
	Hp: 3205000
	Sp: 1
	Exp: 2612
	JExp: 2010
	AttackRange: 3
	Attack: [7343, 4412]
	Def: 588
	Mdef: 506
	Stats: {
		Str: 196
		Agi: 131
		Vit: 125
		Int: 276
		Dex: 401
		Luk: 156
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 576
	AttackMotion: 576
	DamageMotion: 480
	MvpExp: 1005
	MvpDrops: {
		Old_Violet_Box: 5500
		Old_Blue_Box: 2000
		Old_Blue_Box: 2000
	}
	Drops: {
		Valhalla_Flower: 5000
		Valkyrie_Armor: 1600
		Valkyrie_Manteau: 3000
		Valkyrie_Shoes: 3000
		Helm_: 5000
		Bloody_Edge: 2500
		Splendid_Box: 200
		Randgris_Card: 1
	}
},
{
	Id: 2110
	SpriteName: "E_IFRIT"
	Name: "Ifrit"
	Lv: 146
	Hp: 6935000
	Sp: 1
	Exp: 2612
	JExp: 2010
	AttackRange: 3
	Attack: [8063, 3389]
	Def: 436
	Mdef: 218
	Stats: {
		Str: 180
		Agi: 201
		Vit: 156
		Int: 190
		Dex: 299
		Luk: 77
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 130
	AttackDelay: 212
	AttackMotion: 384
	DamageMotion: 360
	MvpExp: 1005
	MvpDrops: {
		Old_Violet_Box: 5500
		Carnium: 2000
		Carnium: 2000
	}
	Drops: {
		Flame_Heart: 10000
		Spiritual_Ring: 3000
		Ring_Of_Flame_Lord: 200
		Ring_Of_Resonance: 200
		Hell_Fire: 2000
		Fire_Brand: 2000
		Splendid_Box: 200
		Ifrit_Card: 1
	}
},
{
	Id: 2111
	SpriteName: "E_B_HARWORD"
	Name: "Whitesmith Harword"
	JName: "MasterSmith Howard"
	Lv: 160
	Hp: 6750000
	Sp: 1
	Exp: 2612
	JExp: 2010
	AttackRange: 1
	Attack: [5250, 1465]
	Def: 301
	Mdef: 106
	Stats: {
		Str: 275
		Agi: 148
		Vit: 156
		Int: 72
		Dex: 266
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	MvpExp: 1005
	MvpDrops: {
		Old_Violet_Box: 5500
		Old_Blue_Box: 2000
		Old_Blue_Box: 2000
	}
	Drops: {
		Mysteltainn_: 3500
		Byeorrun_Gum: 2500
		Splendid_Box: 200
		Sabbath: 3500
		Great_Axe: 3500
		Guillotine: 2500
		Tomahawk: 3500
		B_Harword_Card: 1
	}
},
{
	Id: 2112
	SpriteName: "E_B_SEYREN"
	Name: "Lord Knight Seyren"
	Lv: 160
	Hp: 4680000
	Sp: 1
	Exp: 2612
	JExp: 2010
	AttackRange: 1
	Attack: [6435, 2342]
	Def: 567
	Mdef: 155
	Stats: {
		Str: 303
		Agi: 165
		Vit: 181
		Int: 110
		Dex: 267
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	MvpExp: 1005
	MvpDrops: {
		Old_Violet_Box: 5500
		Old_Blue_Box: 2000
		Old_Blue_Box: 2000
	}
	Drops: {
		Edge: 2500
		Full_Plate_Armor_: 3500
		Splendid_Box: 200
		Brionac: 3500
		Longinuss_Spear: 3000
		Dragon_Slayer: 2500
		Skewer: 1500
	}
},
{
	Id: 2113
	SpriteName: "E_B_EREMES"
	Name: "Assassin Cross Eremes"
	Lv: 160
	Hp: 4230000
	Sp: 1
	Exp: 2612
	JExp: 2010
	AttackRange: 1
	Attack: [6083, 1378]
	Def: 445
	Mdef: 98
	Stats: {
		Str: 211
		Agi: 181
		Vit: 114
		Int: 83
		Dex: 338
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Poison", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	MvpExp: 1005
	MvpDrops: {
		Old_Violet_Box: 5500
		Old_Blue_Box: 2000
		Old_Blue_Box: 2000
	}
	Drops: {
		Moonlight_Sword: 1500
		House_Auger: 1500
		Splendid_Box: 200
		Exercise: 3500
		Assasin_Dagger: 3500
		Bloody_Roar: 3500
		Ginnungagap: 3500
		B_Eremes_Card: 1
	}
},
// Sorcerer Elemental Spirits
/*{
	Id: 2114
	SpriteName: "EL_AGNI_S"
	Name: "Agni"
	Lv: 100
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 5
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 4)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
{
	Id: 2115
	SpriteName: "EL_AGNI_M"
	Name: "Agni"
	Lv: 100
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 5
	ChaseRange: 0
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 4)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
{
	Id: 2116
	SpriteName: "EL_AGNI_L"
	Name: "Agni"
	Lv: 100
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 5
	ChaseRange: 0
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 4)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
{
	Id: 2117
	SpriteName: "EL_AQUA_S"
	Name: "Aqua"
	Lv: 100
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 5
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Water", 4)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
{
	Id: 2118
	SpriteName: "EL_AQUA_M"
	Name: "Aqua"
	Lv: 100
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 5
	ChaseRange: 0
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Water", 4)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
{
	Id: 2119
	SpriteName: "EL_AQUA_L"
	Name: "Aqua"
	Lv: 100
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 5
	ChaseRange: 0
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Water", 4)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
{
	Id: 2120
	SpriteName: "EL_VENTUS_S"
	Name: "Ventus"
	Lv: 100
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 4
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 5
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Wind", 4)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
{
	Id: 2121
	SpriteName: "EL_VENTUS_M"
	Name: "Ventus"
	Lv: 100
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 4
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 5
	ChaseRange: 0
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Wind", 4)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
{
	Id: 2122
	SpriteName: "EL_VENTUS_L"
	Name: "Ventus"
	Lv: 100
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 4
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 5
	ChaseRange: 0
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Wind", 4)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
{
	Id: 2123
	SpriteName: "EL_TERA_S"
	Name: "Tera"
	Lv: 100
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 5
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 4)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
{
	Id: 2124
	SpriteName: "EL_TERA_M"
	Name: "Tera"
	Lv: 100
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 5
	ChaseRange: 0
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 4)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
{
	Id: 2125
	SpriteName: "EL_TERA_L"
	Name: "Tera"
	Lv: 100
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 5
	ChaseRange: 0
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 4)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
{
	Id: 2126
	SpriteName: "M_ANOPHELES"
	Name: "Anopheles"
	Lv: 100
	Hp: 8000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [300, 400]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 40
		Agi: 70
		Vit: 40
		Int: 40
		Dex: 80
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 1084
	AttackMotion: 2304
	DamageMotion: 576
},
{
	Id: 2127
	SpriteName: "M_HORNET"
	Name: "Hornet"
	Lv: 110
	Hp: 9000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [350, 450]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 40
		Agi: 70
		Vit: 40
		Int: 40
		Dex: 90
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 150
	AttackDelay: 1292
	AttackMotion: 792
	DamageMotion: 216
},
{
	Id: 2128
	SpriteName: "M_HORNET2"
	Name: "Hornet"
	Lv: 120
	Hp: 10000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [400, 500]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 40
		Agi: 70
		Vit: 40
		Int: 40
		Dex: 100
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 150
	AttackDelay: 1292
	AttackMotion: 792
	DamageMotion: 216
},
{
	Id: 2129
	SpriteName: "M_LUCIOLA_VESPA"
	Name: "Luciola Vespa"
	Lv: 130
	Hp: 11000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [450, 650]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 60
		Agi: 80
		Vit: 50
		Int: 50
		Dex: 110
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
		TargetWeak: true
	}
	MoveSpeed: 110
	AttackDelay: 1000
	AttackMotion: 864
	DamageMotion: 432
},
{
	Id: 2130
	SpriteName: "M_LUCIOLA_VESPA2"
	Name: "Luciola Vespa"
	Lv: 140
	Hp: 12000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [500, 700]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 60
		Agi: 80
		Vit: 50
		Int: 50
		Dex: 120
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
		TargetWeak: true
	}
	MoveSpeed: 110
	AttackDelay: 1000
	AttackMotion: 864
	DamageMotion: 432
},*/
// Bifrost (14.1)
{
	Id: 2131
	SpriteName: "LOST_DRAGON"
	Name: "Lost Dragon"
	Lv: 135
	Hp: 608920
	Sp: 0
	Exp: 39000
	JExp: 30000
	AttackRange: 3
	Attack: [1975, 530]
	Def: 60
	Mdef: 51
	Stats: {
		Str: 140
		Agi: 81
		Vit: 69
		Int: 122
		Dex: 147
		Luk: 61
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 840
	AttackMotion: 648
	DamageMotion: 576
	MvpDrops: {
		Old_Card_Album: 500
		Old_Violet_Box: 5000
		Old_Violet_Box: 5000
	}
	Drops: {
		Gold_Ring: 1000
		Alchemy_Glove: 100
		Ancient_Dagger: 100
		Yggdrasilberry: 500
		Seed_Of_Yggdrasil: 500
		Rosebine: 100
	}
},
{
	Id: 2132
	SpriteName: "POM_SPIDER"
	Name: "Pom Spider"
	Lv: 145
	Hp: 122110
	Sp: 1
	Exp: 10412
	JExp: 8037
	AttackRange: 1
	Attack: [948, 215]
	Def: 240
	Mdef: 115
	Stats: {
		Str: 156
		Agi: 85
		Vit: 178
		Int: 88
		Dex: 209
		Luk: 102
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 864
	AttackMotion: 1056
	DamageMotion: 576
	Drops: {
		Fruit_Basket: 500
		Mora_Mandarin: 1000
		Short_Leg: 1000
		Mental_Stick: 2
		Chrome_Sword: 50
		Pom_Spider_Card: 1
	}
},
{
	Id: 2133
	SpriteName: "ANGRA_MANTIS"
	Name: "Angra Mantis"
	Lv: 144
	Hp: 91720
	Sp: 1
	Exp: 10126
	JExp: 7020
	AttackRange: 1
	Attack: [869, 177]
	Def: 175
	Mdef: 81
	Stats: {
		Str: 122
		Agi: 155
		Vit: 119
		Int: 81
		Dex: 198
		Luk: 79
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 576
	AttackMotion: 480
	DamageMotion: 480
	Drops: {
		Withered_Flower: 3000
		Soft_Leaf: 1000
		Great_Nature: 10
		Sura_Rampage: 10
	}
},
{
	Id: 2134
	SpriteName: "PARUS"
	Name: "Parus"
	Lv: 142
	Hp: 86990
	Sp: 1
	Exp: 9502
	JExp: 6990
	AttackRange: 1
	Attack: [767, 152]
	Def: 161
	Mdef: 39
	Stats: {
		Str: 80
		Agi: 136
		Vit: 128
		Int: 44
		Dex: 158
		Luk: 51
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 384
	AttackMotion: 792
	DamageMotion: 432
	Drops: {
		Round_Feather: 3000
		Soft_Feather: 1000
		Runstone_Mystic: 100
		Clue_Of_Lope: 3000
		Clue_Of_Lope: 3000
		Clue_Of_Lope: 3000
		Parus_Card: 1
	}
},
{
	Id: 2135
	SpriteName: "CREEPER"
	Name: "Creeper"
	Lv: 100
	Hp: 1000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		Plant: true
	}
	MoveSpeed: 2000
	AttackDelay: 192
	AttackMotion: 192
	DamageMotion: 576
},
{
	Id: 2136
	SpriteName: "LITTLE_FATUM"
	Name: "Little Fatum"
	Lv: 142
	Hp: 85100
	Sp: 1
	Exp: 9750
	JExp: 6500
	AttackRange: 1
	Attack: [663, 452]
	Def: 51
	Mdef: 198
	Stats: {
		Str: 10
		Agi: 66
		Vit: 17
		Int: 148
		Dex: 222
		Luk: 97
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 432
	AttackMotion: 300
	DamageMotion: 432
	Drops: {
		Angel_Magic_Power: 3000
		Light_Granule: 100
		Beef_Toast: 100
		Dance_Shoes: 2
		Little_Fatum_Card: 1
	}
},
{
	Id: 2137
	SpriteName: "MIMING"
	Name: "Miming"
	Lv: 140
	Hp: 81200
	Sp: 1
	Exp: 9230
	JExp: 6300
	AttackRange: 1
	Attack: [645, 222]
	Def: 120
	Mdef: 120
	Stats: {
		Str: 90
		Agi: 66
		Vit: 105
		Int: 77
		Dex: 200
		Luk: 77
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 576
	AttackMotion: 1140
	DamageMotion: 504
	Drops: {
		Golden_Feather: 3000
		Light_Granule: 100
		Gold: 1
		Telekinetic_Orb: 2
		Miming_Card: 1
	}
},
{
	Id: 2138
	SpriteName: "NYDHOG_MEMORY1_1"
	Name: "Nydhogg's Memory"
	JName: "Nydhoggur Memory"
	Lv: 130
	Hp: 10
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1248
	AttackMotion: 576
	DamageMotion: 1248
},
{
	Id: 2139
	SpriteName: "NYDHOG_MEMORY1_2"
	Name: "Nydhogg's Memory"
	JName: "Nydhoggur Memory"
	Lv: 130
	Hp: 10
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1248
	AttackMotion: 576
	DamageMotion: 1248
},
{
	Id: 2140
	SpriteName: "NYDHOG_MEMORY2_1"
	Name: "Nydhogg's Memory"
	JName: "Nydhoggur Memory"
	Lv: 130
	Hp: 10
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1248
	AttackMotion: 576
	DamageMotion: 1248
},
{
	Id: 2141
	SpriteName: "NYDHOG_MEMORY2_2"
	Name: "Nydhogg's Memory"
	JName: "Nydhoggur Memory"
	Lv: 130
	Hp: 10
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1248
	AttackMotion: 576
	DamageMotion: 1248
},
{
	Id: 2142
	SpriteName: "NYDHOG_MEMORY3_1"
	Name: "Nydhogg's Memory"
	JName: "Nydhoggur Memory"
	Lv: 130
	Hp: 10
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1248
	AttackMotion: 576
	DamageMotion: 1248
},
{
	Id: 2143
	SpriteName: "NYDHOG_MEMORY3_2"
	Name: "Nydhogg's Memory"
	JName: "Nydhoggur Memory"
	Lv: 130
	Hp: 10
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Boss: true
		Plant: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1248
	AttackMotion: 576
	DamageMotion: 1248
},
{
	Id: 2144
	SpriteName: "G_ANTLER_SCARABA"
	Name: "Antler Scaraba"
	Lv: 136
	Hp: 62600
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1418, 410]
	Def: 155
	Mdef: 102
	Stats: {
		Str: 23
		Agi: 99
		Vit: 59
		Int: 129
		Dex: 137
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 504
	AttackMotion: 624
	DamageMotion: 360
},
{
	Id: 2145
	SpriteName: "G_RAKE_SCARABA"
	Name: "Rake Scaraba"
	Lv: 139
	Hp: 67700
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1645, 112]
	Def: 250
	Mdef: 70
	Stats: {
		Str: 90
		Agi: 66
		Vit: 145
		Int: 52
		Dex: 168
		Luk: 77
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 588
	AttackMotion: 768
	DamageMotion: 480
},
{
	Id: 2146
	SpriteName: "G_S_NYDHOG"
	Name: "G_S_NYDHOG"
	JName: "Shade of Dragon"
	Lv: 117
	Hp: 300000
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1176, 840]
	Def: 60
	Mdef: 60
	Stats: {
		Str: 1
		Agi: 30
		Vit: 30
		Int: 136
		Dex: 123
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1596
	AttackMotion: 1620
	DamageMotion: 864
},
{
	Id: 2147
	SpriteName: "E_WHITE_PLANT"
	Name: "White Plant"
	Lv: 1
	Hp: 60
	Sp: 1
	Exp: 27
	JExp: 20
	AttackRange: 1
	Attack: [8, 9]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2148
	SpriteName: "E_BLUE_PLANT"
	Name: "Blue Plant"
	Lv: 1
	Hp: 60
	Sp: 1
	Exp: 27
	JExp: 20
	AttackRange: 1
	Attack: [8, 9]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2149
	SpriteName: "E_SAVAGE_BABE"
	Name: "Savage Babe"
	Lv: 1
	Hp: 60
	Sp: 1
	Exp: 27
	JExp: 20
	AttackRange: 1
	Attack: [8, 9]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2150
	SpriteName: "WATERMELON"
	Name: "Watermelon"
	JName: "Ripe Watermelon"
	Lv: 12
	Hp: 10
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 1
	Mdef: 1
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		Plant: true
	}
	MoveSpeed: 2000
	AttackDelay: 96
	AttackMotion: 96
	DamageMotion: 96
	Drops: {
		Stem: 3000
		Thin_Stem: 2000
		Great_Leaf: 3000
		Ripe_Watermelon: 14000
		Ripe_Watermelon: 2000
		Ripe_Watermelon: 2000
	}
},
// Dewata
{
	Id: 2151
	SpriteName: "ALNOLDI"
	Name: "Rafflesia Arnoldi"
	Lv: 80
	Hp: 5149
	Sp: 1
	Exp: 1472
	JExp: 1280
	AttackRange: 2
	Attack: [378, 69]
	Def: 80
	Mdef: 20
	Stats: {
		Str: 40
		Agi: 32
		Vit: 24
		Int: 61
		Dex: 85
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 500
	AttackMotion: 576
	DamageMotion: 504
	Drops: {
		Clover: 250
		Leaflet_Of_Hinal: 426
		Stem: 4500
		Shoot: 300
		Leaflet_Of_Aloe: 250
		Centimental_Flower: 100
		Alnoldi_Card: 1
	}
},
{
	Id: 2152
	SpriteName: "COMODO"
	Name: "Comodo"
	Lv: 81
	Hp: 4002
	Sp: 1
	Exp: 1178
	JExp: 1480
	AttackRange: 2
	Attack: [427, 42]
	Def: 92
	Mdef: 11
	Stats: {
		Str: 65
		Agi: 52
		Vit: 35
		Int: 20
		Dex: 94
		Luk: 48
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Poison", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 500
	AttackMotion: 576
	DamageMotion: 504
	Drops: {
		Comodo_L: 5000
		Meat: 9000
		Scell: 9000
		Spawn: 5000
		Comodo_Card: 1
	}
},
{
	Id: 2153
	SpriteName: "CENDRAWASIH"
	Name: "Cendrawasih"
	Lv: 84
	Hp: 5556
	Sp: 1
	Exp: 1442
	JExp: 1486
	AttackRange: 1
	Attack: [297, 170]
	Def: 72
	Mdef: 33
	Stats: {
		Str: 58
		Agi: 77
		Vit: 51
		Int: 58
		Dex: 92
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Angel"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 576
	AttackMotion: 720
	DamageMotion: 360
	Drops: {
		Cendrawasih_F: 9000
		Soft_Feather: 8000
		Feather_Of_Birds: 9000
		Cendrawasih_Card: 1
	}
},
{
	Id: 2154
	SpriteName: "BANASPATY"
	Name: "Banaspaty"
	Lv: 85
	Hp: 4680
	Sp: 1
	Exp: 1610
	JExp: 1088
	AttackRange: 1
	Attack: [200, 182]
	Def: 63
	Mdef: 89
	Stats: {
		Str: 61
		Agi: 78
		Vit: 35
		Int: 77
		Dex: 79
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1152
	AttackMotion: 2304
	DamageMotion: 432
	Drops: {
		Coal: 1000
		Zargon: 2000
		Elunium: 1500
		Oridecon_Stone: 1500
		Fire_Arrow: 500
		Banaspaty_Card: 1
	}
},
{
	Id: 2155
	SpriteName: "BUTOIJO"
	Name: "Butoijo"
	Lv: 88
	Hp: 7524
	Sp: 1
	Exp: 1490
	JExp: 1552
	AttackRange: 1
	Attack: [358, 102]
	Def: 77
	Mdef: 12
	Stats: {
		Str: 66
		Agi: 65
		Vit: 30
		Int: 30
		Dex: 106
		Luk: 44
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 576
	AttackMotion: 768
	DamageMotion: 432
	Drops: {
		Sticky_Mucus: 2750
		Meat: 500
		Leaflet_Of_Hinal: 450
		Butoijo_Card: 1
	}
},
{
	Id: 2156
	SpriteName: "LEAK"
	Name: "Leak"
	Lv: 94
	Hp: 1266000
	Sp: 1
	Exp: 472800
	JExp: 300120
	AttackRange: 2
	Attack: [3723, 1284]
	Def: 280
	Mdef: 128
	Stats: {
		Str: 122
		Agi: 125
		Vit: 30
		Int: 85
		Dex: 186
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 130
	AttackDelay: 576
	AttackMotion: 576
	DamageMotion: 360
	DamageTakenRate: 10
	MvpDrops: {
		Old_Violet_Box: 5000
		Old_Violet_Box: 5000
		Old_Violet_Box: 5000
	}
	Drops: {
		Hunting_Spear: 10
		Old_Violet_Box: 2500
		Yggdrasilberry: 1250
		Tidung: 500
		Runstone_Rare: 3500
		Honey: 2500
		Gold: 2000
		Leak_Card: 1
	}
},
{
	Id: 2157
	SpriteName: "G_BANASPATY"
	Name: "Butoijo"
	JName: "Banaspaty"
	Lv: 85
	Hp: 4680
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [182, 182]
	Def: 63
	Mdef: 89
	Stats: {
		Str: 61
		Agi: 78
		Vit: 35
		Int: 77
		Dex: 66
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 250
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
// Homunculus S Summons
{
	Id: 2158
	SpriteName: "S_HORNET"
	Name: "Hornet"
	Lv: 95
	Hp: 5000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [381, 494]
	Def: 7
	Mdef: 1
	Stats: {
		Str: 62
		Agi: 54
		Vit: 54
		Int: 65
		Dex: 76
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 1292
	AttackMotion: 792
	DamageMotion: 216
},
{
	Id: 2159
	SpriteName: "S_GIANT_HORNET"
	Name: "Giant Hornet"
	Lv: 110
	Hp: 11960
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [456, 579]
	Def: 80
	Mdef: 43
	Stats: {
		Str: 117
		Agi: 65
		Vit: 67
		Int: 72
		Dex: 77
		Luk: 34
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 155
	AttackDelay: 1292
	AttackMotion: 792
	DamageMotion: 340
},
{
	Id: 2160
	SpriteName: "S_LUCIOLA_VESPA"
	Name: "Luciola Vespa"
	Lv: 130
	Hp: 16466
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [677, 831]
	Def: 59
	Mdef: 55
	Stats: {
		Str: 88
		Agi: 89
		Vit: 55
		Int: 32
		Dex: 119
		Luk: 59
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 110
	AttackDelay: 1000
	AttackMotion: 864
	DamageMotion: 432
},
// Nightmare Scaraba Hole
{
	Id: 2161
	SpriteName: "I_HORN_SCARABA"
	Name: "Scaraba"
	JName: "Uni Horn Scaraba"
	Lv: 130
	Hp: 204400
	Sp: 1
	Exp: 17880
	JExp: 16044
	AttackRange: 1
	Attack: [1270, 590]
	Def: 135
	Mdef: 10
	Stats: {
		Str: 84
		Agi: 109
		Vit: 115
		Int: 31
		Dex: 111
		Luk: 53
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 384
	AttackMotion: 672
	DamageMotion: 360
	Drops: {
		Singlehorn_Helm: 6500
		Imperial_Spear: 10
		Runstone_Ancient: 100
		Elder_Branch: 100
		Yellow_Live: 100
		Old_Violet_Box: 10
		Wrapped_Mask: 10
		Gold_Scaraba_Card: 1
	}
},
{
	Id: 2162
	SpriteName: "I_HORN_SCARABA2"
	Name: "Scaraba"
	JName: "Horn Scaraba"
	Lv: 134
	Hp: 235600
	Sp: 1
	Exp: 20120
	JExp: 18196
	AttackRange: 1
	Attack: [690, 3090]
	Def: 150
	Mdef: 15
	Stats: {
		Str: 44
		Agi: 28
		Vit: 72
		Int: 125
		Dex: 184
		Luk: 51
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 336
	AttackMotion: 360
	DamageMotion: 360
	Drops: {
		Twinhorn_Helm: 6500
		Black_Wing: 10
		Runstone_Ancient: 100
		Elder_Branch: 100
		Yellow_Live: 100
		Old_Violet_Box: 10
		Wrapped_Mask: 10
		Gold_Scaraba_Card: 1
	}
},
{
	Id: 2163
	SpriteName: "I_ANTLER_SCARABA"
	Name: "Antler Scaraba"
	Lv: 136
	Hp: 250400
	Sp: 1
	Exp: 20320
	JExp: 21020
	AttackRange: 1
	Attack: [412, 3211]
	Def: 155
	Mdef: 20
	Stats: {
		Str: 23
		Agi: 59
		Vit: 59
		Int: 209
		Dex: 191
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 504
	AttackMotion: 624
	DamageMotion: 360
	Drops: {
		Antler_Helm: 6500
		Green_Whistle: 10
		Runstone_Ancient: 100
		Elder_Branch: 100
		Yellow_Live: 10
		Old_Violet_Box: 10
		Wrapped_Mask: 10
		Gold_Scaraba_Card: 1
	}
},
{
	Id: 2164
	SpriteName: "I_RAKE_SCARABA"
	Name: "Rake Scaraba"
	Lv: 139
	Hp: 270800
	Sp: 1
	Exp: 22960
	JExp: 23980
	AttackRange: 1
	Attack: [1830, 630]
	Def: 250
	Mdef: 25
	Stats: {
		Str: 94
		Agi: 136
		Vit: 145
		Int: 42
		Dex: 152
		Luk: 97
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 140
	AttackDelay: 588
	AttackMotion: 768
	DamageMotion: 480
	Drops: {
		Rakehorn_Helm: 6500
		Red_Ether_Bag: 10
		Runstone_Ancient: 100
		Bone_Plate: 100
		Yellow_Live: 100
		Old_Violet_Box: 10
		Wrapped_Mask: 10
		Gold_Scaraba_Card: 1
	}
},
{
	Id: 2165
	SpriteName: "I_QUEEN_SCARABA"
	Name: "Queen Scaraba"
	Lv: 140
	Hp: 6441600
	Sp: 1
	Exp: 1210220
	JExp: 612200
	AttackRange: 3
	Attack: [4889, 6440]
	Def: 350
	Mdef: 220
	Stats: {
		Str: 100
		Agi: 88
		Vit: 82
		Int: 149
		Dex: 211
		Luk: 144
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 864
	AttackMotion: 1000
	DamageMotion: 360
	DamageTakenRate: 10
	MvpDrops: {
		Old_Card_Album: 5000
		Old_Card_Album: 5000
		Old_Card_Album: 5000
	}
	Drops: {
		Queen_Wing_Piece: 5000
		Alca_Bringer: 700
		Meteo_Plate_Armor: 700
		Chrome_Twohand_Sword: 400
		Mystic_Bow: 500
		Splendid_Box2: 1000
		Splendid_Box: 1000
		Bloody_Dead_Branch: 100
		Gold_Q_Scaraba_Card: 1
	}
},
{
	Id: 2166
	SpriteName: "I_HORN_SCARABA_EGG"
	Name: "Scaraba Egg"
	JName: "Uni Horn Scaraba Egg"
	Lv: 125
	Hp: 126000
	Sp: 1
	Exp: 12000
	JExp: 9000
	AttackRange: 0
	Attack: [1, 1]
	Def: 280
	Mdef: 55
	Stats: {
		Str: 1
		Agi: 1
		Vit: 130
		Int: 34
		Dex: 1
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	MoveSpeed: 2000
	AttackDelay: 96
	AttackMotion: 1
	DamageMotion: 480
	Drops: {
		Piece_Of_Egg_Shell: 5000
		Honey: 100
		Elunium: 100
		Old_Violet_Box: 10
	}
},
{
	Id: 2167
	SpriteName: "I_HORN_SCARABA2_EGG"
	Name: "Scaraba Egg"
	JName: "Horn Scaraba Egg"
	Lv: 126
	Hp: 132000
	Sp: 1
	Exp: 12000
	JExp: 9000
	AttackRange: 0
	Attack: [1, 1]
	Def: 300
	Mdef: 62
	Stats: {
		Str: 1
		Agi: 1
		Vit: 130
		Int: 48
		Dex: 1
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	MoveSpeed: 2000
	AttackDelay: 96
	AttackMotion: 1
	DamageMotion: 480
	Drops: {
		Piece_Of_Egg_Shell: 5000
		Honey: 100
		Elunium: 100
		Old_Violet_Box: 10
	}
},
{
	Id: 2168
	SpriteName: "I_ANTLER_SCARABA_EGG"
	Name: "Antler Scaraba Egg"
	Lv: 127
	Hp: 138000
	Sp: 1
	Exp: 12000
	JExp: 9000
	AttackRange: 0
	Attack: [1, 1]
	Def: 285
	Mdef: 180
	Stats: {
		Str: 1
		Agi: 1
		Vit: 130
		Int: 82
		Dex: 1
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	MoveSpeed: 2000
	AttackDelay: 96
	AttackMotion: 1
	DamageMotion: 480
	Drops: {
		Piece_Of_Egg_Shell: 5000
		Honey: 100
		Elunium: 100
		Old_Violet_Box: 10
	}
},
{
	Id: 2169
	SpriteName: "I_RAKE_SCARABA_EGG"
	Name: "Rake Scaraba Egg"
	Lv: 128
	Hp: 144000
	Sp: 1
	Exp: 12000
	JExp: 9000
	AttackRange: 0
	Attack: [1, 1]
	Def: 340
	Mdef: 44
	Stats: {
		Str: 1
		Agi: 1
		Vit: 130
		Int: 39
		Dex: 1
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	MoveSpeed: 2000
	AttackDelay: 96
	AttackMotion: 1
	DamageMotion: 480
	Drops: {
		Piece_Of_Egg_Shell: 5000
		Honey: 100
		Elunium: 100
		Imperial_Guard: 500
		Old_Violet_Box: 10
	}
},
{
	Id: 2170
	SpriteName: "I_G_ANTLER_SCARABA"
	Name: "Antler Scaraba"
	Lv: 136
	Hp: 250400
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [412, 3211]
	Def: 155
	Mdef: 15
	Stats: {
		Str: 23
		Agi: 59
		Vit: 59
		Int: 209
		Dex: 191
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 504
	AttackMotion: 624
	DamageMotion: 360
},
{
	Id: 2171
	SpriteName: "I_G_RAKE_SCARABA"
	Name: "Rake Scaraba"
	Lv: 139
	Hp: 270800
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1830, 630]
	Def: 250
	Mdef: 20
	Stats: {
		Str: 94
		Agi: 136
		Vit: 145
		Int: 42
		Dex: 152
		Luk: 97
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 588
	AttackMotion: 768
	DamageMotion: 480
},
{
	Id: 2172
	SpriteName: "I_G_HORN_SCARABA"
	Name: "Scaraba"
	JName: "Rake Scaraba"
	Lv: 130
	Hp: 204400
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1270, 590]
	Def: 135
	Mdef: 10
	Stats: {
		Str: 84
		Agi: 109
		Vit: 115
		Int: 31
		Dex: 111
		Luk: 53
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 384
	AttackMotion: 672
	DamageMotion: 360
},
{
	Id: 2173
	SpriteName: "I_G_HORN_SCARABA2"
	Name: "Scaraba"
	JName: "Horn Scaraba"
	Lv: 134
	Hp: 235600
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [690, 3090]
	Def: 150
	Mdef: 15
	Stats: {
		Str: 44
		Agi: 28
		Vit: 72
		Int: 125
		Dex: 184
		Luk: 51
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 336
	AttackMotion: 360
	DamageMotion: 360
},
// Malangdo Island
{
	Id: 2174
	SpriteName: "MD_VADON"
	Name: "Ancient Crustacean"
	JName: "Ancient Crustacea"
	Lv: 95
	Hp: 120000
	Sp: 1
	Exp: 1500
	JExp: 1500
	AttackRange: 1
	Attack: [778, 225]
	Def: 154
	Mdef: 21
	Stats: {
		Str: 145
		Agi: 91
		Vit: 138
		Int: 60
		Dex: 113
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1632
	AttackMotion: 432
	DamageMotion: 540
	Drops: {
		Crystal_Blue: 40
		Nipper: 9000
		Garlet: 3000
		Padded_Armor_: 6
		Solid_Shell: 100
		Elunium_Stone: 40
		Low_Coin_Pocket: 4
	}
},
{
	Id: 2175
	SpriteName: "MD_MARSE"
	Name: "Deepsea Marse"
	Lv: 95
	Hp: 120000
	Sp: 1
	Exp: 1500
	JExp: 1500
	AttackRange: 1
	Attack: [500, 820]
	Def: 58
	Mdef: 218
	Stats: {
		Str: 133
		Agi: 37
		Vit: 85
		Int: 156
		Dex: 133
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1956
	AttackMotion: 756
	DamageMotion: 528
	Drops: {
		Chinese_Ink: 9000
		Tentacle: 3000
		Skyblue_Jewel: 10
		Mistic_Frozen: 12
		Penetration: 6
		Grape: 300
		Low_Coin_Pocket: 4
	}
},
{
	Id: 2176
	SpriteName: "MD_CRAB"
	Name: "Deepsea Crab"
	Lv: 95
	Hp: 120000
	Sp: 1
	Exp: 1500
	JExp: 1500
	AttackRange: 1
	Attack: [696, 234]
	Def: 136
	Mdef: 15
	Stats: {
		Str: 122
		Agi: 54
		Vit: 84
		Int: 37
		Dex: 98
		Luk: 65
	}
	ViewRange: 7
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 992
	AttackMotion: 792
	DamageMotion: 360
	Drops: {
		Crap_Shell: 5500
		Nipper: 1500
		Stone: 700
		Sparkling_Dust: 14
		Elunium_Stone: 38
		Low_Coin_Pocket: 4
	}
},
{
	Id: 2177
	SpriteName: "MD_CORNUTUS"
	Name: "Deepsea Cornutus"
	Lv: 100
	Hp: 160000
	Sp: 1
	Exp: 1500
	JExp: 1500
	AttackRange: 1
	Attack: [1129, 237]
	Def: 342
	Mdef: 48
	Stats: {
		Str: 122
		Agi: 87
		Vit: 135
		Int: 66
		Dex: 137
		Luk: 75
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1248
	AttackMotion: 48
	DamageMotion: 480
	Drops: {
		Crystal_Blue: 46
		Conch: 5500
		Scell: 800
		Elunium_Stone: 54
		Shield_: 6
		Solid_Shell: 1000
		Low_Coin_Pocket: 6
	}
},
{
	Id: 2178
	SpriteName: "MD_SHELLFISH"
	Name: "Deepsea Shellfish"
	Lv: 100
	Hp: 160000
	Sp: 1
	Exp: 1500
	JExp: 1500
	AttackRange: 1
	Attack: [720, 1122]
	Def: 43
	Mdef: 215
	Stats: {
		Str: 72
		Agi: 31
		Vit: 68
		Int: 225
		Dex: 166
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 864
	AttackMotion: 864
	DamageMotion: 384
	Drops: {
		Clam_Shell: 5500
		Flesh_Of_Clam: 1000
		Stone: 500
		Grit: 1000
		Sparkling_Dust: 10
		Elunium_Stone: 18
		Low_Coin_Pocket: 4
	}
},
{
	Id: 2179
	SpriteName: "MD_KUKRE"
	Name: "Ancient Kukre"
	Lv: 100
	Hp: 160000
	Sp: 1
	Exp: 1500
	JExp: 1500
	AttackRange: 1
	Attack: [975, 118]
	Def: 123
	Mdef: 33
	Stats: {
		Str: 125
		Agi: 80
		Vit: 112
		Int: 60
		Dex: 102
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1776
	AttackMotion: 576
	DamageMotion: 288
	Drops: {
		Crystal_Blue: 30
		Worm_Peelings: 5500
		Garlet: 400
		Monsters_Feed: 500
		Insect_Feeler: 450
		Earthworm_The_Dude: 20
		Low_Coin_Pocket: 4
	}
},
{
	Id: 2180
	SpriteName: "MD_STROUF"
	Name: "Ancient Sea Lord"
	Lv: 145
	Hp: 400000
	Sp: 1
	Exp: 2000
	JExp: 2000
	AttackRange: 1
	Attack: [1200, 3500]
	Def: 67
	Mdef: 221
	Stats: {
		Str: 149
		Agi: 126
		Vit: 81
		Int: 252
		Dex: 183
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Fish"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 384
	Drops: {
		Fin: 5336
		Oridecon_Stone: 116
		Trident_: 2
		Feather: 3000
		Skyblue_Jewel: 20
		Gill: 1500
		Mid_Coin_Pocket: 6
	}
},
{
	Id: 2181
	SpriteName: "MD_SWORD_FISH"
	Name: "Ancient Sword Fish"
	Lv: 145
	Hp: 400000
	Sp: 1
	Exp: 2000
	JExp: 2000
	AttackRange: 1
	Attack: [1849, 235]
	Def: 255
	Mdef: 17
	Stats: {
		Str: 155
		Agi: 156
		Vit: 115
		Int: 85
		Dex: 194
		Luk: 65
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1968
	AttackMotion: 768
	DamageMotion: 384
	Drops: {
		Mistic_Frozen: 10
		Sharp_Scale: 9000
		Oridecon_Stone: 34
		Snowy_Horn: 2
		Elunium_Stone: 50
		Gill: 600
		Mid_Coin_Pocket: 6
	}
},
{
	Id: 2182
	SpriteName: "MD_MARC"
	Name: "Ancient Seahorse"
	Lv: 145
	Hp: 400000
	Sp: 1
	Exp: 2000
	JExp: 2000
	AttackRange: 1
	Attack: [1423, 331]
	Def: 255
	Mdef: 51
	Stats: {
		Str: 150
		Agi: 145
		Vit: 221
		Int: 83
		Dex: 148
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1272
	AttackMotion: 72
	DamageMotion: 480
	Drops: {
		Mistic_Frozen: 18
		Gill: 9000
		Oridecon_Stone: 96
		Fin: 1000
		Skyblue_Jewel: 10
		White_Herb: 700
		Old_Coin_Pocket: 6
	}
},
{
	Id: 2183
	SpriteName: "MD_ANOLIAN"
	Name: "Mutant Anolian"
	Lv: 151
	Hp: 700000
	Sp: 1
	Exp: 2200
	JExp: 2200
	AttackRange: 1
	Attack: [2122, 312]
	Def: 268
	Mdef: 22
	Stats: {
		Str: 177
		Agi: 188
		Vit: 205
		Int: 126
		Dex: 198
		Luk: 61
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 190
	AttackDelay: 900
	AttackMotion: 500
	DamageMotion: 864
	Drops: {
		Anolian_Skin: 4850
		Crystal_Arrow: 2000
		Red_Muffler: 10
		Carga_Mace: 6
		Brooch_: 2
		Oridecon: 134
		Mid_Coin_Pocket: 6
	}
},
{
	Id: 2184
	SpriteName: "MD_OBEAUNE"
	Name: "Deepsea Mermaid"
	Lv: 151
	Hp: 700000
	Sp: 1
	Exp: 2200
	JExp: 2200
	AttackRange: 1
	Attack: [1502, 3845]
	Def: 68
	Mdef: 326
	Stats: {
		Str: 166
		Agi: 87
		Vit: 101
		Int: 233
		Dex: 196
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 288
	Drops: {
		Mistic_Frozen: 14
		Heart_Of_Mermaid: 9000
		Saint_Robe_: 10
		Skyblue_Jewel: 10
		Fin: 500
		Witherless_Rose: 30
		Mid_Coin_Pocket: 6
	}
},
{
	Id: 2185
	SpriteName: "MD_KAPHA"
	Name: "Transform Kapha"
	Lv: 151
	Hp: 700000
	Sp: 1
	Exp: 2200
	JExp: 2200
	AttackRange: 1
	Attack: [2590, 256]
	Def: 261
	Mdef: 58
	Stats: {
		Str: 167
		Agi: 209
		Vit: 128
		Int: 61
		Dex: 191
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 2012
	AttackMotion: 1728
	DamageMotion: 672
	Drops: {
		Yellow_Plate: 6500
		Cyfar: 3500
		Leaflet_Of_Aloe: 2300
		Ment: 2
		Guitar_Of_Blue_Solo: 10
		Jitte_: 6
		Old_Coin_Pocket: 6
	}
},
{
	Id: 2186
	SpriteName: "COELACANTH_N_E"
	Name: "Coelacanth"
	Lv: 100
	Hp: 1200000
	Sp: 1
	Exp: 400000
	JExp: 400000
	AttackRange: 1
	Attack: [1290, 1290]
	Def: 280
	Mdef: 280
	Stats: {
		Str: 160
		Agi: 160
		Vit: 160
		Int: 160
		Dex: 160
		Luk: 160
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 864
	AttackMotion: 864
	DamageMotion: 432
	Drops: {
		Agrade_Pocket: 10000
		Mid_Coin_Pocket: 4000
		Low_Coin_Pocket: 4000
		High_Weapon_Box: 1400
		Mid_Coin_Pocket: 4000
		Low_Coin_Pocket: 4000
		Low_Coin_Pocket: 4000
		Low_Coin_Pocket: 4000
	}
},
{
	Id: 2187
	SpriteName: "COELACANTH_N_A"
	Name: "Dark Coelacanth"
	Lv: 100
	Hp: 2200000
	Sp: 1
	Exp: 1000000
	JExp: 1000000
	AttackRange: 1
	Attack: [1890, 1890]
	Def: 280
	Mdef: 280
	Stats: {
		Str: 160
		Agi: 160
		Vit: 160
		Int: 160
		Dex: 160
		Luk: 160
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 864
	AttackMotion: 864
	DamageMotion: 432
	Drops: {
		Agrade_Pocket: 10000
		Mid_Coin_Pocket: 10000
		Low_Coin_Pocket: 10000
		High_Weapon_Box: 1500
		Mid_Coin_Pocket: 10000
		Low_Coin_Pocket: 10000
		Low_Coin_Pocket: 10000
		Black_Coelacanth_Card: 1
	}
},
{
	Id: 2188
	SpriteName: "COELACANTH_N_M"
	Name: "Grotesque Coelacanth"
	Lv: 100
	Hp: 2200000
	Sp: 1
	Exp: 1000000
	JExp: 1000000
	AttackRange: 1
	Attack: [1890, 1890]
	Def: 280
	Mdef: 280
	Stats: {
		Str: 160
		Agi: 160
		Vit: 160
		Int: 160
		Dex: 160
		Luk: 160
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 864
	AttackMotion: 864
	DamageMotion: 432
	Drops: {
		Agrade_Pocket: 10000
		Mid_Coin_Pocket: 10000
		Low_Coin_Pocket: 10000
		High_Weapon_Box: 10000
		Mid_Coin_Pocket: 10000
		Low_Coin_Pocket: 10000
		Low_Coin_Pocket: 10000
		Odd_Coelacanth_Card: 1
	}
},
{
	Id: 2189
	SpriteName: "COELACANTH_H_M"
	Name: "Mutant Coelacanth"
	Lv: 155
	Hp: 5200000
	Sp: 1
	Exp: 3000000
	JExp: 3000000
	AttackRange: 1
	Attack: [5500, 5500]
	Def: 280
	Mdef: 280
	Stats: {
		Str: 260
		Agi: 260
		Vit: 260
		Int: 260
		Dex: 260
		Luk: 260
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 864
	AttackMotion: 864
	DamageMotion: 432
	Drops: {
		Agrade_Pocket: 14000
		Anger_Seagod: 14000
		Old_Coin_Pocket: 10000
		High_Weapon_Box: 10000
		Mid_Coin_Pocket: 10000
		Low_Coin_Pocket: 10000
		Low_Coin_Pocket: 10000
		Mutant_Coelacanth_Card: 1
	}
},
{
	Id: 2190
	SpriteName: "COELACANTH_H_A"
	Name: "Ferocious Coelacanth"
	Lv: 155
	Hp: 5200000
	Sp: 1
	Exp: 3000000
	JExp: 3000000
	AttackRange: 1
	Attack: [5500, 5500]
	Def: 280
	Mdef: 280
	Stats: {
		Str: 260
		Agi: 260
		Vit: 260
		Int: 260
		Dex: 260
		Luk: 260
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 864
	AttackMotion: 864
	DamageMotion: 432
	Drops: {
		Agrade_Pocket: 14000
		Anger_Seagod: 10000
		Old_Coin_Pocket: 10000
		High_Weapon_Box: 10000
		Mid_Coin_Pocket: 10000
		Low_Coin_Pocket: 10000
		Low_Coin_Pocket: 10000
		Cruel_Coelacanth_Card: 1
	}
},
{
	Id: 2191
	SpriteName: "MD_SEAWEED"
	Name: "Seaweed"
	Lv: 100
	Hp: 100000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 1
	Mdef: 1
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 1)
	Mode: {
		Aggressive: true
		Boss: true
		Plant: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 2000
	AttackDelay: 384
	AttackMotion: 720
	DamageMotion: 360
},
{
	Id: 2192
	SpriteName: "MD_OCTOPUS"
	Name: "Small Octopus"
	Lv: 90
	Hp: 6000
	Sp: 1
	Exp: 4000
	JExp: 2000
	AttackRange: 1
	Attack: [778, 225]
	Def: 154
	Mdef: 21
	Stats: {
		Str: 145
		Agi: 91
		Vit: 138
		Int: 60
		Dex: 113
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 576
	AttackMotion: 2160
	DamageMotion: 504
	Drops: {
		Chinese_Ink: 5000
		Tentacle: 5000
		Mini_Octopus_Card: 1
	}
},
{
	Id: 2193
	SpriteName: "MD_OCTOPUS_LEG"
	Name: "Octupus Leg"
	JName: "Octopus Leg"
	Lv: 90
	Hp: 500000
	Sp: 1
	Exp: 4000
	JExp: 2000
	AttackRange: 1
	Attack: [778, 225]
	Def: 154
	Mdef: 21
	Stats: {
		Str: 145
		Agi: 91
		Vit: 138
		Int: 60
		Dex: 113
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 300
	AttackDelay: 432
	AttackMotion: 720
	DamageMotion: 360
	Drops: {
		Chinese_Ink: 9000
		Tentacle: 5000
		Sticky_Mucus: 5000
		Low_Coin_Pocket: 2
	}
},
{
	Id: 2194
	SpriteName: "MD_GIANT_OCTOPUS"
	Name: "Giant Octopus"
	Lv: 95
	Hp: 500000
	Sp: 1
	Exp: 40000
	JExp: 20000
	AttackRange: 1
	Attack: [1900, 1200]
	Def: 154
	Mdef: 21
	Stats: {
		Str: 145
		Agi: 91
		Vit: 138
		Int: 60
		Dex: 113
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 576
	AttackMotion: 1584
	DamageMotion: 360
	Drops: {
		Bgrade_Pocket: 3000
		Mid_Coin_Pocket: 1000
		High_Weapon_Box: 500
		Light_White_Pot_Box: 3000
		Low_Coin_Pocket: 4000
		Low_Coin_Pocket: 4000
		Giant_Octopus_Card: 1
	}
},
{
	Id: 2195
	SpriteName: "MD_G_KUKRE"
	Name: "Ancient Kukre"
	Lv: 100
	Hp: 160000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [975, 118]
	Def: 123
	Mdef: 33
	Stats: {
		Str: 125
		Agi: 80
		Vit: 112
		Int: 60
		Dex: 102
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1776
	AttackMotion: 576
	DamageMotion: 288
},
{
	Id: 2196
	SpriteName: "MD_G_STROUF"
	Name: "Ancient Sea Lord"
	Lv: 145
	Hp: 400000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1200, 3500]
	Def: 67
	Mdef: 221
	Stats: {
		Str: 149
		Agi: 126
		Vit: 81
		Int: 252
		Dex: 183
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Fish"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 384
},
{
	Id: 2197
	SpriteName: "RED_ERUMA"
	Name: "Red Eruma"
	Lv: 91
	Hp: 9900
	Sp: 1
	Exp: 1908
	JExp: 1908
	AttackRange: 1
	Attack: [620, 290]
	Def: 102
	Mdef: 102
	Stats: {
		Str: 77
		Agi: 90
		Vit: 88
		Int: 21
		Dex: 99
		Luk: 21
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 140
	AttackDelay: 768
	AttackMotion: 1224
	DamageMotion: 432
	Drops: {
		Clam_Shell: 5000
		Flesh_Of_Clam: 2000
		Grit: 3000
		Elunium_Stone: 100
		Oridecon_Stone: 100
		Old_Blue_Box: 20
		Bad_Can: 1400
		Red_Eruma_Card: 1
	}
},
{
	Id: 2198
	SpriteName: "KING_DRAMOH"
	Name: "King Kray"
	Lv: 117
	Hp: 28800
	Sp: 0
	Exp: 6700
	JExp: 2600
	AttackRange: 1
	Attack: [1320, 330]
	Def: 480
	Mdef: 22
	Stats: {
		Str: 119
		Agi: 44
		Vit: 150
		Int: 89
		Dex: 130
		Luk: 44
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 140
	AttackDelay: 576
	AttackMotion: 720
	DamageMotion: 720
	Drops: {
		Ice_Fragment: 100
		Nipper: 5000
		Solid_Shell: 5000
		Spike: 50
		Light_Granule: 200
		Mistic_Frozen: 50
		Crystal_Blue: 50
		King_Dramoh_Card: 1
	}
},
{
	Id: 2199
	SpriteName: "SIORAVA"
	Name: "Siorava"
	Lv: 87
	Hp: 6500
	Sp: 1
	Exp: 1200
	JExp: 1200
	AttackRange: 1
	Attack: [450, 210]
	Def: 20
	Mdef: 40
	Stats: {
		Str: 10
		Agi: 40
		Vit: 66
		Int: 70
		Dex: 67
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 250
	AttackDelay: 1536
	AttackMotion: 1296
	DamageMotion: 576
	Drops: {
		Delicious_Jelly: 1400
		Skull: 1000
		Skel_Bone: 1000
		Horrendous_Mouth: 1000
		Tatters_Clothes: 1000
		Twilight_Desert: 2
		Knife_: 2
		Siorava_Card: 1
	}
},
// Izlude Dungeon F6
{
	Id: 2200
	SpriteName: "J_TAINI"
	Name: "Taini"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2201
	SpriteName: "SROPHO"
	Name: "Sropho"
	JName: "Squidgitte"
	Lv: 113
	Hp: 24002
	Sp: 0
	Exp: 3868
	JExp: 3800
	AttackRange: 1
	Attack: [571, 565]
	Def: 44
	Mdef: 91
	Stats: {
		Str: 77
		Agi: 53
		Vit: 33
		Int: 133
		Dex: 99
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 768
	AttackMotion: 792
	DamageMotion: 432
	Drops: {
		Fin: 5000
		Electric_Eel: 4
		Electric_Wire: 4
		Crystal_Arrow_Container: 100
		Oridecon_Stone: 100
		Light_Granule: 100
		Crystal_Blue: 50
		Sropho_Card: 1
	}
},
{
	Id: 2202
	SpriteName: "KRAKEN"
	Name: "Kraken"
	Lv: 124
	Hp: 5602800
	Sp: 0
	Exp: 1966664
	JExp: 1922222
	AttackRange: 3
	Attack: [3823, 1830]
	Def: 55
	Mdef: 229
	Stats: {
		Str: 196
		Agi: 99
		Vit: 165
		Int: 117
		Dex: 162
		Luk: 99
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Fish"
	Element: ("Ele_Water", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 130
	AttackDelay: 432
	AttackMotion: 864
	DamageMotion: 360
	DamageTakenRate: 10
	MvpExp: 491666
	MvpDrops: {
		Old_Violet_Box: 5000
		Old_Card_Album: 5000
		Old_Card_Album: 5000
	}
	Drops: {
		Tentacle: 5000
		Cardo: 500
		Ice_Falchon: 500
		Hunting_Spear: 500
		Water_Sprits_Armor_: 500
		Treasure_Box: 5000
		Mistic_Frozen: 500
		Kraken_Card: 1
	}
},
{
	Id: 2203
	SpriteName: "POT_DOFLE"
	Name: "Pot Dofle"
	JName: "Octo Pot"
	Lv: 115
	Hp: 25211
	Sp: 0
	Exp: 5300
	JExp: 2700
	AttackRange: 1
	Attack: [1088, 212]
	Def: 122
	Mdef: 55
	Stats: {
		Str: 133
		Agi: 54
		Vit: 78
		Int: 33
		Dex: 114
		Luk: 26
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 180
	AttackDelay: 1008
	AttackMotion: 936
	DamageMotion: 432
	Drops: {
		Ice_Crystal: 10
		Coral_Reef: 1000
		Gold: 6
		Grit: 1000
		Chinese_Ink: 1000
		Old_Violet_Box: 20
		Crystal_Blue: 50
		Pot_Dofle_Card: 1
	}
},
{
	Id: 2204
	SpriteName: "SEDORA"
	Name: "Sedora"
	JName: "Lamp Rey"
	Lv: 110
	Hp: 22050
	Sp: 0
	Exp: 3706
	JExp: 3478
	AttackRange: 1
	Attack: [758, 444]
	Def: 92
	Mdef: 55
	Stats: {
		Str: 126
		Agi: 118
		Vit: 61
		Int: 107
		Dex: 109
		Luk: 84
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 768
	AttackMotion: 792
	DamageMotion: 432
	Drops: {
		Tentacle: 5000
		Tidal_Shoes: 6
		Ice_Fragment: 30
		Elder_Branch: 30
		Chinese_Ink: 3000
		Old_Blue_Box: 10
		Crystal_Blue: 50
		Sedora_Card: 1
	}
},
/*{
	Id: 2205
	SpriteName: "TACNU"
	Name: "Tacnu"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},*/
{
	Id: 2206
	SpriteName: "KRAKEN_LEG"
	Name: "Kraken Leg"
	JName: "Kraken Tentacle"
	Lv: 124
	Hp: 39190
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1685, 555]
	Def: 128
	Mdef: 158
	Stats: {
		Str: 130
		Agi: 92
		Vit: 53
		Int: 128
		Dex: 189
		Luk: 54
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Fish"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 2000
	AttackDelay: 576
	AttackMotion: 864
	DamageMotion: 240
	Drops: {
		Sticky_Poison: 2
		Cold_Ice: 2
	}
},
/*{
	Id: 2207
	SpriteName: "RACARCH"
	Name: "Racarch"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},*/
{
	Id: 2208
	SpriteName: "WILD_RIDER"
	Name: "Wild Rider"
	Lv: 95
	Hp: 33300
	Sp: 0
	Exp: 8300
	JExp: 3300
	AttackRange: 1
	Attack: [1320, 330]
	Def: 480
	Mdef: 22
	Stats: {
		Str: 89
		Agi: 124
		Vit: 89
		Int: 56
		Dex: 112
		Luk: 56
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 432
	AttackMotion: 792
	DamageMotion: 360
	Drops: {
		Delicious_Jelly: 5000
		Gill: 5000
		Skyblue_Jewel: 5000
		Light_Granule: 1000
		Old_Violet_Box: 2000
		Mistic_Frozen: 1000
		Wild_Rider_Card: 1
	}
},
// Additional Monsters
{
	Id: 2209
	SpriteName: "E_THIEF_BUG"
	Name: "Thief Bug"
	JName: "Agile Shadow"
	Lv: 1
	Hp: 10
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 1
	Mdef: 1
	Stats: {
		Str: 1
		Agi: 100
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 100
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 768
},
{
	Id: 2210
	SpriteName: "XMAS_LUNATIC"
	Name: "Xmas Lunatic"
	JName: "Christmas Snow Rabbit"
	Lv: 1
	Hp: 100
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 10
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1456
	AttackMotion: 456
	DamageMotion: 336
},
{
	Id: 2211
	SpriteName: "E_TEDDY_BEAR"
	Name: "Teddy Bear"
	JName: "Christmas Teddy Bear"
	Lv: 10
	Hp: 10
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 0
	Mdef: 1
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 100
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 160
	AttackDelay: 512
	AttackMotion: 780
	DamageMotion: 504
	Drops: {
		Old_Blue_Box: 1000
		Gift_Box: 3000
		Candy_Striper: 1000
		Candy: 1000
		Gift_Box: 500
		Old_Violet_Box: 10
		Red_Socks_With_Holes: 1000
	}
},
{
	Id: 2212
	SpriteName: "E_KNIGHT_OF_WINDSTORM"
	Name: "Knight of Windstorm"
	JName: "Stormy Knight"
	Lv: 1
	Hp: 60
	Sp: 1
	Exp: 27
	JExp: 20
	AttackRange: 1
	Attack: [8, 9]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2213
	SpriteName: "M_WANDER_MAN"
	Name: "Wander Man"
	JName: "Wanderer"
	Lv: 81
	Hp: 8614
	Sp: 220
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1100, 200]
	Def: 60
	Mdef: 20
	Stats: {
		Str: 80
		Agi: 110
		Vit: 63
		Int: 51
		Dex: 85
		Luk: 90
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 100
	AttackDelay: 672
	AttackMotion: 500
	DamageMotion: 192
},
{
	Id: 2214
	SpriteName: "M_WICKED_NYMPH"
	Name: "Wicked Nymph"
	JName: "Evil Nymph"
	Lv: 85
	Hp: 6157
	Sp: 256
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [420, 200]
	Def: 30
	Mdef: 45
	Stats: {
		Str: 40
		Agi: 50
		Vit: 40
		Int: 92
		Dex: 60
		Luk: 110
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 637
	AttackMotion: 1008
	DamageMotion: 360
},
{
	Id: 2215
	SpriteName: "M_KASA"
	Name: "Kasa"
	Lv: 83
	Hp: 9815
	Sp: 234
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1100, 200]
	Def: 60
	Mdef: 60
	Stats: {
		Str: 85
		Agi: 90
		Vit: 71
		Int: 43
		Dex: 85
		Luk: 105
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 800
	AttackMotion: 600
	DamageMotion: 288
},
{
	Id: 2216
	SpriteName: "M_SALAMANDER"
	Name: "Salamander"
	Lv: 87
	Hp: 9517
	Sp: 260
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [900, 200]
	Def: 60
	Mdef: 68
	Stats: {
		Str: 90
		Agi: 80
		Vit: 65
		Int: 45
		Dex: 87
		Luk: 95
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 160
	AttackDelay: 140
	AttackMotion: 384
	DamageMotion: 288
},
{
	Id: 2217
	SpriteName: "M_TEDDY_BEAR"
	Name: "Teddy Bear"
	Lv: 85
	Hp: 14493
	Sp: 243
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [600, 200]
	Def: 100
	Mdef: 70
	Stats: {
		Str: 60
		Agi: 20
		Vit: 85
		Int: 50
		Dex: 75
		Luk: 130
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 512
	AttackMotion: 780
	DamageMotion: 504
},
{
	Id: 2218
	SpriteName: "E_OCTOPUS_LEG"
	Name: "Octopus Leg"
	JName: "Octopus Tentacle"
	Lv: 1
	Hp: 60
	Sp: 1
	Exp: 27
	JExp: 20
	AttackRange: 1
	Attack: [8, 9]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2219
	SpriteName: "E_GIANT_OCTOPUS"
	Name: "Giant Octopus"
	Lv: 1
	Hp: 60
	Sp: 1
	Exp: 27
	JExp: 20
	AttackRange: 1
	Attack: [8, 9]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2220
	SpriteName: "E_QUVE"
	Name: "Quve"
	JName: "Messenger of Devil"
	Lv: 10
	Hp: 20
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [13, 8]
	Def: 1
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 50
		Dex: 100
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 912
	AttackMotion: 1248
	DamageMotion: 576
	Drops: {
		Chocolate: 10000
		White_Chocolate: 6000
		Candy: 16000
		Candy_Striper: 16000
	}
},
// Lighthalzen Biolab F4
{
	Id: 2221
	SpriteName: "RANDEL"
	Name: "Randal"
	JName: "Randel"
	Lv: 141
	Hp: 478745
	Sp: 1
	Exp: 64734
	JExp: 48110
	AttackRange: 1
	Attack: [3055, 1230]
	Def: 180
	Mdef: 56
	Stats: {
		Str: 158
		Agi: 74
		Vit: 213
		Int: 50
		Dex: 185
		Luk: 65
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 76
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Armlet_Of_Prisoner: 4000
		Goast_Chill: 2
		Old_Violet_Box: 200
		Elunium: 200
		Cannon_Spear: 20
		Bible_Of_Promise2: 20
		Blood_Thirst: 300
		Randel_Card: 1
	}
},
{
	Id: 2222
	SpriteName: "FLAMEL"
	Name: "Flamel"
	Lv: 141
	Hp: 316468
	Sp: 1
	Exp: 52794
	JExp: 46160
	AttackRange: 1
	Attack: [2017, 1602]
	Def: 86
	Mdef: 12
	Stats: {
		Str: 141
		Agi: 78
		Vit: 70
		Int: 81
		Dex: 147
		Luk: 51
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 1152
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Armlet_Of_Prisoner: 4000
		Goast_Chill: 2
		Old_Violet_Box: 200
		Oridecon: 200
		Green_Operation_Coat: 20
		Red_Ether_Bag: 2
		Blood_Thirst: 300
		Flamel_Card: 1
	}
},
{
	Id: 2223
	SpriteName: "CELIA"
	Name: "Celia"
	Lv: 141
	Hp: 253145
	Sp: 1
	Exp: 44214
	JExp: 38034
	AttackRange: 1
	Attack: [1612, 2450]
	Def: 74
	Mdef: 312
	Stats: {
		Str: 136
		Agi: 99
		Vit: 61
		Int: 121
		Dex: 121
		Luk: 49
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 1152
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Armlet_Of_Prisoner: 4000
		Goast_Chill: 2
		Telekinetic_Orb: 40
		Elunium: 200
		Creeper_Bow: 20
		Mental_Stick: 2
		Blood_Thirst: 300
		Ceila_Card: 1
	}
},
{
	Id: 2224
	SpriteName: "CHEN"
	Name: "Chen"
	Lv: 141
	Hp: 279562
	Sp: 25
	Exp: 51368
	JExp: 39620
	AttackRange: 1
	Attack: [2501, 1248]
	Def: 125
	Mdef: 56
	Stats: {
		Str: 122
		Agi: 81
		Vit: 83
		Int: 130
		Dex: 201
		Luk: 61
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Water", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 76
	AttackMotion: 768
	DamageMotion: 288
	Drops: {
		Goast_Chill: 2
		Lab_Staff_Record: 4000
		Old_Violet_Box: 200
		Oridecon: 200
		Sura_Rampage: 20
		Berserk: 10
		Blood_Thirst: 300
		Chen_Card: 1
	}
},
{
	Id: 2225
	SpriteName: "GERTIE"
	Name: "Gertie"
	Lv: 141
	Hp: 266926
	Sp: 1
	Exp: 48534
	JExp: 40466
	AttackRange: 1
	Attack: [3684, 1207]
	Def: 108
	Mdef: 10
	Stats: {
		Str: 180
		Agi: 125
		Vit: 55
		Int: 51
		Dex: 211
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Poison", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 76
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Goast_Chill: 2
		Lab_Staff_Record: 4000
		Old_Violet_Box: 200
		Elunium: 200
		Catapult: 20
		Black_Wing: 20
		Blood_Thirst: 300
		Gertie_Card: 1
	}
},
{
	Id: 2226
	SpriteName: "ALPHOCCIO"
	Name: "Alphoccio"
	Lv: 142
	Hp: 256202
	Sp: 1
	Exp: 44384
	JExp: 40644
	AttackRange: 1
	Attack: [1273, 3076]
	Def: 84
	Mdef: 15
	Stats: {
		Str: 120
		Agi: 97
		Vit: 71
		Int: 181
		Dex: 81
		Luk: 81
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 76
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Goast_Chill: 2
		Lab_Staff_Record: 4000
		Old_Violet_Box: 200
		Oridecon: 200
		Geffenia_Book_Water: 20
		Green_Whistle: 20
		Blood_Thirst: 300
		Alphoccio_Card: 1
	}
},
{
	Id: 2227
	SpriteName: "TRENTINI"
	Name: "Trentini"
	Lv: 142
	Hp: 204962
	Sp: 1
	Exp: 31990
	JExp: 26496
	AttackRange: 2
	Attack: [1070, 3206]
	Def: 70
	Mdef: 12
	Stats: {
		Str: 115
		Agi: 81
		Vit: 65
		Int: 194
		Dex: 95
		Luk: 76
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 76
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Goast_Chill: 2
		Lab_Staff_Record: 4000
		Dance_Shoes: 40
		Elunium: 200
		Assassin_Handcuffs: 20
		Stem_Whip: 20
		Blood_Thirst: 300
		Trentini_Card: 1
	}
},
{
	Id: 2228
	SpriteName: "G_RANDEL"
	Name: "Paladin Randel"
	JName: "Randel"
	Lv: 160
	Hp: 3163000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [5537, 3017]
	Def: 667
	Mdef: 151
	Stats: {
		Str: 291
		Agi: 155
		Vit: 201
		Int: 101
		Dex: 265
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Holy", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 864
	DamageMotion: 288
},
{
	Id: 2229
	SpriteName: "G_FLAMEL"
	Name: "Biochemist Flamel"
	JName: "Flamel"
	Lv: 160
	Hp: 2531750
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [2355, 2514]
	Def: 253
	Mdef: 113
	Stats: {
		Str: 159
		Agi: 175
		Vit: 157
		Int: 170
		Dex: 237
		Luk: 71
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1152
	AttackMotion: 864
	DamageMotion: 288
},
{
	Id: 2230
	SpriteName: "G_CELIA"
	Name: "Scholar Celia"
	JName: "Celia"
	Lv: 160
	Hp: 2025160
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [2481, 3114]
	Def: 201
	Mdef: 543
	Stats: {
		Str: 165
		Agi: 148
		Vit: 171
		Int: 155
		Dex: 267
		Luk: 85
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1152
	AttackMotion: 864
	DamageMotion: 288
},
{
	Id: 2231
	SpriteName: "G_CHEN"
	Name: "Champion Chen"
	JName: "Chen"
	Lv: 160
	Hp: 2236500
	Sp: 1553
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [3617, 1947]
	Def: 216
	Mdef: 134
	Stats: {
		Str: 180
		Agi: 165
		Vit: 165
		Int: 50
		Dex: 298
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Water", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 768
	DamageMotion: 288
},
{
	Id: 2232
	SpriteName: "G_GERTIE"
	Name: "Stalker Gertie"
	JName: "Gertie"
	Lv: 160
	Hp: 2135410
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [6162, 1274]
	Def: 251
	Mdef: 107
	Stats: {
		Str: 217
		Agi: 315
		Vit: 127
		Int: 51
		Dex: 333
		Luk: 61
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Poison", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 864
	DamageMotion: 288
},
{
	Id: 2233
	SpriteName: "G_ALPHOCCIO"
	Name: "Minstel Alphoccio"
	JName: "Alphoccio"
	Lv: 160
	Hp: 2049620
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [2641, 3749]
	Def: 201
	Mdef: 109
	Stats: {
		Str: 219
		Agi: 161
		Vit: 130
		Int: 107
		Dex: 270
		Luk: 99
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 76
	AttackMotion: 864
	DamageMotion: 288
},
{
	Id: 2234
	SpriteName: "G_TRENTINI"
	Name: "Gypsy Trentini"
	JName: "Trentini"
	Lv: 160
	Hp: 2049620
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [2016, 4036]
	Def: 181
	Mdef: 112
	Stats: {
		Str: 167
		Agi: 247
		Vit: 165
		Int: 217
		Dex: 233
		Luk: 61
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 76
	AttackMotion: 864
	DamageMotion: 288
},
{
	Id: 2235
	SpriteName: "B_RANDEL"
	Name: "Paladin Randel"
	JName: "Randel"
	Lv: 160
	Hp: 6870000
	Sp: 1
	Exp: 7348978
	JExp: 3908302
	AttackRange: 1
	Attack: [5537, 3017]
	Def: 667
	Mdef: 151
	Stats: {
		Str: 291
		Agi: 155
		Vit: 201
		Int: 101
		Dex: 265
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Holy", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 864
	DamageMotion: 288
	MvpDrops: {
		Magic_Card_Album: 5000
		Old_Violet_Box: 5000
		Goast_Chill: 5000
	}
	Drops: {
		High_Weapon_Box: 10000
		Sgrade_Pocket: 10000
		Old_Card_Album: 6000
		Bradium: 4000
		Giant_Shield: 4000
		Ancient_Dagger: 4000
		Paladin_Card: 1
	}
},
{
	Id: 2236
	SpriteName: "B_FLAMEL"
	Name: "Biochemist Flamel"
	JName: "Flamel"
	Lv: 160
	Hp: 4230000
	Sp: 1
	Exp: 5223570
	JExp: 2630354
	AttackRange: 1
	Attack: [2355, 2514]
	Def: 253
	Mdef: 113
	Stats: {
		Str: 159
		Agi: 175
		Vit: 157
		Int: 170
		Dex: 237
		Luk: 71
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1152
	AttackMotion: 864
	DamageMotion: 288
	MvpDrops: {
		Magic_Card_Album: 5000
		Old_Violet_Box: 5000
		Goast_Chill: 5000
	}
	Drops: {
		High_Weapon_Box: 10000
		Sgrade_Pocket: 10000
		Old_Card_Album: 6000
		Carnium: 4000
		End_Sektura: 4000
		Ygnus_Stale: 4000
		Giant_Axe: 4000
		Creator_Card: 1
	}
},
{
	Id: 2237
	SpriteName: "B_CELIA"
	Name: "Scholar Celia"
	JName: "Celia"
	Lv: 160
	Hp: 3847804
	Sp: 1
	Exp: 5027308
	JExp: 2509792
	AttackRange: 1
	Attack: [2481, 3114]
	Def: 201
	Mdef: 543
	Stats: {
		Str: 165
		Agi: 148
		Vit: 171
		Int: 155
		Dex: 267
		Luk: 85
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1152
	AttackMotion: 864
	DamageMotion: 288
	MvpDrops: {
		Magic_Card_Album: 5000
		Old_Violet_Box: 5000
		Goast_Chill: 5000
	}
	Drops: {
		High_Weapon_Box: 10000
		Sgrade_Pocket: 10000
		Old_Card_Album: 6000
		Bradium: 4000
		Alchemy_Glove: 4000
		Professor_Card: 1
	}
},
{
	Id: 2238
	SpriteName: "B_CHEN"
	Name: "Champion Chen"
	JName: "Chen"
	Lv: 160
	Hp: 4249350
	Sp: 1553
	Exp: 5113568
	JExp: 2934974
	AttackRange: 1
	Attack: [3617, 1947]
	Def: 216
	Mdef: 134
	Stats: {
		Str: 180
		Agi: 165
		Vit: 165
		Int: 50
		Dex: 298
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Water", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 768
	DamageMotion: 288
	MvpDrops: {
		Magic_Card_Album: 5000
		Old_Violet_Box: 5000
		Goast_Chill: 5000
	}
	Drops: {
		High_Weapon_Box: 10000
		Sgrade_Pocket: 10000
		Old_Card_Album: 6000
		Carnium: 4000
		Cakram: 4000
		Kaiser_Knuckle: 4000
		Champion_Card: 1
	}
},
{
	Id: 2239
	SpriteName: "B_GERTIE"
	Name: "Stalker Gertie"
	JName: "Gertie"
	Lv: 160
	Hp: 4057279
	Sp: 1
	Exp: 4420698
	JExp: 2691274
	AttackRange: 1
	Attack: [6162, 1274]
	Def: 251
	Mdef: 107
	Stats: {
		Str: 217
		Agi: 315
		Vit: 127
		Int: 51
		Dex: 333
		Luk: 61
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Poison", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 864
	DamageMotion: 288
	MvpDrops: {
		Magic_Card_Album: 5000
		Old_Violet_Box: 5000
		Goast_Chill: 5000
	}
	Drops: {
		High_Weapon_Box: 10000
		Sgrade_Pocket: 10000
		Old_Card_Album: 6000
		Bradium: 4000
		Scarletto_Nail: 4000
		Aztoe_Nail: 4000
		Stalker_Card: 1
	}
},
{
	Id: 2240
	SpriteName: "B_ALPHOCCIO"
	Name: "Minstel Alphoccio"
	JName: "Alphoccio"
	Lv: 160
	Hp: 3894278
	Sp: 1
	Exp: 4226036
	JExp: 2468972
	AttackRange: 1
	Attack: [2641, 3749]
	Def: 201
	Mdef: 109
	Stats: {
		Str: 219
		Agi: 161
		Vit: 130
		Int: 107
		Dex: 270
		Luk: 99
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 76
	AttackMotion: 864
	DamageMotion: 288
	MvpDrops: {
		Magic_Card_Album: 5000
		Old_Violet_Box: 5000
		Goast_Chill: 5000
	}
	Drops: {
		High_Weapon_Box: 10000
		Sgrade_Pocket: 10000
		Old_Card_Album: 6000
		Carnium: 4000
		Mystic_Bow: 4000
		Clown_Card: 1
	}
},
{
	Id: 2241
	SpriteName: "B_TRENTINI"
	Name: "Gypsy Trentini"
	JName: "Trentini"
	Lv: 160
	Hp: 3894278
	Sp: 1
	Exp: 4463758
	JExp: 2563096
	AttackRange: 2
	Attack: [2016, 4036]
	Def: 181
	Mdef: 112
	Stats: {
		Str: 167
		Agi: 247
		Vit: 165
		Int: 217
		Dex: 233
		Luk: 61
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 76
	AttackMotion: 864
	DamageMotion: 288
	MvpDrops: {
		Magic_Card_Album: 5000
		Old_Violet_Box: 5000
		Goast_Chill: 5000
	}
	Drops: {
		High_Weapon_Box: 10000
		Sgrade_Pocket: 10000
		Old_Card_Album: 6000
		Bradium: 4000
		Rosebine: 4000
		Mystic_Bow: 4000
		Gypsy_Card: 1
	}
},
{
	Id: 2242
	SpriteName: "MD_DESERT_WOLF"
	Name: "Desert Wolf"
	Lv: 135
	Hp: 551578
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [676, 59]
	Def: 151
	Mdef: 39
	Stats: {
		Str: 151
		Agi: 69
		Vit: 63
		Int: 72
		Dex: 98
		Luk: 42
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 200
	AttackMotion: 420
	DamageMotion: 288
},
{
	Id: 2243
	SpriteName: "MD_DESERT_WOLF_B"
	Name: "Baby Desert Wolf"
	Lv: 130
	Hp: 274531
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [33, 8]
	Def: 13
	Mdef: 123
	Stats: {
		Str: 101
		Agi: 12
		Vit: 8
		Int: 121
		Dex: 17
		Luk: 7
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 130
	AttackDelay: 200
	AttackMotion: 900
	DamageMotion: 240
},
{
	Id: 2244
	SpriteName: "QUEST_CHEN"
	Name: "Champion Chen"
	JName: "Dark Martial Arts Master"
	Lv: 130
	Hp: 300
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [103, 23]
	Def: 25
	Mdef: 56
	Stats: {
		Str: 122
		Agi: 81
		Vit: 83
		Int: 130
		Dex: 201
		Luk: 61
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Water", 4)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 200
	AttackMotion: 768
	DamageMotion: 288
},
{
	Id: 2245
	SpriteName: "EXP_TEST"
	Name: "EXP_TEST"
	JName: "Experience Test"
	Lv: 1
	Hp: 100
	Sp: 1
	Exp: 200
	JExp: 200
	AttackRange: 1
	Attack: [8, 1]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Water", 1)
	MoveSpeed: 400
	AttackDelay: 1000
	AttackMotion: 480
	DamageMotion: 288
},
{
	Id: 2246
	SpriteName: "Q_WOOTAN_FIGHTER"
	Name: "Q_WOOTAN_FIGHTER"
	JName: "Wootan Fighter"
	Lv: 95
	Hp: 9000
	Sp: 1
	Exp: 2800
	JExp: 4000
	AttackRange: 1
	Attack: [255, 36]
	Def: 103
	Mdef: 8
	Stats: {
		Str: 63
		Agi: 14
		Vit: 36
		Int: 5
		Dex: 62
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	MoveSpeed: 200
	AttackDelay: 912
	AttackMotion: 1344
	DamageMotion: 480
},
{
	Id: 2247
	SpriteName: "Q_INCREASE_SOIL"
	Name: "Q_INCREASE_SOIL"
	JName: "Mi Gao"
	Lv: 95
	Hp: 20000
	Sp: 1
	Exp: 2800
	JExp: 4000
	AttackRange: 1
	Attack: [365, 30]
	Def: 112
	Mdef: 39
	Stats: {
		Str: 67
		Agi: 23
		Vit: 41
		Int: 49
		Dex: 94
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 3)
	MoveSpeed: 445
	AttackDelay: 106
	AttackMotion: 1056
	DamageMotion: 576
},
{
	Id: 2248
	SpriteName: "GOLDPORING"
	Name: "Golden Poring"
	Lv: 1
	Hp: 15
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 160
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 999
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Blue_Card_C: 4000
		BlueCard_2: 4000
		BlueCard_0: 4000
		BlueCard_1: 4000
		BlueCard_W: 4000
		BlueCard_R: 4000
		RWC_Cele_Fire: 10000
		RWC_Cele_Fire2: 10000
	}
},
// Hall of Abyss Guild Dungeon
{
	Id: 2249
	SpriteName: "PYURIEL"
	Name: "Pyuriel"
	JName: "Angry Student Pyuriel"
	Lv: 141
	Hp: 2205000
	Sp: 1
	Exp: 3000246
	JExp: 2400000
	AttackRange: 2
	Attack: [2515, 1513]
	Def: 388
	Mdef: 206
	Stats: {
		Str: 196
		Agi: 131
		Vit: 125
		Int: 276
		Dex: 401
		Luk: 156
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 576
	AttackMotion: 1380
	DamageMotion: 360
	DamageTakenRate: 10
	MvpExp: 750061
	MvpDrops: {
		Old_Card_Album: 5000
		Old_Violet_Box: 5000
		Old_Violet_Box: 5000
	}
	Drops: {
		High_Weapon_Box: 200
		Old_Violet_Box: 6000
		Old_Card_Album: 1000
		Sg_Weapon_Supply_Box: 6000
		Sg_White_Potion_Box: 4000
		Sg_Blue_Potion_Box: 2000
		Pyuriel_Card: 1
	}
},
{
	Id: 2250
	SpriteName: "LORA"
	Name: "Lora"
	JName: "Warrior Laura"
	Lv: 136
	Hp: 500255
	Sp: 1
	Exp: 33134
	JExp: 27576
	AttackRange: 2
	Attack: [1985, 1701]
	Def: 224
	Mdef: 58
	Stats: {
		Str: 144
		Agi: 92
		Vit: 86
		Int: 69
		Dex: 149
		Luk: 68
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 130
	AttackDelay: 1600
	AttackMotion: 432
	DamageMotion: 360
	Drops: {
		High_Weapon_Box: 10
		Old_Violet_Box: 6000
		Old_Card_Album: 100
		Sg_Weapon_Supply_Box: 100
		Sg_White_Potion_Box: 1000
		Sg_Blue_Potion_Box: 1000
		Lora_Card: 1
	}
},
{
	Id: 2251
	SpriteName: "GIOIA"
	Name: "Gioia"
	Lv: 146
	Hp: 2507989
	Sp: 1
	Exp: 3006902
	JExp: 2607094
	AttackRange: 1
	Attack: [1105, 2601]
	Def: 436
	Mdef: 218
	Stats: {
		Str: 180
		Agi: 201
		Vit: 156
		Int: 190
		Dex: 299
		Luk: 77
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Wind", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1344
	AttackMotion: 2592
	DamageMotion: 432
	DamageTakenRate: 10
	MvpExp: 751725
	MvpDrops: {
		Old_Card_Album: 5000
		Old_Violet_Box: 5000
		Old_Violet_Box: 5000
	}
	Drops: {
		High_Weapon_Box: 200
		Old_Violet_Box: 6000
		Old_Card_Album: 1000
		Sg_Weapon_Supply_Box: 6000
		Sg_White_Potion_Box: 4000
		Sg_Blue_Potion_Box: 2000
		Gioia_Card: 1
	}
},
{
	Id: 2252
	SpriteName: "ELVIRA"
	Name: "Elvira"
	Lv: 138
	Hp: 501765
	Sp: 1
	Exp: 35694
	JExp: 27138
	AttackRange: 3
	Attack: [699, 2101]
	Def: 171
	Mdef: 68
	Stats: {
		Str: 189
		Agi: 105
		Vit: 92
		Int: 85
		Dex: 198
		Luk: 72
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 880
	AttackMotion: 1224
	DamageMotion: 360
	Drops: {
		High_Weapon_Box: 10
		Old_Violet_Box: 6000
		Old_Card_Album: 100
		Sg_Weapon_Supply_Box: 100
		Sg_White_Potion_Box: 1000
		Sg_Blue_Potion_Box: 1000
		Elvira_Card: 1
	}
},
{
	Id: 2253
	SpriteName: "DAEHYON"
	Name: "Daehyon"
	JName: "General Daehyon"
	Lv: 142
	Hp: 2500148
	Sp: 1
	Exp: 3003122
	JExp: 2548440
	AttackRange: 2
	Attack: [2710, 1410]
	Def: 494
	Mdef: 123
	Stats: {
		Str: 116
		Agi: 123
		Vit: 154
		Int: 99
		Dex: 217
		Luk: 98
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 900
	AttackMotion: 792
	DamageMotion: 432
	DamageTakenRate: 10
	MvpExp: 750780
	MvpDrops: {
		Old_Card_Album: 5000
		Old_Violet_Box: 5000
		Old_Violet_Box: 5000
	}
	Drops: {
		High_Weapon_Box: 200
		Old_Violet_Box: 6000
		Old_Card_Album: 1000
		Sg_Weapon_Supply_Box: 6000
		Sg_White_Potion_Box: 4000
		Sg_Blue_Potion_Box: 2000
		Daehyon_Card: 1
	}
},
{
	Id: 2254
	SpriteName: "SOHEON"
	Name: "Soheon"
	JName: "Samurai Soheon"
	Lv: 137
	Hp: 502015
	Sp: 1
	Exp: 31430
	JExp: 25080
	AttackRange: 2
	Attack: [1591, 1036]
	Def: 210
	Mdef: 178
	Stats: {
		Str: 118
		Agi: 244
		Vit: 98
		Int: 126
		Dex: 246
		Luk: 102
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 1000
	AttackMotion: 1008
	DamageMotion: 432
	Drops: {
		High_Weapon_Box: 10
		Old_Violet_Box: 6000
		Old_Card_Album: 100
		Sg_Weapon_Supply_Box: 100
		Sg_White_Potion_Box: 1000
		Sg_Blue_Potion_Box: 1000
		Soheon_Card: 1
	}
},
{
	Id: 2255
	SpriteName: "KADES"
	Name: "Kades"
	JName: "Dark Guardian Kades"
	Lv: 143
	Hp: 2505000
	Sp: 1
	Exp: 3208000
	JExp: 2620000
	AttackRange: 1
	Attack: [2201, 2001]
	Def: 479
	Mdef: 262
	Stats: {
		Str: 191
		Agi: 223
		Vit: 187
		Int: 155
		Dex: 362
		Luk: 163
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 900
	AttackMotion: 648
	DamageMotion: 480
	DamageTakenRate: 10
	MvpExp: 802000
	MvpDrops: {
		Old_Card_Album: 5000
		Old_Violet_Box: 5000
		Old_Violet_Box: 5000
	}
	Drops: {
		High_Weapon_Box: 200
		Old_Violet_Box: 6000
		Old_Card_Album: 1000
		Sg_Weapon_Supply_Box: 6000
		Sg_White_Potion_Box: 4000
		Sg_Blue_Potion_Box: 2000
		Kades_Card: 1
	}
},
{
	Id: 2256
	SpriteName: "RUDO"
	Name: "Rudo"
	Lv: 135
	Hp: 501489
	Sp: 1
	Exp: 27266
	JExp: 24818
	AttackRange: 1
	Attack: [1401, 1501]
	Def: 196
	Mdef: 96
	Stats: {
		Str: 106
		Agi: 65
		Vit: 61
		Int: 42
		Dex: 125
		Luk: 72
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 1576
	AttackMotion: 504
	DamageMotion: 360
	Drops: {
		High_Weapon_Box: 10
		Old_Violet_Box: 6000
		Old_Card_Album: 100
		Sg_Weapon_Supply_Box: 100
		Sg_White_Potion_Box: 1000
		Sg_Blue_Potion_Box: 1000
		Rudo_Card: 1
	}
},
{
	Id: 2257
	SpriteName: "I_PIAMETTE"
	Name: "Piamette"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2258
	SpriteName: "I_PIAMETTE_"
	Name: "Piamette"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2259
	SpriteName: "I_GARDEN_KEEPER"
	Name: "Garden Keeper"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2260
	SpriteName: "G_GARDEN_KEEPER"
	Name: "Garden Keeper"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2261
	SpriteName: "I_GARDEN_WATCHER"
	Name: "Garden Watcher"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2262
	SpriteName: "G_GARDEN_WATCHER"
	Name: "Garden Watcher"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2263
	SpriteName: "I_WISH_MAIDEN"
	Name: "Wish Maiden"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2264
	SpriteName: "I_ARMAIA"
	Name: "Armaia"
	JName: "Armeyer Dinze"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2265
	SpriteName: "I_ARMAIA_"
	Name: "Armaia"
	JName: "Armeyer Dinze"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2266
	SpriteName: "I_EREND"
	Name: "Erend"
	JName: "Errende Ebecee"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2267
	SpriteName: "I_EREND_"
	Name: "Erend"
	JName: "Errende Ebecee"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2268
	SpriteName: "I_KAVAC"
	Name: "Kavac"
	JName: "Kavach Icarus"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2269
	SpriteName: "I_KAVAC_"
	Name: "Kavac"
	JName: "Kavach Icarus"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2270
	SpriteName: "I_RAWREL"
	Name: "Rawrel"
	JName: "Laurell Weinder"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2271
	SpriteName: "I_RAWREL_"
	Name: "Rawrel"
	JName: "Laurell Weinder"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2272
	SpriteName: "I_WHIKEBAIN"
	Name: "Whikebain"
	JName: "Wickebine Tres"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2273
	SpriteName: "I_WHIKEBAIN_"
	Name: "Whikebain"
	JName: "Wickebine Tres"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2274
	SpriteName: "I_YGNIZEM"
	Name: "Ygnizem"
	JName: "Egnigem Cenia"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2275
	SpriteName: "I_YGNIZEM_"
	Name: "Ygnizem"
	JName: "Egnigem Cenia"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2276
	SpriteName: "I_DOPPELGANGER"
	Name: "Doppelganger"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2277
	SpriteName: "G_LORA"
	Name: "Lora"
	JName: "Warrior Laura"
	Lv: 136
	Hp: 500255
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1985, 1701]
	Def: 224
	Mdef: 58
	Stats: {
		Str: 144
		Agi: 92
		Vit: 86
		Int: 69
		Dex: 149
		Luk: 68
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 130
	AttackDelay: 1600
	AttackMotion: 432
	DamageMotion: 360
},
{
	Id: 2278
	SpriteName: "G_ELVIRA"
	Name: "Elvira"
	Lv: 138
	Hp: 501765
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 3
	Attack: [699, 2101]
	Def: 171
	Mdef: 68
	Stats: {
		Str: 189
		Agi: 105
		Vit: 92
		Int: 85
		Dex: 198
		Luk: 72
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 880
	AttackMotion: 1224
	DamageMotion: 360
},
{
	Id: 2279
	SpriteName: "G_SOHEON"
	Name: "Soheon"
	Lv: 137
	Hp: 502015
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1591, 1036]
	Def: 210
	Mdef: 178
	Stats: {
		Str: 118
		Agi: 244
		Vit: 98
		Int: 126
		Dex: 246
		Luk: 102
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 1000
	AttackMotion: 1008
	DamageMotion: 432
},
{
	Id: 2280
	SpriteName: "G_RUDO"
	Name: "Rudo"
	Lv: 135
	Hp: 501489
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1401, 1501]
	Def: 196
	Mdef: 96
	Stats: {
		Str: 106
		Agi: 65
		Vit: 61
		Int: 42
		Dex: 125
		Luk: 72
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 1576
	AttackMotion: 504
	DamageMotion: 360
},
{
	Id: 2281
	SpriteName: "GLD_DARK_SHADOW"
	Name: "Abysmal Dark Shadow"
	JName: "Dark Shadow"
	Lv: 147
	Hp: 204109
	Sp: 1
	Exp: 23000
	JExp: 20200
	AttackRange: 1
	Attack: [1653, 1621]
	Def: 140
	Mdef: 44
	Stats: {
		Str: 155
		Agi: 126
		Vit: 89
		Int: 108
		Dex: 213
		Luk: 76
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 220
	AttackDelay: 768
	AttackMotion: 1776
	DamageMotion: 648
	Drops: {
		Piece_Of_Black_Cloth: 5000
		Skul_Ring: 1000
		Dagger_Of_Hunter: 6
		Piece_Of_Darkness: 1000
		Eyes_Stone_Ring: 2
		Sg_Violet_Potion_Box: 4
		Bradium: 4
	}
},
{
	Id: 2282
	SpriteName: "GLD_DARK_FRAME"
	Name: "Abysmal Dark Frame"
	JName: "Dark Frame"
	Lv: 145
	Hp: 180018
	Sp: 1
	Exp: 20202
	JExp: 20006
	AttackRange: 1
	Attack: [1850, 1601]
	Def: 81
	Mdef: 37
	Stats: {
		Str: 69
		Agi: 37
		Vit: 36
		Int: 10
		Dex: 64
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 920
	AttackMotion: 720
	DamageMotion: 200
	Drops: {
		Brigan: 4656
		Red_Frame: 1000
		Manteau: 30
		Velum_Encyclopedia: 2
		Sg_Violet_Potion_Box: 100
		Star_Crumb: 80
		Crystal_Mirror: 4
	}
},
{
	Id: 2283
	SpriteName: "GLD_DARK_PRIEST"
	Name: "Abysmal Dark Priest"
	JName: "Dark Priest"
	Lv: 141
	Hp: 181878
	Sp: 0
	Exp: 21096
	JExp: 21602
	AttackRange: 2
	Attack: [1326, 1651]
	Def: 62
	Mdef: 41
	Stats: {
		Str: 5
		Agi: 60
		Vit: 41
		Int: 89
		Dex: 94
		Luk: 42
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 864
	AttackMotion: 1252
	DamageMotion: 476
	Drops: {
		Velum_Bible: 2
		Black_Rosary: 2
		Sg_Blue_Potion_Box: 4
		Red_Gemstone: 450
		Sacred_Marks: 2
		Glittering_Clothes: 6
		Skull: 3000
	}
},
{
	Id: 2284
	SpriteName: "GLD_KOBOLD_1"
	Name: "Abysmal Kobold"
	JName: "Dark Axe Kobold"
	Lv: 145
	Hp: 194830
	Sp: 1
	Exp: 22080
	JExp: 21460
	AttackRange: 1
	Attack: [1851, 201]
	Def: 103
	Mdef: 25
	Stats: {
		Str: 109
		Agi: 76
		Vit: 61
		Int: 53
		Dex: 98
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1028
	AttackMotion: 528
	DamageMotion: 360
	Drops: {
		Steel: 100
		Cobold_Hair: 5336
		Zargon: 700
		Elunium: 26
		Velum_Guillotine: 2
		Sg_White_Potion_Box: 4
	}
},
{
	Id: 2285
	SpriteName: "GLD_KOBOLD_2"
	Name: "Abysmal Kobold"
	JName: "Dark Hammer Kobold"
	Lv: 142
	Hp: 181340
	Sp: 1
	Exp: 20720
	JExp: 20300
	AttackRange: 1
	Attack: [1401, 133]
	Def: 117
	Mdef: 59
	Stats: {
		Str: 96
		Agi: 61
		Vit: 55
		Int: 48
		Dex: 95
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Poison", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1528
	AttackMotion: 528
	DamageMotion: 360
	Drops: {
		Steel: 100
		Cobold_Hair: 5336
		Zargon: 700
		Elunium: 26
		Velum_Guillotine: 2
		Sg_White_Potion_Box: 4
	}
},
{
	Id: 2286
	SpriteName: "GLD_KOBOLD_3"
	Name: "Abysmal Kobold"
	JName: "Dark Mace Kobold"
	Lv: 141
	Hp: 182830
	Sp: 1
	Exp: 20240
	JExp: 20600
	AttackRange: 1
	Attack: [1301, 134]
	Def: 109
	Mdef: 48
	Stats: {
		Str: 103
		Agi: 64
		Vit: 59
		Int: 42
		Dex: 80
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1228
	AttackMotion: 528
	DamageMotion: 360
	Drops: {
		Steel: 100
		Cobold_Hair: 5336
		Zargon: 700
		Elunium: 26
		Velum_Spear: 2
		Sg_White_Potion_Box: 4
	}
},
{
	Id: 2287
	SpriteName: "GLD_KOBOLD_ARCHER"
	Name: "Abysmal Kobold Archer"
	JName: "Dark Kobold Archer"
	Lv: 142
	Hp: 180530
	Sp: 1
	Exp: 21140
	JExp: 20200
	AttackRange: 9
	Attack: [1504, 121]
	Def: 84
	Mdef: 5
	Stats: {
		Str: 99
		Agi: 39
		Vit: 48
		Int: 30
		Dex: 124
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1008
	AttackMotion: 1008
	DamageMotion: 384
	Drops: {
		Zargon: 250
		Steel: 60
		Cobold_Hair: 4850
		Ear_Of_Puppy: 50
		Sg_Violet_Potion_Box: 10
		Velum_CrossBow: 10
		Oridecon_Stone: 80
	}
},
{
	Id: 2288
	SpriteName: "GLD_TREASURE"
	Name: "Treasure Chest"
	Lv: 140
	Hp: 5
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 100
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Holy", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Woe_Violet_Potion: 4000
		Woe_White_Potion: 2000
		Woe_Blue_Potion: 2000
		Sg_Weapon_Supply_Box: 100
		Treasure_Box: 100
		Sg_Blue_Potion_Box: 100
		Woe_Violet_Potion: 4000
		Mental_Destroyer: 20
	}
},
// Additional Monsters
{
	Id: 2289
	SpriteName: "E_FABRE"
	Name: "Fabre"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2290
	SpriteName: "J_THIEF_BUG"
	Name: "Thief Bug"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2291
	SpriteName: "E_HORNET"
	Name: "Hornet"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2292
	SpriteName: "E_HORN"
	Name: "Horn"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2293
	SpriteName: "E_KIND_OF_BEETLE"
	Name: "Beetle King"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2294
	SpriteName: "E_ARGIOPE"
	Name: "Argiope"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2295
	SpriteName: "E_GIANT_SPIDER"
	Name: "Giant Spider"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2296
	SpriteName: "E_KILLER_MANTIS"
	Name: "Killer Mantis"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2297
	SpriteName: "E_GIANT_HONET"
	Name: "Giant Hornet"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2298
	SpriteName: "E_DRAGON_TAIL"
	Name: "Dragon Tail"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2299
	SpriteName: "E_STAINER"
	Name: "Stainer"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2300
	SpriteName: "E_CHONCHON"
	Name: "Chonchon"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2301
	SpriteName: "E_STEEL_CHONCHON"
	Name: "Steel Chonchon"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2302
	SpriteName: "E_HUNTER_FLY"
	Name: "Hunter Fly"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2303
	SpriteName: "E_MAYA"
	Name: "Maya"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2304
	SpriteName: "E_QUEEN_SCARABA"
	Name: "Queen Scaraba"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2305
	SpriteName: "E_UNGOLIANT"
	Name: "Ungoliant"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2306
	SpriteName: "E_GOLDEN_BUG"
	Name: "Golden Thief Bug"
	Lv: 12
	Hp: 15
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 1
	Mdef: 1
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 100
	AttackDelay: 768
	AttackMotion: 768
	DamageMotion: 480
},
{
	Id: 2307
	SpriteName: "J_MISTRESS"
	Name: "Mistress"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2308
	SpriteName: "KO_KAGE"
	Name: "Zanzou"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 1
	ChaseRange: 1
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
// Malaya Port
{
	Id: 2309
	SpriteName: "BUNGISNGIS"
	Name: "Bungisngis"
	Lv: 121
	Hp: 25513
	Sp: 0
	Exp: 3880
	JExp: 3300
	AttackRange: 1
	Attack: [851, 151]
	Def: 115
	Mdef: 35
	Stats: {
		Str: 71
		Agi: 32
		Vit: 61
		Int: 30
		Dex: 74
		Luk: 19
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1568
	AttackMotion: 432
	DamageMotion: 360
	Drops: {
		Brigan: 2000
		Beautiful_Flower: 2000
		Elunium: 20
		Insideout_Shirt: 200
		Bungisngis_Card: 1
	}
},
{
	Id: 2310
	SpriteName: "ENGKANTO"
	Name: "Engkanto"
	Lv: 125
	Hp: 23948
	Sp: 1
	Exp: 3446
	JExp: 3094
	AttackRange: 1
	Attack: [675, 124]
	Def: 101
	Mdef: 41
	Stats: {
		Str: 68
		Agi: 57
		Vit: 49
		Int: 57
		Dex: 81
		Luk: 27
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1424
	AttackMotion: 576
	DamageMotion: 360
	Drops: {
		Brigan: 2000
		Beautiful_Flower: 2000
		Monsters_Feed: 2000
		Insideout_Shirt: 200
		Engkanto_Card: 1
	}
},
{
	Id: 2311
	SpriteName: "MANANANGGAL"
	Name: "Manananggal"
	Lv: 107
	Hp: 20451
	Sp: 1
	Exp: 2830
	JExp: 2820
	AttackRange: 1
	Attack: [801, 103]
	Def: 64
	Mdef: 31
	Stats: {
		Str: 75
		Agi: 85
		Vit: 45
		Int: 71
		Dex: 75
		Luk: 46
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 280
	AttackMotion: 720
	DamageMotion: 360
	Drops: {
		Silver_Bracelet: 4000
		Elegant_Flower: 2000
		Wing_Of_Red_Bat: 2000
		Tooth_Of_Bat: 2000
		Beautiful_Flower: 2000
		Mysterious_Flower: 2000
		Insideout_Shirt: 200
		Manananggal_Card: 1
	}
},
{
	Id: 2312
	SpriteName: "MANGKUKULAM"
	Name: "Mangkukulam"
	Lv: 110
	Hp: 20151
	Sp: 1
	Exp: 3034
	JExp: 2702
	AttackRange: 1
	Attack: [582, 196]
	Def: 89
	Mdef: 75
	Stats: {
		Str: 35
		Agi: 71
		Vit: 31
		Int: 82
		Dex: 64
		Luk: 52
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1664
	AttackMotion: 336
	DamageMotion: 480
	Drops: {
		Brigan: 2000
		Elegant_Flower: 2000
		Tatters_Clothes: 2000
		Beautiful_Flower: 2000
		Mysterious_Flower: 2000
		Insideout_Shirt: 200
		Mangkukulam_Card: 1
	}
},
{
	Id: 2313
	SpriteName: "TIKBALANG"
	Name: "Tikbalang"
	Lv: 115
	Hp: 22131
	Sp: 1
	Exp: 3512
	JExp: 2702
	AttackRange: 1
	Attack: [781, 115]
	Def: 84
	Mdef: 34
	Stats: {
		Str: 71
		Agi: 52
		Vit: 84
		Int: 44
		Dex: 64
		Luk: 46
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 130
	AttackDelay: 1064
	AttackMotion: 936
	DamageMotion: 360
	Drops: {
		Tikbalang_Thick_Spine: 1000
		Oridecon: 20
		Insideout_Shirt: 200
		Tikbalang_Card: 1
	}
},
{
	Id: 2314
	SpriteName: "TIYANAK"
	Name: "Tiyanak"
	Lv: 105
	Hp: 17146
	Sp: 1
	Exp: 2628
	JExp: 2202
	AttackRange: 1
	Attack: [457, 251]
	Def: 76
	Mdef: 21
	Stats: {
		Str: 41
		Agi: 58
		Vit: 41
		Int: 51
		Dex: 72
		Luk: 47
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 496
	AttackMotion: 504
	DamageMotion: 360
	Drops: {
		Silver_Bracelet: 3000
		Mysterious_Flower: 2000
		Sticky_Mucus: 2000
		Tiyanak_Card: 1
	}
},
{
	Id: 2315
	SpriteName: "WAKWAK"
	Name: "Wakwak"
	Lv: 111
	Hp: 20012
	Sp: 1
	Exp: 2748
	JExp: 2508
	AttackRange: 1
	Attack: [561, 301]
	Def: 24
	Mdef: 71
	Stats: {
		Str: 54
		Agi: 75
		Vit: 64
		Int: 65
		Dex: 77
		Luk: 31
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 424
	AttackMotion: 576
	DamageMotion: 360
	Drops: {
		Silver_Bracelet: 3000
		Mysterious_Flower: 2000
		Insideout_Shirt: 400
		Wakwak_Card: 1
	}
},
{
	Id: 2316
	SpriteName: "JEJELING"
	Name: "Jejeling"
	Lv: 100
	Hp: 10247
	Sp: 1
	Exp: 1602
	JExp: 1482
	AttackRange: 1
	Attack: [450, 715]
	Def: 100
	Mdef: 26
	Stats: {
		Str: 51
		Agi: 71
		Vit: 84
		Int: 54
		Dex: 15
		Luk: 104
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1328
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Jejellopy: 4000
		Jellopy: 2000
		Beautiful_Flower: 200
		Elegant_Flower: 200
		Mysterious_Flower: 200
		Insideout_Shirt: 200
		Jejeling_Card: 1
	}
},
{
	Id: 2317
	SpriteName: "BANGUNGOT_1"
	Name: "Bangungot"
	Lv: 115
	Hp: 1519517
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [2561, 1504]
	Def: 411
	Mdef: 95
	Stats: {
		Str: 151
		Agi: 192
		Vit: 110
		Int: 112
		Dex: 251
		Luk: 57
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 920
	AttackMotion: 1080
	DamageMotion: 360
	Drops: {
		Bangungot_Card: 1
	}
},
{
	Id: 2318
	SpriteName: "BANGUNGOT_2"
	Name: "Bangungot"
	Lv: 99
	Hp: 1409758
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [2561, 1504]
	Def: 411
	Mdef: 95
	Stats: {
		Str: 151
		Agi: 192
		Vit: 110
		Int: 112
		Dex: 251
		Luk: 57
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		Boss: true
		Plant: true
	}
	MoveSpeed: 2000
	AttackDelay: 920
	AttackMotion: 1080
	DamageMotion: 360
},
{
	Id: 2319
	SpriteName: "BUWAYA"
	Name: "Buwaya"
	Lv: 151
	Hp: 4090365
	Sp: 1
	Exp: 6000024
	JExp: 5603128
	AttackRange: 1
	Attack: [3614, 3501]
	Def: 201
	Mdef: 78
	Stats: {
		Str: 151
		Agi: 201
		Vit: 130
		Int: 231
		Dex: 310
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Water", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1424
	AttackMotion: 576
	DamageMotion: 360
	MvpExp: 1500006
	Drops: {
		Buwaya_Doll: 4000
		Buwaya_Spirit_Piece: 100
		Ancient_Grudge: 4000
		Buwaya_Cloth: 2000
		Kalasak: 200
		Ancient_Grudge: 20000
		Buwaya_Card: 1
	}
},
{
	Id: 2320
	SpriteName: "BAKONAWA_1"
	Name: "Bakonawa"
	Lv: 156
	Hp: 3351884
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 10
	Attack: [4801, 2501]
	Def: 472
	Mdef: 0
	Stats: {
		Str: 251
		Agi: 134
		Vit: 194
		Int: 70
		Dex: 237
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Water", 4)
	Mode: {
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 2000
	AttackDelay: 440
	AttackMotion: 672
	DamageMotion: 432
	Drops: {
		Bakonawa_Card: 1
	}
},
{
	Id: 2321
	SpriteName: "BAKONAWA_2"
	Name: "Bakonawa"
	Lv: 156
	Hp: 3351884
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 10
	Attack: [4801, 2501]
	Def: 472
	Mdef: 0
	Stats: {
		Str: 251
		Agi: 134
		Vit: 194
		Int: 70
		Dex: 237
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Water", 4)
	Mode: {
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 2000
	AttackDelay: 440
	AttackMotion: 672
	DamageMotion: 432
},
{
	Id: 2322
	SpriteName: "BAKONAWA_3"
	Name: "Bakonawa"
	Lv: 156
	Hp: 3351884
	Sp: 1
	Exp: 5020222
	JExp: 4690302
	AttackRange: 10
	Attack: [4801, 2501]
	Def: 472
	Mdef: 0
	Stats: {
		Str: 251
		Agi: 134
		Vit: 194
		Int: 70
		Dex: 237
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Water", 4)
	Mode: {
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 2000
	AttackDelay: 440
	AttackMotion: 672
	DamageMotion: 432
},
{
	Id: 2323
	SpriteName: "EVENT_BOMB"
	Name: "Bomb Poring"
	Lv: 100
	Hp: 50000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [120, 320]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 28
		Vit: 28
		Int: 0
		Dex: 33
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Gift_Box_1: 1000
		Gift_Box_2: 1000
		Gift_Box_3: 1000
		Gift_Box_4: 1000
	}
},
{
	Id: 2324
	SpriteName: "EVENT_RANGE"
	Name: "Penomena"
	Lv: 100
	Hp: 50000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 7
	Attack: [481, 522]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 76
		Agi: 38
		Vit: 35
		Int: 35
		Dex: 107
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 832
	AttackMotion: 500
	DamageMotion: 600
	Drops: {
		Gift_Box_1: 1000
		Gift_Box_2: 1000
		Gift_Box_3: 1000
		Gift_Box_4: 1000
	}
},
{
	Id: 2325
	SpriteName: "M_BAPHOMET_"
	Name: "Baphomet"
	JName: "Baphomet Jr."
	Lv: 57
	Hp: 7510
	Sp: 204
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [810, 145]
	Def: 70
	Mdef: 40
	Stats: {
		Str: 52
		Agi: 60
		Vit: 36
		Int: 17
		Dex: 57
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 868
	AttackMotion: 480
	DamageMotion: 120
},
{
	Id: 2326
	SpriteName: "M_GALAPAGO"
	Name: "Galapago"
	Lv: 45
	Hp: 7513
	Sp: 201
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [760, 155]
	Def: 70
	Mdef: 40
	Stats: {
		Str: 30
		Agi: 28
		Vit: 29
		Int: 18
		Dex: 30
		Luk: 16
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1430
	AttackMotion: 1080
	DamageMotion: 1080
},
{
	Id: 2327
	SpriteName: "BANGUNGOT_3"
	Name: "Bangungot"
	JName: "Bangungot Doll"
	Lv: 115
	Hp: 250
	Sp: 1
	Exp: 1563082
	JExp: 1522402
	AttackRange: 1
	Attack: [2561, 1504]
	Def: 411
	Mdef: 95
	Stats: {
		Str: 151
		Agi: 192
		Vit: 110
		Int: 112
		Dex: 251
		Luk: 57
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		Plant: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 2000
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Bangungot_Doll: 4000
		Bangungot_Spirit_Piece: 100
		Ancient_Grudge: 4000
		Bangungot_Boots: 2000
		Kalasak: 200
		Ancient_Grudge: 20000
	}
},
{
	Id: 2328
	SpriteName: "MA_DRUM"
	Name: "Drum"
	JName: "Book"
	Lv: 1
	Hp: 200
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 100
	Mdef: 99
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Plant: true
	}
	MoveSpeed: 2000
	AttackDelay: 1
	AttackMotion: 1
	DamageMotion: 1
},
{
	Id: 2329
	SpriteName: "BUWAYA_EGG"
	Name: "Buwaya's Egg"
	Lv: 100
	Hp: 10000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [1, 1]
	Def: 90
	Mdef: 90
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	MoveSpeed: 2000
	AttackDelay: 1001
	AttackMotion: 1
	DamageMotion: 1
},
{
	Id: 2330
	SpriteName: "BUWAYA_SLAVE"
	Name: "Buwaya's Slave"
	JName: "Slave"
	Lv: 135
	Hp: 20145
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [2413, 2041]
	Def: 105
	Mdef: 71
	Stats: {
		Str: 151
		Agi: 120
		Vit: 110
		Int: 102
		Dex: 143
		Luk: 61
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 576
	AttackMotion: 960
	DamageMotion: 504
},
{
	Id: 2331
	SpriteName: "MA_SEAW"
	Name: "Seaweed"
	Lv: 100
	Hp: 10
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 1]
	Def: 1
	Mdef: 1
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 1)
	Mode: {
		Aggressive: true
		Plant: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 2000
	AttackDelay: 384
	AttackMotion: 720
	DamageMotion: 360
},
{
	Id: 2332
	SpriteName: "BUWAYA_GHOST"
	Name: "Fake Buwaya"
	JName: "Buwaya"
	Lv: 138
	Hp: 30000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1280, 1252]
	Def: 481
	Mdef: 78
	Stats: {
		Str: 201
		Agi: 248
		Vit: 174
		Int: 112
		Dex: 371
		Luk: 57
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Water", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1424
	AttackMotion: 576
	DamageMotion: 360
},
{
	Id: 2333
	SpriteName: "BUWAYA_WEAK"
	Name: "Buwaya's Weakness"
	JName: "Weakpoint"
	Lv: 138
	Hp: 20
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 1]
	Def: 100
	Mdef: 78
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Water", 4)
	Mode: {
		Boss: true
		Plant: true
	}
	MoveSpeed: 2000
	AttackDelay: 1
	AttackMotion: 1
	DamageMotion: 1
},
{
	Id: 2334
	SpriteName: "G_WAKWAK"
	Name: "Wakwak"
	Lv: 145
	Hp: 194830
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1544, 3171]
	Def: 24
	Mdef: 104
	Stats: {
		Str: 101
		Agi: 154
		Vit: 104
		Int: 184
		Dex: 151
		Luk: 71
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 100
	AttackDelay: 424
	AttackMotion: 576
	DamageMotion: 360
},
{
	Id: 2335
	SpriteName: "MA_TREASURE"
	Name: "Treasure Chest"
	JName: "Bakonawa's Treasure"
	Lv: 140
	Hp: 5
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 100
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 1199
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Holy", 1)
	Mode: {
		Boss: true
		Detector: true
	}
	MoveSpeed: 0
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		Bakonawa_Doll: 4000
		Bakonawa_Spirit_Piece: 100
		Ancient_Grudge: 4000
		Bakonawa_Armor: 2000
		Kalasak: 200
		Gold: 4000
		Ancient_Grudge: 20000
	}
},
{
	Id: 2336
	SpriteName: "DOMOVOI"
	Name: "Domovoi"
	Lv: 38
	Hp: 898
	Sp: 1
	Exp: 135
	JExp: 152
	AttackRange: 1
	Attack: [63, 74]
	Def: 40
	Mdef: 0
	Stats: {
		Str: 20
		Agi: 11
		Vit: 34
		Int: 20
		Dex: 19
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 800
	AttackMotion: 1200
	DamageMotion: 288
},
{
	Id: 2337
	SpriteName: "HIDDEN_MOB"
	Name: "Hidden Mob"
	JName: "Monster"
	Lv: 151
	Hp: 10000
	Sp: 200
	Exp: 0
	JExp: 0
	AttackRange: 7
	Attack: [0, 1000]
	Def: 200
	Mdef: 10
	Stats: {
		Str: 200
		Agi: 200
		Vit: 200
		Int: 200
		Dex: 200
		Luk: 200
	}
	ViewRange: 12
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Ghost", 4)
	Mode: {
		Aggressive: true
		Plant: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 2000
	AttackDelay: 0
	AttackMotion: 1000
	DamageMotion: 0
},
{
	Id: 2338
	SpriteName: "MD_MANANANGGAL"
	Name: "Bangungot Manananggal"
	JName: "Manananggal"
	Lv: 107
	Hp: 204511
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [801, 103]
	Def: 64
	Mdef: 31
	Stats: {
		Str: 75
		Agi: 85
		Vit: 45
		Int: 71
		Dex: 75
		Luk: 46
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 280
	AttackMotion: 720
	DamageMotion: 360
},
{
	Id: 2339
	SpriteName: "MD_MANGKUKULAM"
	Name: "Bangungot Mangkukulam"
	JName: "Mangkukulam"
	Lv: 110
	Hp: 102154
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [582, 196]
	Def: 89
	Mdef: 75
	Stats: {
		Str: 35
		Agi: 71
		Vit: 31
		Int: 82
		Dex: 64
		Luk: 52
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1664
	AttackMotion: 336
	DamageMotion: 480
},
{
	Id: 2340
	SpriteName: "MD_TIYANAK"
	Name: "Tiyanak"
	Lv: 105
	Hp: 50211
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [457, 251]
	Def: 76
	Mdef: 21
	Stats: {
		Str: 41
		Agi: 58
		Vit: 41
		Int: 51
		Dex: 72
		Luk: 47
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 496
	AttackMotion: 504
	DamageMotion: 360
},
{
	Id: 2341
	SpriteName: "RWC_BOSS2011"
	Name: "RWC Boss"
	JName: "2011 RWC Boss"
	Lv: 141
	Hp: 3205000
	Sp: 1
	Exp: 2600000
	JExp: 2200000
	AttackRange: 3
	Attack: [7343, 4412]
	Def: 588
	Mdef: 506
	Stats: {
		Str: 196
		Agi: 131
		Vit: 125
		Int: 276
		Dex: 401
		Luk: 156
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 576
	AttackMotion: 576
	DamageMotion: 480
	MvpExp: 650000
	MvpDrops: {
		Old_Card_Album: 5000
		Old_Card_Album: 5000
		Old_Card_Album: 5000
	}
	Drops: {
		Splendid_Box: 10000
		Treasure_Box: 10000
		Splendid_Box2: 10000
		White_Slim_Pot_Box2: 10000
		High_Weapon_Box: 10000
		Old_Violet_Box: 10000
		RWC_Cele_Fire: 10000
		RWC_Cele_Fire2: 10000
	}
},
// Additional Mercenary Monsters
{
	Id: 2342
	SpriteName: "MER_DIABOLIC"
	Name: "Diabolic"
	Lv: 83
	Hp: 9815
	Sp: 234
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1100, 200]
	Def: 60
	Mdef: 60
	Stats: {
		Str: 85
		Agi: 90
		Vit: 71
		Int: 43
		Dex: 85
		Luk: 105
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1080
	AttackMotion: 780
	DamageMotion: 180
},
{
	Id: 2343
	SpriteName: "HIDDEN_MOB_W"
	Name: "Hidden Mob"
	JName: "Monster"
	Lv: 151
	Hp: 10000
	Sp: 200
	Exp: 0
	JExp: 0
	AttackRange: 7
	Attack: [0, 1000]
	Def: 200
	Mdef: 10
	Stats: {
		Str: 200
		Agi: 200
		Vit: 200
		Int: 200
		Dex: 200
		Luk: 200
	}
	ViewRange: 12
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Ghost", 4)
	Mode: {
		Aggressive: true
		Plant: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 2000
	AttackDelay: 0
	AttackMotion: 2000
	DamageMotion: 0
},
{
	Id: 2344
	SpriteName: "MER_WISH_MAIDEN"
	Name: "Wish Maiden"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2345
	SpriteName: "MER_ZHERLTHSH"
	Name: "Zherlthsh"
	JName: "Zealotus"
	Lv: 83
	Hp: 9815
	Sp: 234
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1100, 200]
	Def: 60
	Mdef: 60
	Stats: {
		Str: 85
		Agi: 90
		Vit: 71
		Int: 43
		Dex: 85
		Luk: 105
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1080
	AttackMotion: 780
	DamageMotion: 180
},
{
	Id: 2346
	SpriteName: "MER_KTULLANUX"
	Name: "Ktullanux"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2347
	SpriteName: "MER_EDDGA"
	Name: "Eddga"
	Lv: 83
	Hp: 9815
	Sp: 234
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1100, 200]
	Def: 60
	Mdef: 60
	Stats: {
		Str: 85
		Agi: 90
		Vit: 71
		Int: 43
		Dex: 85
		Luk: 105
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1080
	AttackMotion: 780
	DamageMotion: 180
},
{
	Id: 2348
	SpriteName: "MER_CIVIL_SERVANT"
	Name: "Civil Servant"
	JName: "Mao Guai"
	Lv: 83
	Hp: 9815
	Sp: 234
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1100, 200]
	Def: 60
	Mdef: 60
	Stats: {
		Str: 85
		Agi: 90
		Vit: 71
		Int: 43
		Dex: 85
		Luk: 105
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1080
	AttackMotion: 780
	DamageMotion: 180
},
{
	Id: 2349
	SpriteName: "MER_LOLI_RURI"
	Name: "Loli Ruri"
	Lv: 83
	Hp: 9815
	Sp: 234
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1100, 200]
	Def: 60
	Mdef: 60
	Stats: {
		Str: 85
		Agi: 90
		Vit: 71
		Int: 43
		Dex: 85
		Luk: 105
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1080
	AttackMotion: 780
	DamageMotion: 180
},
{
	Id: 2350
	SpriteName: "MER_SEDORA"
	Name: "Sedora"
	JName: "Lamp Rey"
	Lv: 83
	Hp: 9815
	Sp: 234
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1100, 200]
	Def: 60
	Mdef: 60
	Stats: {
		Str: 85
		Agi: 90
		Vit: 71
		Int: 43
		Dex: 85
		Luk: 105
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1080
	AttackMotion: 780
	DamageMotion: 180
},
{
	Id: 2351
	SpriteName: "MER_CHEPET"
	Name: "Chepet"
	Lv: 83
	Hp: 9815
	Sp: 234
	Exp: 0
	JExp: 0
	AttackRange: 2
	Attack: [1100, 200]
	Def: 60
	Mdef: 60
	Stats: {
		Str: 85
		Agi: 90
		Vit: 71
		Int: 43
		Dex: 85
		Luk: 105
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1080
	AttackMotion: 780
	DamageMotion: 180
},
// Nightmare Pyramids
{
	Id: 2352
	SpriteName: "E_RSX_0805"
	Name: "RSX 0805"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2353
	SpriteName: "N_MINOROUS"
	Name: "Nightmare Minorous"
	JName: "Minorous (Nightmare)"
	Lv: 121
	Hp: 27141
	Sp: 1
	Exp: 4402
	JExp: 3820
	AttackRange: 1
	Attack: [853, 154]
	Def: 131
	Mdef: 41
	Stats: {
		Str: 71
		Agi: 47
		Vit: 51
		Int: 51
		Dex: 81
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1360
	AttackMotion: 960
	DamageMotion: 432
	Drops: {
		Nose_Ring: 10000
		Oridecon_Stone: 400
		Two_Handed_Axe_: 4
		Hammer_Of_Blacksmith: 20
		Beef_Head_Meat: 200
		Axe: 400
		Lemon: 600
		Minorous_Card: 1
	}
},
{
	Id: 2354
	SpriteName: "N_MUMMY"
	Name: "Nightmare Mummy"
	JName: "Mummy (Nightmare)"
	Lv: 117
	Hp: 22557
	Sp: 1
	Exp: 4300
	JExp: 3242
	AttackRange: 1
	Attack: [761, 192]
	Def: 110
	Mdef: 21
	Stats: {
		Str: 61
		Agi: 5
		Vit: 21
		Int: 1
		Dex: 72
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1772
	AttackMotion: 72
	DamageMotion: 384
	Drops: {
		Rotten_Bandage: 18000
		Oridecon_Stone: 200
		Mementos: 1000
		Glove: 4
		Silver_Ring: 20
		Panacea: 500
		Yellow_Herb: 2000
		Mummy_Card: 1
	}
},
{
	Id: 2355
	SpriteName: "N_VERIT"
	Name: "Nightmare Verit"
	JName: "Verit (Nightmare)"
	Lv: 115
	Hp: 21034
	Sp: 1
	Exp: 4148
	JExp: 3142
	AttackRange: 1
	Attack: [623, 142]
	Def: 82
	Mdef: 20
	Stats: {
		Str: 57
		Agi: 7
		Vit: 31
		Int: 15
		Dex: 7
		Luk: 7
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 2468
	AttackMotion: 768
	DamageMotion: 480
	Drops: {
		Immortal_Heart: 18000
		Zargon: 1400
		Rotten_Bandage: 2200
		White_Herb: 1200
		Skul_Ring: 4
		Flower_Ring: 400
		Armlet_Of_Obedience: 40
		Verit_Card: 1
	}
},
{
	Id: 2356
	SpriteName: "N_MIMIC"
	Name: "Nightmare Mimic"
	JName: "Mimic (Nightmare)"
	Lv: 137
	Hp: 63101
	Sp: 1
	Exp: 6402
	JExp: 5408
	AttackRange: 1
	Attack: [1345, 413]
	Def: 210
	Mdef: 40
	Stats: {
		Str: 71
		Agi: 180
		Vit: 35
		Int: 21
		Dex: 61
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 972
	AttackMotion: 500
	DamageMotion: 288
	Drops: {
		Old_Violet_Box: 12
		Old_Blue_Box: 100
		Booby_Trap: 2400
		Light_Granule: 2000
		Rosary_: 4
		Elunium_Stone: 540
		Mimic_Card: 1
	}
},
{
	Id: 2357
	SpriteName: "G_N_MIMIC"
	Name: "Nightmare Mimic"
	JName: "Mimic (Nightmare)"
	Lv: 137
	Hp: 63101
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1345, 413]
	Def: 210
	Mdef: 40
	Stats: {
		Str: 71
		Agi: 180
		Vit: 35
		Int: 21
		Dex: 61
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 972
	AttackMotion: 500
	DamageMotion: 288
},
{
	Id: 2358
	SpriteName: "N_ARCLOUSE"
	Name: "Nightmare Arclouse"
	JName: "Arclouze (Nightmare)"
	Lv: 134
	Hp: 48013
	Sp: 1
	Exp: 5012
	JExp: 4606
	AttackRange: 1
	Attack: [1104, 341]
	Def: 101
	Mdef: 45
	Stats: {
		Str: 65
		Agi: 85
		Vit: 51
		Int: 45
		Dex: 251
		Luk: 31
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 960
	AttackMotion: 500
	DamageMotion: 480
	Drops: {
		Round_Shell: 7000
		Sticky_Mucus: 6000
		Solid_Shell: 1600
		Zargon: 1000
		Red_Gemstone: 600
		Great_Nature: 40
		Zargon: 5000
		Arclouse_Card: 1
	}
},
{
	Id: 2359
	SpriteName: "G_N_ARCLOUSE"
	Name: "Nightmare Arclouse"
	JName: "Arclouze (Nightmare)"
	Lv: 134
	Hp: 48013
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1104, 341]
	Def: 101
	Mdef: 45
	Stats: {
		Str: 65
		Agi: 85
		Vit: 51
		Int: 45
		Dex: 251
		Luk: 31
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 960
	AttackMotion: 500
	DamageMotion: 480
},
{
	Id: 2360
	SpriteName: "N_ANCIENT_MUMMY"
	Name: "Nightmare Ancient Mummy"
	JName: "Ancient Mummy"
	Lv: 141
	Hp: 90157
	Sp: 1
	Exp: 9424
	JExp: 8002
	AttackRange: 1
	Attack: [1841, 347]
	Def: 142
	Mdef: 51
	Stats: {
		Str: 126
		Agi: 75
		Vit: 61
		Int: 85
		Dex: 187
		Luk: 24
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 1772
	AttackMotion: 120
	DamageMotion: 384
	Drops: {
		Rotten_Bandage: 9000
		Mementos: 3600
		Glove_: 4
		Silver_Ring: 300
		Runstone_Ancient: 20
		Oridecon_Stone: 300
		Elunium_Stone: 200
		Ancient_Mummy_Card: 1
	}
},
{
	Id: 2361
	SpriteName: "G_N_ANCIENT_MUMMY"
	Name: "Nightmare Ancient Mummy"
	JName: "Ancient Mummy (Nightmare)"
	Lv: 141
	Hp: 90157
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1841, 347]
	Def: 142
	Mdef: 51
	Stats: {
		Str: 126
		Agi: 75
		Vit: 61
		Int: 85
		Dex: 187
		Luk: 24
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 1772
	AttackMotion: 120
	DamageMotion: 384
},
{
	Id: 2362
	SpriteName: "N_AMON_RA"
	Name: "Nightmare Amon Ra"
	JName: "Amon Ra (Nightmare)"
	Lv: 145
	Hp: 2515784
	Sp: 1
	Exp: 3252974
	JExp: 2604174
	AttackRange: 3
	Attack: [4106, 3201]
	Def: 367
	Mdef: 301
	Stats: {
		Str: 86
		Agi: 89
		Vit: 120
		Int: 131
		Dex: 101
		Luk: 92
	}
	ViewRange: 14
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 3)
	Mode: {
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 170
	AttackDelay: 854
	AttackMotion: 2016
	DamageMotion: 480
	DamageTakenRate: 10
	MvpExp: 813243
	MvpDrops: {
		Yggdrasilberry: 5500
		Seed_Of_Yggdrasil: 3500
		Crystal_Jewel__: 5500
	}
	Drops: {
		Spinx_Helm: 300
		Safety_Ring: 100
		Rojerta_Piece: 14000
		Elunium: 7600
		Old_Card_Album: 800
		Tablet: 20
		Yggdrasilberry: 3000
		Amon_Ra_Card: 1
	}
},
// Eclage (14.2)
{
	Id: 2363
	SpriteName: "MENBLATT"
	Name: "Menblatt"
	Lv: 143
	Hp: 82200
	Sp: 1
	Exp: 4150
	JExp: 4105
	AttackRange: 3
	Attack: [816, 201]
	Def: 79
	Mdef: 50
	Stats: {
		Str: 70
		Agi: 68
		Vit: 40
		Int: 55
		Dex: 108
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 145
	AttackDelay: 472
	AttackMotion: 1056
	DamageMotion: 480
	Drops: {
		Fancy_Fairy_Wing: 3000
		Great_Wing: 1000
		Sharp_Feeler: 2304
		Peony_Mommy: 5
		Menblatt_Card: 1
	}
},
{
	Id: 2364
	SpriteName: "PETAL"
	Name: "Petal"
	Lv: 141
	Hp: 81031
	Sp: 1
	Exp: 4058
	JExp: 4033
	AttackRange: 9
	Attack: [671, 173]
	Def: 73
	Mdef: 33
	Stats: {
		Str: 70
		Agi: 82
		Vit: 55
		Int: 45
		Dex: 108
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1500
	AttackMotion: 768
	DamageMotion: 480
	Drops: {
		Pile_Of_Acorn: 3000
		Unripe_Acorn: 1000
		Acorn: 1000
		Piece_Of_Darkness: 250
		Slapping_Herb: 5
		Petal_Card: 1
	}
},
{
	Id: 2365
	SpriteName: "CENERE"
	Name: "Cenere"
	Lv: 146
	Hp: 130131
	Sp: 1
	Exp: 7117
	JExp: 6854
	AttackRange: 1
	Attack: [1802, 1031]
	Def: 87
	Mdef: 81
	Stats: {
		Str: 67
		Agi: 39
		Vit: 30
		Int: 35
		Dex: 95
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1500
	AttackMotion: 720
	DamageMotion: 360
	Drops: {
		Dustball: 5000
		Poisonous_Gas: 500
		Mould_Powder: 1500
		Air_Pollutant: 1000
		Yggdrasil_Dust: 500
		Cenere_Card: 1
	}
},
{
	Id: 2366
	SpriteName: "ANTIQUE_BOOK"
	Name: "Antique Book"
	Lv: 148
	Hp: 134615
	Sp: 1
	Exp: 7225
	JExp: 7044
	AttackRange: 1
	Attack: [1861, 1213]
	Def: 74
	Mdef: 42
	Stats: {
		Str: 67
		Agi: 53
		Vit: 32
		Int: 44
		Dex: 125
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 864
	AttackMotion: 960
	DamageMotion: 480
	Drops: {
		Leaf_Bookmark: 3000
		Bookclip_In_Memory: 1000
		Worn_Out_Page: 1000
		Snow_Flip: 5
		AntiqueBook_Card: 1
	}
},
{
	Id: 2367
	SpriteName: "LICHTERN_B"
	Name: "Blue Lichtern"
	JName: "Lichtern"
	Lv: 149
	Hp: 131211
	Sp: 1
	Exp: 7187
	JExp: 6841
	AttackRange: 1
	Attack: [1513, 1410]
	Def: 76
	Mdef: 41
	Stats: {
		Str: 124
		Agi: 74
		Vit: 60
		Int: 55
		Dex: 92
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Water", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 480
	AttackMotion: 1728
	DamageMotion: 480
	Drops: {
		Star_Crumb: 1000
		Sparkling_Dust: 1000
		Mistic_Frozen: 20
		Snow_Flip: 5
		LichternB_Card: 1
	}
},
{
	Id: 2368
	SpriteName: "LICHTERN_Y"
	Name: "Yellow Lichtern"
	JName: "Lichtern"
	Lv: 147
	Hp: 131513
	Sp: 1
	Exp: 7071
	JExp: 6972
	AttackRange: 1
	Attack: [1416, 1561]
	Def: 84
	Mdef: 51
	Stats: {
		Str: 141
		Agi: 94
		Vit: 75
		Int: 91
		Dex: 144
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 0
	AttackMotion: 2304
	DamageMotion: 480
	Drops: {
		Star_Crumb: 1000
		Sparkling_Dust: 1000
		Rough_Wind: 20
		Slapping_Herb: 5
		LichternG_Card: 1 // FIXME: Are the yellow and green intended to be swapped? (see names in the item db)
	}
},
{
	Id: 2369
	SpriteName: "LICHTERN_R"
	Name: "Red Lichtern"
	JName: "Lichtern"
	Lv: 149
	Hp: 135718
	Sp: 1
	Exp: 7201
	JExp: 7215
	AttackRange: 1
	Attack: [1647, 1449]
	Def: 111
	Mdef: 53
	Stats: {
		Str: 147
		Agi: 77
		Vit: 66
		Int: 65
		Dex: 133
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 0
	AttackMotion: 4032
	DamageMotion: 480
	Drops: {
		Star_Crumb: 1000
		Sparkling_Dust: 1000
		Flame_Heart: 20
		Peony_Mommy: 5
		LichternR_Card: 1
	}
},
{
	Id: 2370
	SpriteName: "LICHTERN_G"
	Name: "Green Lichtern"
	JName: "Lichtern"
	Lv: 151
	Hp: 133451
	Sp: 1
	Exp: 7214
	JExp: 6852
	AttackRange: 1
	Attack: [1547, 1594]
	Def: 120
	Mdef: 57
	Stats: {
		Str: 121
		Agi: 60
		Vit: 58
		Int: 62
		Dex: 102
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Ghost", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 0
	AttackMotion: 3456
	DamageMotion: 480
	Drops: {
		Star_Crumb: 1000
		Sparkling_Dust: 1000
		Great_Nature: 20
		Yggdrasil_Dust: 5
		LichternY_Card: 1 // FIXME: Are the yellow and green intended to be swapped? (see names in the item db)
	}
},
{
	Id: 2371
	SpriteName: "FAITHFUL_MANAGER"
	Name: "Faithful Manager"
	Lv: 155
	Hp: 151548
	Sp: 1
	Exp: 8676
	JExp: 7801
	AttackRange: 3
	Attack: [2091, 1607]
	Def: 204
	Mdef: 141
	Stats: {
		Str: 80
		Agi: 28
		Vit: 40
		Int: 25
		Dex: 88
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 480
	AttackMotion: 1536
	DamageMotion: 480
	Drops: {
		Eye_Drops: 3000
		Tiny_Waterbottle: 1000
		Alchol: 100
		Detrimindexta: 100
		Karvodailnirol: 100
		FaithfulManager_Card: 1
	}
},
// Additional Monsters
{
	Id: 2372
	SpriteName: "SOIL"
	Name: "Soil"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2373
	SpriteName: "ROCK"
	Name: "Rock"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2374
	SpriteName: "THICKET"
	Name: "Thicket"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2375
	SpriteName: "MOROCC_4_142"
	Name: "Incarnation of Morroc"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2376
	SpriteName: "MOROCC_2_142"
	Name: "Incarnation of Morroc"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2377
	SpriteName: "E_NOVUS_"
	Name: "Novus"
	Lv: 1
	Hp: 50
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [7, 10]
	Def: 0
	Mdef: 5
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 6
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2378
	SpriteName: "MER_ANTLER_SCARABA"
	Name: "Antler Scaraba"
	Lv: 136
	Hp: 30000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1418, 410]
	Def: 155
	Mdef: 102
	Stats: {
		Str: 23
		Agi: 99
		Vit: 59
		Int: 129
		Dex: 137
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 504
	AttackMotion: 624
	DamageMotion: 360
},
{
	Id: 2379
	SpriteName: "XMAS_SMOKEY_SOCK"
	Name: "Smokey Sock"
	JName: "Socks Stealing Raccoon"
	Lv: 10
	Hp: 10
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [70, 11]
	Def: 1
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 1
		Vit: 16
		Int: 5
		Dex: 100
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 420
	Drops: {
		Red_Cloth: 6000
		Red_Cloth: 6000
	}
},
{
	Id: 2380
	SpriteName: "XMAS_SMOKEY_GIFT"
	Name: "Smokey Gift"
	JName: "Gift Stealing Raccoon"
	Lv: 10
	Hp: 10
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [70, 11]
	Def: 1
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 1
		Vit: 16
		Int: 5
		Dex: 100
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 420
	Drops: {
		Stolen_Cookie: 6000
		Stolen_Candy: 6000
		Stolen_Cookie: 6000
		Stolen_Candy: 6000
	}
},
// Monsters Waiting To Be Coded In

//2381,E_VADON_X_S
//2382,E_VADON_X_H
//2383,E_VADON_X_H_S
//2384,KRAKEN_LEG_1
//2385,KRAKEN_LEG_2
//2386,KRAKEN_LEG_3
//2387,KRAKEN_LEG_4
//2388,KRAKEN_LEG_5
//2389,G_KRAKEN_LEG_1
//2390,G_KRAKEN_LEG_2
//2391,G_KRAKEN_LEG_3
//2392,G_KRAKEN_LEG_4
//2393,G_KRAKEN_LEG_5
//2394,MERMAN_SE
//2395,SEIREN
//2396,POSEIDON
//2397,KRAKEN_BABY
{
	Id: 2398
	SpriteName: "LITTLE_PORING"
	Name: "LITTLE_PORING"
	JName: "Baby Poring"
	Lv: 1
	Hp: 40
	Sp: 1
	Exp: 18
	JExp: 10
	AttackRange: 1
	Attack: [8, 1]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Jellopy: 9000
		Knife_: 100
		Sticky_Mucus: 1000
		Apple: 5000
		Red_Herb: 1000
		Apple: 500
		Red_Herb: 1000
		Novice_Poring_Card: 100
	}
},
//2399,E_MINI_DEMON
//2400,E_DIABOLIC
{
	Id: 2401
	SpriteName: "G_PORING"
	Name: "G_PORING"
	JName: "Poring"
	Lv: 1
	Hp: 60
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [8, 1]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2402
	SpriteName: "POPORING_IMMUNE_M"
	Name: "POPORING_IMMUNE_M"
	JName: "Poporing"
	Lv: 30
	Hp: 524
	Sp: 1
	Exp: 99
	JExp: 112
	AttackRange: 1
	Attack: [74, 20]
	Def: 36
	Mdef: 17
	Stats: {
		Str: 17
		Agi: 26
		Vit: 20
		Int: 18
		Dex: 36
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Poison", 1)
	MoveSpeed: 300
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2403
	SpriteName: "POPORING_IMMUNE_A"
	Name: "POPORING_IMMUNE_A"
	JName: "Poporing"
	Lv: 30
	Hp: 524
	Sp: 1
	Exp: 99
	JExp: 112
	AttackRange: 1
	Attack: [74, 20]
	Def: 36
	Mdef: 17
	Stats: {
		Str: 17
		Agi: 26
		Vit: 20
		Int: 18
		Dex: 36
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Poison", 1)
	MoveSpeed: 300
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 2404
	SpriteName: "DEAD_PLANKTON"
	Name: "DEAD_PLANKTON"
	Lv: 9
	Hp: 95
	Sp: 1
	Exp: 15
	JExp: 11
	AttackRange: 1
	Attack: [18, 19]
	Def: 21
	Mdef: 3
	Stats: {
		Str: 14
		Agi: 5
		Vit: 10
		Int: 0
		Dex: 10
		Luk: 3
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	MoveSpeed: 400
	AttackDelay: 2208
	AttackMotion: 1008
	DamageMotion: 324
	Drops: {
		Single_Cell: 2000
		Garlet: 70
		Sticky_Mucus: 170
		Alchol: 1
		Dew_Laden_Moss: 5
		Center_Potion: 10
	}
},
{
	Id: 2405
	SpriteName: "WEAK_SKELETON"
	Name: "WEAK_SKELETON"
	Lv: 18
	Hp: 280
	Sp: 1
	Exp: 29
	JExp: 21
	AttackRange: 1
	Attack: [25, 33]
	Def: 12
	Mdef: 2
	Stats: {
		Str: 15
		Agi: 5
		Vit: 10
		Int: 0
		Dex: 12
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	MoveSpeed: 200
	AttackDelay: 2228
	AttackMotion: 528
	DamageMotion: 576
	Drops: {
		Phracon: 45
		Skel_Bone: 800
		Mace_: 40
		Jellopy: 1500
		Red_Herb: 500
		Skul_Ring: 15
	}
},
{
	Id: 2406
	SpriteName: "WEAK_SKEL_SOLDIER"
	Name: "WEAK_SKEL_SOLDIER"
	Lv: 23
	Hp: 468
	Sp: 1
	Exp: 36
	JExp: 40
	AttackRange: 1
	Attack: [66, 75]
	Def: 28
	Mdef: 5
	Stats: {
		Str: 18
		Agi: 9
		Vit: 28
		Int: 5
		Dex: 43
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	MoveSpeed: 200
	AttackDelay: 2276
	AttackMotion: 576
	DamageMotion: 432
	Drops: {
		Skel_Bone: 1300
		Oridecon_Stone: 15
		Dagger_: 3
		Red_Herb: 170
		Mementos: 2
		Chain_Mail_: 1
		Stiletto: 10
	}
},
{
	Id: 2407
	SpriteName: "SAILOR_SKELETON"
	Name: "SAILOR_SKELETON"
	Lv: 19
	Hp: 310
	Sp: 1
	Exp: 29
	JExp: 21
	AttackRange: 1
	Attack: [27, 35]
	Def: 12
	Mdef: 2
	Stats: {
		Str: 15
		Agi: 5
		Vit: 10
		Int: 0
		Dex: 12
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	MoveSpeed: 200
	AttackDelay: 2228
	AttackMotion: 528
	DamageMotion: 576
	Drops: {
		Skel_Bone: 700
		Pirate_Bandana: 4
		Cookbook06: 1
		Bandana: 60
		Falchion: 60
		Oridecon_Stone: 10
		Well_Dried_Bone: 5
	}
},
{
	Id: 2408
	SpriteName: "DUMMY_10"
	Name: "Lv 10"
	JName: "Lv 10"
	Lv: 10
	Hp: 99999999
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		NoKnockback: true
	}
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
{
	Id: 2409
	SpriteName: "DUMMY_50"
	Name: "Lv 50"
	JName: "Lv 50"
	Lv: 50
	Hp: 99999999
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 50
	Mdef: 50
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		NoKnockback: true
	}
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
{
	Id: 2410
	SpriteName: "DUMMY_100"
	Name: "Lv 100"
	JName: "Lv 100"
	Lv: 100
	Hp: 99999999
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 90
	Mdef: 90
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		NoKnockback: true
	}
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
{
	Id: 2411
	SpriteName: "DUMMY_150"
	Name: "Lv 150"
	JName: "Lv 150"
	Lv: 150
	Hp: 99999999
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 120
	Mdef: 120
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		NoKnockback: true
	}
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
//2412,E_VALKIWI
{
	Id: 2413
	SpriteName: "DUMMY_10_FIRE"
	Name: "Lv 10 (Fire)"
	Lv: 10
	Hp: 99999999
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 0
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 1)
	Mode: {
		NoKnockback: true
	}
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
},
{
	Id: 2414
	SpriteName: "RUNAWAY_BOOK"
	Name: "Runaway Book"
	Hp: 10
	Exp: 1
	JExp: 1
	Attack: [6, 9]
	Def: 1
	Mdef: 1
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Human"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 864
	AttackMotion: 500
	DamageMotion: 192
},
//2415,L_SEYREN
//2416,L_EREMES
//2417,L_HARWORD
//2418,L_SHECIL
//2419,L_KATRINN
//2420,L_MAGALETA
//2421,L_YGNIZEM
//2422,L_WHIKEBAIN
//2423,L_ARMAIA
//2424,L_KAVAC
//2425,L_DANCER
//2426,L_RAWREL
//2427,L_EREND
//2428,G_L_SEYREN
//2429,G_L_EREMES
//2430,G_L_HARWORD
{
	Id: 2431
	SpriteName: "G_L_SHECIL"
	Name: "Hunter Shecil"
	Lv: 98
	Hp: 8835
	Sp: 1
	AttackRange: 14
	Attack: [574, 223]
	Def: 68
	Mdef: 13
	Stats: {
		Str: 108
		Agi: 113
		Vit: 60
		Int: 72
		Dex: 148
		Luk: 37
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 160
	AttackDelay: 432
	AttackMotion: 400
	DamageMotion: 288
},
//2432,G_L_KATRINN
//2433,G_L_MAGALETA
//2434,G_L_YGNIZEM
//2435,G_L_WHIKEBAIN
//2436,G_L_ARMAIA
//2437,G_L_KAVAC
//2438,G_L_DANCER
//2439,G_L_RAWREL
//2440,G_L_EREND
//2441,B_NOVICE
//2442,B_SUPERNOVICE
//2443,AIRA
//2444,KULUNA
//2445,MALLINA
//2446,EZELLA
//2447,LUNE
//2448,MORIN
//2449,NASARIN
//2450,THIEF_PORING
//2451,BABY_STRANGE
//2452,TREASURE_BOX_TE
//2453,TREASURE_BOX_TE_1
//2454,TREASURE_BOX_TE_2
//2455,TREASURE_BOX_TE_3
//2456,TREASURE_BOX_TE_4
//2457,TREASURE_BOX_TE_5
//2458,TREASURE_BOX_TE_6
//2459,TREASURE_BOX_TE_7
//2460,TREASURE_BOX_TE_8
//2461,TREASURE_BOX_TE_9
//2462,TREASURE_BOX_TE_10
//2463,E_BOMBPORING

// Old Glast Heim
{
	Id: 2464
	SpriteName: "MG_ZOMBIE"
	Name: "Corrupted Steward"
	Lv: 130
	Hp: 135600
	Sp: 1
	Exp: 13332
	JExp: 15998
	AttackRange: 1
	Attack: [2364, 444]
	Def: 15
	Mdef: 15
	Stats: {
		Str: 44
		Agi: 22
		Vit: 77
		Int: 25
		Dex: 88
		Luk: 22
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		CastSensorIdle: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 2612
	AttackMotion: 912
	DamageMotion: 288
	Drops: {
		Glast_Decayed_Nail: 1000
		Glast_Horrendous_Mouth: 1000
		Coagulated_Spell: 10
		Sticky_Mucus: 1000
		White_Jewel: 500
		Corrupted_Charm: 500
	}
},
{
	Id: 2465
	SpriteName: "MG_WRAITH"
	Name: "Corrupted Monk"
	Lv: 133
	Hp: 100168
	Sp: 1
	Exp: 13998
	JExp: 16796
	AttackRange: 1
	Attack: [999, 2787]
	Def: 80
	Mdef: 200
	Stats: {
		Str: 16
		Agi: 26
		Vit: 30
		Int: 115
		Dex: 79
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Detector: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1816
	AttackMotion: 576
	DamageMotion: 240
	Drops: {
		Crystal_Jewel_: 100
		Crystal_Mirror: 500
		Wedding_Veil: 100
		Coagulated_Spell: 10
		Glast_Decayed_Nail: 1000
		Glast_Horrendous_Mouth: 1000
		Corrupted_Charm: 500
	}
},
{
	Id: 2466
	SpriteName: "MG_GHOUL"
	Name: "Grand Chamberlain in Pain"
	Lv: 132
	Hp: 208100
	Sp: 1
	Exp: 14222
	JExp: 17066
	AttackRange: 1
	Attack: [2965,666]
	Def: 30
	Mdef: 30
	Stats: {
		Str: 88
		Agi: 44
		Vit: 88
		Int: 21
		Dex: 95
		Luk: 44
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		CastSensorIdle: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 2456
	AttackMotion: 912
	DamageMotion: 504
	Drops: {
		Oridecon_Stone: 100
		Skul_Ring: 100
		Coagulated_Spell: 10
		Glast_Decayed_Nail: 1000
		Glast_Horrendous_Mouth: 1000
		Old_White_Cloth: 1000
		Corrupted_Charm: 500
	}
},
{
	Id: 2467
	SpriteName: "MG_ARCLOUSE"
	Name: "Maggot"
	Lv: 133
	Hp: 80811
	Sp: 1
	Exp: 22
	JExp: 26
	AttackRange: 1
	Attack: [1246, 1257]
	Def: 121
	Mdef: 36
	Stats: {
		Str: 60
		Agi: 103
		Vit: 45
		Int: 35
		Dex: 172
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Detector: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 960
	AttackMotion: 500
	DamageMotion: 480
	Drops: {
		Great_Nature: 100
		Round_Shell: 3000
		Coagulated_Spell: 10
		Glast_Decayed_Nail: 1000
		Glast_Horrendous_Mouth: 1000
		Corrupted_Charm: 500
	}
},
{
	Id: 2468
	SpriteName: "MG_RAYDRIC"
	Name: "Corrupted Palace Guard"
	Lv: 135
	Hp: 184080
	Sp: 1
	Exp: 16306
	JExp: 6944
	AttackRange: 2
	Attack: [3167, 138]
	Def: 89
	Mdef: 15
	Stats: {
		Str: 159
		Agi: 87
		Vit: 66
		Int: 33
		Dex: 106
		Luk: 27
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 824
	AttackMotion: 780
	DamageMotion: 420
	Drops: {
		Brigan: 3000
		Elunium: 50
		Coagulated_Spell: 10
		Glast_Decayed_Nail: 1000
		Glast_Horrendous_Mouth: 1000
		Corrupted_Charm: 500
		Plate_Armor: 200
	}
},
{
	Id: 2469
	SpriteName: "MG_RAYDRIC_ARCHER"
	Name: "Wandering Archer"
	Lv: 136
	Hp: 144370
	Sp: 1
	Exp: 14248
	JExp: 9378
	AttackRange: 14
	Attack: [3891 , 167]
	Def: 63
	Mdef: 40
	Stats: {
		Str: 53
		Agi: 24
		Vit: 40
		Int: 15
		Dex: 156
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		CastSensorIdle: true
		CastSensorChase: true
		Detector: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1152
	AttackMotion: 1152
	DamageMotion: 480
	Drops: {
		Brigan: 3000
		Elunium: 50
		Coagulated_Spell: 10
		Glast_Decayed_Nail: 1000
		Glast_Horrendous_Mouth: 1000
		Corrupted_Charm: 500
		Tights: 200
	}
},
{
	Id: 2470
	SpriteName: "MG_KNIGHT_OF_ABYSS"
	Name: "Corrupted Abysmal Knight"
	Lv: 142
	Hp: 225789
	Sp: 1
	Exp: 18584
	JExp: 16576
	AttackRange: 2
	Attack: [3200, 22]
	Def: 102
	Mdef: 50
	Stats: {
		Str: 121
		Agi: 55
		Vit: 99
		Int: 70
		Dex: 126
		Luk: 37
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		Boss: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1500
	AttackMotion: 500
	DamageMotion: 1000
	Drops: {
		Reins: 5000
		Patriotism_Marks: 10
		Coagulated_Spell: 50
		Glast_Decayed_Nail: 3000
		Glast_Horrendous_Mouth: 2000
		Corrupted_Charm: 500
		Full_Plate_Armor: 200
	}
},
{
	Id: 2471
	SpriteName: "MG_KHALITZBURG"
	Name: "Suffering Khalitzburg"
	Lv: 143
	Hp: 236851
	Sp: 1
	Exp: 17542
	JExp: 14662
	AttackRange: 2
	Attack: [2800, 100]
	Def: 125
	Mdef: 10
	Stats: {
		Str: 121
		Agi: 142
		Vit: 55
		Int: 81
		Dex: 105
		Luk: 32
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		Boss: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 528
	AttackMotion: 1000
	DamageMotion: 396
	Drops: {
		Elunium: 50
		Patriotism_Marks: 10
		Coagulated_Spell: 50
		Glast_Decayed_Nail: 3000
		Glast_Horrendous_Mouth: 2000
		Corrupted_Charm: 500
		Lapier: 300
	}
},
{
	Id: 2472
	SpriteName: "MG_BLOODY_KNIGHT"
	Name: "Bloody Knight"
	Lv: 143
	Hp: 246751
	Sp: 1
	Exp: 20448
	JExp: 21882
	AttackRange: 2
	Attack: [1881, 3200]
	Def: 122
	Mdef: 300
	Stats: {
		Str: 132
		Agi: 55
		Vit: 89
		Int: 151
		Dex: 137
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Boss: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
		Detector: true
	}
	MoveSpeed: 250
	AttackDelay: 828
	AttackMotion: 528
	DamageMotion: 192
	Drops: {
		Two_Hand_Sword: 100
		Broad_Sword: 100
		Coagulated_Spell: 50
		Glast_Decayed_Nail: 3000
		Glast_Horrendous_Mouth: 2000
		Corrupted_Charm: 500
		Brigan: 500
	}
},
{
	Id: 2473
	SpriteName: "MG_M_UNDEAD_KNIGHT"
	Name: "1st Commander of Destruction"
	Lv: 145
	Hp: 950033
	Sp: 0
	Exp: 160018
	JExp: 135184
	AttackRange: 2
	Attack: [3321, 1009]
	Def: 80
	Mdef: 150
	Stats: {
		Str: 165
		Agi: 82
		Vit: 110
		Int: 122
		Dex: 154
		Luk: 52
	}
	ViewRange: 14
	ChaseRange: 16
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 140
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Claymore: 100
		Alca_Bringer: 10
		Coagulated_Spell: 50
		Glast_Decayed_Nail: 5000
		Glast_Horrendous_Mouth: 5000
		Corrupted_Charm: 500
		Halberd: 200
		UndeadKnightM_Card: 1
	}
},
{
	Id: 2474
	SpriteName: "MG_F_UNDEAD_KNIGHT"
	Name: "2nd Commander of Destruction"
	Lv: 145
	Hp: 848011
	Sp: 0
	Exp: 159672
	JExp: 120398
	AttackRange: 2
	Attack: [3090, 1488]
	Def: 80
	Mdef: 180
	Stats: {
		Str: 155
		Agi: 88
		Vit: 110
		Int: 135
		Dex: 154
		Luk: 59
	}
	ViewRange: 14
	ChaseRange: 16
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 140
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Holy_Avenger: 50
		Claymore: 100
		Coagulated_Spell: 50
		Glast_Decayed_Nail: 5000
		Glast_Horrendous_Mouth: 5000
		Corrupted_Charm: 500
		UndeadKnightF_Card: 1
	}
},
{
	Id: 2475
	SpriteName: "MG_CORRUPTION_ROOT"
	Name: "Corrupted Soul"
	Lv: 150
	Hp: 1820000
	Sp: 1
	Exp: 2199906
	JExp: 2008478
	AttackRange: 3
	Attack: [3887, 3887]
	Def: 333
	Mdef: 333
	Stats: {
		Str: 201
		Agi: 20
		Vit: 90
		Int: 201
		Dex: 201
		Luk: 20
	}
	ViewRange: 14
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Earth", 3)
	Mode: {
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 854
	AttackMotion: 2016
	DamageMotion: 480
	MvpExp: 449977
	Drops: {
		Old_Card_Album: 5000
		Old_Violet_Box: 10000
		Temporal_Crystal: 5000
		Yggdrasilberry: 10000
		Alchemy_Glove: 1000
		Will_Of_Darkness_: 10000
		Corrupted_Charm: 500
		CorruptionRoot_Card: 1
	}
},
{
	Id: 2476
	SpriteName: "MG_AMDARAIS"
	Name: "Amdarais"
	Lv: 150
	Hp: 4290000
	Sp: 1
	Exp: 2291324
	JExp: 2197024
	AttackRange: 3
	Attack: [5290, 3900]
	Def: 30
	Mdef: 40
	Stats: {
		Str: 255
		Agi: 39
		Vit: 90
		Int: 169
		Dex: 166
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1152
	AttackMotion: 1152
	DamageMotion: 576
	MvpExp: 472831
	Drops: {
		Old_Card_Album: 5000
		Old_Violet_Box: 10000
		Temporal_Crystal: 5000
		Yggdrasilberry: 10000
		Death_Guidance: 1000
		Patriotism_Marks: 10000
		Amdarais_Card: 1
	}
},
// Nightmare Glast Heim
{
	Id: 2477
	SpriteName: "NG_WANDER_MAN"
	Name: "Nightmare Wander Man"
	Lv: 151
	Hp: 130682
	Sp: 1
	Exp: 19814
	JExp: 17228
	AttackRange: 2
	Attack: [2827, 218]
	Def: 129
	Mdef: 16
	Stats: {
		Str: 208
		Agi: 151
		Vit: 76
		Int: 39
		Dex: 231
		Luk: 50
	}
	ViewRange: 12
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 672
	AttackMotion: 500
	DamageMotion: 192
	Drops: {
		Skull: 4850
		Old_Card_Album: 2
		Hakujin_: 5
		Centimental_Leaf: 5
		Muramasa_: 1
		Oridecon: 110
		Muramasa: 10
	}
},
{
	Id: 2478
	SpriteName: "NG_RIDEWORD"
	Name: "Nightmare Rideword"
	Lv: 146
	Hp: 103220
	Sp: 1
	Exp: 10500
	JExp: 15840
	AttackRange: 1
	Attack: [2320, 166]
	Def: 140
	Mdef: 59
	Stats: {
		Str: 131
		Agi: 195
		Vit: 58
		Int: 66
		Dex: 263
		Luk: 5
	}
	ViewRange: 12
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 864
	AttackMotion: 500
	DamageMotion: 192
	Drops: {
		Worn_Out_Page: 4850
		Book_Of_Billows_: 5
		Book_Of_Mother_Earth_: 5
		Book_Of_Blazing_Sun_: 5
		Book_Of_Gust_Of_Wind_: 5
		Bookclip_In_Memory: 150
		Cursed_Book: 1
	}
},
{
	Id: 2479
	SpriteName: "NG_MIMIC"
	Name: "Nightmare Mimic"
	Lv: 143
	Hp: 24958
	Sp: 1
	Exp: 2768
	JExp: 2354
	AttackRange: 1
	Attack: [1787, 159]
	Def: 139
	Mdef: 46
	Stats: {
		Str: 145
		Agi: 162
		Vit: 10
		Int: 49
		Dex: 213
		Luk: 57
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 972
	AttackMotion: 500
	DamageMotion: 288
	Drops: {
		Old_Violet_Box: 10
		Old_Blue_Box: 50
		Special_Alloy_Trap: 1000
		Light_Granule: 1000
		Rosary_: 10
		Elunium_Stone: 270
		Apple: 22
	}
},
{
	Id: 2480
	SpriteName: "NG_EVIL_DRUID"
	Name: "Nightmare Evil Druid"
	Lv: 134
	Hp: 72837
	Sp: 1
	Exp: 6740
	JExp: 5886
	AttackRange: 1
	Attack: [1409, 143]
	Def: 160
	Mdef: 41
	Stats: {
		Str: 137
		Agi: 60
		Vit: 48
		Int: 57
		Dex: 158
		Luk: 28
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 2276
	AttackMotion: 576
	DamageMotion: 336
	Drops: {
		Biretta_: 10
		Lich_Bone_Wand: 1
		Ragamuffin_Cape: 10
		Book_Of_The_Apocalypse: 5
		Cookbook07: 5
		White_Herb: 2000
	}
},
{
	Id: 2481
	SpriteName: "NG_WRAITH_DEAD"
	Name: "Nightmare Wraith Dead"
	Lv: 110
	Hp: 15579
	Sp: 1
	Exp: 2554
	JExp: 2760
	AttackRange: 1
	Attack: [761, 122]
	Def: 93
	Mdef: 56
	Stats: {
		Str: 69
		Agi: 52
		Vit: 47
		Int: 55
		Dex: 109
		Luk: 28
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 1816
	AttackMotion: 576
	DamageMotion: 240
	Drops: {
		Transparent_Cloth: 4400
		Wedding_Veil: 10
		Manteau_: 5
		Red_Gemstone: 750
		Manteau: 10
		Crystal_Jewel__: 10
	}
},
{
	Id: 2482
	SpriteName: "G_MG_KHALITZBURG"
	Name: "Nightmare Khalitzburg"
	Lv: 143
	Hp: 236851
	Sp: 1
	Exp: 13085
	JExp: 10023
	AttackRange: 1
	Attack: [2800, 100]
	Def: 125
	Mdef: 10
	Stats: {
		Str: 121
		Agi: 142
		Vit: 55
		Int: 81
		Dex: 125
		Luk: 32
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 528
	AttackMotion: 1000
	DamageMotion: 396
},
{
	Id: 2483
	SpriteName: "NG_BAPHOMET"
	Name: "Nightmare Baphomet"
	Lv: 154
	Hp: 4008000
	Sp: 1
	Exp: 1308530
	JExp: 1002320
	AttackRange: 1
	Attack: [2794, 1260]
	Def: 379
	Mdef: 45
	Stats: {
		Str: 120
		Agi: 125
		Vit: 230
		Int: 85
		Dex: 186
		Luk: 85
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 768
	AttackMotion: 768
	DamageMotion: 576
	MvpExp: 198262
},
{
	Id: 2484
	SpriteName: "G_NG_BAPHOMET_"
	Name: "Nightmare Baphomet Jr."
	Lv: 141
	Hp: 49675
	Sp: 1
	Exp: 13085
	JExp: 10023
	AttackRange: 1
	Attack: [1302, 558]
	Def: 175
	Mdef: 62
	Stats: {
		Str: 52
		Agi: 60
		Vit: 90
		Int: 40
		Dex: 52
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 868
	AttackMotion: 480
	DamageMotion: 120
},
{
	Id: 2485
	SpriteName: "NG_CHIMERA"
	Name: "Nightmare Chimera"
	Lv: 140
	Hp: 528120
	Sp: 1
	Exp: 54260
	JExp: 46980
	AttackRange: 1
	Attack: [1887, 823]
	Def: 159
	Mdef: 20
	Stats: {
		Str: 101
		Agi: 76
		Vit: 110
		Int: 176
		Dex: 182
		Luk: 170
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 772
	AttackMotion: 672
	DamageMotion: 360
},
//2486,ISIS_ANNIV
//2487,PASANA_ANNIV
//2488,OSIRIS_ANNIV
//2489,GM_WOMAN
//2490,GM_SAY
//2491,GM_SMOKIE
//2492,GM_PHOENIX
//2493,GM_MEN
//2494,GM_HINALLE
//2495,HIDDEN_MOB2
//2496,I_UZHAS
//2497,I_DOKEBI
//2498,G_WISH_MAIDEN
//2499,J_PORING
//2500,E_MEGALODON
//2501,E_ASTER
//2502,E_CRAB
//2503,E_SHELLFISH
//2504,E_COELACANTH_N_E
//2505,E_RED_ERUMA
//2506,E_KING_DRAMOH
//2507,E_CORNUTUS
//2508,E_PENOMENA
//2509,KRAKEN_LEG_6
//2510,WATERMELON_1
//2511,WATERMELON_2
//2512,WATERMELON_3
//2513,WATERMELON_4
//2514,WATERMELON_5
//2515,WATERMELON_6
//2516,WATERMELON_7
//2517,WATERMELON_8
//2518,WATERMELON_9
//2519,WATERMELON_10
//2520,WATERMELON_11
//2521,WATERMELON_12
//2522,WATERMELON_13
//2523,WATERMELON_14
//2524,WATERMELON_15
//2525,WATERMELON_16
//2526,E_BANDIT
//2527,ME_ANOPHELES
//2528,FACEWORM
{
	Id: 2529
	SpriteName: "FACEWORM_QUEEN"
	Name: "Faceworm Queen"
	Lv: 155
	Hp: 50000000
	Sp: 1
	Exp: 200000
	JExp: 200000
	AttackRange: 2
	Attack: [4024, 1609]
	Def: 100
	Mdef: 60
	Stats: {
		Str: 200
		Agi: 100
		Vit: 200
		Int: 200
		Dex: 200
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Poison", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 768
	AttackMotion: 540
	DamageMotion: 480
	MvpExp: 90909
	MvpDrops: {
		Old_Violet_Box: 2500
		Magic_Card_Album: 2500
	}
	Drops: {
		Yggdrasilberry: 1000
		FaceWormQueen_Leg: 100
		Broken_Horn: 5000
		Faceworm_Queen_Card: 1
	}
},
//2530,FACEWORM_DARK
//2531,VENOM_BUG
//2532,FACEWORM_QUEEN_R
{
	Id: 2533
	SpriteName: "FACEWORM_QUEEN_G"
	Name: "Faceworm Queen (Green)"
	Lv: 155
	Hp: 50000000
	Sp: 1
	Exp: 200000
	JExp: 200000
	AttackRange: 2
	Attack: [5000, 2000]
	Def: 500
	Mdef: 60
	Stats: {
		Str: 200
		Agi: 100
		Vit: 400
		Int: 200
		Dex: 200
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 768
	AttackMotion: 540
	DamageMotion: 480
	MvpExp: 90909
	MvpDrops: {
		Old_Violet_Box: 2500
		Magic_Card_Album: 2500
	}
	Drops: {
		Broken_Horn: 5000
		FaceWormQueen_Leg: 100
		Great_Nature: 5000
	}
},
{
	Id: 2534
	SpriteName: "FACEWORM_QUEEN_B"
	Name: "Faceworm Queen (Blue)"
	Lv: 155
	Hp: 50000000
	Sp: 1
	Exp: 200000
	JExp: 200000
	AttackRange: 2
	Attack: [5000, 2000]
	Def: 100
	Mdef: 400
	Stats: {
		Str: 200
		Agi: 100
		Vit: 200
		Int: 400
		Dex: 200
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 768
	AttackMotion: 540
	DamageMotion: 480
	MvpExp: 90909
	MvpDrops: {
		Old_Violet_Box: 2500
		Magic_Card_Album: 2500
	}
	Drops: {
		Broken_Horn: 5000
		FaceWormQueen_Leg: 100
		Mistic_Frozen: 5000
	}
},
{
	Id: 2535
	SpriteName: "FACEWORM_QUEEN_Y"
	Name: "Faceworm Queen (Yellow)"
	Lv: 155
	Hp: 50000000
	Sp: 1
	Exp: 200000
	JExp: 200000
	AttackRange: 2
	Attack: [5000, 2000]
	Def: 100
	Mdef: 60
	Stats: {
		Str: 200
		Agi: 400
		Vit: 200
		Int: 200
		Dex: 200
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 768
	AttackMotion: 540
	DamageMotion: 480
	MvpExp: 90909
	MvpDrops: {
		Old_Violet_Box: 2500
		Magic_Card_Album: 2500
	}
	Drops: {
		Broken_Horn: 5000
		FaceWormQueen_Leg: 100
		Rough_Wind: 5000
	}
},

//2536,HIDDEN_MOB3
//2537,HIDDEN_MOB4
//2538,E_KING_PORING
//2539,HIDDEN_MOB5
//2540,FACEWORM_EGG
//2541,FACEWORM_LARVA
// Sara's Memory
{
	Id: 2542
	SpriteName: "IRENE_ELDER"
	Name: "Irene Elder"
	Lv: 101
	Hp: 433110
	Sp: 1
	Exp: 11360
	JExp: 27032
	AttackRange: 1
	Attack: [1582, 699]
	Def: 145
	Mdef: 73
	Stats: {
		Str: 82
		Agi: 36
		Vit: 55
		Int: 100
		Dex: 182
		Luk: 88
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 73
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Str_Dish07: 300
		Vit_Dish07: 300
		Agi_Dish07: 300
		Int_Dish07: 300
		Dex_Dish07: 300
		Luk_Dish07: 300
		Cookbook10: 2
		Fantastic_Cooking_Kits: 1
	}
},
{
	Id: 2543
	SpriteName: "PAYONSOLDIER"
	Name: "1st Payon Soldier"
	Lv: 101
	Hp: 20099
	Sp: 1
	Exp: 1083
	JExp: 2688
	AttackRange: 1
	Attack: [545, 51]
	Def: 66
	Mdef: 36
	Stats: {
		Str: 20
		Agi: 46
		Vit: 35
		Int: 35
		Dex: 64
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 225
	AttackDelay: 73
	AttackMotion: 348
	DamageMotion: 288
	Drops: {
		Vit_Dish04: 500
		Str_Dish04: 500
		Agi_Dish04: 500
		Luk_Dish04: 500
		Int_Dish04: 500
		High_end_Cooking_Kits: 250
		Dex_Dish04: 500
		Cookbook08: 2
	}
},
{
	Id: 2544
	SpriteName: "PAYONSOLDIER2"
	Name: "2nd Payon Soldier"
	Lv: 101
	Hp: 21099
	Sp: 1
	Exp: 1136
	JExp: 2703
	AttackRange: 1
	Attack: [697, 51]
	Def: 66
	Mdef: 36
	Stats: {
		Str: 20
		Agi: 46
		Vit: 25
		Int: 35
		Dex: 64
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 73
	AttackMotion: 348
	DamageMotion: 288
	Drops: {
		Str_Dish06: 500
		Int_Dish06: 500
		Dex_Dish06: 500
		Vit_Dish06: 500
		Luk_Dish06: 500
		Agi_Dish06: 500
		Imperial_Cooking_Kits: 150
		Cookbook09: 2
	}
},
{
	Id: 2545
	SpriteName: "GUARDDOG"
	Name: "1st Guard Dog"
	Lv: 101
	Hp: 20099
	Sp: 1
	Exp: 944
	JExp: 2658
	AttackRange: 1
	Attack: [547, 51]
	Def: 66
	Mdef: 36
	Stats: {
		Str: 20
		Agi: 46
		Vit: 25
		Int: 35
		Dex: 64
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 73
	AttackMotion: 348
	DamageMotion: 288
	Drops: {
		Str_Dish03: 600
		Luk_Dish03: 600
		Cookbook06: 2
		Int_Dish03: 600
		Vit_Dish03: 600
		Agi_Dish03: 600
		Dex_Dish03: 600
		Outdoor_Cooking_Kits: 350
	}
},
{
	Id: 2546
	SpriteName: "GUARDDOG2"
	Name: "2nd Guard Dog"
	Lv: 101
	Hp: 21099
	Sp: 1
	Exp: 1014
	JExp: 2673
	AttackRange: 1
	Attack: [573, 51]
	Def: 66
	Mdef: 36
	Stats: {
		Str: 20
		Agi: 46
		Vit: 25
		Int: 35
		Dex: 64
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 73
	AttackMotion: 348
	DamageMotion: 288
	Drops: {
		Str_Dish05: 466
		Cookbook07: 1
		Int_Dish05: 466
		Vit_Dish05: 466
		Agi_Dish05: 466
		Dex_Dish05: 466
		Luk_Dish05: 466
		Indoor_Cooking_Kits: 200
	}
},
//2547,MER_GARM_BABY
//2548,MER_HILLSRION

// Geffen Magic Tournament Monsters
{
	Id: 2549
	SpriteName: "GEFFEN_MAGE_1"
	Name: "Ahri"
	Lv: 90
	Hp: 100000
	Sp: 1
	Exp: 8900
	JExp: 4550
	AttackRange: 1
	Attack: [329, 424]
	Def: 64
	Mdef: 38
	Stats: {
		Str: 50
		Agi: 50
		Vit: 50
		Int: 50
		Dex: 130
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {  /* Needs more information */
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200 /* Needs more information */
	AttackDelay: 676 /* Needs more information */
	AttackMotion: 648 /* Needs more information */
	DamageMotion: 432 /* Needs more information */
	Drops: {
		/* Needs more information */
	}
},
{
	Id: 2550
	SpriteName: "GEFFEN_MAGE_2"
	Name: "Dio Anemos"
	Lv: 95
	Hp: 200000
	Sp: 1
	Exp: 9440
	JExp: 4430
	AttackRange: 1
	Attack: [478, 649]
	Def: 129
	Mdef: 18
	Stats: {
		Str: 40
		Agi: 40
		Vit: 50
		Int: 80
		Dex: 130
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {  /* Needs more information */
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200 /* Needs more information */
	AttackDelay: 676 /* Needs more information */
	AttackMotion: 648 /* Needs more information */
	DamageMotion: 432 /* Needs more information */
	Drops: {
		/* Needs more information */
	}
},
{
	Id: 2551
	SpriteName: "GEFFEN_MAGE_3_1"
	Name: "Geffen Shoplifter"
	Lv: 100
	Hp: 300000
	Sp: 1
	Exp: 9780
	JExp: 3665
	AttackRange: 1
	Attack: [478, 632]
	Def: 93
	Mdef: 36
	Stats: {
		Str: 70
		Agi: 70
		Vit: 40
		Int: 40
		Dex: 140
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {  /* Needs more information */
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200 /* Needs more information */
	AttackDelay: 676 /* Needs more information */
	AttackMotion: 648 /* Needs more information */
	DamageMotion: 432 /* Needs more information */
	Drops: {
		/* Needs more information */
	}
},
{
	Id: 2552
	SpriteName: "GEFFEN_MAGE_3_2"
	Name: "Geffen Bully"
	Lv: 100
	Hp: 300000
	Sp: 1
	Exp: 9780
	JExp: 3665
	AttackRange: 1
	Attack: [478, 362]
	Def: 93
	Mdef: 36
	Stats: {
		Str: 70
		Agi: 50
		Vit: 70
		Int: 40
		Dex: 140
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {  /* Needs more information */
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200 /* Needs more information */
	AttackDelay: 676 /* Needs more information */
	AttackMotion: 648 /* Needs more information */
	DamageMotion: 432 /* Needs more information */
	Drops: {
		/* Needs more information */
	}
},
{
	Id: 2553
	SpriteName: "GEFFEN_MAGE_3_3"
	Name: "Geffen Gang Member"
	Lv: 100
	Hp: 300000
	Sp: 1
	Exp: 9780
	JExp: 3665
	AttackRange: 1
	Attack: [468, 622]
	Def: 93
	Mdef: 36
	Stats: {
		Str: 60
		Agi: 80
		Vit: 30
		Int: 30
		Dex: 140
		Luk: 70
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {  /* Needs more information */
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200 /* Needs more information */
	AttackDelay: 676 /* Needs more information */
	AttackMotion: 648 /* Needs more information */
	DamageMotion: 432 /* Needs more information */
	Drops: {
		/* Needs more information */
	}
},
{
	Id: 2554
	SpriteName: "GEFFEN_MAGE_4"
	Name: "Faymont"
	Lv: 105
	Hp: 400000
	Sp: 1
	Exp: 11660
	JExp: 4370
	AttackRange: 1
	Attack: [477, 633]
	Def: 114
	Mdef: 21
	Stats: {
		Str: 60
		Agi: 60
		Vit: 60
		Int: 60
		Dex: 140
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {  /* Needs more information */
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200 /* Needs more information */
	AttackDelay: 676 /* Needs more information */
	AttackMotion: 648 /* Needs more information */
	DamageMotion: 432 /* Needs more information */
	Drops: {
		/* Needs more information */
	}
},
{
	Id: 2555
	SpriteName: "GEFFEN_MAGE_5"
	Name: "Ordre"
	Lv: 110
	Hp: 600000
	Sp: 1
	Exp: 15610
	JExp: 4861
	AttackRange: 1
	Attack: [654, 906]
	Def: 107
	Mdef: 21
	Stats: {
		Str: 40
		Agi: 70
		Vit: 40
		Int: 100
		Dex: 150
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {  /* Needs more information */
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200 /* Needs more information */
	AttackDelay: 676 /* Needs more information */
	AttackMotion: 648 /* Needs more information */
	DamageMotion: 432 /* Needs more information */
	Drops: {
		/* Needs more information */
	}
},
{
	Id: 2556
	SpriteName: "GEFFEN_MAGE_6"
	Name: "Blut Hase"
	Lv: 120
	Hp: 1000000
	Sp: 1
	Exp: 20560
	JExp: 10010
	AttackRange: 1
	Attack: [480, 601]
	Def: 66
	Mdef: 47
	Stats: {
		Str: 120
		Agi: 120
		Vit: 120
		Int: 50
		Dex: 150
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {  /* Needs more information */
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200 /* Needs more information */
	AttackDelay: 676 /* Needs more information */
	AttackMotion: 648 /* Needs more information */
	DamageMotion: 432 /* Needs more information */
	Drops: {
		/* Needs more information */
	}
},
{
	Id: 2557
	SpriteName: "GEFFEN_MAGE_7"
	Name: "Kuro Akuma"
	Lv: 130
	Hp: 1200000
	Sp: 1
	Exp: 26100
	JExp: 12030
	AttackRange: 1
	Attack: [761, 1026]
	Def: 134
	Mdef: 10
	Stats: {
		Str: 100
		Agi: 100
		Vit: 100
		Int: 100
		Dex: 145
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {  /* Needs more information */
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200 /* Needs more information */
	AttackDelay: 676 /* Needs more information */
	AttackMotion: 648 /* Needs more information */
	DamageMotion: 432 /* Needs more information */
	Drops: {
		/* Needs more information */
	}
},
{
	Id: 2558
	SpriteName: "GEFFEN_MAGE_8"
	Name: "Ifodes"
	Lv: 140
	Hp: 1400000
	Sp: 1
	Exp: 46150
	JExp: 18900
	AttackRange: 1
	Attack: [676, 869]
	Def: 120
	Mdef: 60
	Stats: {
		Str: 150
		Agi: 100
		Vit: 100
		Int: 50
		Dex: 170
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {  /* Needs more information */
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200 /* Needs more information */
	AttackDelay: 676 /* Needs more information */
	AttackMotion: 648 /* Needs more information */
	DamageMotion: 432 /* Needs more information */
	Drops: {
		/* Needs more information */
	}
},
{
	Id: 2559
	SpriteName: "GEFFEN_MAGE_9"
	Name: "Licheniyes"
	Lv: 145
	Hp: 1600000
	Sp: 1
	Exp: 52060
	JExp: 24105
	AttackRange: 1
	Attack: [763, 1048]
	Def: 140
	Mdef: 57
	Stats: {
		Str: 50
		Agi: 100
		Vit: 50
		Int: 200
		Dex: 220
		Luk: 75
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {  /* Needs more information */
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200 /* Needs more information */
	AttackDelay: 676 /* Needs more information */
	AttackMotion: 648 /* Needs more information */
	DamageMotion: 432 /* Needs more information */
	Drops: {
		/* Needs more information */
	}
},
{
	Id: 2560
	SpriteName: "GEFFEN_MAGE_10"
	Name: "Orodic"
	Lv: 150
	Hp: 2000000
	Sp: 1
	Exp: 60027
	JExp: 40237
	AttackRange: 1
	Attack: [950, 1250]
	Def: 165
	Mdef: 62
	Stats: {
		Str: 200
		Agi: 150
		Vit: 50
		Int: 50
		Dex: 170
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {  /* Needs more information */
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200 /* Needs more information */
	AttackDelay: 676 /* Needs more information */
	AttackMotion: 648 /* Needs more information */
	DamageMotion: 432 /* Needs more information */
	Drops: {
		/* Needs more information */
	}
},
{
	Id: 2561
	SpriteName: "GEFFEN_MAGE_11"
	Name: "Ju"
	Lv: 155
	Hp: 5000000
	Sp: 1
	Exp: 75335
	JExp: 52130
	AttackRange: 1
	Attack: [1045, 1465]
	Def: 170
	Mdef: 65
	Stats: {
		Str: 50
		Agi: 100
		Vit: 100
		Int: 200
		Dex: 220
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {  /* Needs more information */
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200 /* Needs more information */
	AttackDelay: 676 /* Needs more information */
	AttackMotion: 648 /* Needs more information */
	DamageMotion: 432 /* Needs more information */
	Drops: {
		/* Needs more information */
	}
},
{
	Id: 2562
	SpriteName: "GEFFEN_MAGE_12"
	Name: "Dwigh"
	Lv: 160
	Hp: 7000000
	Sp: 1
	Exp: 151317
	JExp: 123000
	AttackRange: 1
	Attack: [1410, 2010]
	Def: 175
	Mdef: 65
	Stats: {
		Str: 50
		Agi: 100
		Vit: 100
		Int: 250
		Dex: 220
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {  /* Needs more information */
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200 /* Needs more information */
	AttackDelay: 676 /* Needs more information */
	AttackMotion: 648 /* Needs more information */
	DamageMotion: 432 /* Needs more information */
	Drops: {
		/* Needs more information */
	}
},
{
	Id: 2563
	SpriteName: "FEI_KANABIAN"
	Name: "Fay Kanavian"
	Lv: 160
	Hp: 8000000
	Sp: 1
	Exp: 157975
	JExp: 110571
	AttackRange: 1
	Attack: [1710, 2460]
	Def: 175
	Mdef: 65
	Stats: {
		Str: 50
		Agi: 100
		Vit: 100
		Int: 250
		Dex: 220
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {  /* Needs more information */
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200 /* Needs more information */
	AttackDelay: 676 /* Needs more information */
	AttackMotion: 648 /* Needs more information */
	DamageMotion: 432 /* Needs more information */
	Drops: {
		/* Needs more information */
	}
},
{
	Id: 2564
	SpriteName: "GEFFEN_FENRIR"
	Name: "Fenrir"
	Lv: 160
	Hp: 20000000
	Sp: 1
	Exp: 323300
	JExp: 300000
	AttackRange: 1
	Attack: [2160, 3060]
	Def: 200
	Mdef: 70
	Stats: {
		Str: 200
		Agi: 100
		Vit: 200
		Int: 200
		Dex: 220
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Ghost", 2)
	Mode: {  /* Needs more information */
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200 /* Needs more information */
	AttackDelay: 676 /* Needs more information */
	AttackMotion: 648 /* Needs more information */
	DamageMotion: 432 /* Needs more information */
	Drops: {
		/* Needs more information */
	}
},
{
	Id: 2565
	SpriteName: "ALPHONSE"
	Name: "Alphonse"
	Lv: 150
	Hp: 1000000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [650, 850]
	Def: 100
	Mdef: 20
	Stats: {
		Str: 100
		Agi: 100
		Vit: 50
		Int: 50
		Dex: 170
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 2)
	Mode: {  /* Needs more information */
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200 /* Needs more information */
	AttackDelay: 676 /* Needs more information */
	AttackMotion: 648 /* Needs more information */
	DamageMotion: 432 /* Needs more information */
	Drops: {
		/* Needs more information */
	}
},
//2566,ALPHONSE_JR
{
	Id: 2566
	SpriteName: "ALPHONSE_JR"
	Name: "Alphonse Jr"
	Lv: 150
	Hp: 100000
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [450, 550]
	Def: 80
	Mdef: 20
	Stats: {
		Str: 100
		Agi: 100
		Vit: 50
		Int: 50
		Dex: 170
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 3)
	Mode: {  /* Needs more information */
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200 /* Needs more information */
	AttackDelay: 676 /* Needs more information */
	AttackMotion: 648 /* Needs more information */
	DamageMotion: 432 /* Needs more information */
	Drops: {
		/* Needs more information */
	}
},
{
	Id: 2567
	SpriteName: "E_GEFFEN_MAGE_3_2"
	Name: "E_GEFFEN_MAGE_3_2" /* Needs more information */
	Lv: 50
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {  /* Needs more information */
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200 /* Needs more information */
	AttackDelay: 676 /* Needs more information */
	AttackMotion: 648 /* Needs more information */
	DamageMotion: 432 /* Needs more information */
	Drops: {
		/* Needs more information */
	}
},
{
	Id: 2568
	SpriteName: "E_GEFFEN_MAGE_3_3"
	Name: "E_GEFFEN_MAGE_3_3" /* Needs more information */
	Lv: 50
	Hp: 0
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [0, 0]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {  /* Needs more information */
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200 /* Needs more information */
	AttackDelay: 676 /* Needs more information */
	AttackMotion: 648 /* Needs more information */
	DamageMotion: 432 /* Needs more information */
	Drops: {
		/* Needs more information */
	}
},

//2569,G_ANOPHELES
//2570,G_BREEZE
//2571,G_BUTOIJO
//2572,G_CARAMEL
//2573,G_CHONCHON
//2574,G_CIVIL_SERVANT
//2575,G_COCO
//2576,G_CREAMY
//2577,G_FABRE
//2578,G_HORN
//2579,G_HYLOZOIST
//2580,G_KAHO
//2581,G_LUDE
//2582,G_LUNATIC
//2583,G_MARTIN
//2584,G_MINERAL
//2585,G_MOLE
//2586,G_NERAID
//2587,G_OBSIDIAN
//2588,G_PITMAN
//2589,G_POPORING
//2590,G_ROCKER
//2591,G_SAVAGE
//2592,G_SIORAVA
//2593,G_SIROMA
//2594,G_SNOWIER
//2595,G_STAINER
//2596,G_STAPO
//2597,G_STEEL_CHONCHON
//2598,G_UNGOLIANT
//2599,G_WILD_RIDER
//2600,G_WOLF
//2601,G_YOYO
//2602,G_ZIPPER_BEAR

{
	Id: 2603
	SpriteName: "C1_ZOMBIE_SLAUGHTER"
	Name: "Swift Zombie Slaughter"
	Lv: 124
	Hp: 202200
	Sp: 1
	Exp: 10345
	JExp: 24315
	AttackRange: 1
	Attack: [1383, 571]
	Def: 100
	Mdef: 45
	Stats: {
		Str: 117
		Agi: 58
		Vit: 82
		Int: 13
		Dex: 136
		Luk: 21
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 676
	AttackMotion: 648
	DamageMotion: 432
	Drops: {
		Clattering_Skull: 3000
		Platinum_Shotel: 10
		Mementos: 1500
		Broken_Farming_Utensil: 3000
		Sticky_Mucus: 3000
		Carnium: 1
		Sabah_Ring: 10
		Zombie_Slaughter_Card: 1
	}
},
{
	Id: 2604
	SpriteName: "C2_ZOMBIE_PRISONER"
	Name: "Solid Zombie Prisoner"
	Lv: 89
	Hp: 80450
	Sp: 1
	Exp: 4010
	JExp: 12345
	AttackRange: 1
	Attack: [552, 188]
	Def: 89
	Mdef: 28
	Stats: {
		Str: 87
		Agi: 39
		Vit: 58
		Int: 5
		Dex: 82
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 1768
	AttackMotion: 500
	DamageMotion: 192
	Drops: {
		Worn_Out_Prison_Uniform: 3500
		Spoon_Stub: 105
		Iron_Cane: 1
		Red_Gemstone: 600
		Rotten_Bandage: 3500
		Cuffs: 39
		Elunium: 112
		Zombie_Prisoner_Card: 1
	}
},
{
	Id: 2605
	SpriteName: "C3_ZOMBIE_MASTER"
	Name: "Zombie Master Ringleader"
	Lv: 119
	Hp: 127550
	Sp: 1
	Exp: 9010
	JExp: 31515
	AttackRange: 1
	Attack: [964, 395]
	Def: 78
	Mdef: 46
	Stats: {
		Str: 55
		Agi: 60
		Vit: 48
		Int: 49
		Dex: 86
		Luk: 48
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 2612
	AttackMotion: 912
	DamageMotion: 288
	Drops: {
		Tatters_Clothes: 4413
		Sticky_Mucus: 1500
		Horrendous_Mouth: 1500
		Cardinal_Jewel: 200
		White_Jewel: 100
		Sg_Violet_Potion_Box: 1
		Scapulare_: 2
		Zombie_Master_Card: 1
	}
},
{
	Id: 2606
	SpriteName: "C4_ZOMBIE"
	Name: "Furious Zombie"
	Lv: 17
	Hp: 1170
	Sp: 1
	Exp: 290
	JExp: 645
	AttackRange: 1
	Attack: [67, 17]
	Def: 20
	Mdef: 3
	Stats: {
		Str: 15
		Agi: 10
		Vit: 17
		Int: 0
		Dex: 15
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 2612
	AttackMotion: 912
	DamageMotion: 288
	Drops: {
		Decayed_Nail: 9000
		Cardinal_Jewel_: 5
		Sticky_Mucus: 1000
		Horrendous_Mouth: 50
		White_Jewel: 70
		Zombie_Card: 1
	}
},
{
	Id: 2607
	SpriteName: "C5_ZAKUDAM"
	Name: "Elusive Zakudam"
	Lv: 115
	Hp: 86000
	Sp: 1
	Exp: 9360
	JExp: 19440
	AttackRange: 3
	Attack: [1110, 437]
	Def: 106
	Mdef: 92
	Stats: {
		Str: 122
		Agi: 66
		Vit: 70
		Int: 61
		Dex: 92
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 580
	AttackMotion: 288
	DamageMotion: 360
	Drops: {
		Screw: 5000
		Steel: 500
		Oridecon: 200
		Elunium: 200
		Gate_Keeper: 5
		Gate_KeeperDD: 5
		Improved_Tights: 10
		Jakudam_Card: 1
	}
},
{
	Id: 2608
	SpriteName: "C1_YOYO"
	Name: "Swift Yoyo"
	Lv: 38
	Hp: 4490
	Sp: 1
	Exp: 675
	JExp: 2280
	AttackRange: 1
	Attack: [118, 30]
	Def: 40
	Mdef: 0
	Stats: {
		Str: 20
		Agi: 11
		Vit: 34
		Int: 20
		Dex: 19
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 1054
	AttackMotion: 54
	DamageMotion: 384
	Drops: {
		Yoyo_Tail: 9000
		Banana: 1500
		Wing_Of_Fly: 200
		Cacao: 900
		Monkey_Doll: 10
		Oridecon_Stone: 24
		Strawberry: 1000
		Yoyo_Card: 1
	}
},
{
	Id: 2609
	SpriteName: "C2_YOYO"
	Name: "Solid Yoyo"
	Lv: 38
	Hp: 8980
	Sp: 1
	Exp: 675
	JExp: 2280
	AttackRange: 1
	Attack: [118, 30]
	Def: 40
	Mdef: 0
	Stats: {
		Str: 20
		Agi: 11
		Vit: 34
		Int: 20
		Dex: 19
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 1054
	AttackMotion: 54
	DamageMotion: 384
	Drops: {
		Yoyo_Tail: 9000
		Banana: 1500
		Wing_Of_Fly: 200
		Cacao: 900
		Monkey_Doll: 10
		Oridecon_Stone: 24
		Strawberry: 1000
		Yoyo_Card: 1
	}
},
{
	Id: 2610
	SpriteName: "C3_WORM_TAIL"
	Name: "Wormtail Ringleader"
	Lv: 17
	Hp: 1000
	Sp: 1
	Exp: 290
	JExp: 645
	AttackRange: 1
	Attack: [47, 11]
	Def: 16
	Mdef: 0
	Stats: {
		Str: 10
		Agi: 6
		Vit: 14
		Int: 5
		Dex: 12
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1048
	AttackMotion: 48
	DamageMotion: 192
	Drops: {
		Yellow_Live: 60
		Emveretarcon: 25
		Pointed_Scale: 5500
		Pike_: 30
		Yellow_Herb: 70
		Wing_Of_Fly: 5
		Green_Lace: 100
		Worm_Tail_Card: 1
	}
},
{
	Id: 2611
	SpriteName: "C4_WOOTAN_FIGHTER"
	Name: "Furious Wootan Fighter"
	Lv: 67
	Hp: 11635
	Sp: 1
	Exp: 1860
	JExp: 5985
	AttackRange: 1
	Attack: [374, 123]
	Def: 103
	Mdef: 8
	Stats: {
		Str: 63
		Agi: 18
		Vit: 36
		Int: 5
		Dex: 62
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 912
	AttackMotion: 1344
	DamageMotion: 480
	Drops: {
		Meat: 4500
		Shoulder_Protection: 4000
		Waghnakh: 3
		Finger_: 1
		Elder_Branch: 100
		Great_Leaf: 1000
		Banana_Hat: 5
		Wootan_Fighter_Card: 1
	}
},
{
	Id: 2612
	SpriteName: "C5_WOOD_GOBLIN"
	Name: "Elusive Wood Goblin"
	Lv: 81
	Hp: 27495
	Sp: 1
	Exp: 3040
	JExp: 9330
	AttackRange: 1
	Attack: [357, 101]
	Def: 144
	Mdef: 12
	Stats: {
		Str: 73
		Agi: 19
		Vit: 56
		Int: 15
		Dex: 67
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 320
	AttackDelay: 2304
	AttackMotion: 840
	DamageMotion: 360
	Drops: {
		Iron_Wrist: 5
		Solid_Twig: 4000
		Log: 2000
		Resin: 2000
		Feather_Of_Birds: 500
		Piece_Of_Egg_Shell: 500
		Egg: 50
	}
},
{
	Id: 2613
	SpriteName: "C1_WOLF"
	Name: "Swift Wolf"
	Lv: 45
	Hp: 6095
	Sp: 1
	Exp: 855
	JExp: 2895
	AttackRange: 1
	Attack: [148, 39]
	Def: 55
	Mdef: 3
	Stats: {
		Str: 27
		Agi: 24
		Vit: 30
		Int: 15
		Dex: 33
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 1054
	AttackMotion: 504
	DamageMotion: 432
	Drops: {
		Emveretarcon: 20
		Claw_Of_Wolves: 9000
		Mantle_: 10
		Wing_Of_Fly: 650
		Monsters_Feed: 150
		Animals_Skin: 5500
		Strawberry: 600
		Wolf_Card: 1
	}
},
{
	Id: 2614
	SpriteName: "C2_WIND_GHOST"
	Name: "Solid Wind Ghost"
	Lv: 80
	Hp: 40080
	Sp: 1
	Exp: 2525
	JExp: 10005
	AttackRange: 2
	Attack: [316, 87]
	Def: 64
	Mdef: 51
	Stats: {
		Str: 62
		Agi: 27
		Vit: 25
		Int: 55
		Dex: 102
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1056
	AttackMotion: 1056
	DamageMotion: 336
	Drops: {
		Zargon: 4559
		Skel_Bone: 6000
		Skull: 500
		Wind_Scroll_1_5: 100
		Arc_Wand_: 8
		Rough_Wind: 100
		Bone_Wand: 1
		Wind_Ghost_Card: 1
	}
},
{
	Id: 2615
	SpriteName: "C3_WILOW"
	Name: "Willow Ringleader"
	Lv: 8
	Hp: 455
	Sp: 1
	Exp: 155
	JExp: 345
	AttackRange: 1
	Attack: [33, 6]
	Def: 38
	Mdef: 2
	Stats: {
		Str: 13
		Agi: 3
		Vit: 8
		Int: 5
		Dex: 12
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 432
	Drops: {
		Tree_Root: 9000
		Wooden_Block: 100
		Resin: 1500
		Sweet_Potato: 700
		Tree_Of_Archer_3: 3500
		Tree_Of_Archer_2: 2000
		Tree_Of_Archer_1: 1000
		Wilow_Card: 1
	}
},
{
	Id: 2616
	SpriteName: "C4_WILD_ROSE"
	Name: "Furious Wild Rose"
	Lv: 70
	Hp: 13410
	Sp: 1
	Exp: 1890
	JExp: 8325
	AttackRange: 1
	Attack: [254, 71]
	Def: 75
	Mdef: 15
	Stats: {
		Str: 44
		Agi: 113
		Vit: 31
		Int: 35
		Dex: 69
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 100
	AttackDelay: 964
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Cyfar: 5335
		Witherless_Rose: 50
		Fruit_Shell: 120
		Thief_Clothes_: 1
		Rotten_Fish: 35
		Monsters_Feed: 600
		Big_Sis_Ribbon: 2
		Wild_Rose_Card: 1
	}
},
{
	Id: 2617
	SpriteName: "C5_WICKED_NYMPH"
	Name: "Elusive Evil Nymph"
	Lv: 97
	Hp: 42455
	Sp: 1
	Exp: 5325
	JExp: 9975
	AttackRange: 2
	Attack: [605, 212]
	Def: 46
	Mdef: 45
	Stats: {
		Str: 84
		Agi: 46
		Vit: 45
		Int: 70
		Dex: 92
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 637
	AttackMotion: 1008
	DamageMotion: 360
	Drops: {
		Limpid_Celestial_Robe: 3977
		Soft_Silk_Cloth: 1380
		Oridecon: 10
		Mandolin_: 4
		Lute_: 1
		Holy_Scroll_1_5: 100
		Oriental_Lute: 10
		Wicked_Nymph_Card: 1
	}
},
{
	Id: 2618
	SpriteName: "C2_WHISPER"
	Name: "Solid Whisper"
	Lv: 46
	Hp: 11090
	Sp: 1
	Exp: 605
	JExp: 3840
	AttackRange: 1
	Attack: [140, 31]
	Def: 20
	Mdef: 40
	Stats: {
		Str: 32
		Agi: 48
		Vit: 20
		Int: 35
		Dex: 52
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1960
	AttackMotion: 960
	DamageMotion: 504
	Drops: {
		Sparkling_Dust: 150
		Transparent_Cloth: 5335
		Spirit_Chain: 1
		Silver_Robe_: 10
		Whisper_Card: 1
	}
},
{
	Id: 2619
	SpriteName: "C3_WEAK_SKELETON"
	Name: "Weak Skeleton Ringleader"
	Lv: 18
	Hp: 1400
	Sp: 1
	Exp: 290
	JExp: 645
	AttackRange: 1
	Attack: [57, 12]
	Def: 12
	Mdef: 2
	Stats: {
		Str: 15
		Agi: 5
		Vit: 10
		Int: 0
		Dex: 12
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 2228
	AttackMotion: 576
	DamageMotion: 528
	Drops: {
		Phracon: 45
		Skel_Bone: 800
		Mace_: 40
		Jellopy: 1500
		Red_Herb: 500
		Skul_Ring: 15
	}
},
{
	Id: 2620
	SpriteName: "C4_WANDER_MAN"
	Name: "Furious Wanderer"
	Lv: 120
	Hp: 96535
	Sp: 1
	Exp: 11015
	JExp: 33525
	AttackRange: 2
	Attack: [1865, 813]
	Def: 64
	Mdef: 5
	Stats: {
		Str: 118
		Agi: 119
		Vit: 36
		Int: 15
		Dex: 169
		Luk: 33
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 672
	AttackMotion: 500
	DamageMotion: 192
	Drops: {
		Skull: 4850
		Old_Card_Album: 1
		Hakujin_: 5
		Centimental_Leaf: 5
		Leaf_Of_Yggdrasil: 650
		Oridecon: 217
		Muramasa: 1
		Wander_Man_Card: 1
	}
},
{
	Id: 2621
	SpriteName: "C5_VIOLY"
	Name: "Elusive Violy"
	Lv: 118
	Hp: 102785
	Sp: 1
	Exp: 9300
	JExp: 19305
	AttackRange: 10
	Attack: [944, 368]
	Def: 74
	Mdef: 36
	Stats: {
		Str: 90
		Agi: 86
		Vit: 38
		Int: 76
		Dex: 126
		Luk: 63
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 1356
	AttackMotion: 1056
	DamageMotion: 540
	Drops: {
		Golden_Hair: 6305
		High_end_Cooking_Kits: 50
		Stuffed_Doll: 1200
		Base_Guitar: 50
		Royal_Jelly: 1400
		Water_Of_Darkness: 1000
		Violin_: 500
		Violy_Card: 1
	}
},
{
	Id: 2622
	SpriteName: "C1_VIOLY"
	Name: "Swift Violy"
	Lv: 118
	Hp: 102785
	Sp: 1
	Exp: 9300
	JExp: 19305
	AttackRange: 10
	Attack: [944, 368]
	Def: 74
	Mdef: 36
	Stats: {
		Str: 90
		Agi: 86
		Vit: 38
		Int: 76
		Dex: 126
		Luk: 63
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 1356
	AttackMotion: 1056
	DamageMotion: 540
	Drops: {
		Golden_Hair: 6305
		High_end_Cooking_Kits: 50
		Stuffed_Doll: 1200
		Base_Guitar: 50
		Royal_Jelly: 1400
		Water_Of_Darkness: 1000
		Violin_: 500
		Violy_Card: 1
	}
},
{
	Id: 2623
	SpriteName: "C2_VIOLY"
	Name: "Solid Violy"
	Lv: 118
	Hp: 205570
	Sp: 1
	Exp: 9300
	JExp: 19305
	AttackRange: 10
	Attack: [944, 368]
	Def: 74
	Mdef: 36
	Stats: {
		Str: 90
		Agi: 86
		Vit: 38
		Int: 76
		Dex: 126
		Luk: 63
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 1356
	AttackMotion: 1056
	DamageMotion: 540
	Drops: {
		Golden_Hair: 6305
		High_end_Cooking_Kits: 50
		Stuffed_Doll: 1200
		Base_Guitar: 50
		Royal_Jelly: 1400
		Water_Of_Darkness: 1000
		Violin_: 500
		Violy_Card: 1
	}
},
{
	Id: 2624
	SpriteName: "C3_VENOMOUS"
	Name: "Venomous Ringleader"
	Lv: 87
	Hp: 23850
	Sp: 1
	Exp: 3265
	JExp: 10020
	AttackRange: 1
	Attack: [451, 151]
	Def: 104
	Mdef: 65
	Stats: {
		Str: 61
		Agi: 28
		Vit: 60
		Int: 55
		Dex: 54
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 768
	AttackMotion: 1440
	DamageMotion: 672
	Drops: {
		Air_Pollutant: 5000
		Spawns: 3000
		Poison_Powder: 1000
		Poisonous_Gas: 2000
		Explosive_Powder: 300
		Tear_Gas: 600
		Old_Blue_Box: 1
		Venomous_Card: 1
	}
},
{
	Id: 2625
	SpriteName: "C4_VENATU_1"
	Name: "Furious Venatu"
	Lv: 113
	Hp: 79500
	Sp: 1
	Exp: 7955
	JExp: 18315
	AttackRange: 2
	Attack: [1817, 797]
	Def: 95
	Mdef: 20
	Stats: {
		Str: 109
		Agi: 70
		Vit: 60
		Int: 50
		Dex: 84
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 504
	AttackMotion: 1020
	DamageMotion: 360
	Drops: {
		Screw: 2000
		Piece_Of_Crest1: 350
		Oil_Bottle: 100
		Mystery_Piece: 300
		Drifter: 5
		Elunium: 10
		High_end_Cooking_Kits: 100
		Venatu_Card: 1
	}
},
{
	Id: 2626
	SpriteName: "C5_VAVAYAGA"
	Name: "Elusive Vavayaga"
	Lv: 87
	Hp: 32490
	Sp: 1
	Exp: 3265
	JExp: 10020
	AttackRange: 2
	Attack: [453, 149]
	Def: 63
	Mdef: 60
	Stats: {
		Str: 69
		Agi: 45
		Vit: 30
		Int: 60
		Dex: 61
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 270
	AttackDelay: 1536
	AttackMotion: 600
	DamageMotion: 420
	Drops: {
		Old_Magic_Circle: 1000
		Yaga_Pestle: 5000
		Release_Of_Wish: 10
		Pill: 150
		Piece_Of_Cake: 1500
		Milk: 1500
		Bread: 1500
	}
},
{
	Id: 2627
	SpriteName: "C1_VANBERK"
	Name: "Swift Vanberk"
	Lv: 123
	Hp: 123025
	Sp: 1
	Exp: 10530
	JExp: 21870
	AttackRange: 1
	Attack: [1112, 441]
	Def: 100
	Mdef: 6
	Stats: {
		Str: 109
		Agi: 70
		Vit: 55
		Int: 60
		Dex: 122
		Luk: 54
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 768
	AttackMotion: 360
	DamageMotion: 360
	Drops: {
		White_Mask: 2500
		Royal_Jelly: 10
		Bloody_Rune: 1000
		Beret: 25
		Scalpel: 5
		Bloody_Rune: 100
		Ur_Seal: 10
		Vanberk_Card: 1
	}
},
{
	Id: 2628
	SpriteName: "C2_VADON"
	Name: "Solid Vadon"
	Lv: 45
	Hp: 12520
	Sp: 1
	Exp: 855
	JExp: 2895
	AttackRange: 1
	Attack: [154, 37]
	Def: 54
	Mdef: 21
	Stats: {
		Str: 35
		Agi: 21
		Vit: 28
		Int: 20
		Dex: 33
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1632
	AttackMotion: 432
	DamageMotion: 540
	Drops: {
		Nipper: 10000
		Garlet: 10000
		Wing_Of_Fly: 3000
		Padded_Armor_: 5
		Solid_Shell: 100
		Elunium_Stone: 40
		Crystal_Blue: 50
		Vadon_Card: 1
	}
},
{
	Id: 2629
	SpriteName: "C3_UNGOLIANT"
	Name: "Ungoliant Ringleader"
	Lv: 94
	Hp: 135350
	Sp: 1
	Exp: 20500
	JExp: 36840
	AttackRange: 1
	Attack: [1409, 622]
	Def: 108
	Mdef: 28
	Stats: {
		Str: 71
		Agi: 70
		Vit: 58
		Int: 43
		Dex: 110
		Luk: 38
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Poison", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 420
	AttackMotion: 576
	DamageMotion: 420
	Drops: {
		Long_Limb: 4500
		Jaws_Of_Ant: 3500
		Colorful_Shell: 1000
		Olivine: 1500
		Fluorescent_Liquid: 2500
		Dark_Red_Jewel: 1500
		Boots_: 500
		Ungoliant_Card: 1
	}
},
{
	Id: 2630
	SpriteName: "C4_TOUCAN"
	Name: "Furious Toucan"
	Lv: 70
	Hp: 18200
	Sp: 1
	Exp: 1730
	JExp: 4080
	AttackRange: 1
	Attack: [290, 83]
	Def: 12
	Mdef: 12
	Stats: {
		Str: 54
		Agi: 18
		Vit: 40
		Int: 35
		Dex: 48
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 155
	AttackDelay: 960
	AttackMotion: 1440
	DamageMotion: 960
	Drops: {
		Talon: 3000
		Cyfar: 1000
		Blue_Herb: 50
		Yellow_Herb: 100
		Flower_Ring: 200
	}
},
{
	Id: 2631
	SpriteName: "C5_TIYANAK"
	Name: "Elusive Tiyanak"
	Lv: 105
	Hp: 85730
	Sp: 1
	Exp: 6570
	JExp: 19815
	AttackRange: 1
	Attack: [584, 219]
	Def: 76
	Mdef: 21
	Stats: {
		Str: 41
		Agi: 58
		Vit: 41
		Int: 51
		Dex: 72
		Luk: 47
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 496
	AttackMotion: 504
	DamageMotion: 360
	Drops: {
		Silver_Bracelet: 1500
		Mysterious_Flower: 1000
		Sticky_Mucus: 1000
		Tiyanak_Card: 1
	}
},
{
	Id: 2632
	SpriteName: "C2_THIEF_BUG"
	Name: "Solid Thief Bug"
	Lv: 21
	Hp: 3540
	Sp: 1
	Exp: 315
	JExp: 1065
	AttackRange: 1
	Attack: [93, 27]
	Def: 24
	Mdef: 3
	Stats: {
		Str: 19
		Agi: 7
		Vit: 10
		Int: 0
		Dex: 12
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 150
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 768
	Drops: {
		Worm_Peelings: 2500
		Leather_Jacket_: 80
		Red_Herb: 350
		Jellopy: 2000
		Leather_Jacket: 120
		Iron_Ore: 250
		Thief_Bug_Card: 1
	}
},
{
	Id: 2633
	SpriteName: "C3_THIEF_BUG"
	Name: "Thief Bug Ringleader"
	Lv: 21
	Hp: 1770
	Sp: 1
	Exp: 315
	JExp: 1065
	AttackRange: 1
	Attack: [93, 27]
	Def: 24
	Mdef: 3
	Stats: {
		Str: 19
		Agi: 7
		Vit: 10
		Int: 0
		Dex: 12
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 150
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 768
	Drops: {
		Worm_Peelings: 2500
		Leather_Jacket_: 80
		Red_Herb: 350
		Jellopy: 2000
		Leather_Jacket: 120
		Iron_Ore: 250
		Thief_Bug_Card: 1
	}
},
{
	Id: 2634
	SpriteName: "C4_THIEF_BUG"
	Name: "Furious Thief Bug"
	Lv: 21
	Hp: 1770
	Sp: 1
	Exp: 315
	JExp: 1065
	AttackRange: 1
	Attack: [92, 27]
	Def: 24
	Mdef: 3
	Stats: {
		Str: 19
		Agi: 9
		Vit: 10
		Int: 0
		Dex: 12
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 150
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 768
	Drops: {
		Worm_Peelings: 2500
		Leather_Jacket_: 80
		Red_Herb: 350
		Jellopy: 2000
		Leather_Jacket: 120
		Iron_Ore: 250
		Thief_Bug_Card: 1
	}
},
{
	Id: 2635
	SpriteName: "C5_THARA_FROG"
	Name: "Elusive Thara Frog"
	Lv: 40
	Hp: 5785
	Sp: 1
	Exp: 775
	JExp: 2625
	AttackRange: 1
	Attack: [134, 35]
	Def: 37
	Mdef: 17
	Stats: {
		Str: 25
		Agi: 10
		Vit: 10
		Int: 18
		Dex: 30
		Luk: 2
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 2016
	AttackMotion: 816
	DamageMotion: 288
	Drops: {
		Emveretarcon: 45
		Spawn: 5500
		Scell: 600
		White_Herb: 30
		Red_Jewel: 5
		Sticky_Webfoot: 2000
		Thara_Frog_Card: 1
	}
},
{
	Id: 2636
	SpriteName: "C1_TEDDY_BEAR"
	Name: "Swift Teddy Bear"
	Lv: 91
	Hp: 36190
	Sp: 1
	Exp: 4050
	JExp: 13485
	AttackRange: 1
	Attack: [610, 231]
	Def: 106
	Mdef: 39
	Stats: {
		Str: 57
		Agi: 81
		Vit: 66
		Int: 20
		Dex: 82
		Luk: 44
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 512
	AttackMotion: 780
	DamageMotion: 504
	Drops: {
		Screw: 3800
		Honey: 1000
		Oridecon_Hammer: 300
		Gold_Lux: 5
		Angry_Mouth: 50
		Cursed_Lucky_Brooch: 10
		Elunium: 100
		Teddy_Bear_Card: 1
	}
},
{
	Id: 2637
	SpriteName: "C2_TATACHO"
	Name: "Solid Tatacho"
	Lv: 128
	Hp: 333360
	Sp: 1
	Exp: 12225
	JExp: 27825
	AttackRange: 2
	Attack: [1223, 489]
	Def: 151
	Mdef: 14
	Stats: {
		Str: 119
		Agi: 33
		Vit: 70
		Int: 56
		Dex: 109
		Luk: 33
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 1000
	AttackMotion: 768
	DamageMotion: 360
	Drops: {
		Lunakaligo: 20
		Cello: 10
		Fur: 4000
		Peaked_Hat: 3000
		Delicious_Fish: 3100
		Bradium: 10
		Starsand_Of_Witch: 2500
		Tatacho_Card: 1
	}
},
{
	Id: 2638
	SpriteName: "C3_TAROU"
	Name: "Tarou Ringleader"
	Lv: 22
	Hp: 2100
	Sp: 1
	Exp: 335
	JExp: 1140
	AttackRange: 1
	Attack: [111, 35]
	Def: 23
	Mdef: 5
	Stats: {
		Str: 21
		Agi: 6
		Vit: 12
		Int: 0
		Dex: 10
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 1744
	AttackMotion: 1044
	DamageMotion: 684
	Drops: {
		Rat_Tail: 9000
		Animals_Skin: 3000
		Feather: 800
		Monsters_Feed: 1000
		Ora_Ora: 2
		Tarou_Card: 1
	}
},
{
	Id: 2639
	SpriteName: "C4_TAMRUAN"
	Name: "Furious Tamruan"
	Lv: 73
	Hp: 15975
	Sp: 1
	Exp: 2470
	JExp: 7575
	AttackRange: 1
	Attack: [454, 161]
	Def: 63
	Mdef: 30
	Stats: {
		Str: 60
		Agi: 49
		Vit: 40
		Int: 20
		Dex: 73
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 140
	AttackDelay: 512
	AttackMotion: 1152
	DamageMotion: 672
	Drops: {
		Sword_Accessory: 4850
		Broken_Armor_Piece: 3000
		Katana_: 40
		Bastard_Sword_: 8
		Chain_Mail_: 3
		Runstone_Mystic: 300
		Tamruan_Card: 1
	}
},
{
	Id: 2640
	SpriteName: "C5_STING"
	Name: "Elusive Sting"
	Lv: 104
	Hp: 50715
	Sp: 1
	Exp: 6515
	JExp: 14640
	AttackRange: 1
	Attack: [973, 381]
	Def: 146
	Mdef: 34
	Stats: {
		Str: 108
		Agi: 49
		Vit: 68
		Int: 34
		Dex: 119
		Luk: 24
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 528
	AttackMotion: 500
	DamageMotion: 240
	Drops: {
		Mud_Lump: 4850
		Stone_Arrow: 1500
		Glove_: 1
		Coal: 130
		Great_Nature: 25
		Silk_Ribbon: 10
		Explosive_Powder: 800
		Sting_Card: 1
	}
},
{
	Id: 2641
	SpriteName: "C1_STEM_WORM"
	Name: "Swift Stem Worm"
	Lv: 84
	Hp: 22650
	Sp: 1
	Exp: 2970
	JExp: 9105
	AttackRange: 1
	Attack: [419, 141]
	Def: 73
	Mdef: 50
	Stats: {
		Str: 55
		Agi: 37
		Vit: 25
		Int: 47
		Dex: 84
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1956
	AttackMotion: 756
	DamageMotion: 528
	Drops: {
		Tough_Scalelike_Stem: 5335
		White_Herb: 1800
		Jump_Rope: 10
		Oridecon_Stone: 115
		Great_Nature: 5
		Glaive: 20
		Seed_Of_Yggdrasil: 45
		Stem_Worm_Card: 1
	}
},
{
	Id: 2642
	SpriteName: "C2_STEEL_CHONCHON"
	Name: "Solid Steel Chonchon"
	Lv: 48
	Hp: 11990
	Sp: 1
	Exp: 920
	JExp: 3105
	AttackRange: 1
	Attack: [151, 37]
	Def: 57
	Mdef: 20
	Stats: {
		Str: 30
		Agi: 62
		Vit: 20
		Int: 10
		Dex: 56
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 150
	AttackDelay: 1076
	AttackMotion: 576
	DamageMotion: 480
	Drops: {
		Wind_Of_Verdure: 90
		Steel: 30
		Garlet: 2400
		Shell: 9000
		Solid_Shell: 30
		Iron: 200
		Wing_Of_Fly: 300
		Steel_Chonchon_Card: 1
	}
},
{
	Id: 2643
	SpriteName: "C3_STAPO"
	Name: "Stapo Ringleader"
	Lv: 95
	Hp: 44025
	Sp: 1
	Exp: 4720
	JExp: 13290
	AttackRange: 1
	Attack: [664, 275]
	Def: 129
	Mdef: 36
	Stats: {
		Str: 20
		Agi: 46
		Vit: 25
		Int: 35
		Dex: 64
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 936
	AttackMotion: 792
	DamageMotion: 432
	Drops: {
		Jellopy: 1000
		Jubilee: 1000
		Apple: 1000
		Large_Jellopy: 100
		Yellow_Live: 10
		Seismic_Fist: 3
		Stapo_Card: 1
	}
},
{
	Id: 2644
	SpriteName: "C4_STALACTIC_GOLEM"
	Name: "Furious Stalactic Golem"
	Lv: 68
	Hp: 12950
	Sp: 1
	Exp: 1770
	JExp: 5685
	AttackRange: 1
	Attack: [477, 171]
	Def: 230
	Mdef: 5
	Stats: {
		Str: 67
		Agi: 61
		Vit: 48
		Int: 1
		Dex: 69
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1264
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Mud_Lump: 2000
		Brigan: 4850
		Star_Crumb: 250
		Great_Nature: 30
		Elunium_Stone: 250
		Round_Buckler: 5
		Elunium: 163
		Stalactic_Golem_Card: 1
	}
},
{
	Id: 2645
	SpriteName: "C5_STAINER"
	Name: "Elusive Stainer"
	Lv: 21
	Hp: 1825
	Sp: 1
	Exp: 315
	JExp: 1065
	AttackRange: 1
	Attack: [93, 31]
	Def: 22
	Mdef: 25
	Stats: {
		Str: 10
		Agi: 10
		Vit: 24
		Int: 0
		Dex: 39
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1688
	AttackMotion: 1188
	DamageMotion: 612
	Drops: {
		Wind_Of_Verdure: 70
		Emveretarcon: 30
		Colorful_Shell: 9000
		Garlet: 2100
		Elunium_Stone: 25
		Wing_Of_Fly: 10
		Iron_Ore: 300
		Stainer_Card: 1
	}
},
{
	Id: 2646
	SpriteName: "C1_SPORE"
	Name: "Swift Spore"
	Lv: 18
	Hp: 1400
	Sp: 1
	Exp: 290
	JExp: 645
	AttackRange: 1
	Attack: [57, 12]
	Def: 12
	Mdef: 10
	Stats: {
		Str: 15
		Agi: 5
		Vit: 10
		Int: 0
		Dex: 12
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 288
	Drops: {
		Mushroom_Spore: 9000
		Red_Herb: 800
		Wing_Of_Fly: 50
		Spore_Doll: 10
		Hat: 40
		Poison_Spore: 5
		Strawberry: 600
		Spore_Card: 1
	}
},
{
	Id: 2647
	SpriteName: "C2_SOLIDER"
	Name: "Solid Solider"
	Lv: 92
	Hp: 87680
	Sp: 1
	Exp: 4460
	JExp: 12525
	AttackRange: 2
	Attack: [509, 176]
	Def: 206
	Mdef: 58
	Stats: {
		Str: 65
		Agi: 44
		Vit: 60
		Int: 15
		Dex: 56
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 250
	AttackDelay: 1452
	AttackMotion: 483
	DamageMotion: 528
	Drops: {
		Turtle_Shell: 4413
		Broken_Shell: 64
		Stone_Piece: 850
		Yellow_Herb: 2100
		Zargon: 1240
		Honey: 850
		Chain: 1
		Solider_Card: 1
	}
},
{
	Id: 2648
	SpriteName: "C3_SOLDIER_SKELETON"
	Name: "Soldier Skeleton Ringleader"
	Lv: 34
	Hp: 4020
	Sp: 1
	Exp: 540
	JExp: 1815
	AttackRange: 1
	Attack: [128, 40]
	Def: 53
	Mdef: 5
	Stats: {
		Str: 14
		Agi: 10
		Vit: 32
		Int: 5
		Dex: 29
		Luk: 3
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 2276
	AttackMotion: 576
	DamageMotion: 432
	Drops: {
		Skel_Bone: 5500
		Oridecon_Stone: 60
		Dagger_: 12
		Red_Herb: 700
		Wing_Of_Fly: 10
		Chain_Mail_: 1
		Stiletto: 50
		Soldier_Skeleton_Card: 1
	}
},
{
	Id: 2649
	SpriteName: "C4_SOLDIER_SKELETON"
	Name: "Furious Soldier Skeleton"
	Lv: 34
	Hp: 4020
	Sp: 1
	Exp: 540
	JExp: 1815
	AttackRange: 1
	Attack: [128, 40]
	Def: 53
	Mdef: 5
	Stats: {
		Str: 14
		Agi: 13
		Vit: 32
		Int: 5
		Dex: 29
		Luk: 3
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 2276
	AttackMotion: 576
	DamageMotion: 432
	Drops: {
		Skel_Bone: 5500
		Oridecon_Stone: 60
		Dagger_: 12
		Red_Herb: 700
		Wing_Of_Fly: 10
		Chain_Mail_: 1
		Stiletto: 50
		Soldier_Skeleton_Card: 1
	}
},
{
	Id: 2650
	SpriteName: "C5_SOLACE"
	Name: "Elusive Lady Solace"
	Lv: 123
	Hp: 123645
	Sp: 1
	Exp: 12210
	JExp: 36135
	AttackRange: 2
	Attack: [1413, 592]
	Def: 96
	Mdef: 96
	Stats: {
		Str: 106
		Agi: 65
		Vit: 61
		Int: 42
		Dex: 125
		Luk: 72
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 576
	AttackMotion: 420
	DamageMotion: 360
	Drops: {
		Blue_Feather: 200
		Ring_: 1
		Stone_Of_Intelligence_: 50
		Dark_Red_Jewel: 1000
		Harp_: 50
		Harp: 100
		Cursed_Seal: 50
		Solace_Card: 1
	}
},
{
	Id: 2651
	SpriteName: "C1_SOHEE"
	Name: "Swift Sohee"
	Lv: 64
	Hp: 14375
	Sp: 1
	Exp: 1560
	JExp: 5010
	AttackRange: 1
	Attack: [294, 85]
	Def: 61
	Mdef: 21
	Stats: {
		Str: 61
		Agi: 24
		Vit: 29
		Int: 20
		Dex: 41
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 250
	AttackDelay: 2112
	AttackMotion: 912
	DamageMotion: 576
	Drops: {
		Long_Hair: 9000
		Skirt_Of_Virgin: 50
		Nurse_Cap: 1
		Muffler_: 5
		Stiletto_: 5
		Puente_Robe: 5
		Inspector_Certificate: 350
		Sohee_Card: 1
	}
},
{
	Id: 2652
	SpriteName: "C2_SNOWIER"
	Name: "Solid Snowier"
	Lv: 103
	Hp: 139340
	Sp: 1
	Exp: 5830
	JExp: 13110
	AttackRange: 2
	Attack: [926, 366]
	Def: 121
	Mdef: 47
	Stats: {
		Str: 91
		Agi: 61
		Vit: 67
		Int: 45
		Dex: 83
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 220
	AttackDelay: 936
	AttackMotion: 1020
	DamageMotion: 420
	Drops: {
		Ice_Heart: 3000
		Ice_Piece: 1000
		Elunium_Stone: 100
		Blue_Herb: 50
		White_Herb: 500
		Icicle_Fist: 3
		Crystal_Blue: 100
		Snowier_Card: 1
	}
},
{
	Id: 2653
	SpriteName: "C3_SNAKE"
	Name: "Boa Ringleader"
	Lv: 18
	Hp: 1085
	Sp: 1
	Exp: 290
	JExp: 645
	AttackRange: 1
	Attack: [49, 11]
	Def: 9
	Mdef: 8
	Stats: {
		Str: 10
		Agi: 8
		Vit: 18
		Int: 10
		Dex: 14
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 576
	Drops: {
		Scale_Of_Snakes: 9000
		Katana_: 15
		Red_Herb: 900
		Emveretarcon: 35
		Posionous_Canine: 800
		Wing_Of_Fly: 1
		Strawberry: 600
		Snake_Card: 1
	}
},
{
	Id: 2654
	SpriteName: "C4_SMOKIE"
	Name: "Furious Smokie"
	Lv: 29
	Hp: 2955
	Sp: 1
	Exp: 450
	JExp: 1515
	AttackRange: 1
	Attack: [112, 33]
	Def: 26
	Mdef: 0
	Stats: {
		Str: 16
		Agi: 44
		Vit: 16
		Int: 5
		Dex: 27
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 420
	Drops: {
		Raccoon_Leaf: 5500
		Animals_Skin: 5500
		Sweet_Potato: 800
		Cat_Hairband: 1
		Raccoondog_Doll: 2
		Wing_Of_Fly: 5
		Bluish_Green_Jewel: 2
		Smokie_Card: 1
	}
},
{
	Id: 2655
	SpriteName: "C5_SLEEPER"
	Name: "Elusive Sleeper"
	Lv: 81
	Hp: 25800
	Sp: 1
	Exp: 2840
	JExp: 8700
	AttackRange: 1
	Attack: [443, 145]
	Def: 101
	Mdef: 29
	Stats: {
		Str: 74
		Agi: 41
		Vit: 57
		Int: 27
		Dex: 65
		Luk: 27
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 195
	AttackDelay: 1350
	AttackMotion: 1200
	DamageMotion: 432
	Drops: {
		Sand_Lump: 4947
		Grit: 5335
		Great_Nature: 2500
		Oridecon_Stone: 300
		Damascus_: 5
		Hypnotists_Staff_: 5
		Fine_Sand: 1200
		Sleeper_Card: 1
	}
},
{
	Id: 2656
	SpriteName: "C1_SLEEPER"
	Name: "Swift Sleeper"
	Lv: 81
	Hp: 25800
	Sp: 1
	Exp: 2840
	JExp: 8700
	AttackRange: 1
	Attack: [443, 145]
	Def: 101
	Mdef: 29
	Stats: {
		Str: 74
		Agi: 41
		Vit: 57
		Int: 27
		Dex: 65
		Luk: 27
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 195
	AttackDelay: 1350
	AttackMotion: 1200
	DamageMotion: 432
	Drops: {
		Sand_Lump: 4947
		Grit: 5335
		Great_Nature: 2500
		Oridecon_Stone: 300
		Damascus_: 5
		Hypnotists_Staff_: 5
		Fine_Sand: 1200
		Sleeper_Card: 1
	}
},
{
	Id: 2657
	SpriteName: "C2_SKOGUL"
	Name: "Solid Skogul"
	Lv: 126
	Hp: 342400
	Sp: 1
	Exp: 14760
	JExp: 46890
	AttackRange: 2
	Attack: [1192, 483]
	Def: 72
	Mdef: 15
	Stats: {
		Str: 100
		Agi: 71
		Vit: 63
		Int: 85
		Dex: 115
		Luk: 37
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 190
	AttackDelay: 720
	AttackMotion: 384
	DamageMotion: 480
	Drops: {
		Rune_Of_Darkness: 3500
		Peuz_Seal: 10
		Red_Gemstone: 1000
		Rouge: 500
		Skul_Ring: 100
		Elunium_Stone: 500
		Blood_Tears: 5
		Skogul_Card: 1
	}
},
{
	Id: 2658
	SpriteName: "C3_SKELETON_GENERAL"
	Name: "Skeleton General Ringleader"
	Lv: 139
	Hp: 900650
	Sp: 1
	Exp: 53070
	JExp: 182070
	AttackRange: 1
	Attack: [1475, 632]
	Def: 100
	Mdef: 35
	Stats: {
		Str: 72
		Agi: 34
		Vit: 52
		Int: 31
		Dex: 101
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 2276
	AttackMotion: 576
	DamageMotion: 432
	Drops: {
		Burn_Tree: 2550
		Oridecon_Stone: 160
		Sg_White_Potion_Box: 800
		Gladius_: 35
		Velum_Claymore: 80
		Sandstorm: 15
		Ghost_Bandana: 1
		Skeleton_General_Card: 1
	}
},
{
	Id: 2659
	SpriteName: "C4_SKELETON_GENERAL"
	Name: "Furious Skeleton General"
	Lv: 139
	Hp: 900650
	Sp: 1
	Exp: 53070
	JExp: 182070
	AttackRange: 1
	Attack: [1475, 632]
	Def: 100
	Mdef: 35
	Stats: {
		Str: 72
		Agi: 44
		Vit: 52
		Int: 31
		Dex: 101
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 2276
	AttackMotion: 576
	DamageMotion: 432
	Drops: {
		Burn_Tree: 2550
		Oridecon_Stone: 160
		Sg_White_Potion_Box: 800
		Gladius_: 35
		Velum_Claymore: 80
		Sandstorm: 15
		Ghost_Bandana: 1
		Skeleton_General_Card: 1
	}
},
{
	Id: 2660
	SpriteName: "C5_SKEL_WORKER"
	Name: "Elusive Skeleton Worker"
	Lv: 44
	Hp: 6200
	Sp: 1
	Exp: 830
	JExp: 2805
	AttackRange: 1
	Attack: [162, 44]
	Def: 45
	Mdef: 5
	Stats: {
		Str: 30
		Agi: 13
		Vit: 22
		Int: 10
		Dex: 37
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 2420
	AttackMotion: 720
	DamageMotion: 384
	Drops: {
		Iron: 400
		Lantern: 5500
		Elunium_Stone: 90
		Safety_Helmet: 2
		Steel: 100
		Coal: 200
		Wing_Of_Fly: 10
		Skel_Worker_Card: 1
	}
},
{
	Id: 2661
	SpriteName: "C1_SIROMA"
	Name: "Swift Siroma"
	Lv: 98
	Hp: 59550
	Sp: 1
	Exp: 4565
	JExp: 10260
	AttackRange: 1
	Attack: [666, 243]
	Def: 64
	Mdef: 38
	Stats: {
		Str: 83
		Agi: 43
		Vit: 50
		Int: 70
		Dex: 96
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 180
	AttackDelay: 432
	AttackMotion: 648
	DamageMotion: 240
	Drops: {
		Ice_Heart: 1000
		Ice_Piece: 500
		Blue_Herb: 10
		Crystal_Blue: 20
		Siroma_Card: 1
	}
},
{
	Id: 2662
	SpriteName: "C2_SIDE_WINDER"
	Name: "Solid Side Winder"
	Lv: 70
	Hp: 27360
	Sp: 1
	Exp: 1890
	JExp: 6075
	AttackRange: 1
	Attack: [425, 151]
	Def: 101
	Mdef: 12
	Stats: {
		Str: 52
		Agi: 32
		Vit: 35
		Int: 20
		Dex: 73
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 576
	Drops: {
		Shining_Scales: 5335
		Zargon: 1400
		Oridecon_Stone: 134
		Tsurugi_: 2
		Posionous_Canine: 2500
		Scale_Of_Snakes: 5000
		White_Herb: 1000
		Side_Winder_Card: 1
	}
},
{
	Id: 2663
	SpriteName: "C3_SIDE_WINDER"
	Name: "Side Winder Ringleader"
	Lv: 70
	Hp: 13680
	Sp: 1
	Exp: 1890
	JExp: 6075
	AttackRange: 1
	Attack: [425, 151]
	Def: 101
	Mdef: 12
	Stats: {
		Str: 52
		Agi: 32
		Vit: 35
		Int: 20
		Dex: 73
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 576
	Drops: {
		Shining_Scales: 5335
		Zargon: 1400
		Oridecon_Stone: 134
		Tsurugi_: 2
		Posionous_Canine: 2500
		Scale_Of_Snakes: 5000
		White_Herb: 1000
		Side_Winder_Card: 1
	}
},
{
	Id: 2664
	SpriteName: "C4_SHINOBI"
	Name: "Furious Shinobi"
	Lv: 95
	Hp: 40000
	Sp: 1
	Exp: 5070
	JExp: 14265
	AttackRange: 2
	Attack: [714, 275]
	Def: 49
	Mdef: 45
	Stats: {
		Str: 71
		Agi: 91
		Vit: 55
		Int: 30
		Dex: 83
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1003
	AttackMotion: 1152
	DamageMotion: 336
	Drops: {
		Broken_Shuriken: 5335
		Ninja_Suit: 2
		Smoke_Powder: 700
		Shinobis_Sash: 100
		Thief_Clothes_: 1
		Black_Mask: 2000
		Murasame_: 5
		Shinobi_Card: 1
	}
},
{
	Id: 2665
	SpriteName: "C5_SHELTER"
	Name: "Elusive Mistress of Shelter"
	Lv: 125
	Hp: 135000
	Sp: 1
	Exp: 13030
	JExp: 37875
	AttackRange: 2
	Attack: [1248, 512]
	Def: 80
	Mdef: 89
	Stats: {
		Str: 99
		Agi: 66
		Vit: 41
		Int: 153
		Dex: 133
		Luk: 89
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 160
	AttackDelay: 432
	AttackMotion: 420
	DamageMotion: 360
	Drops: {
		Red_Feather: 200
		Cursed_Seal: 1
		Stone_Of_Intelligence_: 50
		Scarlet_Jewel: 1000
		Skull: 1000
		Cursed_Seal: 50
		Shelter_Card: 1
	}
},
{
	Id: 2666
	SpriteName: "C1_SHELLFISH"
	Name: "Swift Shellfish"
	Lv: 50
	Hp: 8400
	Sp: 1
	Exp: 1060
	JExp: 3405
	AttackRange: 1
	Attack: [162, 35]
	Def: 43
	Mdef: 5
	Stats: {
		Str: 42
		Agi: 11
		Vit: 48
		Int: 25
		Dex: 29
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 864
	AttackMotion: 864
	DamageMotion: 384
	Drops: {
		Clam_Shell: 5500
		Flesh_Of_Clam: 1000
		Stone: 500
		Grit: 1000
		Sparkling_Dust: 10
		Elunium_Stone: 18
		Shellfish_Card: 1
	}
},
{
	Id: 2667
	SpriteName: "C2_SHECIL"
	Name: "Solid Cecil Damon"
	Lv: 141
	Hp: 2002550
	Sp: 1
	Exp: 82835
	JExp: 248175
	AttackRange: 14
	Attack: [3849, 1793]
	Def: 76
	Mdef: 15
	Stats: {
		Str: 121
		Agi: 126
		Vit: 67
		Int: 80
		Dex: 308
		Luk: 42
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Armlet_Of_Prisoner: 1500
		Imma_Arrow_Container: 55
		Big_CrossBow: 10
		High_Weapon_Box: 3
		Will_Of_Warrior: 200
		Goast_Chill: 1
		Falken_Blitz: 200
		Shecil_Card: 1
	}
},
{
	Id: 2668
	SpriteName: "C3_SEE_OTTER"
	Name: "Sea Otter Ringleader"
	Lv: 48
	Hp: 9100
	Sp: 1
	Exp: 1070
	JExp: 3600
	AttackRange: 1
	Attack: [159, 39]
	Def: 31
	Mdef: 18
	Stats: {
		Str: 32
		Agi: 26
		Vit: 33
		Int: 26
		Dex: 41
		Luk: 28
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 190
	AttackDelay: 1132
	AttackMotion: 583
	DamageMotion: 532
	Drops: {
		Scarlet_Jewel: 150
		Clam_Shell: 5500
		Sea_Otter_Leather: 4365
		Wing_Of_Fly: 50
		Blue_Jewel: 50
		Glass_Bead: 650
		Cyfar: 1200
		See_Otter_Card: 1
	}
},
{
	Id: 2669
	SpriteName: "C4_SEDORA"
	Name: "Furious Lamp Rey"
	Lv: 110
	Hp: 110250
	Sp: 1
	Exp: 9265
	JExp: 31290
	AttackRange: 1
	Attack: [962, 363]
	Def: 92
	Mdef: 55
	Stats: {
		Str: 126
		Agi: 153
		Vit: 61
		Int: 107
		Dex: 109
		Luk: 84
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 504
	AttackMotion: 960
	DamageMotion: 576
	Drops: {
		Tentacle: 2500
		Tidal_Shoes: 3
		Ice_Fragment: 15
		Elder_Branch: 15
		Chinese_Ink: 1500
		Old_Blue_Box: 5
		Crystal_Blue: 25
		Sedora_Card: 1
	}
},
{
	Id: 2670
	SpriteName: "C5_SCORPION"
	Name: "Elusive Scorpion"
	Lv: 16
	Hp: 765
	Sp: 1
	Exp: 270
	JExp: 600
	AttackRange: 1
	Attack: [59, 15]
	Def: 16
	Mdef: 5
	Stats: {
		Str: 12
		Agi: 15
		Vit: 10
		Int: 5
		Dex: 19
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1564
	AttackMotion: 864
	DamageMotion: 576
	Drops: {
		Boody_Red: 70
		Scorpions_Tail: 5500
		Elunium_Stone: 57
		Solid_Shell: 210
		Wing_Of_Fly: 100
		Yellow_Herb: 200
		Lusty_Iron: 20
		Scorpion_Card: 1
	}
},
{
	Id: 2671
	SpriteName: "C1_SAVAGE_BABE"
	Name: "Swift Savage Babe"
	Lv: 14
	Hp: 900
	Sp: 1
	Exp: 225
	JExp: 510
	AttackRange: 1
	Attack: [47, 9]
	Def: 22
	Mdef: 0
	Stats: {
		Str: 16
		Agi: 8
		Vit: 9
		Int: 5
		Dex: 21
		Luk: 18
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1624
	AttackMotion: 624
	DamageMotion: 576
	Drops: {
		Animals_Skin: 9000
		Axe_: 100
		Meat: 500
		Wing_Of_Fly: 1
		Feather: 850
		Phracon: 80
		Sweet_Milk: 40
		Savage_Babe_Card: 1
	}
},
{
	Id: 2672
	SpriteName: "C2_SAVAGE"
	Name: "Solid Savage"
	Lv: 59
	Hp: 23010
	Sp: 1
	Exp: 1505
	JExp: 4830
	AttackRange: 1
	Attack: [288, 87]
	Def: 126
	Mdef: 3
	Stats: {
		Str: 56
		Agi: 21
		Vit: 54
		Int: 10
		Dex: 52
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 1960
	AttackMotion: 960
	DamageMotion: 384
	Drops: {
		Wild_Boars_Mane: 9000
		Grape: 300
		Animal_Blood: 2
		Eagle_Eyes: 1
		Savage_Meat: 10
		Elunium_Stone: 70
		Royal_Jelly: 2
		Savage_Card: 1
	}
},
{
	Id: 2673
	SpriteName: "C3_SAVAGE"
	Name: "Savage Ringleader"
	Lv: 59
	Hp: 11505
	Sp: 1
	Exp: 1505
	JExp: 4830
	AttackRange: 1
	Attack: [288, 87]
	Def: 126
	Mdef: 3
	Stats: {
		Str: 56
		Agi: 21
		Vit: 54
		Int: 10
		Dex: 52
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 1960
	AttackMotion: 960
	DamageMotion: 384
	Drops: {
		Wild_Boars_Mane: 9000
		Grape: 300
		Animal_Blood: 2
		Eagle_Eyes: 1
		Savage_Meat: 10
		Elunium_Stone: 70
		Royal_Jelly: 2
		Savage_Card: 1
	}
},
{
	Id: 2674
	SpriteName: "C4_SAND_MAN"
	Name: "Furious Sandman"
	Lv: 61
	Hp: 14435
	Sp: 1
	Exp: 1640
	JExp: 5280
	AttackRange: 1
	Attack: [261, 79]
	Def: 126
	Mdef: 24
	Stats: {
		Str: 44
		Agi: 10
		Vit: 55
		Int: 15
		Dex: 34
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1672
	AttackMotion: 720
	DamageMotion: 288
	Drops: {
		Great_Nature: 35
		Grit: 5335
		Elunium_Stone: 118
		Fine_Sand: 350
		Sparkling_Dust: 200
		Katar_Of_Thornbush: 1
		Hypnotists_Staff_: 5
		Sand_Man_Card: 1
	}
},
{
	Id: 2675
	SpriteName: "C5_SALAMANDER"
	Name: "Elusive Salamander"
	Lv: 138
	Hp: 401950
	Sp: 1
	Exp: 19235
	JExp: 53535
	AttackRange: 2
	Attack: [2533, 1103]
	Def: 141
	Mdef: 68
	Stats: {
		Str: 189
		Agi: 105
		Vit: 92
		Int: 85
		Dex: 198
		Luk: 72
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 160
	AttackDelay: 140
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Burning_Heart: 3000
		Flame_Heart: 30
		Carnium: 10
		Lesser_Elemental_Ring: 1
		Berserk_Guitar: 50
		Ring_: 1
		Meteo_Plate_Armor: 20
		Salamander_Card: 1
	}
},
{
	Id: 2676
	SpriteName: "C1_SAILOR_SKELETON"
	Name: "Swift Sailor Skeleton"
	Lv: 19
	Hp: 1550
	Sp: 1
	Exp: 290
	JExp: 645
	AttackRange: 1
	Attack: [59, 13]
	Def: 12
	Mdef: 2
	Stats: {
		Str: 15
		Agi: 5
		Vit: 10
		Int: 0
		Dex: 12
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 2228
	AttackMotion: 576
	DamageMotion: 528
	Drops: {
		Skel_Bone: 700
		Pirate_Bandana: 4
		Cookbook06: 1
		Bandana: 60
		Falchion: 60
		Oridecon_Stone: 10
		Well_Dried_Bone: 5
	}
},
{
	Id: 2677
	SpriteName: "C2_ROWEEN"
	Name: "Solid Roween"
	Lv: 95
	Hp: 73850
	Sp: 1
	Exp: 5070
	JExp: 14265
	AttackRange: 1
	Attack: [729, 282]
	Def: 73
	Mdef: 33
	Stats: {
		Str: 70
		Agi: 82
		Vit: 55
		Int: 45
		Dex: 108
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 1500
	AttackMotion: 500
	DamageMotion: 1000
	Drops: {
		Rotten_Meat: 3000
		Animals_Skin: 3000
		Wind_Of_Verdure: 50
		Combo_Battle_Glove: 2
		Roween_Card: 1
	}
},
{
	Id: 2678
	SpriteName: "C3_RODA_FROG"
	Name: "Roda Frog Ringleader"
	Lv: 13
	Hp: 800
	Sp: 1
	Exp: 225
	JExp: 510
	AttackRange: 1
	Attack: [42, 9]
	Def: 12
	Mdef: 5
	Stats: {
		Str: 12
		Agi: 6
		Vit: 4
		Int: 0
		Dex: 14
		Luk: 9
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 2016
	AttackMotion: 816
	DamageMotion: 288
	Drops: {
		Sticky_Webfoot: 9000
		Spawn: 500
		Green_Herb: 300
		Azure_Jewel: 7
		Wing_Of_Fly: 2000
		Roda_Frog_Card: 1
	}
},
{
	Id: 2679
	SpriteName: "C4_RODA_FROG"
	Name: "Furious Roda Frog"
	Lv: 13
	Hp: 800
	Sp: 1
	Exp: 225
	JExp: 510
	AttackRange: 1
	Attack: [42, 9]
	Def: 12
	Mdef: 5
	Stats: {
		Str: 12
		Agi: 7
		Vit: 4
		Int: 0
		Dex: 14
		Luk: 9
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 2016
	AttackMotion: 816
	DamageMotion: 288
	Drops: {
		Sticky_Webfoot: 9000
		Spawn: 500
		Green_Herb: 300
		Azure_Jewel: 7
		Wing_Of_Fly: 2000
		Roda_Frog_Card: 1
	}
},
{
	Id: 2680
	SpriteName: "C5_ROCKER"
	Name: "Elusive Rocker"
	Lv: 15
	Hp: 925
	Sp: 1
	Exp: 245
	JExp: 555
	AttackRange: 1
	Attack: [44, 9]
	Def: 16
	Mdef: 3
	Stats: {
		Str: 12
		Agi: 18
		Vit: 8
		Int: 10
		Dex: 17
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1864
	AttackMotion: 864
	DamageMotion: 540
	Drops: {
		Grasshoppers_Leg: 9000
		Wing_Of_Fly: 10000
		Green_Feeler: 4
		Javelin_: 80
		Guitar_Of_Vast_Land: 10
		Grasshopper_Doll: 10
		Hinalle: 10
		Rocker_Card: 1
	}
},
{
	Id: 2681
	SpriteName: "C1_RIDEWORD"
	Name: "Swift Rideword"
	Lv: 74
	Hp: 16110
	Sp: 1
	Exp: 2225
	JExp: 9090
	AttackRange: 1
	Attack: [512, 185]
	Def: 61
	Mdef: 38
	Stats: {
		Str: 67
		Agi: 53
		Vit: 32
		Int: 44
		Dex: 125
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 864
	AttackMotion: 500
	DamageMotion: 192
	Drops: {
		Worn_Out_Page: 4850
		Book_Of_Billows: 4
		Book_Of_Mother_Earth: 4
		Book_Of_Blazing_Sun: 2
		Book_Of_Gust_Of_Wind: 2
		Bookclip_In_Memory: 300
		Old_Magic_Book: 20
		Rideword_Card: 1
	}
},
{
	Id: 2682
	SpriteName: "C2_RIDEWORD"
	Name: "Solid Rideword"
	Lv: 74
	Hp: 32220
	Sp: 1
	Exp: 2225
	JExp: 9090
	AttackRange: 1
	Attack: [512, 185]
	Def: 61
	Mdef: 38
	Stats: {
		Str: 67
		Agi: 53
		Vit: 32
		Int: 44
		Dex: 125
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 864
	AttackMotion: 500
	DamageMotion: 192
	Drops: {
		Worn_Out_Page: 4850
		Book_Of_Billows: 4
		Book_Of_Mother_Earth: 4
		Book_Of_Blazing_Sun: 2
		Book_Of_Gust_Of_Wind: 2
		Bookclip_In_Memory: 300
		Old_Magic_Book: 20
		Rideword_Card: 1
	}
},
{
	Id: 2683
	SpriteName: "C3_RICE_CAKE_BOY"
	Name: "Dumpling Child Ringleader"
	Lv: 60
	Hp: 10490
	Sp: 1
	Exp: 1395
	JExp: 4470
	AttackRange: 1
	Attack: [238, 64]
	Def: 96
	Mdef: 12
	Stats: {
		Str: 50
		Agi: 43
		Vit: 29
		Int: 5
		Dex: 47
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 160
	AttackDelay: 1247
	AttackMotion: 768
	DamageMotion: 420
	Drops: {
		Bamboo_Cut: 3200
		Oil_Paper: 2500
		Pierrot_Nose: 1
		Blade_Of_Pinwheel: 5000
		Bun: 1000
		Festival_Mask: 3000
		Rice_Cake_Boy_Card: 1
	}
},
{
	Id: 2684
	SpriteName: "C4_RETRIBUTION"
	Name: "Furious Baroness of Retribution"
	Lv: 121
	Hp: 110760
	Sp: 1
	Exp: 12465
	JExp: 33465
	AttackRange: 2
	Attack: [1305, 536]
	Def: 61
	Mdef: 35
	Stats: {
		Str: 112
		Agi: 78
		Vit: 45
		Int: 127
		Dex: 149
		Luk: 70
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Angel"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 360
	AttackMotion: 480
	DamageMotion: 360
	Drops: {
		Red_Feather: 400
		Ring_: 1
		Stone_Of_Intelligence_: 50
		Cardinal_Jewel: 1000
		Manteau_: 5
		Two_Hand_Sword_: 10
		Cursed_Seal: 50
		Retribution_Card: 1
	}
},
{
	Id: 2685
	SpriteName: "C5_RETRIBUTION"
	Name: "Elusive Baroness of Retribution"
	Lv: 121
	Hp: 110760
	Sp: 1
	Exp: 12465
	JExp: 33465
	AttackRange: 2
	Attack: [1305, 536]
	Def: 61
	Mdef: 35
	Stats: {
		Str: 112
		Agi: 60
		Vit: 45
		Int: 127
		Dex: 149
		Luk: 70
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Angel"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 360
	AttackMotion: 480
	DamageMotion: 360
	Drops: {
		Red_Feather: 400
		Ring_: 1
		Stone_Of_Intelligence_: 50
		Cardinal_Jewel: 1000
		Manteau_: 5
		Two_Hand_Sword_: 10
		Cursed_Seal: 50
		Retribution_Card: 1
	}
},
{
	Id: 2686
	SpriteName: "C1_RETRIBUTION"
	Name: "Swift Baroness of Retribution"
	Lv: 121
	Hp: 110760
	Sp: 1
	Exp: 12465
	JExp: 33465
	AttackRange: 2
	Attack: [1305, 536]
	Def: 61
	Mdef: 35
	Stats: {
		Str: 112
		Agi: 60
		Vit: 45
		Int: 127
		Dex: 149
		Luk: 70
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Angel"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 360
	AttackMotion: 480
	DamageMotion: 360
	Drops: {
		Red_Feather: 400
		Ring_: 1
		Stone_Of_Intelligence_: 50
		Cardinal_Jewel: 1000
		Manteau_: 5
		Two_Hand_Sword_: 10
		Cursed_Seal: 50
		Retribution_Card: 1
	}
},
{
	Id: 2687
	SpriteName: "C2_REQUIEM"
	Name: "Solid Requiem"
	Lv: 71
	Hp: 30890
	Sp: 1
	Exp: 2030
	JExp: 6225
	AttackRange: 1
	Attack: [462, 167]
	Def: 88
	Mdef: 20
	Stats: {
		Str: 58
		Agi: 34
		Vit: 35
		Int: 12
		Dex: 50
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 1516
	AttackMotion: 816
	DamageMotion: 432
	Drops: {
		Old_Blue_Box: 35
		Emperium: 1
		Zargon: 2500
		Horrendous_Mouth: 3500
		Mementos: 1500
		Mantle_: 10
		Cookbook06: 1
		Requiem_Card: 1
	}
},
{
	Id: 2688
	SpriteName: "C3_REMOVAL"
	Name: "Remover Ringleader"
	Lv: 121
	Hp: 161175
	Sp: 1
	Exp: 11260
	JExp: 25440
	AttackRange: 1
	Attack: [1205, 479]
	Def: 110
	Mdef: 47
	Stats: {
		Str: 127
		Agi: 50
		Vit: 82
		Int: 35
		Dex: 125
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1536
	AttackMotion: 1056
	DamageMotion: 1152
	Drops: {
		Empty_Bottle: 5000
		Old_Steel_Plate: 5000
		Gas_Mask: 10
		Nice_Sweet_Potato: 500
		Detrimindexta: 50
		Karvodailnirol: 100
		Fedora_: 6
		Removal_Card: 1
	}
},
{
	Id: 2689
	SpriteName: "C5_RED_ERUMA"
	Name: "Elusive Red Eruma"
	Lv: 91
	Hp: 49500
	Sp: 1
	Exp: 4770
	JExp: 14310
	AttackRange: 1
	Attack: [763, 297]
	Def: 102
	Mdef: 102
	Stats: {
		Str: 77
		Agi: 90
		Vit: 88
		Int: 21
		Dex: 99
		Luk: 21
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 140
	AttackDelay: 768
	AttackMotion: 1224
	DamageMotion: 432
	Drops: {
		Clam_Shell: 2500
		Flesh_Of_Clam: 1000
		Grit: 1500
		Elunium_Stone: 50
		Oridecon_Stone: 50
		Old_Blue_Box: 10
		Bad_Can: 700
		Red_Eruma_Card: 1
	}
},
{
	Id: 2690
	SpriteName: "C1_RAYDRIC"
	Name: "Swift Raydric"
	Lv: 115
	Hp: 92040
	Sp: 1
	Exp: 9000
	JExp: 18675
	AttackRange: 1
	Attack: [1108, 433]
	Def: 89
	Mdef: 15
	Stats: {
		Str: 129
		Agi: 87
		Vit: 55
		Int: 32
		Dex: 106
		Luk: 27
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 824
	AttackMotion: 780
	DamageMotion: 420
	Drops: {
		Elunium: 106
		Iron_Cane: 1
		Chain_Mail_: 2
		Two_Hand_Sword_: 2
		Peuz_Plate: 100
		Patriotism_Marks: 10
		Brigan: 4850
		Daydric_Card: 1
	}
},
{
	Id: 2691
	SpriteName: "C2_RAYDRIC"
	Name: "Solid Raydric"
	Lv: 115
	Hp: 184080
	Sp: 1
	Exp: 9000
	JExp: 18675
	AttackRange: 1
	Attack: [1108, 433]
	Def: 89
	Mdef: 15
	Stats: {
		Str: 129
		Agi: 87
		Vit: 55
		Int: 32
		Dex: 106
		Luk: 27
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 824
	AttackMotion: 780
	DamageMotion: 420
	Drops: {
		Elunium: 106
		Iron_Cane: 1
		Chain_Mail_: 2
		Two_Hand_Sword_: 2
		Peuz_Plate: 100
		Patriotism_Marks: 10
		Brigan: 4850
		Daydric_Card: 1
	}
},
{
	Id: 2692
	SpriteName: "C3_RAWREL"
	Name: "Laurell Weinder Ringleader"
	Lv: 133
	Hp: 201410
	Sp: 1
	Exp: 14625
	JExp: 49275
	AttackRange: 1
	Attack: [840, 321]
	Def: 76
	Mdef: 180
	Stats: {
		Str: 67
		Agi: 79
		Vit: 65
		Int: 162
		Dex: 168
		Luk: 57
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Ghost", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 576
	AttackMotion: 432
	DamageMotion: 288
	Drops: {
		Goast_Chill: 1000
		Staff_Of_Wing: 1
		Lab_Staff_Record: 5
		Staff_: 50
		Silk_Robe_: 10
		Silver_Robe_: 30
		Clip: 1
		Rawrel_Card: 1
	}
},
{
	Id: 2693
	SpriteName: "C4_RAKE_SCARABA"
	Name: "Furious Rake Scaraba"
	Lv: 139
	Hp: 338500
	Sp: 1
	Exp: 17475
	JExp: 53940
	AttackRange: 1
	Attack: [1808, 789]
	Def: 250
	Mdef: 70
	Stats: {
		Str: 90
		Agi: 85
		Vit: 145
		Int: 52
		Dex: 168
		Luk: 77
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 588
	AttackMotion: 768
	DamageMotion: 480
	Drops: {
		Rakehorn_Helm: 6500
		Red_Ether_Bag: 1
		Runstone_Ancient: 10
		Bone_Plate: 10
		Yellow_Live: 1
		Scaraba_Card: 1
	}
},
{
	Id: 2694
	SpriteName: "C5_RAGGLER"
	Name: "Elusive Raggler"
	Lv: 48
	Hp: 5740
	Sp: 1
	Exp: 920
	JExp: 3105
	AttackRange: 1
	Attack: [146, 35]
	Def: 56
	Mdef: 10
	Stats: {
		Str: 30
		Agi: 42
		Vit: 38
		Int: 15
		Dex: 54
		Luk: 27
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1000
	AttackMotion: 900
	DamageMotion: 384
	Drops: {
		Cyfar: 3000
		Feather_Of_Birds: 5000
		Center_Potion: 200
		Wing_Of_Fly: 200
		Wind_Of_Verdure: 90
		Goggle_: 7
		Oridecon_Stone: 32
		Raggler_Card: 1
	}
},
{
	Id: 2695
	SpriteName: "C1_RAFFLESIA"
	Name: "Swift Rafflesia"
	Lv: 86
	Hp: 29095
	Sp: 1
	Exp: 3215
	JExp: 9870
	AttackRange: 3
	Attack: [445, 156]
	Def: 86
	Mdef: 2
	Stats: {
		Str: 47
		Agi: 41
		Vit: 44
		Int: 29
		Dex: 78
		Luk: 31
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 512
	AttackMotion: 528
	DamageMotion: 240
	Drops: {
		Root_Of_Maneater: 5500
		Scell: 1600
		Four_Leaf_Clover: 2
		Ment: 10
		Hinalle: 10
		Shoot: 550
		White_Herb: 30
		Rafflesia_Card: 1
	}
},
{
	Id: 2696
	SpriteName: "C3_PORING"
	Name: "Poring Ringleader"
	Lv: 1
	Hp: 300
	Sp: 1
	Exp: 90
	JExp: 150
	AttackRange: 1
	Attack: [14, 3]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Jellopy: 7000
		Knife_: 100
		Sticky_Mucus: 400
		Apple: 1000
		Wing_Of_Fly: 1500
		Apple: 150
		Unripe_Apple: 20
		Poring_Card: 1
	}
},
{
	Id: 2697
	SpriteName: "C4_PORING"
	Name: "Furious Poring"
	Lv: 1
	Hp: 300
	Sp: 1
	Exp: 90
	JExp: 150
	AttackRange: 1
	Attack: [13, 3]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Jellopy: 7000
		Knife_: 100
		Sticky_Mucus: 400
		Apple: 1000
		Wing_Of_Fly: 1500
		Apple: 150
		Unripe_Apple: 20
		Poring_Card: 1
	}
},
{
	Id: 2698
	SpriteName: "C5_PORING"
	Name: "Elusive Poring"
	Lv: 1
	Hp: 300
	Sp: 1
	Exp: 90
	JExp: 150
	AttackRange: 1
	Attack: [14, 3]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Jellopy: 7000
		Knife_: 100
		Sticky_Mucus: 400
		Apple: 1000
		Wing_Of_Fly: 1500
		Apple: 150
		Unripe_Apple: 20
		Poring_Card: 1
	}
},
{
	Id: 2699
	SpriteName: "C1_PORING"
	Name: "Swift Poring"
	Lv: 1
	Hp: 300
	Sp: 1
	Exp: 90
	JExp: 150
	AttackRange: 1
	Attack: [14, 3]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Jellopy: 7000
		Sticky_Mucus: 10000
		Apple: 10000
		Wing_Of_Fly: 1000
		Knife_: 1500
		Apple: 150
		Unripe_Apple: 20
		Poring_Card: 1
	}
},
{
	Id: 2700
	SpriteName: "C2_PORCELLIO"
	Name: "Solid Porcellio"
	Lv: 85
	Hp: 55440
	Sp: 1
	Exp: 3555
	JExp: 10905
	AttackRange: 1
	Attack: [432, 141]
	Def: 79
	Mdef: 37
	Stats: {
		Str: 67
		Agi: 48
		Vit: 28
		Int: 40
		Dex: 74
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 150
	AttackDelay: 720
	AttackMotion: 360
	DamageMotion: 360
	Drops: {
		Jubilee: 5000
		Main_Gauche_: 25
		Insect_Feeler: 1000
		Single_Cell: 3000
		Dew_Laden_Moss: 2
		Fluorescent_Liquid: 30
		Porcellio_Card: 1
	}
},
{
	Id: 2701
	SpriteName: "C3_POPORING"
	Name: "Poporing Ringleader"
	Lv: 30
	Hp: 2620
	Sp: 1
	Exp: 495
	JExp: 1680
	AttackRange: 1
	Attack: [117, 35]
	Def: 36
	Mdef: 17
	Stats: {
		Str: 17
		Agi: 26
		Vit: 20
		Int: 18
		Dex: 36
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Sticky_Mucus: 5500
		Garlet: 1500
		Green_Herb: 500
		Grape: 200
		Apple: 5
		Main_Gauche: 5
		Wing_Of_Fly: 250
		Poporing_Card: 1
	}
},
{
	Id: 2702
	SpriteName: "C4_POPORING"
	Name: "Furious Poporing"
	Lv: 30
	Hp: 2620
	Sp: 1
	Exp: 495
	JExp: 1680
	AttackRange: 1
	Attack: [117, 35]
	Def: 36
	Mdef: 17
	Stats: {
		Str: 17
		Agi: 33
		Vit: 20
		Int: 18
		Dex: 36
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Sticky_Mucus: 5500
		Garlet: 1500
		Green_Herb: 500
		Grape: 200
		Apple: 5
		Main_Gauche: 5
		Wing_Of_Fly: 250
		Poporing_Card: 1
	}
},
{
	Id: 2703
	SpriteName: "C5_POPORING"
	Name: "Elusive Poporing"
	Lv: 30
	Hp: 2620
	Sp: 1
	Exp: 495
	JExp: 1680
	AttackRange: 1
	Attack: [117, 35]
	Def: 36
	Mdef: 17
	Stats: {
		Str: 17
		Agi: 26
		Vit: 20
		Int: 18
		Dex: 36
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Sticky_Mucus: 5500
		Garlet: 1500
		Green_Herb: 500
		Grape: 200
		Apple: 5
		Main_Gauche: 5
		Wing_Of_Fly: 250
		Poporing_Card: 1
	}
},
{
	Id: 2704
	SpriteName: "C1_POISON_TOAD"
	Name: "Swift Poison Toad"
	Lv: 87
	Hp: 24380
	Sp: 1
	Exp: 3685
	JExp: 11310
	AttackRange: 3
	Attack: [376, 111]
	Def: 80
	Mdef: 42
	Stats: {
		Str: 66
		Agi: 42
		Vit: 40
		Int: 45
		Dex: 70
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Poison", 2)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 160
	AttackDelay: 1148
	AttackMotion: 1728
	DamageMotion: 864
	Drops: {
		Poison_Toads_Skin: 5500
		Poison_Powder: 2400
		Gold_Ring: 4
		Green_Herb: 540
		Cardinal_Jewel_: 2
		Royal_Jelly: 2
		Cinquedea_: 10
		Poison_Toad_Card: 1
	}
},
{
	Id: 2705
	SpriteName: "C2_POISON_SPORE"
	Name: "Solid Poison Spore"
	Lv: 26
	Hp: 4560
	Sp: 1
	Exp: 405
	JExp: 1365
	AttackRange: 1
	Attack: [109, 33]
	Def: 40
	Mdef: 8
	Stats: {
		Str: 19
		Agi: 17
		Vit: 22
		Int: 5
		Dex: 20
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 288
	Drops: {
		Poison_Spore: 9000
		Hat_: 20
		Green_Herb: 550
		Blue_Herb: 60
		Karvodailnirol: 50
		Mushroom_Spore: 1200
		Wing_Of_Fly: 5
		Poison_Spore_Card: 1
	}
},
{
	Id: 2706
	SpriteName: "C3_PLASMA_Y"
	Name: "Plasma Ringleader"
	Lv: 119
	Hp: 103000
	Sp: 1
	Exp: 6860
	JExp: 25935
	AttackRange: 1
	Attack: [1086, 413]
	Def: 130
	Mdef: 45
	Stats: {
		Str: 141
		Agi: 94
		Vit: 75
		Int: 91
		Dex: 144
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Ghost", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1056
	AttackMotion: 1056
	DamageMotion: 336
	Drops: {
		Scell: 100
		Gift_Box: 10
		Crystal_Jewel_: 2
		Yellow_Gemstone: 100
		Gold: 1
		Light_Granule: 300
		Plasma_Card: 1
	}
},
{
	Id: 2707
	SpriteName: "C4_PLANKTON"
	Name: "Furious Plankton"
	Lv: 40
	Hp: 6160
	Sp: 1
	Exp: 835
	JExp: 2805
	AttackRange: 1
	Attack: [135, 36]
	Def: 28
	Mdef: 28
	Stats: {
		Str: 23
		Agi: 68
		Vit: 25
		Int: 55
		Dex: 35
		Luk: 14
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 2208
	AttackMotion: 1008
	DamageMotion: 324
	Drops: {
		Single_Cell: 9000
		Garlet: 300
		Sticky_Mucus: 700
		Alchol: 4
		Wing_Of_Fly: 1000
		Dew_Laden_Moss: 20
		Center_Potion: 50
		Plankton_Card: 1
	}
},
{
	Id: 2708
	SpriteName: "C5_PITMAN"
	Name: "Elusive Pitman"
	Lv: 90
	Hp: 36040
	Sp: 1
	Exp: 3875
	JExp: 11895
	AttackRange: 1
	Attack: [360, 96]
	Def: 104
	Mdef: 48
	Stats: {
		Str: 78
		Agi: 56
		Vit: 45
		Int: 35
		Dex: 60
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 180
	AttackDelay: 960
	AttackMotion: 336
	DamageMotion: 300
	Drops: {
		Old_Pick: 3000
		Old_Steel_Plate: 500
		Gun_Powder: 900
		Steel: 500
		Coal: 100
		Lantern: 1000
		Headlamp: 80
		Pitman_Card: 1
	}
},
{
	Id: 2709
	SpriteName: "C1_PIRANHA"
	Name: "Swift Piranha"
	Lv: 75
	Hp: 22610
	Sp: 1
	Exp: 2470
	JExp: 7665
	AttackRange: 1
	Attack: [336, 96]
	Def: 7
	Mdef: 12
	Stats: {
		Str: 69
		Agi: 45
		Vit: 30
		Int: 30
		Dex: 79
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Fish"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 768
	AttackMotion: 480
	DamageMotion: 864
	Drops: {
		Gill: 600
		Mistic_Frozen: 5
		Sharp_Scale: 9000
		Tooth_Of_Ancient_Fish: 500
		Lip_Of_Ancient_Fish: 500
		Scalpel: 1
		Fishermans_Dagger: 5
	}
},
{
	Id: 2710
	SpriteName: "C2_PINGUICULA_D"
	Name: "Solid Dark Pinguicula"
	Lv: 113
	Hp: 170020
	Sp: 1
	Exp: 6825
	JExp: 21750
	AttackRange: 1
	Attack: [634, 217]
	Def: 59
	Mdef: 35
	Stats: {
		Str: 89
		Agi: 55
		Vit: 55
		Int: 95
		Dex: 92
		Luk: 12
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Poison", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 290
	AttackDelay: 1426
	AttackMotion: 600
	DamageMotion: 360
	Drops: {
		Sharp_Leaf: 5000
		Great_Leaf: 2000
		Browny_Root: 3000
		Karvodailnirol: 10
		Withered_Flower: 1000
		Elder_Branch: 1500
		Rotha_Shield: 10
		Pinguicula_Dark_Card: 1
	}
},
{
	Id: 2711
	SpriteName: "C3_PINGUICULA"
	Name: "Pinguicula Ringleader"
	Lv: 105
	Hp: 65290
	Sp: 1
	Exp: 7300
	JExp: 23955
	AttackRange: 1
	Attack: [696, 262]
	Def: 46
	Mdef: 77
	Stats: {
		Str: 67
		Agi: 60
		Vit: 64
		Int: 107
		Dex: 77
		Luk: 34
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 700
	AttackMotion: 600
	DamageMotion: 360
	Drops: {
		Pinguicula_Corsage: 1
		Whip_Of_Balance: 10
		Centimental_Leaf: 10
		Sharp_Leaf: 5000
		Great_Leaf: 2000
		Browny_Root: 3000
		Elder_Branch: 500
		Pinguicula_Card: 1
	}
},
{
	Id: 2712
	SpriteName: "C4_PICKY_"
	Name: "Furious Picky"
	Lv: 10
	Hp: 445
	Sp: 1
	Exp: 180
	JExp: 405
	AttackRange: 1
	Attack: [41, 8]
	Def: 48
	Mdef: 10
	Stats: {
		Str: 15
		Agi: 10
		Vit: 8
		Int: 5
		Dex: 9
		Luk: 3
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 988
	AttackMotion: 288
	DamageMotion: 168
	Drops: {
		Feather_Of_Birds: 9000
		Feather: 700
		Egg_Shell: 10
		Red_Herb: 600
		Milk: 300
		Wing_Of_Fly: 50
		Tiny_Egg_Shell: 10
		Picky__Card: 1
	}
},
{
	Id: 2713
	SpriteName: "C5_PHEN"
	Name: "Elusive Phen"
	Lv: 52
	Hp: 9815
	Sp: 1
	Exp: 1170
	JExp: 3765
	AttackRange: 1
	Attack: [203, 49]
	Def: 44
	Mdef: 11
	Stats: {
		Str: 54
		Agi: 15
		Vit: 35
		Int: 15
		Dex: 28
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 2544
	AttackMotion: 1344
	DamageMotion: 1152
	Drops: {
		Fish_Tail: 5500
		Sharp_Scale: 2000
		Skyblue_Jewel: 5
		Meat: 1000
		Fin: 500
		Oridecon_Stone: 25
		Phen_Card: 1
	}
},
{
	Id: 2714
	SpriteName: "C1_PETIT"
	Name: "Swift Petite"
	Lv: 86
	Hp: 28995
	Sp: 1
	Exp: 3215
	JExp: 9870
	AttackRange: 1
	Attack: [449, 154]
	Def: 99
	Mdef: 49
	Stats: {
		Str: 55
		Agi: 32
		Vit: 38
		Int: 37
		Dex: 65
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Dragon"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 2468
	AttackMotion: 768
	DamageMotion: 480
	Drops: {
		Dragon_Canine: 5335
		Dragon_Train: 300
		Oridecon_Stone: 140
		White_Herb: 1000
		Flail: 150
		Petti_Tail: 40
		Aloebera: 15
		Petit_Card: 1
	}
},
{
	Id: 2715
	SpriteName: "C2_PETIT"
	Name: "Solid Petite"
	Lv: 86
	Hp: 57990
	Sp: 1
	Exp: 3215
	JExp: 9870
	AttackRange: 1
	Attack: [449, 154]
	Def: 99
	Mdef: 49
	Stats: {
		Str: 55
		Agi: 32
		Vit: 38
		Int: 37
		Dex: 65
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Dragon"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 2468
	AttackMotion: 768
	DamageMotion: 480
	Drops: {
		Dragon_Canine: 5335
		Dragon_Train: 300
		Oridecon_Stone: 140
		White_Herb: 1000
		Flail: 150
		Petti_Tail: 40
		Aloebera: 15
		Petit_Card: 1
	}
},
{
	Id: 2716
	SpriteName: "C3_PENOMENA"
	Name: "Penomena Ringleader"
	Lv: 85
	Hp: 22945
	Sp: 1
	Exp: 3820
	JExp: 11670
	AttackRange: 7
	Attack: [622, 231]
	Def: 85
	Mdef: 32
	Stats: {
		Str: 76
		Agi: 38
		Vit: 35
		Int: 35
		Dex: 107
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 832
	AttackMotion: 500
	DamageMotion: 600
	Drops: {
		Coral_Reef: 4850
		Tentacle: 8000
		Sticky_Mucus: 7000
		Panacea: 200
		Violet_Jewel: 15
		Katar_Of_Raging_Blaze: 1
		Red_Gemstone: 550
		Penomena_Card: 1
	}
},
{
	Id: 2717
	SpriteName: "C4_PENOMENA"
	Name: "Furious Penomena"
	Lv: 85
	Hp: 22945
	Sp: 1
	Exp: 3820
	JExp: 11670
	AttackRange: 7
	Attack: [621, 231]
	Def: 85
	Mdef: 32
	Stats: {
		Str: 76
		Agi: 49
		Vit: 35
		Int: 35
		Dex: 107
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 832
	AttackMotion: 500
	DamageMotion: 600
	Drops: {
		Coral_Reef: 4850
		Tentacle: 8000
		Sticky_Mucus: 7000
		Panacea: 200
		Violet_Jewel: 15
		Katar_Of_Raging_Blaze: 1
		Red_Gemstone: 550
		Penomena_Card: 1
	}
},
{
	Id: 2718
	SpriteName: "C5_PECOPECO"
	Name: "Elusive Peco Peco"
	Lv: 25
	Hp: 2230
	Sp: 1
	Exp: 405
	JExp: 1365
	AttackRange: 1
	Attack: [118, 37]
	Def: 48
	Mdef: 0
	Stats: {
		Str: 21
		Agi: 10
		Vit: 13
		Int: 5
		Dex: 28
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 1564
	AttackMotion: 864
	DamageMotion: 576
	Drops: {
		Bill_Of_Birds: 9000
		Sandals_: 20
		Yellow_Herb: 200
		Wing_Of_Fly: 900
		Wand: 100
		Orange: 1000
		Pecopeco_Card: 1
	}
},
{
	Id: 2719
	SpriteName: "C1_PASANA"
	Name: "Swift Pasana"
	Lv: 79
	Hp: 17550
	Sp: 1
	Exp: 2670
	JExp: 8955
	AttackRange: 1
	Attack: [575, 210]
	Def: 93
	Mdef: 35
	Stats: {
		Str: 76
		Agi: 36
		Vit: 33
		Int: 20
		Dex: 80
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 976
	AttackMotion: 576
	DamageMotion: 288
	Drops: {
		Vroken_Sword: 4365
		Honey_Jar: 2500
		Elunium_Stone: 20
		Falchion_: 500
		Stiletto_: 150
		Undershirt: 100
		Pasana_Card: 1
	}
},
{
	Id: 2720
	SpriteName: "C2_PARASITE"
	Name: "Solid Parasite"
	Lv: 76
	Hp: 32220
	Sp: 1
	Exp: 2535
	JExp: 10020
	AttackRange: 8
	Attack: [300, 85]
	Def: 63
	Mdef: 30
	Stats: {
		Str: 55
		Agi: 78
		Vit: 33
		Int: 50
		Dex: 106
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Wind", 2)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 864
	AttackMotion: 864
	DamageMotion: 672
	Drops: {
		Germinating_Sprout: 5500
		Soft_Leaf: 2000
		Thin_Stem: 3880
		Great_Leaf: 500
		Rante_: 1
		Bladed_Whip: 1
		Pineapple: 800
		Parasite_Card: 1
	}
},
{
	Id: 2721
	SpriteName: "C3_OWL_DUKE"
	Name: "Owl Duke Ringleader"
	Lv: 92
	Hp: 36905
	Sp: 1
	Exp: 4130
	JExp: 14640
	AttackRange: 1
	Attack: [744, 299]
	Def: 80
	Mdef: 45
	Stats: {
		Str: 54
		Agi: 51
		Vit: 45
		Int: 88
		Dex: 106
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 195
	AttackDelay: 1345
	AttackMotion: 824
	DamageMotion: 440
	Drops: {
		Tatters_Clothes: 4413
		Soft_Feather: 1500
		Wind_Scroll_1_5: 100
		Crystal_Mirror: 1
		Guisarme: 3
		Morning_Star: 2
		Magician_Hat: 1
		Owl_Duke_Card: 1
	}
},
{
	Id: 2722
	SpriteName: "C4_ORK_WARRIOR"
	Name: "Furious Orc Warrior"
	Lv: 44
	Hp: 7170
	Sp: 1
	Exp: 875
	JExp: 4050
	AttackRange: 1
	Attack: [143, 33]
	Def: 52
	Mdef: 3
	Stats: {
		Str: 32
		Agi: 19
		Vit: 24
		Int: 15
		Dex: 16
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1864
	AttackMotion: 864
	DamageMotion: 288
	Drops: {
		Wing_Of_Fly: 210
		Orcish_Voucher: 9000
		Oridecon_Stone: 40
		Cigar: 3
		Battle_Axe_: 10
		Orcish_Axe: 5
		Round_Buckler: 3
		Orc_Warrior_Card: 1
	}
},
{
	Id: 2723
	SpriteName: "C5_ORC_ZOMBIE"
	Name: "Elusive Orc Zombie"
	Lv: 51
	Hp: 9540
	Sp: 1
	Exp: 1130
	JExp: 3735
	AttackRange: 1
	Attack: [204, 55]
	Def: 71
	Mdef: 5
	Stats: {
		Str: 45
		Agi: 17
		Vit: 32
		Int: 5
		Dex: 57
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 2852
	AttackMotion: 1152
	DamageMotion: 840
	Drops: {
		Nail_Of_Orc: 5500
		Sticky_Mucus: 3000
		Emperium: 1
		Orc_Zombie_Card: 1
	}
},
{
	Id: 2724
	SpriteName: "C1_ORC_SKELETON"
	Name: "Swift Orc Skeleton"
	Lv: 53
	Hp: 10385
	Sp: 1
	Exp: 1205
	JExp: 3930
	AttackRange: 1
	Attack: [221, 58]
	Def: 82
	Mdef: 10
	Stats: {
		Str: 52
		Agi: 16
		Vit: 24
		Int: 5
		Dex: 24
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 2420
	AttackMotion: 720
	DamageMotion: 648
	Drops: {
		Orcish_Cuspid: 5500
		Skel_Bone: 3500
		Elunium_Stone: 80
		Viking_Helm: 2
		Buster_: 10
		Green_Herb: 50
		Orc_Skeleton_Card: 1
	}
},
{
	Id: 2725
	SpriteName: "C2_ORC_LADY"
	Name: "Solid Orc Lady"
	Lv: 45
	Hp: 15200
	Sp: 1
	Exp: 950
	JExp: 3255
	AttackRange: 1
	Attack: [154, 37]
	Def: 83
	Mdef: 17
	Stats: {
		Str: 36
		Agi: 11
		Vit: 28
		Int: 10
		Dex: 57
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1050
	AttackMotion: 900
	DamageMotion: 288
	Drops: {
		Cyfar: 4656
		Puente_Robe: 3
		Earring: 1
		Wedding_Veil: 1
		Wing_Of_Fly: 10
		Cookbook06: 3
		Wedding_Dress: 1
		Orc_Lady_Card: 1
	}
},
{
	Id: 2726
	SpriteName: "C3_OBSERVATION"
	Name: "Dame of Sentinel Ringleader"
	Lv: 127
	Hp: 172690
	Sp: 1
	Exp: 13890
	JExp: 38250
	AttackRange: 2
	Attack: [1570, 672]
	Def: 98
	Mdef: 55
	Stats: {
		Str: 99
		Agi: 75
		Vit: 52
		Int: 55
		Dex: 178
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Angel"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 432
	AttackMotion: 480
	DamageMotion: 360
	Drops: {
		Blue_Feather: 500
		Ring_: 1
		Cursed_Seal: 100
		Golden_Jewel: 1000
		Stone_Of_Intelligence_: 100
		Hair_Band: 10
		Golden_Bracelet: 100
		Observation_Card: 1
	}
},
{
	Id: 2727
	SpriteName: "C4_NOXIOUS"
	Name: "Furious Noxious"
	Lv: 87
	Hp: 27150
	Sp: 1
	Exp: 2440
	JExp: 13380
	AttackRange: 1
	Attack: [413, 135]
	Def: 117
	Mdef: 66
	Stats: {
		Str: 58
		Agi: 58
		Vit: 60
		Int: 55
		Dex: 68
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 768
	AttackMotion: 1440
	DamageMotion: 672
	Drops: {
		Poisonous_Gas: 1000
		Mould_Powder: 3000
		Anodyne: 50
		Air_Pollutant: 3000
		Explosive_Powder: 600
		Tear_Gas: 300
		Old_Blue_Box: 1
		Noxious_Card: 1
	}
},
{
	Id: 2728
	SpriteName: "C5_NOVUS"
	Name: "Elusive Novus"
	Lv: 90
	Hp: 33350
	Sp: 1
	Exp: 3590
	JExp: 11280
	AttackRange: 1
	Attack: [573, 205]
	Def: 95
	Mdef: 48
	Stats: {
		Str: 74
		Agi: 56
		Vit: 57
		Int: 25
		Dex: 108
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Dragon"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 110
	AttackDelay: 151
	AttackMotion: 288
	DamageMotion: 360
	Drops: {
		Green_Herb: 3000
		Cyfar: 135
		Dragon_Scale: 589
		Novus_Card: 1
	}
},
{
	Id: 2729
	SpriteName: "C1_NOVUS"
	Name: "Swift Novus"
	Lv: 90
	Hp: 33350
	Sp: 1
	Exp: 3590
	JExp: 11280
	AttackRange: 1
	Attack: [573, 205]
	Def: 95
	Mdef: 48
	Stats: {
		Str: 74
		Agi: 56
		Vit: 57
		Int: 25
		Dex: 108
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Dragon"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 110
	AttackDelay: 151
	AttackMotion: 288
	DamageMotion: 360
	Drops: {
		Green_Herb: 3000
		Cyfar: 135
		Dragon_Scale: 589
		Novus_Card: 1
	}
},
{
	Id: 2730
	SpriteName: "C2_NOVUS"
	Name: "Solid Novus"
	Lv: 90
	Hp: 66700
	Sp: 1
	Exp: 3590
	JExp: 11280
	AttackRange: 1
	Attack: [573, 205]
	Def: 95
	Mdef: 48
	Stats: {
		Str: 74
		Agi: 56
		Vit: 57
		Int: 25
		Dex: 108
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Dragon"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 110
	AttackDelay: 151
	AttackMotion: 288
	DamageMotion: 360
	Drops: {
		Green_Herb: 3000
		Cyfar: 135
		Dragon_Scale: 589
		Novus_Card: 1
	}
},
{
	Id: 2731
	SpriteName: "C3_NOVUS"
	Name: "Novus Ringleader"
	Lv: 90
	Hp: 33350
	Sp: 1
	Exp: 3590
	JExp: 11280
	AttackRange: 1
	Attack: [573, 205]
	Def: 95
	Mdef: 48
	Stats: {
		Str: 74
		Agi: 56
		Vit: 57
		Int: 25
		Dex: 108
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Dragon"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 110
	AttackDelay: 151
	AttackMotion: 288
	DamageMotion: 360
	Drops: {
		Green_Herb: 3000
		Cyfar: 135
		Dragon_Scale: 589
		Novus_Card: 1
	}
},
{
	Id: 2732
	SpriteName: "C4_NIGHTMARE_TERROR"
	Name: "Furious Nightmare Terror"
	Lv: 107
	Hp: 66445
	Sp: 1
	Exp: 6105
	JExp: 16485
	AttackRange: 1
	Attack: [1105, 440]
	Def: 78
	Mdef: 37
	Stats: {
		Str: 118
		Agi: 68
		Vit: 55
		Int: 63
		Dex: 106
		Luk: 43
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1216
	AttackMotion: 816
	DamageMotion: 432
	Drops: {
		Burning_Horse_Shoe: 4947
		Rosary_: 1
		Rosary: 30
		Blue_Potion: 50
		Blue_Herb: 150
		Ghost_Scroll_1_5: 100
		Infiltrator: 1
		Nightmare_Terror_Card: 1
	}
},
{
	Id: 2733
	SpriteName: "C5_NG_WRAITH_DEAD"
	Name: "Elusive Wraith Dead"
	Lv: 110
	Hp: 77895
	Sp: 1
	Exp: 6385
	JExp: 20700
	AttackRange: 1
	Attack: [909, 1274]
	Def: 93
	Mdef: 53
	Stats: {
		Str: 69
		Agi: 52
		Vit: 47
		Int: 55
		Dex: 109
		Luk: 28
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 1816
	AttackMotion: 576
	DamageMotion: 240
},
{
	Id: 2734
	SpriteName: "C1_NG_WANDER_MAN"
	Name: "Swift Wanderer"
	Lv: 151
	Hp: 653410
	Sp: 1
	Exp: 49535
	JExp: 129210
	AttackRange: 1
	Attack: [3072, 1357]
	Def: 129
	Mdef: 16
	Stats: {
		Str: 208
		Agi: 151
		Vit: 76
		Int: 39
		Dex: 231
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 672
	AttackMotion: 500
	DamageMotion: 192
},
{
	Id: 2735
	SpriteName: "C2_NEPENTHES"
	Name: "Solid Nephentes"
	Lv: 114
	Hp: 150990
	Sp: 1
	Exp: 8445
	JExp: 16125
	AttackRange: 7
	Attack: [1016, 405]
	Def: 25
	Mdef: 5
	Stats: {
		Str: 94
		Agi: 32
		Vit: 41
		Int: 39
		Dex: 210
		Luk: 59
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Poison", 2)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 1000
	AttackDelay: 500
	AttackMotion: 576
	DamageMotion: 504
	Drops: {
		Mandragora_Cap: 1
		Stem_Of_Nepenthes: 1
		Harp_Of_Nepenthes: 1
		Nepenthes_Bow: 1
		Strong_Bine: 3000
		Yellow_Live: 50
		Stem: 9000
		Nepenthes_Card: 1
	}
},
{
	Id: 2736
	SpriteName: "C3_NECROMANCER"
	Name: "Necromancer Ringleader"
	Lv: 133
	Hp: 456520
	Sp: 1
	Exp: 14950
	JExp: 44850
	AttackRange: 1
	Attack: [1545, 652]
	Def: 84
	Mdef: 73
	Stats: {
		Str: 108
		Agi: 54
		Vit: 77
		Int: 116
		Dex: 137
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1816
	AttackMotion: 1320
	DamageMotion: 420
	Drops: {
		Clattering_Skull: 3000
		Lich_Bone_Wand: 20
		Skel_Bone: 4500
		Mithril_Magic_Cape: 10
		Blue_Gemstone: 100
		Amulet: 100
		Rent_Spell_Book: 1500
		Necromancer_Card: 1
	}
},
{
	Id: 2737
	SpriteName: "C4_MYSTCASE"
	Name: "Furious Myst Case"
	Lv: 39
	Hp: 4395
	Sp: 1
	Exp: 720
	JExp: 2430
	AttackRange: 1
	Attack: [129, 32]
	Def: 50
	Mdef: 11
	Stats: {
		Str: 26
		Agi: 24
		Vit: 40
		Int: 35
		Dex: 31
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1248
	AttackMotion: 1248
	DamageMotion: 432
	Drops: {
		Candy_Striper: 90
		Wing_Of_Fly: 10
		Old_Blue_Box: 20
		Piece_Of_Cake: 800
		Scarlet_Jewel: 150
		Crystal_Jewel_: 5
		Candy: 340
		Mystcase_Card: 1
	}
},
{
	Id: 2738
	SpriteName: "C5_MUSCIPULAR"
	Name: "Elusive Muscipular"
	Lv: 105
	Hp: 62750
	Sp: 1
	Exp: 5830
	JExp: 13110
	AttackRange: 3
	Attack: [705, 250]
	Def: 114
	Mdef: 43
	Stats: {
		Str: 100
		Agi: 60
		Vit: 58
		Int: 37
		Dex: 72
		Luk: 47
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 2000
	AttackDelay: 672
	AttackMotion: 648
	DamageMotion: 360
	Drops: {
		Sticky_Poison: 3000
		Blossom_Of_Maneater: 3000
		Singing_Flower: 2
		Root_Of_Maneater: 2000
		Stem: 1000
		Deadly_Noxious_Herb: 3
		Mandragora_Flowerpot: 200
		Muscipular_Card: 1
	}
},
{
	Id: 2739
	SpriteName: "C1_MUMMY"
	Name: "Swift Mummy"
	Lv: 55
	Hp: 10775
	Sp: 1
	Exp: 1275
	JExp: 4110
	AttackRange: 1
	Attack: [281, 87]
	Def: 95
	Mdef: 3
	Stats: {
		Str: 54
		Agi: 4
		Vit: 14
		Int: 1
		Dex: 68
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1772
	AttackMotion: 72
	DamageMotion: 384
	Drops: {
		Rotten_Bandage: 9000
		Oridecon_Stone: 100
		Mementos: 550
		Glove: 1
		Silver_Ring: 10
		Panacea: 250
		Yellow_Herb: 850
		Mummy_Card: 1
	}
},
{
	Id: 2740
	SpriteName: "C2_MUMMY"
	Name: "Solid Mummy"
	Lv: 55
	Hp: 21550
	Sp: 1
	Exp: 1275
	JExp: 4110
	AttackRange: 1
	Attack: [281, 87]
	Def: 95
	Mdef: 3
	Stats: {
		Str: 54
		Agi: 4
		Vit: 14
		Int: 1
		Dex: 68
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1772
	AttackMotion: 72
	DamageMotion: 384
	Drops: {
		Rotten_Bandage: 9000
		Oridecon_Stone: 100
		Mementos: 550
		Glove: 1
		Silver_Ring: 10
		Panacea: 250
		Yellow_Herb: 850
		Mummy_Card: 1
	}
},
{
	Id: 2741
	SpriteName: "C3_MUKA"
	Name: "Muka Ringleader"
	Lv: 23
	Hp: 2340
	Sp: 1
	Exp: 360
	JExp: 1215
	AttackRange: 1
	Attack: [104, 31]
	Def: 28
	Mdef: 0
	Stats: {
		Str: 18
		Agi: 9
		Vit: 28
		Int: 5
		Dex: 43
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1960
	AttackMotion: 960
	DamageMotion: 384
	Drops: {
		Yellow_Live: 70
		Cactus_Needle: 9000
		Wing_Of_Fly: 2000
		Green_Herb: 400
		Red_Herb: 1000
		Guisarme: 50
		Iron_Ore: 250
		Muka_Card: 1
	}
},
{
	Id: 2742
	SpriteName: "C4_MOROCC_1"
	Name: "Furious Incarnation of Morroc"
	Lv: 132
	Hp: 319500
	Sp: 1
	Exp: 14275
	JExp: 24705
	AttackRange: 1
	Attack: [2082, 912]
	Def: 199
	Mdef: 35
	Stats: {
		Str: 126
		Agi: 118
		Vit: 63
		Int: 61
		Dex: 114
		Luk: 37
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Angel"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 110
	AttackDelay: 576
	AttackMotion: 480
	DamageMotion: 432
	Drops: {
		Herald_Of_GOD: 10
		Dark_Crystal: 1000
		Dark_Debris: 3000
		Elunium: 160
		Brigan: 4850
		Diabolus_Manteau: 3
		Nemesis: 20
	}
},
{
	Id: 2743
	SpriteName: "C5_MOROCC_1"
	Name: "Elusive Incarnation of Morroc"
	Lv: 132
	Hp: 319500
	Sp: 1
	Exp: 14275
	JExp: 24705
	AttackRange: 1
	Attack: [2082, 913]
	Def: 199
	Mdef: 35
	Stats: {
		Str: 126
		Agi: 91
		Vit: 63
		Int: 61
		Dex: 114
		Luk: 37
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Angel"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 110
	AttackDelay: 576
	AttackMotion: 480
	DamageMotion: 432
	Drops: {
		Herald_Of_GOD: 10
		Dark_Crystal: 1000
		Dark_Debris: 3000
		Elunium: 160
		Brigan: 4850
		Diabolus_Manteau: 3
		Nemesis: 20
	}
},
{
	Id: 2744
	SpriteName: "C1_MOROCC_1"
	Name: "Swift Incarnation of Morroc"
	Lv: 132
	Hp: 319500
	Sp: 1
	Exp: 14275
	JExp: 24705
	AttackRange: 1
	Attack: [2082, 913]
	Def: 199
	Mdef: 35
	Stats: {
		Str: 126
		Agi: 91
		Vit: 63
		Int: 61
		Dex: 114
		Luk: 37
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Angel"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 110
	AttackDelay: 576
	AttackMotion: 480
	DamageMotion: 432
	Drops: {
		Herald_Of_GOD: 10
		Dark_Crystal: 1000
		Dark_Debris: 3000
		Elunium: 160
		Brigan: 4850
		Diabolus_Manteau: 3
		Nemesis: 20
	}
},
{
	Id: 2745
	SpriteName: "C2_MOLE"
	Name: "Solid Holden"
	Lv: 85
	Hp: 62280
	Sp: 1
	Exp: 3315
	JExp: 10185
	AttackRange: 9
	Attack: [412, 137]
	Def: 82
	Mdef: 16
	Stats: {
		Str: 53
		Agi: 65
		Vit: 31
		Int: 30
		Dex: 58
		Luk: 31
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 300
	AttackDelay: 1400
	AttackMotion: 960
	DamageMotion: 504
	Drops: {
		Moustache_Of_Mole: 5000
		Nail_Of_Mole: 5000
		Super_Novice_Hat_: 50
		Six_Shooter_: 5
		Mole_Card: 1
	}
},
{
	Id: 2746
	SpriteName: "C3_MIYABI_NINGYO"
	Name: "Miyabi Doll Ringleader"
	Lv: 85
	Hp: 25940
	Sp: 1
	Exp: 3070
	JExp: 9420
	AttackRange: 1
	Attack: [379, 114]
	Def: 57
	Mdef: 19
	Stats: {
		Str: 66
		Agi: 30
		Vit: 30
		Int: 55
		Dex: 88
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 250
	AttackDelay: 1938
	AttackMotion: 2112
	DamageMotion: 768
	Drops: {
		Glossy_Hair: 5335
		Old_Japaness_Clothes: 2500
		White_Herb: 1550
		Star_Crumb: 1250
		High_end_Cooking_Kits: 10
		Hakujin: 5
		Mandolin_: 2
		Miyabi_Ningyo_Card: 1
	}
},
{
	Id: 2747
	SpriteName: "C4_MINOROUS"
	Name: "Furious Minorous"
	Lv: 58
	Hp: 9465
	Sp: 1
	Exp: 1425
	JExp: 4515
	AttackRange: 1
	Attack: [359, 119]
	Def: 100
	Mdef: 10
	Stats: {
		Str: 65
		Agi: 54
		Vit: 36
		Int: 43
		Dex: 61
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1360
	AttackMotion: 960
	DamageMotion: 432
	Drops: {
		Nose_Ring: 5335
		Oridecon_Stone: 196
		Two_Handed_Axe_: 2
		Hammer_Of_Blacksmith: 10
		Beef_Head_Meat: 10
		Axe: 200
		Lemon: 300
		Minorous_Card: 1
	}
},
{
	Id: 2748
	SpriteName: "C5_MINOROUS"
	Name: "Elusive Minorous"
	Lv: 58
	Hp: 9465
	Sp: 1
	Exp: 1425
	JExp: 4515
	AttackRange: 1
	Attack: [359, 119]
	Def: 100
	Mdef: 10
	Stats: {
		Str: 65
		Agi: 42
		Vit: 36
		Int: 43
		Dex: 61
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1360
	AttackMotion: 960
	DamageMotion: 432
	Drops: {
		Nose_Ring: 5335
		Oridecon_Stone: 196
		Two_Handed_Axe_: 2
		Hammer_Of_Blacksmith: 10
		Beef_Head_Meat: 10
		Axe: 200
		Lemon: 300
		Minorous_Card: 1
	}
},
{
	Id: 2749
	SpriteName: "C1_MINOROUS"
	Name: "Swift Minorous"
	Lv: 58
	Hp: 9465
	Sp: 1
	Exp: 1425
	JExp: 4515
	AttackRange: 1
	Attack: [359, 119]
	Def: 100
	Mdef: 10
	Stats: {
		Str: 65
		Agi: 42
		Vit: 36
		Int: 43
		Dex: 61
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1360
	AttackMotion: 960
	DamageMotion: 432
	Drops: {
		Nose_Ring: 5335
		Oridecon_Stone: 196
		Two_Handed_Axe_: 2
		Hammer_Of_Blacksmith: 10
		Beef_Head_Meat: 10
		Axe: 200
		Lemon: 300
		Minorous_Card: 1
	}
},
{
	Id: 2750
	SpriteName: "C2_MINERAL"
	Name: "Solid Mineral"
	Lv: 96
	Hp: 83000
	Sp: 1
	Exp: 4010
	JExp: 15195
	AttackRange: 1
	Attack: [886, 361]
	Def: 127
	Mdef: 23
	Stats: {
		Str: 70
		Agi: 61
		Vit: 40
		Int: 50
		Dex: 74
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 250
	AttackDelay: 648
	AttackMotion: 480
	DamageMotion: 360
	Drops: {
		Fragment_Of_Crystal: 3000
		Golden_Jewel: 500
		Emperium: 2
		Oridecon: 80
		Emveretarcon: 800
		Yellow_Gemstone: 100
		Gold: 2
		Mineral_Card: 1
	}
},
{
	Id: 2751
	SpriteName: "C3_MIMING"
	Name: "Miming Ringleader"
	Lv: 140
	Hp: 406000
	Sp: 1
	Exp: 23075
	JExp: 56700
	AttackRange: 1
	Attack: [849, 309]
	Def: 120
	Mdef: 120
	Stats: {
		Str: 90
		Agi: 66
		Vit: 105
		Int: 77
		Dex: 200
		Luk: 77
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 576
	AttackMotion: 1140
	DamageMotion: 504
	Drops: {
		Golden_Feather: 5000
		Light_Granule: 100
		Gold: 1
		Telekinetic_Orb: 1
		Miming_Card: 1
	}
},
{
	Id: 2752
	SpriteName: "C4_MIMIC"
	Name: "Furious Mimic"
	Lv: 56
	Hp: 9695
	Sp: 1
	Exp: 1275
	JExp: 4110
	AttackRange: 1
	Attack: [327, 111]
	Def: 63
	Mdef: 15
	Stats: {
		Str: 49
		Agi: 156
		Vit: 20
		Int: 15
		Dex: 109
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 972
	AttackMotion: 500
	DamageMotion: 288
	Drops: {
		Old_Violet_Box: 5
		Old_Blue_Box: 45
		Booby_Trap: 1200
		Spectacles: 3000
		Light_Granule: 1000
		Rosary_: 1
		Elunium_Stone: 270
		Mimic_Card: 1
	}
},
{
	Id: 2753
	SpriteName: "C5_MIMIC"
	Name: "Elusive Mimic"
	Lv: 56
	Hp: 9695
	Sp: 1
	Exp: 1275
	JExp: 4110
	AttackRange: 1
	Attack: [327, 111]
	Def: 63
	Mdef: 15
	Stats: {
		Str: 49
		Agi: 120
		Vit: 20
		Int: 15
		Dex: 109
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 972
	AttackMotion: 500
	DamageMotion: 288
	Drops: {
		Old_Violet_Box: 5
		Old_Blue_Box: 45
		Booby_Trap: 1200
		Spectacles: 3000
		Light_Granule: 1000
		Rosary_: 1
		Elunium_Stone: 270
		Mimic_Card: 1
	}
},
{
	Id: 2754
	SpriteName: "C1_METALLER"
	Name: "Swift Metaller"
	Lv: 55
	Hp: 8435
	Sp: 1
	Exp: 1180
	JExp: 3795
	AttackRange: 1
	Attack: [295, 94]
	Def: 72
	Mdef: 12
	Stats: {
		Str: 52
		Agi: 24
		Vit: 10
		Int: 0
		Dex: 52
		Luk: 31
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 1708
	AttackMotion: 1008
	DamageMotion: 540
	Drops: {
		Boody_Red: 60
		Grasshoppers_Leg: 6500
		Scell: 400
		Elunium_Stone: 49
		Singing_Plant: 20
		Shell: 3000
		Guitar_Of_Passion: 10
		Metaller_Card: 1
	}
},
{
	Id: 2755
	SpriteName: "C2_METALING"
	Name: "Solid Metaling"
	Lv: 81
	Hp: 43000
	Sp: 1
	Exp: 2620
	JExp: 8055
	AttackRange: 1
	Attack: [319, 90]
	Def: 69
	Mdef: 28
	Stats: {
		Str: 58
		Agi: 30
		Vit: 49
		Int: 17
		Dex: 60
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 384
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Tube: 4000
		Iron_Ore: 1000
		Iron: 500
		Large_Jellopy: 1000
		Screw: 200
		Crimson_Bolt_: 5
		Jubilee: 5000
		Metaling_Card: 1
	}
},
{
	Id: 2756
	SpriteName: "C3_METALING"
	Name: "Metaling Ringleader"
	Lv: 81
	Hp: 21500
	Sp: 1
	Exp: 2620
	JExp: 8055
	AttackRange: 1
	Attack: [319, 90]
	Def: 69
	Mdef: 28
	Stats: {
		Str: 58
		Agi: 30
		Vit: 49
		Int: 17
		Dex: 60
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 384
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Tube: 4000
		Iron_Ore: 1000
		Iron: 500
		Large_Jellopy: 1000
		Screw: 200
		Crimson_Bolt_: 5
		Jubilee: 5000
		Metaling_Card: 1
	}
},
{
	Id: 2757
	SpriteName: "C4_MERMAN"
	Name: "Furious Merman"
	Lv: 60
	Hp: 14700
	Sp: 1
	Exp: 1615
	JExp: 5190
	AttackRange: 1
	Attack: [229, 63]
	Def: 62
	Mdef: 8
	Stats: {
		Str: 45
		Agi: 37
		Vit: 30
		Int: 19
		Dex: 55
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 220
	AttackDelay: 916
	AttackMotion: 816
	DamageMotion: 336
	Drops: {
		Lip_Of_Ancient_Fish: 1300
		Plate_Armor_: 2
		Lemon: 400
		Skyblue_Jewel: 40
		Mistic_Frozen: 35
		Trident: 3
		Oridecon_Stone: 203
		Merman_Card: 1
	}
},
{
	Id: 2758
	SpriteName: "C5_MENBLATT"
	Name: "Elusive Menblatt"
	Lv: 143
	Hp: 411000
	Sp: 1
	Exp: 20750
	JExp: 61575
	AttackRange: 3
	Attack: [996, 391]
	Def: 79
	Mdef: 50
	Stats: {
		Str: 70
		Agi: 68
		Vit: 40
		Int: 55
		Dex: 108
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 145
	AttackDelay: 472
	AttackMotion: 1056
	DamageMotion: 480
	Drops: {
		Fancy_Fairy_Wing: 2000
		Great_Wing: 1000
		Sharp_Feeler: 2304
		Menblatt_Card: 1
	}
},
{
	Id: 2759
	SpriteName: "C1_MEDUSA"
	Name: "Swift Medusa"
	Lv: 102
	Hp: 50225
	Sp: 1
	Exp: 5210
	JExp: 11715
	AttackRange: 1
	Attack: [796, 297]
	Def: 87
	Mdef: 66
	Stats: {
		Str: 99
		Agi: 68
		Vit: 65
		Int: 79
		Dex: 83
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 1720
	AttackMotion: 1320
	DamageMotion: 360
	Drops: {
		Slender_Snake: 5335
		Whip_Of_Red_Flame: 250
		Animal_Blood: 200
		Sea_Witch_Foot: 20
		Scarlet_Jewel: 250
		Rafini_Staff: 5
		Penetration: 3
		Medusa_Card: 1
	}
},
{
	Id: 2760
	SpriteName: "C2_MARTIN"
	Name: "Solid Martin"
	Lv: 39
	Hp: 10560
	Sp: 1
	Exp: 775
	JExp: 2625
	AttackRange: 1
	Attack: [131, 33]
	Def: 58
	Mdef: 19
	Stats: {
		Str: 25
		Agi: 29
		Vit: 28
		Int: 15
		Dex: 30
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1480
	AttackMotion: 480
	DamageMotion: 480
	Drops: {
		Moustache_Of_Mole: 9000
		Nail_Of_Mole: 500
		Jur_: 10
		Goggle_: 5
		Safety_Helmet: 1
		Wing_Of_Fly: 10
		Goggle: 15
		Martin_Card: 1
	}
},
{
	Id: 2761
	SpriteName: "C3_MARIONETTE"
	Name: "Marionette Ringleader"
	Lv: 90
	Hp: 35830
	Sp: 1
	Exp: 3965
	JExp: 15060
	AttackRange: 1
	Attack: [354, 107]
	Def: 35
	Mdef: 24
	Stats: {
		Str: 52
		Agi: 79
		Vit: 28
		Int: 105
		Dex: 86
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1480
	AttackMotion: 480
	DamageMotion: 1056
	Drops: {
		Golden_Hair: 9000
		Star_Dust: 5
		Brooch: 1
		Fire_Scroll_3_5: 100
		Chain_: 15
		Chrystal_Pumps: 1
		Marionette_Doll: 3
		Marionette_Card: 1
	}
},
{
	Id: 2762
	SpriteName: "C4_MARIN"
	Name: "Furious Marin"
	Lv: 37
	Hp: 4935
	Sp: 1
	Exp: 705
	JExp: 2370
	AttackRange: 1
	Attack: [126, 33]
	Def: 32
	Mdef: 8
	Stats: {
		Str: 24
		Agi: 6
		Vit: 10
		Int: 5
		Dex: 30
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Garlet: 3200
		Sticky_Mucus: 1500
		Cold_Scroll_2_1: 100
		Wing_Of_Fly: 40
		Blue_Herb: 75
		Candy: 350
		Poring_Hat: 1
		Marin_Card: 1
	}
},
{
	Id: 2763
	SpriteName: "C5_MARDUK"
	Name: "Elusive Marduk"
	Lv: 73
	Hp: 14465
	Sp: 1
	Exp: 2125
	JExp: 6540
	AttackRange: 1
	Attack: [328, 95]
	Def: 66
	Mdef: 43
	Stats: {
		Str: 66
		Agi: 49
		Vit: 21
		Int: 40
		Dex: 79
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1540
	AttackMotion: 840
	DamageMotion: 504
	Drops: {
		Flame_Heart: 35
		Sacred_Masque: 4365
		Staff_: 10
		Mitten_Of_Presbyter: 1
		Blessed_Wand: 3
		Fire_Scroll_1_5: 100
		Book_Of_Devil: 20
		Marduk_Card: 1
	}
},
{
	Id: 2764
	SpriteName: "C1_MANTIS"
	Name: "Swift Mantis"
	Lv: 65
	Hp: 13595
	Sp: 1
	Exp: 1560
	JExp: 5010
	AttackRange: 1
	Attack: [299, 89]
	Def: 90
	Mdef: 0
	Stats: {
		Str: 55
		Agi: 33
		Vit: 24
		Int: 5
		Dex: 46
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1528
	AttackMotion: 660
	DamageMotion: 432
	Drops: {
		Yellow_Live: 110
		Limb_Of_Mantis: 9000
		Scell: 1400
		Elunium_Stone: 70
		Solid_Shell: 250
		Azure_Jewel: 10
		Red_Herb: 650
		Mantis_Card: 1
	}
},
{
	Id: 2765
	SpriteName: "C2_MANDRAGORA"
	Name: "Solid Mandragora"
	Lv: 13
	Hp: 1560
	Sp: 1
	Exp: 240
	JExp: 540
	AttackRange: 4
	Attack: [44, 9]
	Def: 13
	Mdef: 2
	Stats: {
		Str: 12
		Agi: 3
		Vit: 5
		Int: 5
		Dex: 10
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 3)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 1000
	AttackDelay: 1768
	AttackMotion: 768
	DamageMotion: 576
	Drops: {
		Yellow_Live: 50
		Stem: 9000
		Spear_: 30
		Green_Herb: 350
		Wing_Of_Fly: 300
		Four_Leaf_Clover: 3
		Whip_Of_Earth: 10
		Mandragora_Card: 1
	}
},
{
	Id: 2766
	SpriteName: "C3_MANANANGGAL"
	Name: "Manananggal Ringleader"
	Lv: 107
	Hp: 102255
	Sp: 1
	Exp: 7075
	JExp: 25380
	AttackRange: 1
	Attack: [950, 385]
	Def: 64
	Mdef: 31
	Stats: {
		Str: 75
		Agi: 85
		Vit: 45
		Int: 71
		Dex: 75
		Luk: 46
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 280
	AttackMotion: 720
	DamageMotion: 360
	Drops: {
		Silver_Bracelet: 2000
		Elegant_Flower: 1000
		Wing_Of_Red_Bat: 1000
		Tooth_Of_Bat: 1000
		Beautiful_Flower: 1000
		Mysterious_Flower: 1000
		Insideout_Shirt: 100
		Manananggal_Card: 1
	}
},
{
	Id: 2767
	SpriteName: "C4_MAJORUROS"
	Name: "Furious Majoruros"
	Lv: 107
	Hp: 59005
	Sp: 1
	Exp: 9270
	JExp: 19800
	AttackRange: 1
	Attack: [1035, 408]
	Def: 111
	Mdef: 25
	Stats: {
		Str: 112
		Agi: 75
		Vit: 65
		Int: 55
		Dex: 86
		Luk: 49
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1100
	AttackMotion: 960
	DamageMotion: 780
	Drops: {
		Nose_Ring: 4413
		Two_Handed_Axe_: 4
		Beef_Head_Meat: 300
		Oridecon: 16
		White_Herb: 1850
		Silver_Ring: 160
		Star_Crumb: 250
		Majoruros_Card: 1
	}
},
{
	Id: 2768
	SpriteName: "C5_MAGNOLIA"
	Name: "Elusive Magnolia"
	Lv: 53
	Hp: 9920
	Sp: 1
	Exp: 1155
	JExp: 3705
	AttackRange: 1
	Attack: [194, 46]
	Def: 51
	Mdef: 8
	Stats: {
		Str: 49
		Agi: 25
		Vit: 21
		Int: 50
		Dex: 31
		Luk: 85
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1054
	AttackMotion: 504
	DamageMotion: 432
	Drops: {
		Old_Frying_Pan: 9000
		Garlet: 800
		Yellow_Herb: 10000
		Zargon: 10
		Black_Ladle: 40
		Scell: 400
		High_end_Cooking_Kits: 5
		Magnolia_Card: 1
	}
},
{
	Id: 2769
	SpriteName: "C1_MAGMARING"
	Name: "Swift Magmaring"
	Lv: 110
	Hp: 65395
	Sp: 1
	Exp: 7605
	JExp: 17115
	AttackRange: 1
	Attack: [1062, 423]
	Def: 190
	Mdef: 45
	Stats: {
		Str: 107
		Agi: 33
		Vit: 35
		Int: 47
		Dex: 73
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1472
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Burning_Heart: 3000
		Elunium_Stone: 34
		Magmaring_Card: 1
	}
},
{
	Id: 2770
	SpriteName: "C2_LUNATIC"
	Name: "Solid Lunatic"
	Lv: 3
	Hp: 550
	Sp: 1
	Exp: 90
	JExp: 195
	AttackRange: 1
	Attack: [23, 5]
	Def: 18
	Mdef: 0
	Stats: {
		Str: 10
		Agi: 3
		Vit: 3
		Int: 0
		Dex: 8
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1456
	AttackMotion: 456
	DamageMotion: 336
	Drops: {
		Clover: 6500
		Feather: 1000
		Apple: 10000
		Wing_Of_Fly: 5000
		Carrot: 10000
		Pierrot_Nose: 1100
		Rainbow_Carrot: 20
		Lunatic_Card: 1
	}
},
{
	Id: 2771
	SpriteName: "C3_LUNATIC"
	Name: "Lunatic Ringleader"
	Lv: 3
	Hp: 275
	Sp: 1
	Exp: 90
	JExp: 195
	AttackRange: 1
	Attack: [23, 5]
	Def: 18
	Mdef: 0
	Stats: {
		Str: 10
		Agi: 3
		Vit: 3
		Int: 0
		Dex: 8
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1456
	AttackMotion: 456
	DamageMotion: 336
	Drops: {
		Clover: 6500
		Feather: 1000
		Pierrot_Nose: 4
		Apple: 2000
		Wing_Of_Fly: 600
		Carrot: 1100
		Rainbow_Carrot: 20
		Lunatic_Card: 1
	}
},
{
	Id: 2772
	SpriteName: "C4_LUDE"
	Name: "Furious Lude"
	Lv: 101
	Hp: 57870
	Sp: 1
	Exp: 5075
	JExp: 11400
	AttackRange: 2
	Attack: [468, 135]
	Def: 90
	Mdef: 53
	Stats: {
		Str: 97
		Agi: 49
		Vit: 55
		Int: 82
		Dex: 83
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 890
	AttackMotion: 960
	DamageMotion: 480
	Drops: {
		Pumpkin_Bucket: 3200
		Ectoplasm: 5723
		Transparent_Cloth: 1000
		Spirit_Chain: 10
		Elunium_Stone: 10
		Holy_Scroll_1_3: 100
		Yellow_Powder: 300
		Lude_Card: 1
	}
},
{
	Id: 2773
	SpriteName: "C5_LUCIOLA_VESPA"
	Name: "Elusive Luciola Vespa"
	Lv: 109
	Hp: 62330
	Sp: 1
	Exp: 7365
	JExp: 16245
	AttackRange: 1
	Attack: [761, 283]
	Def: 59
	Mdef: 55
	Stats: {
		Str: 88
		Agi: 89
		Vit: 55
		Int: 32
		Dex: 143
		Luk: 59
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
		TargetWeak: true
	}
	MoveSpeed: 110
	AttackDelay: 1000
	AttackMotion: 864
	DamageMotion: 432
	Drops: {
		Sprint_Ring: 2
		Bradium: 1
		Black_Wing_Suits: 25
		Honey: 300
		Wind_Of_Verdure: 160
		Royal_Jelly: 200
		Solid_Shell: 3000
		Luciola_Vespa_Card: 1
	}
},
{
	Id: 2774
	SpriteName: "C1_LOLI_RURI"
	Name: "Swift Loli Ruri"
	Lv: 109
	Hp: 76400
	Sp: 1
	Exp: 8370
	JExp: 18825
	AttackRange: 2
	Attack: [1297, 539]
	Def: 53
	Mdef: 44
	Stats: {
		Str: 111
		Agi: 50
		Vit: 47
		Int: 79
		Dex: 95
		Luk: 79
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 125
	AttackDelay: 747
	AttackMotion: 1632
	DamageMotion: 576
	Drops: {
		Black_Kitty_Doll: 800
		Striped_Socks: 3000
		Bat_Cage: 5044
		Elunium: 100
		Lokis_Whispers: 1
		Lunatic_Brooch: 5
		Sabah_Cloth: 100
		Loli_Ruri_Card: 1
	}
},
{
	Id: 2775
	SpriteName: "C2_LIVE_PEACH_TREE"
	Name: "Solid Enchanted Peach Tree"
	Lv: 92
	Hp: 87770
	Sp: 1
	Exp: 4495
	JExp: 12930
	AttackRange: 7
	Attack: [504, 169]
	Def: 109
	Mdef: 40
	Stats: {
		Str: 76
		Agi: 52
		Vit: 55
		Int: 40
		Dex: 92
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 410
	AttackDelay: 400
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Hard_Peach: 4365
		Elder_Branch: 100
		Royal_Jelly: 1000
		Branch_Of_Dead_Tree: 400
		Banana_Juice: 100
		Old_Blue_Box: 5
		Live_Peach_Tree_Card: 1
	}
},
{
	Id: 2776
	SpriteName: "C3_LITTLE_PORING"
	Name: "Baby Poring Ringleader"
	Lv: 1
	Hp: 200
	Sp: 1
	Exp: 90
	JExp: 150
	AttackRange: 1
	Attack: [14, 3]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Jellopy: 9000
		Knife_: 100
		Sticky_Mucus: 1000
		Apple: 5000
		Red_Herb: 1000
		Apple: 500
		Red_Herb: 1000
		Novice_Poring_Card: 100
	}
},
{
	Id: 2777
	SpriteName: "C4_LITTLE_FATUM"
	Name: "Furious Little Fatum"
	Lv: 142
	Hp: 425500
	Sp: 1
	Exp: 24375
	JExp: 58500
	AttackRange: 1
	Attack: [787, 317]
	Def: 51
	Mdef: 198
	Stats: {
		Str: 10
		Agi: 85
		Vit: 17
		Int: 148
		Dex: 222
		Luk: 97
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 432
	AttackMotion: 300
	DamageMotion: 432
	Drops: {
		Angel_Magic_Power: 5000
		Light_Granule: 100
		Beef_Toast: 100
		Dance_Shoes: 1
		Little_Fatum_Card: 1
	}
},
{
	Id: 2778
	SpriteName: "C5_LI_ME_MANG_RYANG"
	Name: "Elusive Jing Guai"
	Lv: 80
	Hp: 25935
	Sp: 1
	Exp: 2930
	JExp: 8970
	AttackRange: 1
	Attack: [329, 95]
	Def: 110
	Mdef: 37
	Stats: {
		Str: 61
		Agi: 22
		Vit: 33
		Int: 35
		Dex: 74
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1120
	AttackMotion: 576
	DamageMotion: 420
	Drops: {
		Tiger_Skin_Panties: 4500
		Little_Blacky_Ghost: 400
		Club: 10
		Spike: 1
		Li_Me_Mang_Ryang_Card: 1
	}
},
{
	Id: 2779
	SpriteName: "C1_LES"
	Name: "Swift Les"
	Lv: 82
	Hp: 31080
	Sp: 1
	Exp: 3315
	JExp: 10170
	AttackRange: 1
	Attack: [429, 143]
	Def: 123
	Mdef: 30
	Stats: {
		Str: 63
		Agi: 20
		Vit: 35
		Int: 25
		Dex: 62
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 4)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 230
	AttackDelay: 1728
	AttackMotion: 720
	DamageMotion: 576
	Drops: {
		Sharp_Leaf: 2000
		Green_Herb: 1000
		Shoot: 1000
		Stem: 2500
		Centimental_Leaf: 1
		Leaflet_Of_Aloe: 500
		Blue_Herb: 50
	}
},
{
	Id: 2780
	SpriteName: "C2_LEIB_OLMAI"
	Name: "Solid Leib Olmai"
	Lv: 118
	Hp: 240010
	Sp: 1
	Exp: 9500
	JExp: 30960
	AttackRange: 1
	Attack: [1049, 429]
	Def: 127
	Mdef: 31
	Stats: {
		Str: 72
		Agi: 35
		Vit: 80
		Int: 35
		Dex: 77
		Luk: 27
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 1260
	AttackMotion: 230
	DamageMotion: 192
	Drops: {
		Bears_Foot: 4550
		Poo_Poo_Hat: 8
		Stuffed_Doll: 120
		Honey: 500
		Pocket_Watch_: 5
		Gold: 5
		Cyfar: 800
		Leib_Olmai_Card: 1
	}
},
{
	Id: 2781
	SpriteName: "C3_LEAF_CAT"
	Name: "Leaf Cat Ringleader"
	Lv: 64
	Hp: 13175
	Sp: 1
	Exp: 1560
	JExp: 5010
	AttackRange: 1
	Attack: [250, 71]
	Def: 88
	Mdef: 16
	Stats: {
		Str: 46
		Agi: 16
		Vit: 12
		Int: 45
		Dex: 36
		Luk: 29
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 960
	AttackMotion: 864
	DamageMotion: 720
	Drops: {
		Great_Leaf: 4365
		Leaflet_Of_Hinal: 300
		Seed_Of_Yggdrasil: 5
		Fish_Tail: 1100
		Lemon: 250
		Prawn: 500
		Leaf_Clothes: 5335
		Leaf_Cat_Card: 1
	}
},
{
	Id: 2784
	SpriteName: "C1_KOBOLD_ARCHER"
	Name: "Swift Kobold Archer"
	Lv: 108
	Hp: 55265
	Sp: 1
	Exp: 6480
	JExp: 23580
	AttackRange: 9
	Attack: [938, 365]
	Def: 84
	Mdef: 5
	Stats: {
		Str: 99
		Agi: 39
		Vit: 48
		Int: 30
		Dex: 124
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1008
	AttackMotion: 1008
	DamageMotion: 384
	Drops: {
		Zargon: 250
		Steel: 60
		Cobold_Hair: 4850
		Ear_Of_Puppy: 50
		Poison_Arrow: 2000
		CrossBow_: 5
		Oridecon_Stone: 79
		Kobold_Archer_Card: 1
	}
},
{
	Id: 2785
	SpriteName: "C2_KOBOLD_1"
	Name: "Solid Kobold"
	Lv: 107
	Hp: 104830
	Sp: 1
	Exp: 6820
	JExp: 15345
	AttackRange: 1
	Attack: [888, 337]
	Def: 103
	Mdef: 25
	Stats: {
		Str: 109
		Agi: 76
		Vit: 61
		Int: 53
		Dex: 98
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1028
	AttackMotion: 528
	DamageMotion: 360
	Drops: {
		Steel: 100
		Cobold_Hair: 5335
		Zargon: 700
		Elunium_Stone: 25
		Gladius_: 2
		Buckler_: 5
		Kobold_Card: 1
	}
},
{
	Id: 2786
	SpriteName: "C3_KNOCKER"
	Name: "Knocker Ringleader"
	Lv: 126
	Hp: 219500
	Sp: 1
	Exp: 11990
	JExp: 33900
	AttackRange: 1
	Attack: [1069, 425]
	Def: 126
	Mdef: 62
	Stats: {
		Str: 93
		Agi: 62
		Vit: 58
		Int: 56
		Dex: 139
		Luk: 70
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1548
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Great_Nature: 30
		Coal: 150
		Elder_Pixies_Beard: 5500
		Elven_Ears: 1
		Carnium: 10
		Thorny_Buckler: 3
		Earth_Bow: 5
		Knocker_Card: 1
	}
},
{
	Id: 2787
	SpriteName: "C4_KIND_OF_BEETLE"
	Name: "Furious Beetle King"
	Lv: 55
	Hp: 10305
	Sp: 1
	Exp: 1180
	JExp: 3795
	AttackRange: 1
	Attack: [218, 55]
	Def: 79
	Mdef: 8
	Stats: {
		Str: 53
		Agi: 61
		Vit: 10
		Int: 0
		Dex: 50
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 165
	AttackDelay: 1247
	AttackMotion: 768
	DamageMotion: 576
	Drops: {
		Solid_Peeling: 6500
		Beetle_Nipper: 4500
		Insect_Feeler: 1000
		Worm_Peelings: 500
		Guard_: 1
		Kind_Of_Beetle_Card: 1
	}
},
{
	Id: 2788
	SpriteName: "C5_KASA"
	Name: "Elusive Kasa"
	Lv: 135
	Hp: 350640
	Sp: 1
	Exp: 18195
	JExp: 57810
	AttackRange: 2
	Attack: [1691, 723]
	Def: 104
	Mdef: 70
	Stats: {
		Str: 111
		Agi: 74
		Vit: 65
		Int: 78
		Dex: 162
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 800
	AttackMotion: 600
	DamageMotion: 288
	Drops: {
		Burning_Heart: 3000
		Hot_Hair: 2500
		Flame_Heart: 30
		Lesser_Elemental_Ring: 1
		Flame_Sprits_Armor: 10
		Burning_Bow: 10
		Piercing_Staff: 10
		Kasa_Card: 1
	}
},
{
	Id: 2789
	SpriteName: "C1_KARAKASA"
	Name: "Swift Karakasa"
	Lv: 72
	Hp: 15460
	Sp: 1
	Exp: 2105
	JExp: 6450
	AttackRange: 1
	Attack: [302, 83]
	Def: 93
	Mdef: 29
	Stats: {
		Str: 66
		Agi: 73
		Vit: 33
		Int: 20
		Dex: 64
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 155
	AttackDelay: 1638
	AttackMotion: 2016
	DamageMotion: 576
	Drops: {
		Oil_Paper: 5000
		Bamboo_Cut: 4268
		Wooden_Block: 3200
		Smooth_Paper: 2200
		Zargon: 4074
		Glass_Bead: 30
		Murasame: 5
		Karakasa_Card: 1
	}
},
{
	Id: 2790
	SpriteName: "C2_ISIS"
	Name: "Solid Isis"
	Lv: 59
	Hp: 20920
	Sp: 1
	Exp: 1395
	JExp: 4470
	AttackRange: 1
	Attack: [310, 97]
	Def: 83
	Mdef: 5
	Stats: {
		Str: 58
		Agi: 43
		Vit: 22
		Int: 5
		Dex: 43
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1384
	AttackMotion: 768
	DamageMotion: 336
	Drops: {
		Scales_Shell: 5335
		Circlet_: 5
		Necklace: 1
		Crystal_Jewel___: 150
		Crystal_Jewel__: 20
		Shining_Scales: 1000
		Crystal_Jewel_: 5
		Isis_Card: 1
	}
},
{
	Id: 2791
	SpriteName: "C3_ISILLA"
	Name: "Isilla Ringleader"
	Lv: 124
	Hp: 131620
	Sp: 1
	Exp: 11230
	JExp: 23325
	AttackRange: 1
	Attack: [1027, 407]
	Def: 69
	Mdef: 19
	Stats: {
		Str: 90
		Agi: 65
		Vit: 43
		Int: 82
		Dex: 127
		Luk: 75
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 768
	AttackMotion: 360
	DamageMotion: 432
	Drops: {
		White_Mask: 2500
		High_Fashion_Sandals: 1
		Bloody_Rune: 1000
		Gold_Ring: 10
		Ring: 1
		Bloody_Rune: 100
		Ur_Seal: 10
		Isilla_Card: 1
	}
},
{
	Id: 2792
	SpriteName: "C4_INJUSTICE"
	Name: "Furious Injustice"
	Lv: 95
	Hp: 39760
	Sp: 1
	Exp: 4720
	JExp: 14970
	AttackRange: 1
	Attack: [600, 215]
	Def: 76
	Mdef: 31
	Stats: {
		Str: 77
		Agi: 76
		Vit: 58
		Int: 65
		Dex: 88
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 400
	AttackDelay: 770
	AttackMotion: 720
	DamageMotion: 336
	Drops: {
		Steel: 300
		Brigan: 5335
		Cyfar: 3500
		Padded_Armor_: 5
		Plate_Armor: 2
		Prohibition_Red_Candle: 2
		Jamadhar_: 2
		Injustice_Card: 1
	}
},
{
	Id: 2793
	SpriteName: "C5_INCREASE_SOIL"
	Name: "Elusive Mi Gao"
	Lv: 83
	Hp: 26675
	Sp: 1
	Exp: 3300
	JExp: 11460
	AttackRange: 1
	Attack: [500, 175]
	Def: 112
	Mdef: 39
	Stats: {
		Str: 67
		Agi: 23
		Vit: 41
		Int: 49
		Dex: 94
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 445
	AttackDelay: 106
	AttackMotion: 1056
	DamageMotion: 576
	Drops: {
		Dried_Sand: 4365
		Mud_Lump: 2300
		Great_Nature: 10
		Gold: 2
		Increase_Soil_Card: 1
	}
},
{
	Id: 2794
	SpriteName: "C1_ICE_TITAN"
	Name: "Swift Ice Titan"
	Lv: 110
	Hp: 104100
	Sp: 1
	Exp: 8170
	JExp: 23790
	AttackRange: 1
	Attack: [1287, 522]
	Def: 344
	Mdef: 11
	Stats: {
		Str: 133
		Agi: 54
		Vit: 78
		Int: 33
		Dex: 94
		Luk: 26
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 861
	AttackMotion: 660
	DamageMotion: 144
	Drops: {
		Ice_Heart: 5000
		Ice_Piece: 3000
		Frozen_Rose: 100
		Oridecon: 10
		Huuma_Fluttering_Snow: 30
		Cold_Ice: 500
		Mistic_Frozen: 100
		Ice_Titan_Card: 1
	}
},
{
	Id: 2795
	SpriteName: "C2_IARA"
	Name: "Solid Iara"
	Lv: 79
	Hp: 58900
	Sp: 1
	Exp: 2940
	JExp: 6675
	AttackRange: 1
	Attack: [328, 90]
	Def: 0
	Mdef: 76
	Stats: {
		Str: 69
		Agi: 14
		Vit: 41
		Int: 60
		Dex: 83
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 384
	AttackMotion: 672
	DamageMotion: 288
	Drops: {
		Mistic_Frozen: 5
		Heart_Of_Mermaid: 9000
		Fin: 500
		Witherless_Rose: 50
		Crystal_Mirror: 100
		Illusion_Flower: 10
		Mage_Coat: 1
	}
},
{
	Id: 2796
	SpriteName: "C3_HYEGUN"
	Name: "Yao Jun Ringleader"
	Lv: 87
	Hp: 34980
	Sp: 1
	Exp: 3525
	JExp: 10830
	AttackRange: 1
	Attack: [416, 130]
	Def: 84
	Mdef: 43
	Stats: {
		Str: 69
		Agi: 38
		Vit: 40
		Int: 20
		Dex: 82
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 890
	AttackMotion: 1320
	DamageMotion: 720
	Drops: {
		Brigan: 3880
		Amulet: 100
		Elunium: 10
		Boots_: 1
		Munak_Doll: 300
		Claire_Suits: 10
		Hyegun_Card: 1
	}
},
{
	Id: 2797
	SpriteName: "C4_HUNTER_FLY"
	Name: "Furious Hunter Fly"
	Lv: 63
	Hp: 10250
	Sp: 1
	Exp: 1585
	JExp: 5100
	AttackRange: 1
	Attack: [311, 108]
	Def: 46
	Mdef: 20
	Stats: {
		Str: 32
		Agi: 93
		Vit: 22
		Int: 25
		Dex: 100
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 676
	AttackMotion: 576
	DamageMotion: 480
	Drops: {
		Rough_Wind: 30
		Steel: 100
		Solid_Shell: 5335
		Zargon: 1300
		Oridecon_Stone: 129
		Mini_Propeller: 1
		Damascus_: 2
		Hunter_Fly_Card: 1
	}
},
{
	Id: 2798
	SpriteName: "C5_HORNET"
	Name: "Elusive Hornet"
	Lv: 11
	Hp: 450
	Sp: 1
	Exp: 200
	JExp: 450
	AttackRange: 1
	Attack: [35, 6]
	Def: 7
	Mdef: 1
	Stats: {
		Str: 12
		Agi: 24
		Vit: 4
		Int: 5
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 150
	AttackDelay: 1292
	AttackMotion: 792
	DamageMotion: 216
	Drops: {
		Wind_Of_Verdure: 80
		Bee_Sting: 9000
		Jellopy: 3500
		Main_Gauche_: 15
		Green_Herb: 350
		Honey: 150
		Hornet_Card: 1
	}
},
{
	Id: 2799
	SpriteName: "C1_HORN_SCARABA"
	Name: "Swift Uni-horn Scaraba"
	Lv: 130
	Hp: 255500
	Sp: 1
	Exp: 13050
	JExp: 36090
	AttackRange: 1
	Attack: [1024, 425]
	Def: 135
	Mdef: 20
	Stats: {
		Str: 44
		Agi: 59
		Vit: 55
		Int: 21
		Dex: 99
		Luk: 33
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 384
	AttackMotion: 672
	DamageMotion: 360
	Drops: {
		Singlehorn_Helm: 6500
		Imperial_Spear: 1
		Runstone_Ancient: 10
		Elder_Branch: 10
		Yellow_Live: 1
		Scaraba_Card: 1
	}
},
{
	Id: 2800
	SpriteName: "C2_HORN"
	Name: "Solid Horn"
	Lv: 32
	Hp: 7050
	Sp: 1
	Exp: 540
	JExp: 1815
	AttackRange: 1
	Attack: [102, 31]
	Def: 52
	Mdef: 8
	Stats: {
		Str: 10
		Agi: 12
		Vit: 36
		Int: 25
		Dex: 21
		Luk: 35
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1528
	AttackMotion: 528
	DamageMotion: 288
	Drops: {
		Yellow_Live: 80
		Emveretarcon: 35
		Horn: 5500
		Guisarme_: 15
		Shell: 5500
		Solid_Shell: 70
		Horn_Card: 1
	}
},
{
	Id: 2801
	SpriteName: "C3_HODREMLIN"
	Name: "Hodremlin Ringleader"
	Lv: 122
	Hp: 115910
	Sp: 1
	Exp: 12210
	JExp: 25350
	AttackRange: 1
	Attack: [1144, 459]
	Def: 75
	Mdef: 25
	Stats: {
		Str: 106
		Agi: 70
		Vit: 77
		Int: 60
		Dex: 83
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 140
	AttackDelay: 960
	AttackMotion: 528
	DamageMotion: 432
	Drops: {
		Prickly_Fruit_: 1000
		Will_Of_Darkness: 1000
		Boots_: 2
		Sticky_Mucus: 1000
		Bloody_Rune: 1000
		Starsand_Of_Witch: 2000
		Shadow_Walk: 10
		Hodremlin_Card: 1
	}
},
{
	Id: 2802
	SpriteName: "C4_HODE"
	Name: "Furious Hode"
	Lv: 63
	Hp: 13380
	Sp: 1
	Exp: 1660
	JExp: 5325
	AttackRange: 1
	Attack: [295, 85]
	Def: 91
	Mdef: 24
	Stats: {
		Str: 61
		Agi: 20
		Vit: 42
		Int: 5
		Dex: 32
		Luk: 40
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1480
	AttackMotion: 480
	DamageMotion: 720
	Drops: {
		Yellow_Live: 120
		Earthworm_Peeling: 9000
		Elunium_Stone: 80
		Sticky_Mucus: 3000
		Town_Sword_: 10
		Foolishness_Of_Blind: 1
		Fatty_Chubby_Earthworm: 20
		Hode_Card: 1
	}
},
{
	Id: 2803
	SpriteName: "C5_HILL_WIND_1"
	Name: "Elusive Hill Wind"
	Lv: 101
	Hp: 45500
	Sp: 1
	Exp: 5700
	JExp: 12810
	AttackRange: 3
	Attack: [590, 192]
	Def: 90
	Mdef: 37
	Stats: {
		Str: 105
		Agi: 69
		Vit: 59
		Int: 35
		Dex: 96
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 504
	AttackMotion: 480
	DamageMotion: 360
	Drops: {
		Harpys_Feather: 4000
		Harpys_Claw: 3000
		Monsters_Feed: 1000
		Blue_Herb: 10
		Hill_Wind_Card: 1
	}
},
{
	Id: 2804
	SpriteName: "C1_HILL_WIND_1"
	Name: "Swift Hill Wind"
	Lv: 101
	Hp: 45500
	Sp: 1
	Exp: 5700
	JExp: 12810
	AttackRange: 3
	Attack: [590, 192]
	Def: 90
	Mdef: 37
	Stats: {
		Str: 105
		Agi: 69
		Vit: 59
		Int: 35
		Dex: 96
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 504
	AttackMotion: 480
	DamageMotion: 360
	Drops: {
		Harpys_Feather: 4000
		Harpys_Claw: 3000
		Monsters_Feed: 1000
		Blue_Herb: 10
		Hill_Wind_Card: 1
	}
},
{
	Id: 2805
	SpriteName: "C2_HIGH_ORC"
	Name: "Solid High Orc"
	Lv: 81
	Hp: 41930
	Sp: 1
	Exp: 3020
	JExp: 8685
	AttackRange: 1
	Attack: [566, 205]
	Def: 101
	Mdef: 45
	Stats: {
		Str: 75
		Agi: 16
		Vit: 40
		Int: 31
		Dex: 83
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1500
	AttackMotion: 500
	DamageMotion: 1000
	Drops: {
		Ogre_Tooth: 2500
		Orcish_Axe: 10
		Steel: 90
		Orcish_Voucher: 7500
		Zargon: 1300
		Oridecon_Stone: 196
		Yellow_Herb: 900
		High_Orc_Card: 1
	}
},
{
	Id: 2806
	SpriteName: "C3_HARPY"
	Name: "Harpy Ringleader"
	Lv: 83
	Hp: 22115
	Sp: 1
	Exp: 3300
	JExp: 11400
	AttackRange: 1
	Attack: [480, 163]
	Def: 69
	Mdef: 44
	Stats: {
		Str: 71
		Agi: 39
		Vit: 50
		Int: 31
		Dex: 125
		Luk: 12
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 155
	AttackDelay: 972
	AttackMotion: 672
	DamageMotion: 470
	Drops: {
		Harpys_Feather: 4850
		Harpys_Claw: 2500
		Yellow_Herb: 1500
		Yellow_Herb: 800
		Izidor: 20
		Electric_Fist: 20
		Harpy_Card: 1
	}
},
{
	Id: 2807
	SpriteName: "C4_HARPY"
	Name: "Furious Harpy"
	Lv: 83
	Hp: 22115
	Sp: 1
	Exp: 3300
	JExp: 11400
	AttackRange: 1
	Attack: [480, 163]
	Def: 69
	Mdef: 44
	Stats: {
		Str: 71
		Agi: 50
		Vit: 50
		Int: 31
		Dex: 125
		Luk: 12
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 155
	AttackDelay: 972
	AttackMotion: 672
	DamageMotion: 470
	Drops: {
		Harpys_Feather: 4850
		Harpys_Claw: 2500
		Yellow_Herb: 1500
		Yellow_Herb: 800
		Izidor: 20
		Electric_Fist: 20
		Harpy_Card: 1
	}
},
{
	Id: 2808
	SpriteName: "C5_GREEN_IGUANA"
	Name: "Elusive Grove"
	Lv: 55
	Hp: 10450
	Sp: 1
	Exp: 1275
	JExp: 4110
	AttackRange: 1
	Attack: [253, 70]
	Def: 96
	Mdef: 18
	Stats: {
		Str: 58
		Agi: 42
		Vit: 22
		Int: 5
		Dex: 50
		Luk: 17
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1152
	AttackMotion: 1152
	DamageMotion: 480
	Drops: {
		Leaflet_Of_Aloe: 1500
		Reptile_Tongue: 1000
		Leaflet_Of_Hinal: 1000
		Green_Herb: 1000
		Monsters_Feed: 2000
		Aloebera: 10
		Melon: 500
		Green_Iguana_Card: 1
	}
},
{
	Id: 2809
	SpriteName: "C1_GREATEST_GENERAL"
	Name: "Swift Greatest General"
	Lv: 55
	Hp: 7875
	Sp: 1
	Exp: 1275
	JExp: 4110
	AttackRange: 3
	Attack: [329, 109]
	Def: 114
	Mdef: 30
	Stats: {
		Str: 58
		Agi: 30
		Vit: 20
		Int: 25
		Dex: 28
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 2)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1152
	AttackMotion: 1152
	DamageMotion: 384
	Drops: {
		Brigan: 2000
		Wooden_Block: 2000
		Club: 100
		Inspector_Certificate: 300
		Stop_Post: 1
		Yellow_Herb: 250
		Earth_Scroll_1_3: 100
		Greatest_General_Card: 1
	}
},
{
	Id: 2810
	SpriteName: "C2_GRAND_PECO"
	Name: "Solid Grand Peco"
	Lv: 75
	Hp: 31500
	Sp: 1
	Exp: 2440
	JExp: 7485
	AttackRange: 2
	Attack: [471, 167]
	Def: 95
	Mdef: 30
	Stats: {
		Str: 63
		Agi: 45
		Vit: 50
		Int: 23
		Dex: 61
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 165
	AttackDelay: 1460
	AttackMotion: 960
	DamageMotion: 432
	Drops: {
		Peco_Wing_Feather: 4850
		Fruit_Of_Mastela: 300
		Wind_Of_Verdure: 1000
		Gold: 1
		Orange: 500
		Grand_Peco_Card: 1
	}
},
{
	Id: 2811
	SpriteName: "C3_GRAND_PECO"
	Name: "Grand Peco Ringleader"
	Lv: 75
	Hp: 15750
	Sp: 1
	Exp: 2440
	JExp: 7485
	AttackRange: 2
	Attack: [471, 167]
	Def: 95
	Mdef: 30
	Stats: {
		Str: 63
		Agi: 45
		Vit: 50
		Int: 23
		Dex: 61
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 165
	AttackDelay: 1460
	AttackMotion: 960
	DamageMotion: 432
	Drops: {
		Peco_Wing_Feather: 4850
		Fruit_Of_Mastela: 300
		Wind_Of_Verdure: 1000
		Gold: 1
		Orange: 500
		Grand_Peco_Card: 1
	}
},
{
	Id: 2812
	SpriteName: "C4_GOLEM"
	Name: "Furious Golem"
	Lv: 61
	Hp: 11225
	Sp: 1
	Exp: 1415
	JExp: 4560
	AttackRange: 1
	Attack: [329, 99]
	Def: 190
	Mdef: 12
	Stats: {
		Str: 70
		Agi: 35
		Vit: 67
		Int: 5
		Dex: 34
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1608
	AttackMotion: 816
	DamageMotion: 396
	Drops: {
		Steel: 150
		Stone_Heart: 9000
		Zargon: 220
		Elunium_Stone: 70
		Siver_Guard: 5
		Yellow_Gemstone: 200
		Iron: 350
		Golem_Card: 1
	}
},
{
	Id: 2813
	SpriteName: "C5_GOBLIN_1"
	Name: "Elusive Goblin"
	Lv: 48
	Hp: 5290
	Sp: 1
	Exp: 920
	JExp: 3105
	AttackRange: 1
	Attack: [168, 41]
	Def: 56
	Mdef: 5
	Stats: {
		Str: 37
		Agi: 54
		Vit: 25
		Int: 20
		Dex: 36
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1120
	AttackMotion: 620
	DamageMotion: 240
	Drops: {
		Wing_Of_Fly: 270
		Scell: 9000
		Oridecon_Stone: 43
		Goblini_Mask: 3
		Dirk_: 10
		Buckler_: 5
		Red_Herb: 1800
		Goblin_Card: 1
	}
},
{
	Id: 2814
	SpriteName: "C1_GOBLIN_1"
	Name: "Swift Goblin"
	Lv: 48
	Hp: 5290
	Sp: 1
	Exp: 920
	JExp: 3105
	AttackRange: 1
	Attack: [168, 41]
	Def: 56
	Mdef: 5
	Stats: {
		Str: 37
		Agi: 54
		Vit: 25
		Int: 20
		Dex: 36
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1120
	AttackMotion: 620
	DamageMotion: 240
	Drops: {
		Wing_Of_Fly: 270
		Scell: 9000
		Oridecon_Stone: 43
		Goblini_Mask: 3
		Dirk_: 10
		Buckler_: 5
		Red_Herb: 1800
		Goblin_Card: 1
	}
},
{
	Id: 2815
	SpriteName: "C2_GOAT"
	Name: "Solid Goat"
	Lv: 80
	Hp: 39800
	Sp: 1
	Exp: 2930
	JExp: 8970
	AttackRange: 1
	Attack: [549, 205]
	Def: 95
	Mdef: 43
	Stats: {
		Str: 61
		Agi: 40
		Vit: 48
		Int: 40
		Dex: 78
		Luk: 31
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 165
	AttackDelay: 1380
	AttackMotion: 1080
	DamageMotion: 336
	Drops: {
		Goats_Horn: 4559
		Gaoats_Skin: 2500
		Empty_Bottle: 5000
		Red_Herb: 500
		Blue_Herb: 1000
		Yellow_Herb: 2500
		Green_Herb: 5500
		Goat_Card: 1
	}
},
{
	Id: 2816
	SpriteName: "C3_GOAT"
	Name: "Goat Ringleader"
	Lv: 80
	Hp: 19900
	Sp: 1
	Exp: 2930
	JExp: 8970
	AttackRange: 1
	Attack: [549, 205]
	Def: 95
	Mdef: 43
	Stats: {
		Str: 61
		Agi: 40
		Vit: 48
		Int: 40
		Dex: 78
		Luk: 31
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 165
	AttackDelay: 1380
	AttackMotion: 1080
	DamageMotion: 336
	Drops: {
		Goats_Horn: 4559
		Gaoats_Skin: 2500
		Empty_Bottle: 5000
		Red_Herb: 500
		Blue_Herb: 1000
		Yellow_Herb: 2500
		Green_Herb: 5500
		Goat_Card: 1
	}
},
{
	Id: 2817
	SpriteName: "C4_GLD_KOBOLD_2"
	Name: "Furious Dark Hammer Kobold"
	Lv: 142
	Hp: 906700
	Sp: 1
	Exp: 51800
	JExp: 182700
	AttackRange: 1
	Attack: [1582, 672]
	Def: 117
	Mdef: 59
	Stats: {
		Str: 96
		Agi: 79
		Vit: 55
		Int: 48
		Dex: 95
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Poison", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1528
	AttackMotion: 528
	DamageMotion: 360
	Drops: {
		Steel: 50
		Cobold_Hair: 2668
		Zargon: 350
		Elunium: 13
		Velum_Guillotine: 1
		Sg_White_Potion_Box: 2
	}
},
{
	Id: 2818
	SpriteName: "C5_GLD_KOBOLD_2"
	Name: "Elusive Dark Hammer Kobold"
	Lv: 142
	Hp: 906700
	Sp: 1
	Exp: 51800
	JExp: 182700
	AttackRange: 1
	Attack: [1582, 673]
	Def: 117
	Mdef: 59
	Stats: {
		Str: 96
		Agi: 61
		Vit: 55
		Int: 48
		Dex: 95
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Poison", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1528
	AttackMotion: 528
	DamageMotion: 360
	Drops: {
		Steel: 50
		Cobold_Hair: 2668
		Zargon: 350
		Elunium: 13
		Velum_Guillotine: 1
		Sg_White_Potion_Box: 2
	}
},
{
	Id: 2819
	SpriteName: "C1_GLD_DARK_SHADOW"
	Name: "Swift Dark Shadow"
	Lv: 147
	Hp: 1020550
	Sp: 1
	Exp: 57500
	JExp: 181800
	AttackRange: 1
	Attack: [1888, 793]
	Def: 140
	Mdef: 44
	Stats: {
		Str: 155
		Agi: 126
		Vit: 89
		Int: 108
		Dex: 213
		Luk: 76
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 220
	AttackDelay: 768
	AttackMotion: 1776
	DamageMotion: 648
	Drops: {
		Piece_Of_Black_Cloth: 2500
		Skul_Ring: 500
		Dagger_Of_Hunter: 3
		Piece_Of_Darkness: 500
		Eyes_Stone_Ring: 1
		Sg_Violet_Potion_Box: 2
		Bradium: 2
	}
},
{
	Id: 2820
	SpriteName: "C2_GLD_DARK_SHADOW"
	Name: "Solid Dark Shadow"
	Lv: 147
	Hp: 2041090
	Sp: 1
	Exp: 57500
	JExp: 181800
	AttackRange: 1
	Attack: [1888, 793]
	Def: 140
	Mdef: 44
	Stats: {
		Str: 155
		Agi: 126
		Vit: 89
		Int: 108
		Dex: 213
		Luk: 76
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 220
	AttackDelay: 768
	AttackMotion: 1776
	DamageMotion: 648
	Drops: {
		Piece_Of_Black_Cloth: 2500
		Skul_Ring: 500
		Dagger_Of_Hunter: 3
		Piece_Of_Darkness: 500
		Eyes_Stone_Ring: 1
		Sg_Violet_Potion_Box: 2
		Bradium: 2
	}
},
{
	Id: 2821
	SpriteName: "C3_GIANT_HONET"
	Name: "Giant Hornet Ringleader"
	Lv: 120
	Hp: 132605
	Sp: 1
	Exp: 9005
	JExp: 29895
	AttackRange: 1
	Attack: [968, 389]
	Def: 80
	Mdef: 43
	Stats: {
		Str: 70
		Agi: 45
		Vit: 47
		Int: 32
		Dex: 74
		Luk: 34
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 155
	AttackDelay: 1292
	AttackMotion: 792
	DamageMotion: 340
	Drops: {
		Royal_Jelly: 550
		Honey: 1200
		Fruit_Of_Mastela: 12
		Sg_Violet_Potion_Box: 15
		Staff_: 3
		Scarlet_Jewel: 20
		Double_Bound: 15
		Giant_Honet_Card: 1
	}
},
{
	Id: 2822
	SpriteName: "C4_GHOUL"
	Name: "Furious Ghoul"
	Lv: 61
	Hp: 13070
	Sp: 1
	Exp: 1530
	JExp: 4920
	AttackRange: 1
	Attack: [334, 109]
	Def: 78
	Mdef: 5
	Stats: {
		Str: 56
		Agi: 15
		Vit: 19
		Int: 11
		Dex: 30
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 2456
	AttackMotion: 912
	DamageMotion: 504
	Drops: {
		Horrendous_Mouth: 6000
		Oridecon_Stone: 110
		White_Herb: 700
		Green_Herb: 800
		Skul_Ring: 60
		Mementos: 150
		Ghoul_Leg: 1
		Ghoul_Card: 1
	}
},
{
	Id: 2823
	SpriteName: "C5_GHOUL"
	Name: "Elusive Ghoul"
	Lv: 61
	Hp: 13070
	Sp: 1
	Exp: 1530
	JExp: 4920
	AttackRange: 1
	Attack: [334, 109]
	Def: 78
	Mdef: 5
	Stats: {
		Str: 56
		Agi: 12
		Vit: 19
		Int: 11
		Dex: 30
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 2456
	AttackMotion: 912
	DamageMotion: 504
	Drops: {
		Horrendous_Mouth: 6000
		Oridecon_Stone: 110
		White_Herb: 700
		Green_Herb: 800
		Skul_Ring: 60
		Mementos: 150
		Ghoul_Leg: 1
		Ghoul_Card: 1
	}
},
{
	Id: 2824
	SpriteName: "C1_GEOGRAPHER"
	Name: "Swift Geographer"
	Lv: 73
	Hp: 19330
	Sp: 1
	Exp: 2470
	JExp: 7575
	AttackRange: 3
	Attack: [450, 148]
	Def: 158
	Mdef: 42
	Stats: {
		Str: 81
		Agi: 26
		Vit: 35
		Int: 56
		Dex: 72
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 3)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 2000
	AttackDelay: 1308
	AttackMotion: 1008
	DamageMotion: 480
	Drops: {
		Blossom_Of_Maneater: 6200
		Root_Of_Maneater: 5500
		Sunflower: 30
		Fancy_Flower: 50
		Holy_Scroll_1_5: 100
		Geographer_Card: 1
	}
},
{
	Id: 2825
	SpriteName: "C2_GEOGRAPHER"
	Name: "Solid Geographer"
	Lv: 73
	Hp: 38660
	Sp: 1
	Exp: 2470
	JExp: 7575
	AttackRange: 3
	Attack: [450, 148]
	Def: 158
	Mdef: 42
	Stats: {
		Str: 81
		Agi: 26
		Vit: 35
		Int: 56
		Dex: 72
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 3)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 2000
	AttackDelay: 1308
	AttackMotion: 1008
	DamageMotion: 480
	Drops: {
		Blossom_Of_Maneater: 6200
		Root_Of_Maneater: 5500
		Sunflower: 30
		Fancy_Flower: 50
		Holy_Scroll_1_5: 100
		Geographer_Card: 1
	}
},
{
	Id: 2826
	SpriteName: "C3_GARGOYLE"
	Name: "Gargoyle Ringleader"
	Lv: 100
	Hp: 43860
	Sp: 1
	Exp: 5700
	JExp: 12810
	AttackRange: 9
	Attack: [677, 239]
	Def: 98
	Mdef: 43
	Stats: {
		Str: 100
		Agi: 61
		Vit: 60
		Int: 57
		Dex: 120
		Luk: 70
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1020
	AttackMotion: 720
	DamageMotion: 384
	Drops: {
		Zargon: 3880
		Petite_DiablOfs_Wing: 500
		Manteau_: 2
		Elven_Bow: 5
		Thimble_Of_Archer: 1
		Silence_Arrow: 2000
		Elunium_Stone: 238
		Gargoyle_Card: 1
	}
},
{
	Id: 2827
	SpriteName: "C4_GARGOYLE"
	Name: "Furious Gargoyle"
	Lv: 100
	Hp: 43860
	Sp: 1
	Exp: 5700
	JExp: 12810
	AttackRange: 9
	Attack: [676, 239]
	Def: 98
	Mdef: 43
	Stats: {
		Str: 100
		Agi: 79
		Vit: 60
		Int: 57
		Dex: 120
		Luk: 70
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1020
	AttackMotion: 720
	DamageMotion: 384
	Drops: {
		Zargon: 3880
		Petite_DiablOfs_Wing: 500
		Manteau_: 2
		Elven_Bow: 5
		Thimble_Of_Archer: 1
		Silence_Arrow: 2000
		Elunium_Stone: 238
		Gargoyle_Card: 1
	}
},
{
	Id: 2828
	SpriteName: "C5_GALION"
	Name: "Elusive Galion"
	Lv: 100
	Hp: 44105
	Sp: 1
	Exp: 5305
	JExp: 9945
	AttackRange: 1
	Attack: [711, 253]
	Def: 100
	Mdef: 62
	Stats: {
		Str: 106
		Agi: 79
		Vit: 62
		Int: 45
		Dex: 108
		Luk: 36
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Looter: true
		Assist: true
		Boss: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 150
	AttackDelay: 864
	AttackMotion: 624
	DamageMotion: 360
	Drops: {
		Rotten_Meat: 3000
		Animals_Skin: 3000
		Rough_Wind: 10
		Ulfhedinn: 5
		Galion_Card: 1
	}
},
{
	Id: 2829
	SpriteName: "C1_FUR_SEAL"
	Name: "Swift Seal"
	Lv: 47
	Hp: 6855
	Sp: 1
	Exp: 900
	JExp: 3030
	AttackRange: 1
	Attack: [167, 41]
	Def: 42
	Mdef: 16
	Stats: {
		Str: 37
		Agi: 40
		Vit: 30
		Int: 39
		Dex: 35
		Luk: 19
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1612
	AttackMotion: 622
	DamageMotion: 583
	Drops: {
		Zargon: 4365
		Wing_Of_Fly: 250
		Coat_: 5
		Cyfar: 1200
		Guisarme_: 1
		Panacea: 200
		Glass_Bead: 120
		Fur_Seal_Card: 1
	}
},
{
	Id: 2830
	SpriteName: "C2_FREEZER"
	Name: "Solid Freezer"
	Lv: 94
	Hp: 99900
	Sp: 1
	Exp: 4665
	JExp: 13110
	AttackRange: 2
	Attack: [741, 289]
	Def: 127
	Mdef: 38
	Stats: {
		Str: 68
		Agi: 47
		Vit: 50
		Int: 45
		Dex: 69
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 1260
	AttackMotion: 960
	DamageMotion: 672
	Drops: {
		Turtle_Shell: 4413
		Broken_Shell: 850
		Ice_Piece: 1250
		Zargon: 1800
		Royal_Jelly: 160
		Ice_Fragment: 200
		Cold_Scroll_1_5: 100
		Freezer_Card: 1
	}
},
{
	Id: 2831
	SpriteName: "C3_FREEZER"
	Name: "Freezer Ringleader"
	Lv: 94
	Hp: 49950
	Sp: 1
	Exp: 4665
	JExp: 13110
	AttackRange: 2
	Attack: [741, 289]
	Def: 127
	Mdef: 38
	Stats: {
		Str: 68
		Agi: 47
		Vit: 50
		Int: 45
		Dex: 69
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 1260
	AttackMotion: 960
	DamageMotion: 672
	Drops: {
		Turtle_Shell: 4413
		Broken_Shell: 850
		Ice_Piece: 1250
		Zargon: 1800
		Royal_Jelly: 160
		Ice_Fragment: 200
		Cold_Scroll_1_5: 100
		Freezer_Card: 1
	}
},
{
	Id: 2832
	SpriteName: "C4_FERUS_"
	Name: "Furious Ferus"
	Lv: 126
	Hp: 195270
	Sp: 1
	Exp: 13600
	JExp: 26880
	AttackRange: 2
	Attack: [1085, 435]
	Def: 111
	Mdef: 33
	Stats: {
		Str: 91
		Agi: 74
		Vit: 57
		Int: 61
		Dex: 87
		Luk: 51
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 120
	AttackDelay: 108
	AttackMotion: 576
	DamageMotion: 432
	Drops: {
		Delicious_Fish: 5100
		Dragon_Canine: 1000
		Dragon_Scale: 3589
		Dragonball_Green: 800
		Great_Nature: 20
		Dragonball_Green: 100
		Ferus__Card: 1
	}
},
{
	Id: 2833
	SpriteName: "C5_FARMILIAR"
	Name: "Elusive Familiar"
	Lv: 24
	Hp: 2135
	Sp: 1
	Exp: 360
	JExp: 1215
	AttackRange: 1
	Attack: [103, 33]
	Def: 26
	Mdef: 5
	Stats: {
		Str: 15
		Agi: 19
		Vit: 20
		Int: 5
		Dex: 20
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1276
	AttackMotion: 576
	DamageMotion: 384
	Drops: {
		Tooth_Of_Bat: 5500
		Falchion_: 20
		Ribbon_: 15
		Wing_Of_Fly: 50
		Grape: 100
		Red_Herb: 700
		Center_Potion: 50
		Farmiliar_Card: 1
	}
},
{
	Id: 2834
	SpriteName: "C1_FAKE_ANGEL"
	Name: "Swift False Angel"
	Lv: 105
	Hp: 54940
	Sp: 1
	Exp: 6300
	JExp: 14130
	AttackRange: 2
	Attack: [847, 315]
	Def: 106
	Mdef: 84
	Stats: {
		Str: 112
		Agi: 67
		Vit: 43
		Int: 81
		Dex: 82
		Luk: 80
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 160
	AttackDelay: 920
	AttackMotion: 720
	DamageMotion: 336
	Drops: {
		Blue_Gemstone: 1000
		Yellow_Gemstone: 1000
		Red_Gemstone: 1000
		Water_Of_Darkness: 1000
		Carrot_Whip: 20
		Fake_Angel_Card: 1
	}
},
{
	Id: 2835
	SpriteName: "C2_FABRE"
	Name: "Solid Fabre"
	Lv: 6
	Hp: 720
	Sp: 1
	Exp: 135
	JExp: 300
	AttackRange: 1
	Attack: [29, 5]
	Def: 24
	Mdef: 0
	Stats: {
		Str: 12
		Agi: 5
		Vit: 5
		Int: 5
		Dex: 12
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 400
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Fluff: 6500
		Feather: 500
		Club_: 80
		Wing_Of_Fly: 5
		Green_Herb: 700
		Clover: 1000
		Club: 200
		Fabre_Card: 1
	}
},
{
	Id: 2836
	SpriteName: "C3_FABRE"
	Name: "Fabre Ringleader"
	Lv: 6
	Hp: 360
	Sp: 1
	Exp: 135
	JExp: 300
	AttackRange: 1
	Attack: [29, 5]
	Def: 24
	Mdef: 0
	Stats: {
		Str: 12
		Agi: 5
		Vit: 5
		Int: 5
		Dex: 12
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 400
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Fluff: 6500
		Feather: 500
		Club_: 80
		Wing_Of_Fly: 5
		Green_Herb: 700
		Clover: 1000
		Club: 200
		Fabre_Card: 1
	}
},
{
	Id: 2837
	SpriteName: "C4_EXPLOSION"
	Name: "Furious Explosion"
	Lv: 100
	Hp: 39065
	Sp: 1
	Exp: 4750
	JExp: 12810
	AttackRange: 1
	Attack: [791, 300]
	Def: 112
	Mdef: 50
	Stats: {
		Str: 91
		Agi: 66
		Vit: 63
		Int: 50
		Dex: 78
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1260
	AttackMotion: 960
	DamageMotion: 336
	Drops: {
		Wing_Of_Red_Bat: 5500
		Burning_Heart: 2200
		Hot_Hair: 3200
		Oridecon_Stone: 800
		Fruit_Of_Mastela: 400
		Explosion_Card: 1
	}
},
{
	Id: 2838
	SpriteName: "C5_EVIL_DRUID"
	Name: "Elusive Evil Druid"
	Lv: 80
	Hp: 25745
	Sp: 1
	Exp: 3680
	JExp: 9600
	AttackRange: 1
	Attack: [504, 181]
	Def: 88
	Mdef: 45
	Stats: {
		Str: 62
		Agi: 32
		Vit: 24
		Int: 45
		Dex: 85
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 2276
	AttackMotion: 576
	DamageMotion: 336
	Drops: {
		Biretta_: 10
		Bone_Wand: 1
		Ragamuffin_Cape: 2
		Bible: 10
		Leaf_Of_Yggdrasil: 200
		Cookbook07: 4
		White_Herb: 2000
		Evil_Druid_Card: 1
	}
},
{
	Id: 2839
	SpriteName: "C1_ELDER_WILOW"
	Name: "Swift Elder Willow"
	Lv: 34
	Hp: 2995
	Sp: 1
	Exp: 580
	JExp: 1965
	AttackRange: 1
	Attack: [120, 39]
	Def: 45
	Mdef: 0
	Stats: {
		Str: 10
		Agi: 14
		Vit: 25
		Int: 0
		Dex: 29
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1372
	AttackMotion: 672
	DamageMotion: 432
	Drops: {
		Resin: 5000
		Wing_Of_Fly: 10000
		Elder_Branch: 1
		Elunium_Stone: 40
		Boody_Red: 30
		Fire_Scroll_1_3: 100
		Branch_Of_Dead_Tree: 100
		Elder_Wilow_Card: 1
	}
},
{
	Id: 2840
	SpriteName: "C2_ELDER_WILOW"
	Name: "Solid Elder Willow"
	Lv: 34
	Hp: 5990
	Sp: 1
	Exp: 580
	JExp: 1965
	AttackRange: 1
	Attack: [120, 39]
	Def: 45
	Mdef: 0
	Stats: {
		Str: 10
		Agi: 14
		Vit: 25
		Int: 0
		Dex: 29
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1372
	AttackMotion: 672
	DamageMotion: 432
	Drops: {
		Resin: 5000
		Wing_Of_Fly: 5000
		Elder_Branch: 1
		Elunium_Stone: 40
		Boody_Red: 30
		Fire_Scroll_1_3: 100
		Branch_Of_Dead_Tree: 100
		Elder_Wilow_Card: 1
	}
},
{
	Id: 2841
	SpriteName: "C3_ECHIO"
	Name: "Echio Ringleader"
	Lv: 126
	Hp: 158100
	Sp: 1
	Exp: 11990
	JExp: 24900
	AttackRange: 1
	Attack: [1050, 407]
	Def: 66
	Mdef: 11
	Stats: {
		Str: 111
		Agi: 63
		Vit: 51
		Int: 37
		Dex: 132
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 768
	AttackMotion: 360
	DamageMotion: 360
	Drops: {
		Suspicious_Hat: 2500
		Seed_Of_Yggdrasil: 10
		Bloody_Rune: 4000
		Beret: 25
		Holy_Arrow_Quiver: 20
		Bloody_Rune: 100
		Divine_Cloth: 20
		Echio_Card: 1
	}
},
{
	Id: 2842
	SpriteName: "C4_DUSTINESS"
	Name: "Furious Dustiness"
	Lv: 62
	Hp: 10130
	Sp: 1
	Exp: 1580
	JExp: 5085
	AttackRange: 1
	Attack: [266, 79]
	Def: 69
	Mdef: 50
	Stats: {
		Str: 46
		Agi: 28
		Vit: 46
		Int: 60
		Dex: 75
		Luk: 105
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 150
	AttackDelay: 1004
	AttackMotion: 504
	DamageMotion: 384
	Drops: {
		Moth_Dust: 9000
		Wing_Of_Moth: 500
		Insect_Feeler: 10000
		Red_Herb: 10000
		Sparkling_Dust: 10
		Masquerade: 1200
		Dustiness_Card: 1
	}
},
{
	Id: 2843
	SpriteName: "C1_DRYAD"
	Name: "Swift Dryad"
	Lv: 68
	Hp: 18200
	Sp: 1
	Exp: 2195
	JExp: 7035
	AttackRange: 3
	Attack: [389, 133]
	Def: 153
	Mdef: 8
	Stats: {
		Str: 54
		Agi: 14
		Vit: 40
		Int: 35
		Dex: 74
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 950
	AttackMotion: 2520
	DamageMotion: 576
	Drops: {
		Tough_Vines: 5335
		Great_Leaf: 1000
		Browny_Root: 3000
		Pineapple: 500
		Chemeti: 1
		Centimental_Leaf: 100
		Sharp_Leaf: 3000
		Dryad_Card: 1
	}
},
{
	Id: 2844
	SpriteName: "C2_DROSERA"
	Name: "Solid Drosera"
	Lv: 101
	Hp: 108780
	Sp: 1
	Exp: 4050
	JExp: 9105
	AttackRange: 7
	Attack: [388, 105]
	Def: 86
	Mdef: 52
	Stats: {
		Str: 79
		Agi: 32
		Vit: 64
		Int: 38
		Dex: 94
		Luk: 14
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 2000
	AttackDelay: 864
	AttackMotion: 576
	DamageMotion: 336
	Drops: {
		Sticky_Poison: 3000
		Drocera_Tentacle: 200
		Blossom_Of_Maneater: 2000
		Root_Of_Maneater: 2000
		Bitter_Herb: 3
		Stem: 1000
		Mandragora_Flowerpot: 50
		Drosera_Card: 1
	}
},
{
	Id: 2845
	SpriteName: "C3_DROPS"
	Name: "Drops Ringleader"
	Lv: 2
	Hp: 225
	Sp: 1
	Exp: 65
	JExp: 150
	AttackRange: 1
	Attack: [21, 5]
	Def: 16
	Mdef: 0
	Stats: {
		Str: 8
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 2
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1372
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Jellopy: 7500
		Rod_: 80
		Sticky_Mucus: 500
		Apple: 1100
		Wing_Of_Fly: 1700
		Apple: 800
		Orange_Juice: 20
		Drops_Card: 1
	}
},
{
	Id: 2846
	SpriteName: "C4_DRILLER"
	Name: "Furious Driller"
	Lv: 65
	Hp: 13595
	Sp: 1
	Exp: 1560
	JExp: 5010
	AttackRange: 1
	Attack: [309, 91]
	Def: 96
	Mdef: 18
	Stats: {
		Str: 62
		Agi: 65
		Vit: 25
		Int: 15
		Dex: 53
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1300
	AttackMotion: 900
	DamageMotion: 336
	Drops: {
		Lizard_Scruff: 7500
		Yellow_Gemstone: 3880
		Red_Gemstone: 3500
		Driller_Card: 1
	}
},
{
	Id: 2847
	SpriteName: "C5_DRAINLIAR"
	Name: "Elusive Drainliar"
	Lv: 47
	Hp: 5810
	Sp: 1
	Exp: 970
	JExp: 3285
	AttackRange: 1
	Attack: [178, 48]
	Def: 50
	Mdef: 15
	Stats: {
		Str: 35
		Agi: 34
		Vit: 24
		Int: 22
		Dex: 50
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1276
	AttackMotion: 576
	DamageMotion: 384
	Drops: {
		Emveretarcon: 60
		Tooth_Of_Bat: 3000
		Red_Jewel: 20
		Red_Herb: 1000
		Wing_Of_Red_Bat: 5500
		Wing_Of_Fly: 1500
		Oridecon_Stone: 40
		Drainliar_Card: 1
	}
},
{
	Id: 2848
	SpriteName: "C1_DRAGON_TAIL"
	Name: "Swift Dragon Tail"
	Lv: 86
	Hp: 23400
	Sp: 1
	Exp: 3475
	JExp: 10665
	AttackRange: 1
	Attack: [339, 96]
	Def: 63
	Mdef: 25
	Stats: {
		Str: 61
		Agi: 65
		Vit: 35
		Int: 40
		Dex: 62
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 862
	AttackMotion: 534
	DamageMotion: 312
	Drops: {
		Dragon_Fly_Wing: 4413
		Round_Shell: 400
		Solid_Shell: 800
		Fancy_Flower: 8
		Cap: 2
		Wing_Of_Fly: 300
		Wing_Of_Butterfly: 150
		Dragon_Tail_Card: 1
	}
},
{
	Id: 2849
	SpriteName: "C2_DRACO"
	Name: "Solid Draco"
	Lv: 114
	Hp: 200990
	Sp: 1
	Exp: 6485
	JExp: 10830
	AttackRange: 1
	Attack: [881, 373]
	Def: 56
	Mdef: 3
	Stats: {
		Str: 21
		Agi: 58
		Vit: 47
		Int: 34
		Dex: 99
		Luk: 66
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Dragon"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 250
	AttackDelay: 576
	AttackMotion: 960
	DamageMotion: 504
	Drops: {
		Dragons_Mane: 3000
		Dragons_Skin: 100
		Dragon_Canine: 100
		Dragon_Train: 1000
		Dragon_Scale: 1000
		Honey: 500
		Dragon_Vest: 10
		Draco_Card: 1
	}
},
{
	Id: 2850
	SpriteName: "C3_DOLOMEDES"
	Name: "Dolomedes Ringleader"
	Lv: 132
	Hp: 272955
	Sp: 1
	Exp: 16755
	JExp: 46380
	AttackRange: 3
	Attack: [1256, 487]
	Def: 112
	Mdef: 52
	Stats: {
		Str: 149
		Agi: 34
		Vit: 82
		Int: 55
		Dex: 143
		Luk: 67
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Water", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 360
	AttackMotion: 360
	DamageMotion: 600
	Drops: {
		Small_Bradium: 3000
		White_Spider_Limb: 5000
		Purified_Bradium: 500
		Bradium_Ring: 1
		Runstone_Rare: 10
		Bradium: 500
		Stem_Whip: 1
		Dolomedes_Card: 1
	}
},
{
	Id: 2851
	SpriteName: "C4_DOKEBI"
	Name: "Furious Dokebi"
	Lv: 68
	Hp: 14100
	Sp: 1
	Exp: 1770
	JExp: 5685
	AttackRange: 1
	Attack: [438, 159]
	Def: 85
	Mdef: 20
	Stats: {
		Str: 52
		Agi: 72
		Vit: 35
		Int: 20
		Dex: 66
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 250
	AttackDelay: 1156
	AttackMotion: 456
	DamageMotion: 384
	Drops: {
		Dokkaebi_Horn: 9000
		Elunium_Stone: 150
		Sword_Mace_: 2
		Mighty_Staff: 1
		Gold: 1
		Club: 300
		Hammer_Of_Blacksmith: 5
		Dokebi_Card: 1
	}
},
{
	Id: 2852
	SpriteName: "C5_DISGUISE"
	Name: "Elusive Disguise"
	Lv: 103
	Hp: 69475
	Sp: 1
	Exp: 6695
	JExp: 15060
	AttackRange: 2
	Attack: [519, 162]
	Def: 85
	Mdef: 58
	Stats: {
		Str: 92
		Agi: 53
		Vit: 57
		Int: 75
		Dex: 80
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Earth", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 147
	AttackDelay: 516
	AttackMotion: 768
	DamageMotion: 384
	Drops: {
		Red_Scarf: 4850
		Tangled_Chain: 3686
		White_Powder: 100
		Honey: 100
		Ragamuffin_Cape: 50
		Muffler_: 2
		Rider_Insignia: 5
		Disguise_Card: 1
	}
},
{
	Id: 2853
	SpriteName: "C1_DIMIK_1"
	Name: "Swift Dimik"
	Lv: 116
	Hp: 87760
	Sp: 1
	Exp: 9475
	JExp: 23265
	AttackRange: 7
	Attack: [1782, 777]
	Def: 93
	Mdef: 28
	Stats: {
		Str: 114
		Agi: 90
		Vit: 66
		Int: 52
		Dex: 201
		Luk: 41
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 576
	AttackMotion: 720
	DamageMotion: 432
	Drops: {
		Old_Steel_Plate: 2000
		Transparent_Plate01: 50
		Oil_Bottle: 70
		Mystery_Piece: 300
		Dusk: 5
		Oridecon: 10
		Imperial_Cooking_Kits: 50
		Dimik_Card: 1
	}
},
{
	Id: 2854
	SpriteName: "C2_DEVIRUCHI"
	Name: "Solid Deviruchi"
	Lv: 93
	Hp: 89120
	Sp: 1
	Exp: 5415
	JExp: 16245
	AttackRange: 1
	Attack: [611, 229]
	Def: 72
	Mdef: 16
	Stats: {
		Str: 61
		Agi: 49
		Vit: 30
		Int: 85
		Dex: 119
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 980
	AttackMotion: 600
	DamageMotion: 384
	Drops: {
		Petite_DiablOfs_Horn: 5335
		Petite_DiablOfs_Wing: 400
		Oridecon: 2
		Partizan_: 2
		Sacred_Marks: 5
		Zargon: 1500
		Oridecon_Stone: 154
		Deviruchi_Card: 1
	}
},
{
	Id: 2855
	SpriteName: "C3_DESERT_WOLF_B"
	Name: "Baby Desert Wolf Ringleader"
	Lv: 14
	Hp: 700
	Sp: 1
	Exp: 225
	JExp: 510
	AttackRange: 1
	Attack: [55, 15]
	Def: 13
	Mdef: 0
	Stats: {
		Str: 10
		Agi: 12
		Vit: 8
		Int: 5
		Dex: 17
		Luk: 7
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 300
	AttackDelay: 1600
	AttackMotion: 900
	DamageMotion: 240
	Drops: {
		Phracon: 85
		Animals_Skin: 5500
		Adventureres_Suit_: 80
		Wing_Of_Fly: 200
		Cotton_Shirt: 200
		Asura_: 5
		Orange: 1000
		Desert_Wolf_Babe_Card: 1
	}
},
{
	Id: 2856
	SpriteName: "C4_DESERT_WOLF_B"
	Name: "Furious Baby Desert Wolf"
	Lv: 14
	Hp: 700
	Sp: 1
	Exp: 225
	JExp: 510
	AttackRange: 1
	Attack: [54, 15]
	Def: 13
	Mdef: 0
	Stats: {
		Str: 10
		Agi: 15
		Vit: 8
		Int: 5
		Dex: 17
		Luk: 7
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 300
	AttackDelay: 1600
	AttackMotion: 900
	DamageMotion: 240
	Drops: {
		Phracon: 85
		Animals_Skin: 5500
		Adventureres_Suit_: 80
		Wing_Of_Fly: 200
		Cotton_Shirt: 200
		Asura_: 5
		Orange: 1000
		Desert_Wolf_Babe_Card: 1
	}
},
{
	Id: 2857
	SpriteName: "C5_DENIRO"
	Name: "Elusive Deniro"
	Lv: 31
	Hp: 3355
	Sp: 1
	Exp: 515
	JExp: 1740
	AttackRange: 1
	Attack: [89, 21]
	Def: 52
	Mdef: 16
	Stats: {
		Str: 15
		Agi: 16
		Vit: 30
		Int: 10
		Dex: 23
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 150
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 576
	Drops: {
		Worm_Peelings: 9000
		Garlet: 3000
		Sticky_Mucus: 1200
		Boody_Red: 50
		Wing_Of_Fly: 8
		Iron_Ore: 450
		Elunium_Stone: 34
		Andre_Card: 1
	}
},
{
	Id: 2858
	SpriteName: "C1_DEATHWORD"
	Name: "Swift Death Word"
	Lv: 114
	Hp: 81950
	Sp: 1
	Exp: 8335
	JExp: 17295
	AttackRange: 1
	Attack: [1005, 400]
	Def: 68
	Mdef: 40
	Stats: {
		Str: 91
		Agi: 64
		Vit: 53
		Int: 88
		Dex: 139
		Luk: 54
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 176
	AttackMotion: 912
	DamageMotion: 300
	Drops: {
		Worn_Out_Page: 4000
		Bookclip_In_Memory: 300
		Legend_Of_Kafra01: 50
		Bloody_Page: 500
		Vidars_Boots: 10
		Cookbook08: 2
		Cookbook09: 1
		Deathword_Card: 1
	}
},
{
	Id: 2859
	SpriteName: "C2_DEATHWORD"
	Name: "Solid Death Word"
	Lv: 114
	Hp: 163900
	Sp: 1
	Exp: 8335
	JExp: 17295
	AttackRange: 1
	Attack: [1005, 400]
	Def: 68
	Mdef: 40
	Stats: {
		Str: 91
		Agi: 64
		Vit: 53
		Int: 88
		Dex: 139
		Luk: 54
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 176
	AttackMotion: 912
	DamageMotion: 300
	Drops: {
		Worn_Out_Page: 4000
		Bookclip_In_Memory: 300
		Legend_Of_Kafra01: 50
		Bloody_Page: 500
		Vidars_Boots: 10
		Cookbook08: 2
		Cookbook09: 1
		Deathword_Card: 1
	}
},
{
	Id: 2860
	SpriteName: "C3_DEATHWORD"
	Name: "Death Word Ringleader"
	Lv: 114
	Hp: 81950
	Sp: 1
	Exp: 8335
	JExp: 17295
	AttackRange: 1
	Attack: [1005, 400]
	Def: 68
	Mdef: 40
	Stats: {
		Str: 91
		Agi: 64
		Vit: 53
		Int: 88
		Dex: 139
		Luk: 54
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 176
	AttackMotion: 912
	DamageMotion: 300
	Drops: {
		Worn_Out_Page: 4000
		Bookclip_In_Memory: 300
		Legend_Of_Kafra01: 50
		Bloody_Page: 500
		Vidars_Boots: 10
		Cookbook08: 2
		Cookbook09: 1
		Deathword_Card: 1
	}
},
{
	Id: 2861
	SpriteName: "C4_DARK_PRIEST"
	Name: "Furious Dark Priest"
	Lv: 98
	Hp: 60450
	Sp: 1
	Exp: 7290
	JExp: 12495
	AttackRange: 2
	Attack: [546, 221]
	Def: 56
	Mdef: 30
	Stats: {
		Str: 5
		Agi: 78
		Vit: 41
		Int: 89
		Dex: 94
		Luk: 42
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		Boss: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 864
	AttackMotion: 1252
	DamageMotion: 476
	Drops: {
		Book_Of_The_Apocalypse: 5
		Rosary: 30
		Blue_Potion: 100
		Red_Gemstone: 450
		Sacred_Marks: 1
		Glittering_Clothes: 5
		Skull: 3000
		Dark_Priest_Card: 1
	}
},
{
	Id: 2862
	SpriteName: "C5_DANCING_DRAGON"
	Name: "Elusive Zhu Po Long"
	Lv: 82
	Hp: 19715
	Sp: 1
	Exp: 2670
	JExp: 8205
	AttackRange: 2
	Attack: [424, 141]
	Def: 83
	Mdef: 36
	Stats: {
		Str: 59
		Agi: 76
		Vit: 40
		Int: 30
		Dex: 73
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Dragon"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 160
	AttackDelay: 600
	AttackMotion: 840
	DamageMotion: 504
	Drops: {
		Dragon_Fang: 4365
		Dragon_Horn: 3000
		Little_Blacky_Ghost: 800
		Dragon_Scale: 1000
		Yarn: 3000
		Dancing_Dragon_Card: 1
	}
},
{
	Id: 2863
	SpriteName: "C1_CREAMY"
	Name: "Swift Creamy"
	Lv: 23
	Hp: 1890
	Sp: 1
	Exp: 360
	JExp: 1215
	AttackRange: 1
	Attack: [97, 29]
	Def: 28
	Mdef: 20
	Stats: {
		Str: 16
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 1
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 150
	AttackDelay: 1136
	AttackMotion: 720
	DamageMotion: 840
	Drops: {
		Powder_Of_Butterfly: 9000
		Silk_Robe_: 10
		Honey: 150
		Wing_Of_Fly: 100
		Fancy_Flower: 2
		Flower: 500
		Wind_Scroll_1_3: 100
		Creamy_Card: 1
	}
},
{
	Id: 2864
	SpriteName: "C2_CORNUTUS"
	Name: "Solid Cornutus"
	Lv: 48
	Hp: 14500
	Sp: 1
	Exp: 920
	JExp: 3105
	AttackRange: 1
	Attack: [155, 37]
	Def: 42
	Mdef: 28
	Stats: {
		Str: 32
		Agi: 27
		Vit: 45
		Int: 26
		Dex: 27
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Fish"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1248
	AttackMotion: 48
	DamageMotion: 480
	Drops: {
		Crystal_Blue: 45
		Conch: 5500
		Scell: 800
		Elunium_Stone: 53
		Shield_: 5
		Solid_Shell: 1000
		Wing_Of_Fly: 100
		Cornutus_Card: 1
	}
},
{
	Id: 2865
	SpriteName: "C3_COOKIE"
	Name: "Cookie Ringleader"
	Lv: 35
	Hp: 3330
	Sp: 1
	Exp: 585
	JExp: 1980
	AttackRange: 1
	Attack: [106, 28]
	Def: 56
	Mdef: 28
	Stats: {
		Str: 15
		Agi: 23
		Vit: 35
		Int: 12
		Dex: 31
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 200
	AttackDelay: 1036
	AttackMotion: 936
	DamageMotion: 240
	Drops: {
		Well_Baked_Cookie: 1000
		Candy_Striper: 150
		Wing_Of_Fly: 5
		Great_Chef_Orleans01: 50
		Sandals_: 30
		Holy_Scroll_1_3: 100
		Candy: 320
		Cookie_Card: 1
	}
},
{
	Id: 2866
	SpriteName: "C4_CONSTANT"
	Name: "Furious Constant"
	Lv: 108
	Hp: 60250
	Sp: 1
	Exp: 7515
	JExp: 16890
	AttackRange: 1
	Attack: [1056, 411]
	Def: 92
	Mdef: 82
	Stats: {
		Str: 126
		Agi: 127
		Vit: 62
		Int: 57
		Dex: 109
		Luk: 34
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 720
	AttackMotion: 360
	DamageMotion: 360
	Drops: {
		Burnt_Parts: 100
		Sturdy_Iron_Piece: 1500
		Tube: 10
		Steel: 10
		Elunium_Stone: 10
	}
},
{
	Id: 2867
	SpriteName: "C5_COMODO"
	Name: "Elusive Comodo"
	Lv: 81
	Hp: 20010
	Sp: 1
	Exp: 2945
	JExp: 11100
	AttackRange: 2
	Attack: [555, 205]
	Def: 92
	Mdef: 11
	Stats: {
		Str: 65
		Agi: 52
		Vit: 35
		Int: 20
		Dex: 94
		Luk: 48
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Poison", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 432
	AttackMotion: 432
	DamageMotion: 360
	Drops: {
		Comodo_L: 2500
		Meat: 4500
		Scell: 4500
		Spawn: 2500
		Comodo_Card: 1
	}
},
{
	Id: 2868
	SpriteName: "C1_COCO"
	Name: "Swift Coco"
	Lv: 38
	Hp: 4180
	Sp: 1
	Exp: 675
	JExp: 2280
	AttackRange: 1
	Attack: [128, 34]
	Def: 37
	Mdef: 0
	Stats: {
		Str: 22
		Agi: 13
		Vit: 30
		Int: 20
		Dex: 38
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 1864
	AttackMotion: 864
	DamageMotion: 1008
	Drops: {
		Acorn: 9000
		Fluff: 10000
		Animals_Skin: 10000
		Sweet_Potato: 10000
		Wing_Of_Fly: 10000
		Sandals_: 25
		Hood_: 600
		Coco_Card: 1
	}
},
{
	Id: 2869
	SpriteName: "C2_COCO"
	Name: "Solid Coco"
	Lv: 38
	Hp: 8360
	Sp: 1
	Exp: 675
	JExp: 2280
	AttackRange: 1
	Attack: [128, 34]
	Def: 37
	Mdef: 0
	Stats: {
		Str: 22
		Agi: 13
		Vit: 30
		Int: 20
		Dex: 38
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 1864
	AttackMotion: 864
	DamageMotion: 1008
	Drops: {
		Fluff: 3333
		Animals_Skin: 3333
		Acorn: 10000
		Wing_Of_Fly: 2500
		Sweet_Potato: 500
		Sandals_: 25
		Hood_: 600
		Coco_Card: 1
	}
},
{
	Id: 2870
	SpriteName: "C3_CLOCK"
	Name: "Clock Ringleader"
	Lv: 81
	Hp: 27780
	Sp: 1
	Exp: 3385
	JExp: 8685
	AttackRange: 1
	Attack: [573, 213]
	Def: 91
	Mdef: 43
	Stats: {
		Str: 68
		Agi: 24
		Vit: 35
		Int: 41
		Dex: 97
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1092
	AttackMotion: 792
	DamageMotion: 480
	Drops: {
		Needle_Of_Alarm: 5335
		Wooden_Block: 800
		White_Herb: 1900
		Lemon: 320
		Key_Of_Clock_Tower: 30
		Underground_Key: 30
		Elunium: 163
		Clock_Card: 1
	}
},
{
	Id: 2871
	SpriteName: "C4_CLOCK"
	Name: "Furious Clock"
	Lv: 81
	Hp: 27780
	Sp: 1
	Exp: 3385
	JExp: 8685
	AttackRange: 1
	Attack: [573, 212]
	Def: 91
	Mdef: 43
	Stats: {
		Str: 68
		Agi: 31
		Vit: 35
		Int: 41
		Dex: 97
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1092
	AttackMotion: 792
	DamageMotion: 480
	Drops: {
		Needle_Of_Alarm: 5335
		Wooden_Block: 800
		White_Herb: 1900
		Lemon: 320
		Key_Of_Clock_Tower: 30
		Underground_Key: 30
		Elunium: 163
		Clock_Card: 1
	}
},
{
	Id: 2872
	SpriteName: "C5_CHONCHON"
	Name: "Elusive Chonchon"
	Lv: 5
	Hp: 285
	Sp: 1
	Exp: 110
	JExp: 270
	AttackRange: 1
	Attack: [28, 5]
	Def: 27
	Mdef: 0
	Stats: {
		Str: 13
		Agi: 4
		Vit: 4
		Int: 0
		Dex: 8
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 200
	AttackDelay: 1076
	AttackMotion: 576
	DamageMotion: 480
	Drops: {
		Jellopy: 10000
		Wing_Of_Fly: 10000
		Shell: 1500
		Cutter_: 55
		Iron: 100
		Chonchon_Doll: 5
		Iron_Ore: 150
		Chonchon_Card: 1
	}
},
{
	Id: 2873
	SpriteName: "C1_CENTIPEDE"
	Name: "Swift Centipede"
	Lv: 125
	Hp: 124960
	Sp: 1
	Exp: 10400
	JExp: 24390
	AttackRange: 2
	Attack: [1065, 403]
	Def: 143
	Mdef: 25
	Stats: {
		Str: 133
		Agi: 71
		Vit: 69
		Int: 39
		Dex: 120
		Luk: 49
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Poison", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1000
	AttackMotion: 792
	DamageMotion: 336
	Drops: {
		Cold_Heart: 2
		Black_Cat: 2
		Cursed_Lyre: 10
		Short_Leg: 5335
		Zargon: 5000
		Bradium: 10
		Solid_Shell: 2500
		Centipede_Card: 1
	}
},
{
	Id: 2874
	SpriteName: "C2_CENERE"
	Name: "Solid Cenere"
	Lv: 146
	Hp: 1301310
	Sp: 1
	Exp: 35585
	JExp: 102810
	AttackRange: 1
	Attack: [1942, 865]
	Def: 87
	Mdef: 81
	Stats: {
		Str: 67
		Agi: 39
		Vit: 30
		Int: 35
		Dex: 95
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1500
	AttackMotion: 720
	DamageMotion: 360
	Drops: {
		Dustball: 2000
		Poisonous_Gas: 500
		Mould_Powder: 1500
		Air_Pollutant: 1000
		Cenere_Card: 1
	}
},
{
	Id: 2875
	SpriteName: "C3_CELIA"
	Name: "Celia Ringleader"
	Lv: 141
	Hp: 1265730
	Sp: 1
	Exp: 110535
	JExp: 342300
	AttackRange: 1
	Attack: [1824, 773]
	Def: 74
	Mdef: 312
	Stats: {
		Str: 136
		Agi: 99
		Vit: 61
		Int: 121
		Dex: 121
		Luk: 49
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1152
	AttackMotion: 384
	DamageMotion: 288
	Drops: {
		Armlet_Of_Prisoner: 2000
		Goast_Chill: 1
		Telekinetic_Orb: 20
		Elunium: 100
		Creeper_Bow: 10
		Mental_Stick: 1
		Blood_Thirst: 150
		Ceila_Card: 1
	}
},
{
	Id: 2876
	SpriteName: "C4_CATERPILLAR"
	Name: "Furious Caterpillar"
	Lv: 121
	Hp: 128280
	Sp: 1
	Exp: 9750
	JExp: 29700
	AttackRange: 1
	Attack: [1145, 483]
	Def: 100
	Mdef: 42
	Stats: {
		Str: 58
		Agi: 48
		Vit: 51
		Int: 50
		Dex: 54
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Feather: 3000
		Brigan: 5335
		Twilight_Desert: 20
		Star_Crumb: 100
		Great_Nature: 50
		Old_Blue_Box: 12
		Glove_Of_Shura: 500
		Caterpillar_Card: 1
	}
},
{
	Id: 2877
	SpriteName: "C5_CARAT"
	Name: "Elusive Carat"
	Lv: 103
	Hp: 46110
	Sp: 1
	Exp: 5830
	JExp: 13110
	AttackRange: 1
	Attack: [950, 373]
	Def: 111
	Mdef: 67
	Stats: {
		Str: 102
		Agi: 64
		Vit: 60
		Int: 40
		Dex: 80
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1078
	AttackMotion: 768
	DamageMotion: 384
	Drops: {
		Brigan: 3200
		Ice_Cream: 1000
		Spiky_Heel: 5
		Joker_Jester: 1
		White_Herb: 1450
		Carat_Card: 1
	}
},
{
	Id: 2878
	SpriteName: "C1_CARAMEL"
	Name: "Swift Caramel"
	Lv: 25
	Hp: 2590
	Sp: 1
	Exp: 405
	JExp: 1365
	AttackRange: 1
	Attack: [108, 32]
	Def: 39
	Mdef: 0
	Stats: {
		Str: 19
		Agi: 10
		Vit: 15
		Int: 10
		Dex: 32
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1604
	AttackMotion: 840
	DamageMotion: 756
	Drops: {
		Porcupine_Spike: 9000
		Coat_: 5
		Animals_Skin: 5500
		Glaive_: 10
		Spear_: 15
		Pike_: 20
		Caramel_Card: 1
	}
},
{
	Id: 2879
	SpriteName: "C2_BUNGISNGIS"
	Name: "Solid Bungisngis"
	Lv: 121
	Hp: 255130
	Sp: 1
	Exp: 9700
	JExp: 29700
	AttackRange: 1
	Attack: [1008, 409]
	Def: 115
	Mdef: 35
	Stats: {
		Str: 71
		Agi: 32
		Vit: 61
		Int: 30
		Dex: 74
		Luk: 19
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1568
	AttackMotion: 432
	DamageMotion: 360
	Drops: {
		Brigan: 1000
		Beautiful_Flower: 1000
		Elunium: 10
		Insideout_Shirt: 100
		Bungisngis_Card: 1
	}
},
{
	Id: 2880
	SpriteName: "C3_BREEZE"
	Name: "Breeze Ringleader"
	Lv: 92
	Hp: 33775
	Sp: 1
	Exp: 4795
	JExp: 13470
	AttackRange: 2
	Attack: [639, 237]
	Def: 83
	Mdef: 32
	Stats: {
		Str: 75
		Agi: 101
		Vit: 46
		Int: 35
		Dex: 79
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 140
	AttackMotion: 384
	DamageMotion: 504
	Drops: {
		Raccoon_Leaf: 500
		Four_Leaf_Clover: 10
		Centimental_Leaf: 10
		Gust_Bow: 10
		Branch_Of_Dead_Tree: 10
		Centimental_Flower: 10
		Rough_Wind: 10
		Breeze_Card: 1
	}
},
{
	Id: 2881
	SpriteName: "C4_BREEZE"
	Name: "Furious Breeze"
	Lv: 92
	Hp: 33775
	Sp: 1
	Exp: 4795
	JExp: 13470
	AttackRange: 2
	Attack: [639, 236]
	Def: 83
	Mdef: 32
	Stats: {
		Str: 75
		Agi: 131
		Vit: 46
		Int: 35
		Dex: 79
		Luk: 55
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 140
	AttackMotion: 384
	DamageMotion: 504
	Drops: {
		Raccoon_Leaf: 500
		Four_Leaf_Clover: 10
		Centimental_Leaf: 10
		Gust_Bow: 10
		Branch_Of_Dead_Tree: 10
		Centimental_Flower: 10
		Rough_Wind: 10
		Breeze_Card: 1
	}
},
{
	Id: 2882
	SpriteName: "C5_BRADIUM_GOLEM"
	Name: "Elusive Bradium Golem"
	Lv: 133
	Hp: 228695
	Sp: 1
	Exp: 21295
	JExp: 32340
	AttackRange: 1
	Attack: [1576, 627]
	Def: 559
	Mdef: 12
	Stats: {
		Str: 189
		Agi: 25
		Vit: 125
		Int: 45
		Dex: 104
		Luk: 33
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1008
	AttackMotion: 1200
	DamageMotion: 540
	Drops: {
		Stone_Piece: 3000
		Stone_Heart: 5000
		Purified_Bradium: 500
		Bradium_Shield: 10
		Runstone_Rare: 10
		Bradium: 500
		Bradium_Goram_Card: 1
	}
},
{
	Id: 2883
	SpriteName: "C1_BLOOD_BUTTERFLY"
	Name: "Swift Bloody Butterfly"
	Lv: 94
	Hp: 35150
	Sp: 1
	Exp: 4665
	JExp: 13110
	AttackRange: 3
	Attack: [510, 173]
	Def: 79
	Mdef: 50
	Stats: {
		Str: 70
		Agi: 68
		Vit: 40
		Int: 55
		Dex: 108
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 145
	AttackDelay: 472
	AttackMotion: 576
	DamageMotion: 288
	Drops: {
		Sharp_Feeler: 4608
		Great_Wing: 2500
		Wing_Of_Butterfly: 1200
		Powder_Of_Butterfly: 5500
		Waghnakh_: 3
		Lariat: 1
		Blood_Butterfly_Card: 1
	}
},
{
	Id: 2884
	SpriteName: "C3_BIGFOOT"
	Name: "Bigfoot Ringleader"
	Lv: 29
	Hp: 2935
	Sp: 1
	Exp: 450
	JExp: 1515
	AttackRange: 1
	Attack: [95, 24]
	Def: 55
	Mdef: 7
	Stats: {
		Str: 18
		Agi: 4
		Vit: 7
		Int: 0
		Dex: 12
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1260
	AttackMotion: 192
	DamageMotion: 192
	Drops: {
		Bears_Foot: 9000
		Poo_Poo_Hat: 5
		Animals_Skin: 5000
		Wing_Of_Fly: 80
		Sweet_Potato: 1500
		Honey: 450
		Oridecon_Stone: 43
		BigFoot_Card: 1
	}
},
{
	Id: 2885
	SpriteName: "C4_BATHORY"
	Name: "Furious Bathory"
	Lv: 86
	Hp: 26210
	Sp: 1
	Exp: 3215
	JExp: 10230
	AttackRange: 1
	Attack: [393, 121]
	Def: 61
	Mdef: 89
	Stats: {
		Str: 66
		Agi: 49
		Vit: 40
		Int: 77
		Dex: 67
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1504
	AttackMotion: 840
	DamageMotion: 900
	Drops: {
		Sparkling_Dust: 200
		Starsand_Of_Witch: 4850
		Star_Sparkling: 3
		Arc_Wand_: 5
		Star_Crumb: 30
		Old_Magic_Book: 15
		Old_Broom: 20
		Bathory_Card: 1
	}
},
{
	Id: 2886
	SpriteName: "C5_BANSHEE_MASTER"
	Name: "Elusive Banshee Master"
	Lv: 118
	Hp: 101600
	Sp: 1
	Exp: 11055
	JExp: 22995
	AttackRange: 2
	Attack: [1043, 403]
	Def: 87
	Mdef: 94
	Stats: {
		Str: 121
		Agi: 58
		Vit: 48
		Int: 122
		Dex: 84
		Luk: 44
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 676
	AttackMotion: 504
	DamageMotion: 504
	Drops: {
		Old_White_Cloth: 3000
		Orleans_Gown: 10
		Cursed_Star: 2
		Wool_Scarf: 10
		Mementos: 1500
		Brigan: 5335
		Banshee_Master_Card: 1
	}
},
{
	Id: 2887
	SpriteName: "C1_BANSHEE"
	Name: "Swift Banshee"
	Lv: 130
	Hp: 243330
	Sp: 1
	Exp: 14690
	JExp: 31500
	AttackRange: 1
	Attack: [1199, 487]
	Def: 73
	Mdef: 96
	Stats: {
		Str: 97
		Agi: 71
		Vit: 55
		Int: 143
		Dex: 137
		Luk: 72
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 676
	AttackMotion: 504
	DamageMotion: 504
	Drops: {
		Old_White_Cloth: 3000
		Orleans_Gown: 10
		Scalpel: 10
		Wool_Scarf: 10
		Mementos: 1500
		Brigan: 5335
		Carnium: 1
		Banshee_Card: 1
	}
},
{
	Id: 2888
	SpriteName: "C2_BANASPATY"
	Name: "Solid Banaspaty"
	Lv: 85
	Hp: 46800
	Sp: 1
	Exp: 4025
	JExp: 8160
	AttackRange: 1
	Attack: [338, 96]
	Def: 63
	Mdef: 89
	Stats: {
		Str: 61
		Agi: 78
		Vit: 35
		Int: 77
		Dex: 79
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 220
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Coal: 500
		Zargon: 1000
		Elunium: 750
		Oridecon_Stone: 750
		Fire_Arrow: 250
		Banaspaty_Card: 1
	}
},
{
	Id: 2889
	SpriteName: "C3_ASSULTER"
	Name: "Assaulter Ringleader"
	Lv: 100
	Hp: 44885
	Sp: 1
	Exp: 5975
	JExp: 20490
	AttackRange: 2
	Attack: [801, 301]
	Def: 169
	Mdef: 49
	Stats: {
		Str: 100
		Agi: 92
		Vit: 30
		Int: 20
		Dex: 144
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 512
	AttackMotion: 780
	DamageMotion: 504
	Drops: {
		Turtle_Shell: 4413
		Broken_Armor_Piece: 1200
		Rust_Suriken: 840
		Smoke_Powder: 200
		Zargon: 1240
		Huuma_Bird_Wing: 5
		Old_Blue_Box: 1
		Assulter_Card: 1
	}
},
{
	Id: 2890
	SpriteName: "C4_ARGOS"
	Name: "Furious Argos"
	Lv: 47
	Hp: 5025
	Sp: 1
	Exp: 900
	JExp: 3030
	AttackRange: 1
	Attack: [176, 45]
	Def: 58
	Mdef: 8
	Stats: {
		Str: 38
		Agi: 22
		Vit: 25
		Int: 5
		Dex: 26
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 512
	AttackMotion: 780
	DamageMotion: 504
	Drops: {
		Spiderweb: 9000
		Scell: 1200
		Short_Leg: 500
		Elunium_Stone: 61
		Green_Herb: 670
		Wing_Of_Fly: 250
		Bark_Shorts: 15
		Argos_Card: 1
	}
},
{
	Id: 2891
	SpriteName: "C5_ARGIOPE"
	Name: "Elusive Argiope"
	Lv: 75
	Hp: 15525
	Sp: 1
	Exp: 2225
	JExp: 6840
	AttackRange: 1
	Attack: [443, 154]
	Def: 88
	Mdef: 32
	Stats: {
		Str: 60
		Agi: 23
		Vit: 40
		Int: 30
		Dex: 24
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1792
	AttackMotion: 792
	DamageMotion: 336
	Drops: {
		Short_Leg: 5335
		Zargon: 1200
		Elunium_Stone: 175
		Boots_: 5
		Green_Herb: 1500
		Violet_Jewel: 10
		Argiope_Card: 1
	}
},
{
	Id: 2892
	SpriteName: "C1_ARGIOPE"
	Name: "Swift Argiope"
	Lv: 75
	Hp: 15525
	Sp: 1
	Exp: 2225
	JExp: 6840
	AttackRange: 1
	Attack: [443, 154]
	Def: 88
	Mdef: 32
	Stats: {
		Str: 60
		Agi: 23
		Vit: 40
		Int: 30
		Dex: 24
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1792
	AttackMotion: 792
	DamageMotion: 336
	Drops: {
		Short_Leg: 5335
		Zargon: 1200
		Elunium_Stone: 175
		Boots_: 5
		Green_Herb: 1500
		Violet_Jewel: 10
		Argiope_Card: 1
	}
},
{
	Id: 2893
	SpriteName: "C2_ARCLOUSE"
	Name: "Solid Arclouze"
	Lv: 107
	Hp: 100200
	Sp: 1
	Exp: 5530
	JExp: 23445
	AttackRange: 1
	Attack: [503, 168]
	Def: 101
	Mdef: 36
	Stats: {
		Str: 60
		Agi: 73
		Vit: 45
		Int: 35
		Dex: 168
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1840
	AttackMotion: 1440
	DamageMotion: 384
	Drops: {
		Round_Shell: 3500
		Sticky_Mucus: 3000
		Solid_Shell: 800
		Zargon: 450
		Red_Gemstone: 300
		Great_Nature: 20
		Zargon: 2500
		Arclouse_Card: 1
	}
},
{
	Id: 2894
	SpriteName: "C3_ARCLOUSE"
	Name: "Arclouze Ringleader"
	Lv: 107
	Hp: 50100
	Sp: 1
	Exp: 5530
	JExp: 23445
	AttackRange: 1
	Attack: [503, 168]
	Def: 101
	Mdef: 36
	Stats: {
		Str: 60
		Agi: 73
		Vit: 45
		Int: 35
		Dex: 168
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1840
	AttackMotion: 1440
	DamageMotion: 384
	Drops: {
		Round_Shell: 3500
		Sticky_Mucus: 3000
		Solid_Shell: 800
		Zargon: 450
		Red_Gemstone: 300
		Great_Nature: 20
		Zargon: 2500
		Arclouse_Card: 1
	}
},
{
	Id: 2895
	SpriteName: "C4_APOCALIPS"
	Name: "Furious Apocalypse"
	Lv: 121
	Hp: 110450
	Sp: 1
	Exp: 9885
	JExp: 20535
	AttackRange: 2
	Attack: [1260, 505]
	Def: 136
	Mdef: 26
	Stats: {
		Str: 130
		Agi: 68
		Vit: 76
		Int: 25
		Dex: 125
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1840
	AttackMotion: 1440
	DamageMotion: 384
	Drops: {
		Broken_Steel_Piece: 5335
		Mystery_Piece: 2400
		Wheel: 2200
		Elunium: 5
		Destroyer_: 1
		Manteau_: 20
		Runstone_Ancient: 100
		Apocalips_Card: 1
	}
},
{
	Id: 2896
	SpriteName: "C5_ANTLER_SCARABA"
	Name: "Elusive Antler Scaraba"
	Lv: 136
	Hp: 313000
	Sp: 1
	Exp: 15825
	JExp: 47280
	AttackRange: 1
	Attack: [1519, 681]
	Def: 155
	Mdef: 102
	Stats: {
		Str: 23
		Agi: 99
		Vit: 59
		Int: 129
		Dex: 137
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 504
	AttackMotion: 624
	DamageMotion: 360
	Drops: {
		Antler_Helm: 6500
		Green_Whistle: 1
		Runstone_Ancient: 10
		Elder_Branch: 10
		Yellow_Live: 1
		Scaraba_Card: 1
	}
},
{
	Id: 2897
	SpriteName: "C1_ANTIQUE_BOOK"
	Name: "Swift Antique Book"
	Lv: 148
	Hp: 673075
	Sp: 1
	Exp: 36125
	JExp: 105660
	AttackRange: 1
	Attack: [2001, 893]
	Def: 74
	Mdef: 42
	Stats: {
		Str: 67
		Agi: 53
		Vit: 32
		Int: 44
		Dex: 125
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 864
	AttackMotion: 960
	DamageMotion: 480
	Drops: {
		Leaf_Bookmark: 2000
		Bookclip_In_Memory: 1000
		Worn_Out_Page: 1000
		AntiqueBook_Card: 1
	}
},
{
	Id: 2898
	SpriteName: "C2_ANTIQUE_BOOK"
	Name: "Solid Antique Book"
	Lv: 148
	Hp: 1346150
	Sp: 1
	Exp: 36125
	JExp: 105660
	AttackRange: 1
	Attack: [2001, 893]
	Def: 74
	Mdef: 42
	Stats: {
		Str: 67
		Agi: 53
		Vit: 32
		Int: 44
		Dex: 125
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 864
	AttackMotion: 960
	DamageMotion: 480
	Drops: {
		Leaf_Bookmark: 2000
		Bookclip_In_Memory: 1000
		Worn_Out_Page: 1000
		AntiqueBook_Card: 1
	}
},
{
	Id: 2899
	SpriteName: "C4_ANOLIAN"
	Name: "Furious Anolian"
	Lv: 109
	Hp: 77735
	Sp: 1
	Exp: 8790
	JExp: 19995
	AttackRange: 1
	Attack: [863, 312]
	Def: 61
	Mdef: 11
	Stats: {
		Str: 130
		Agi: 81
		Vit: 55
		Int: 66
		Dex: 70
		Luk: 48
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Fish"
	Element: ("Ele_Water", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 190
	AttackDelay: 900
	AttackMotion: 500
	DamageMotion: 864
	Drops: {
		Anolian_Skin: 4850
		Crystal_Arrow: 2000
		Royal_Jelly: 5
		Red_Muffler: 10
		Carga_Mace: 1
		Brooch_: 1
		Oridecon: 134
		Anolian_Card: 1
	}
},
{
	Id: 2900
	SpriteName: "C5_ANGRA_MANTIS"
	Name: "Elusive Angra Mantis"
	Lv: 144
	Hp: 458600
	Sp: 1
	Exp: 25315
	JExp: 63180
	AttackRange: 1
	Attack: [1099, 417]
	Def: 175
	Mdef: 81
	Stats: {
		Str: 122
		Agi: 155
		Vit: 119
		Int: 81
		Dex: 198
		Luk: 79
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 576
	AttackMotion: 480
	DamageMotion: 480
	Drops: {
		Withered_Flower: 5000
		Soft_Leaf: 1000
		Great_Nature: 10
		Sura_Rampage: 5
		Angra_Mantis_Card: 1
	}
},
{
	Id: 2901
	SpriteName: "C1_ANGRA_MANTIS"
	Name: "Swift Angra Mantis"
	Lv: 144
	Hp: 458600
	Sp: 1
	Exp: 25315
	JExp: 63180
	AttackRange: 1
	Attack: [1099, 417]
	Def: 175
	Mdef: 81
	Stats: {
		Str: 122
		Agi: 155
		Vit: 119
		Int: 81
		Dex: 198
		Luk: 79
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 576
	AttackMotion: 480
	DamageMotion: 480
	Drops: {
		Withered_Flower: 5000
		Soft_Leaf: 1000
		Great_Nature: 10
		Sura_Rampage: 5
		Angra_Mantis_Card: 1
	}
},
{
	Id: 2902
	SpriteName: "C2_ANDRE"
	Name: "Solid Andre"
	Lv: 33
	Hp: 7240
	Sp: 1
	Exp: 540
	JExp: 1815
	AttackRange: 1
	Attack: [92, 25]
	Def: 55
	Mdef: 16
	Stats: {
		Str: 11
		Agi: 20
		Vit: 40
		Int: 10
		Dex: 24
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Insect"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
	}
	MoveSpeed: 300
	AttackDelay: 1288
	AttackMotion: 288
	DamageMotion: 384
	Drops: {
		Worm_Peelings: 9000
		Garlet: 1000
		Sticky_Mucus: 500
		Yellow_Live: 50
		Wing_Of_Fly: 4
		Iron_Ore: 350
		Elunium_Stone: 28
		Andre_Card: 1
	}
},
{
	Id: 2903
	SpriteName: "C3_ANCIENT_MIMIC"
	Name: "Ancient Mimic Ringleader"
	Lv: 112
	Hp: 73500
	Sp: 1
	Exp: 7955
	JExp: 18600
	AttackRange: 1
	Attack: [1153, 460]
	Def: 100
	Mdef: 40
	Stats: {
		Str: 121
		Agi: 70
		Vit: 63
		Int: 43
		Dex: 141
		Luk: 67
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 168
	AttackMotion: 480
	DamageMotion: 360
	Drops: {
		Old_Blue_Box: 30
		Old_Violet_Box: 1
		Gift_Box: 50
		Shoes_: 5
		Manteau_: 1
		Fricco_Shoes: 10
		Gold_Ring: 100
		Ancient_Mimic_Card: 1
	}
},
{
	Id: 2904
	SpriteName: "C4_ANACONDAQ"
	Name: "Furious Anacondaq"
	Lv: 100
	Hp: 42550
	Sp: 1
	Exp: 4805
	JExp: 10815
	AttackRange: 1
	Attack: [662, 241]
	Def: 92
	Mdef: 0
	Stats: {
		Str: 79
		Agi: 59
		Vit: 28
		Int: 43
		Dex: 67
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1576
	AttackMotion: 576
	DamageMotion: 576
	Drops: {
		White_Powder: 200
		Posionous_Canine: 9000
		Glaive_: 10
		Scale_Of_Snakes: 1500
		Scales_Shell: 200
		Yellow_Herb: 150
		Oridecon_Stone: 50
		Anacondaq_Card: 1
	}
},
{
	Id: 2905
	SpriteName: "C5_AMBERNITE"
	Name: "Elusive Ambernite"
	Lv: 19
	Hp: 1700
	Sp: 1
	Exp: 290
	JExp: 645
	AttackRange: 1
	Attack: [59, 13]
	Def: 28
	Mdef: 0
	Stats: {
		Str: 16
		Agi: 20
		Vit: 11
		Int: 10
		Dex: 21
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Insect"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
	}
	MoveSpeed: 400
	AttackDelay: 2048
	AttackMotion: 648
	DamageMotion: 648
	Drops: {
		Crystal_Blue: 50
		Snails_Shell: 9000
		Garlet: 1200
		Shell: 3000
		Wing_Of_Fly: 2
		Elunium_Stone: 14
		Iron_Ore: 150
		Ambernite_Card: 1
	}
},
{
	Id: 2906
	SpriteName: "C1_ALNOLDI"
	Name: "Swift Rafflesia Arnoldi"
	Lv: 80
	Hp: 25745
	Sp: 1
	Exp: 3680
	JExp: 9600
	AttackRange: 2
	Attack: [482, 181]
	Def: 80
	Mdef: 20
	Stats: {
		Str: 40
		Agi: 32
		Vit: 24
		Int: 61
		Dex: 85
		Luk: 30
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 768
	AttackMotion: 768
	DamageMotion: 576
	Drops: {
		Clover: 125
		Leaflet_Of_Hinal: 213
		Stem: 2250
		Shoot: 150
		Leaflet_Of_Aloe: 125
		Centimental_Flower: 50
		Alnoldi_Card: 1
	}
},
{
	Id: 2907
	SpriteName: "C2_ALLIGATOR"
	Name: "Solid Alligator"
	Lv: 57
	Hp: 24300
	Sp: 24300
	Exp: 1275
	JExp: 4110
	AttackRange: 1
	Attack: [255, 75]
	Def: 62
	Mdef: 30
	Stats: {
		Str: 47
		Agi: 48
		Vit: 24
		Int: 15
		Dex: 40
		Luk: 26
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Brute"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1100
	AttackMotion: 900
	DamageMotion: 480
	Drops: {
		Zargon: 1000
		Worn_Out_Prison_Uniform: 600
		Anolian_Skin: 2000
		Seed_Of_Yggdrasil: 50
		Oridecon_Stone: 129
		Alligator_Card: 1
	}
},
{
	Id: 2908
	SpriteName: "C3_ALIZA"
	Name: "Aliza Ringleader"
	Lv: 112
	Hp: 72250
	Sp: 72250
	Exp: 6120
	JExp: 16515
	AttackRange: 1
	Attack: [1033, 403]
	Def: 98
	Mdef: 5
	Stats: {
		Str: 115
		Agi: 50
		Vit: 51
		Int: 62
		Dex: 88
		Luk: 54
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 220
	AttackDelay: 1440
	AttackMotion: 576
	DamageMotion: 600
	Drops: {
		Brigan: 4000
		Morpheuss_Shawl: 10
		Rosary_: 10
		Alices_Apron: 5
		Imperial_Cooking_Kits: 50
		Sway_Apron: 1
		Orleans_Server: 5
		Aliza_Card: 1
	}
},
{
	Id: 2909
	SpriteName: "C4_ALICEL"
	Name: "Furious Alicel"
	Lv: 115
	Hp: 90000
	Sp: 90000
	Exp: 8335
	JExp: 35295
	AttackRange: 2
	Attack: [1149, 457]
	Def: 109
	Mdef: 30
	Stats: {
		Str: 121
		Agi: 68
		Vit: 59
		Int: 63
		Dex: 102
		Luk: 60
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 1080
	AttackMotion: 480
	DamageMotion: 504
	Drops: {
		Burnt_Parts: 2000
		Sturdy_Iron_Piece: 3000
		Rotha_Shield: 5
		Smoke_Powder: 200
		Drill_Katar: 5
		Elunium: 10
		Valis_Manteau: 20
		Alicel_Card: 1
	}
},
{
	Id: 2910
	SpriteName: "C5_ALARM"
	Name: "Elusive Alarm"
	Lv: 88
	Hp: 27810
	Sp: 27810
	Exp: 3415
	JExp: 10485
	AttackRange: 1
	Attack: [463, 153]
	Def: 106
	Mdef: 53
	Stats: {
		Str: 70
		Agi: 72
		Vit: 40
		Int: 25
		Dex: 66
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1020
	AttackMotion: 500
	DamageMotion: 768
	Drops: {
		Needle_Of_Alarm: 5335
		Clip: 1
		Skull: 1500
		Spectacles: 1300
		Oridecon: 105
		Key_Of_Clock_Tower: 20
		Zargon: 1500
		Alarm_Card: 1
	}
},
{
	Id: 2911
	SpriteName: "C1_AGAV"
	Name: "Swift Agav"
	Lv: 128
	Hp: 200000
	Sp: 200000
	Exp: 12780
	JExp: 26520
	AttackRange: 1
	Attack: [1069, 428]
	Def: 77
	Mdef: 82
	Stats: {
		Str: 85
		Agi: 66
		Vit: 55
		Int: 113
		Dex: 120
		Luk: 61
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 768
	AttackMotion: 360
	DamageMotion: 360
	Drops: {
		Suspicious_Hat: 2500
		High_Fashion_Sandals: 2
		Bloody_Rune: 4000
		Memorize_Book: 1
		Holy_Arrow_Quiver: 50
		Bloody_Rune: 100
		Starsand_Of_Witch: 2500
		Agav_Card: 1
	}
},
{
	Id: 2912
	SpriteName: "C2_ACIDUS_"
	Name: "Solid Acidus"
	Lv: 130
	Hp: 407180
	Sp: 407180
	Exp: 14690
	JExp: 30480
	AttackRange: 2
	Attack: [1660, 712]
	Def: 98
	Mdef: 47
	Stats: {
		Str: 106
		Agi: 110
		Vit: 61
		Int: 53
		Dex: 133
		Luk: 53
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 168
	AttackMotion: 768
	DamageMotion: 360
	Drops: {
		Blue_Potion: 150
		Dragon_Canine: 4000
		White_Wing_Brooch: 10
		Dragon_Scale: 3589
		Dragonball_Blue: 800
		Rough_Wind: 20
		Dragonball_Blue: 100
		Acidus__Card: 1
	}
},
{
	Id: 2913
	SpriteName: "C3_ACIDUS_"
	Name: "Acidus Ringleader"
	Lv: 130
	Hp: 203590
	Sp: 203590
	Exp: 14690
	JExp: 30480
	AttackRange: 2
	Attack: [1660, 712]
	Def: 98
	Mdef: 47
	Stats: {
		Str: 106
		Agi: 110
		Vit: 61
		Int: 53
		Dex: 133
		Luk: 53
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 168
	AttackMotion: 768
	DamageMotion: 360
	Drops: {
		Blue_Potion: 150
		Dragon_Canine: 4000
		White_Wing_Brooch: 10
		Dragon_Scale: 3589
		Dragonball_Blue: 800
		Rough_Wind: 20
		Dragonball_Blue: 100
		Acidus__Card: 1
	}
},
//2914,E_GEFFEN_MAGE_3_1
//2915,HIDDEN_MOB6
// Nightmare Clock Tower Dungeon
{
	Id: 2916
	SpriteName: "BIG_BEN"
	Name: "Big Ben"
	Lv: 150
	Hp: 220240
	Sp: 1
	Exp: 7447
	JExp: 7005
	AttackRange: 1
	Attack: [3101, 212]
	Def: 125
	Mdef: 43
	Stats: {
		Str: 102
		Agi: 58
		Vit: 69
		Int: 75
		Dex: 131
		Luk: 49
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1092
	AttackMotion: 792
	DamageMotion: 480
	Drops: {
		Needle_Of_Alarm: 3000
		Wooden_Block: 500
		White_Herb: 950
		Lemon: 160
		Elunium_Stone: 100
		Key_Of_Twisted_Time: 15
		Key_Of_Twisted_Time: 15
		Big_Ben_Card: 1
	}
},
{
	Id: 2917
	SpriteName: "BIG_BELL"
	Name: "Big Bell"
	Lv: 163
	Hp: 166860
	Sp: 1
	Exp: 7513
	JExp: 8457
	AttackRange: 1
	Attack: [4785, 192]
	Def: 138
	Mdef: 53
	Stats: {
		Str: 102
		Agi: 104
		Vit: 72
		Int: 57
		Dex: 98
		Luk: 57
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1020
	AttackMotion: 500
	DamageMotion: 768
	Drops: {
		Needle_Of_Alarm: 3000
		Clip: 1
		Skull: 750
		Oridecon: 100
		Zargon: 750
		Key_Of_Twisted_Time: 10
		Big_Bell_Card: 1
	}
},
{
	Id: 2918
	SpriteName: "TIME_KEEPER"
	Name: "Time Keeper"
	Lv: 155
	Hp: 256000
	Sp: 1
	Exp: 7898
	JExp: 8869
	AttackRange: 3
	Attack: [2989, 280]
	Def: 128
	Mdef: 60
	Stats: {
		Str: 112
		Agi: 60
		Vit: 72
		Int: 57
		Dex: 120
		Luk: 77
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1072
	AttackMotion: 672
	DamageMotion: 384
	Drops: {
		Needle_Of_Alarm: 3000
		Brigan: 3000
		Steel: 250
		Leaflet_Of_Hinal: 425
		Memorize_Book: 1
		Key_Of_Twisted_Time: 1000
		Key_Of_Twisted_Time: 1000
		Time_Keeper_Card: 1
	}
},
{
	Id: 2919
	SpriteName: "NEO_PUNK"
	Name: "Neo Punk"
	Lv: 155
	Hp: 154760
	Sp: 1
	Exp: 5874
	JExp: 6618
	AttackRange: 1
	Attack: [2051, 216]
	Def: 99
	Mdef: 55
	Stats: {
		Str: 98
		Agi: 39
		Vit: 30
		Int: 35
		Dex: 95
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Wind", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 300
	AttackDelay: 1500
	AttackMotion: 500
	DamageMotion: 1000
	Drops: {
		Mould_Powder: 3000
		Yellow_Gemstone: 500
		Starsand_Of_Witch: 500
		Moth_Dust: 1500
		Hood_: 8
		Baby_Pacifier: 50
		Neo_Punk_Card: 1
	}
},
{
	Id: 2920
	SpriteName: "ARC_ELDER"
	Name: "Arc Elder"
	Lv: 168
	Hp: 293640
	Sp: 1
	Exp: 9086
	JExp: 17532
	AttackRange: 3
	Attack: [2513, 802]
	Def: 105
	Mdef: 41
	Stats: {
		Str: 100
		Agi: 63
		Vit: 35
		Int: 99
		Dex: 106
		Luk: 61
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1552
	AttackMotion: 1152
	DamageMotion: 336
	Drops: {
		Old_Magic_Circle: 3000
		Rent_Spell_Book: 1000
		Encyclopedia: 5
		Wizardy_Staff: 1
		Old_Card_Album: 2
		Key_Of_Twisted_Time: 1500
		Elder_Branch: 500
		Arc_Elder_Card: 1
	}
},
{
	Id: 2921
	SpriteName: "OWL_VISCOUNT"
	Name: "Owl Viscount"
	Lv: 168
	Hp: 295240
	Sp: 1
	Exp: 9086
	JExp: 11089
	AttackRange: 1
	Attack: [4368, 900]
	Def: 113
	Mdef: 45
	Stats: {
		Str: 87
		Agi: 51
		Vit: 45
		Int: 88
		Dex: 106
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 195
	AttackDelay: 1345
	AttackMotion: 824
	DamageMotion: 440
	Drops: {
		Tatters_Clothes: 2500
		Soft_Feather: 1000
		One_Eyed_Glass_: 1
		Crystal_Mirror: 1
		Pocket_Watch__: 2
		Quadrille_: 1
		Lounge_Suit: 1
		Owl_Viscount_Card: 1
	}
},
//2922,G_OWL_VISCOUNT
{
	Id: 2923
	SpriteName: "OWL_MARQUEES"
	Name: "Owl Marquis"
	Lv: 170
	Hp: 630000
	Sp: 1
	Exp: 21747
	JExp: 13806
	AttackRange: 2
	Attack: [1887, 603]
	Def: 127
	Mdef: 25
	Stats: {
		Str: 112
		Agi: 65
		Vit: 55
		Int: 102
		Dex: 108
		Luk: 72
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 1345
	AttackMotion: 824
	DamageMotion: 440
	Drops: {
		Tatters_Clothes: 2000
		Soft_Feather: 1500
		Kakkung_: 1
		Staff_Of_Soul: 1
		Lounge_Suit: 3
		Sword_Stick: 1
		One_Eyed_Glass_: 1
		Owl_Marquees_Card: 1
	}
},
{
	Id: 2924
	SpriteName: "T_ELDER_WILOW"
	Name: "Elder Willow"
	Lv: 34
	Hp: 599
	Sp: 1
	Exp: 116
	JExp: 131
	AttackRange: 1
	Attack: [80, 14]
	Def: 45
	Mdef: 0
	Stats: {
		Str: 10
		Agi: 14
		Vit: 25
		Int: 0
		Dex: 29
		Luk: 0
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1372
	AttackMotion: 672
	DamageMotion: 432
	Drops: {
		Moon_Cake20: 500
		Moon_Cake1: 500
		Moon_Cake2: 500
	}
},
{
	Id: 2925
	SpriteName: "T_WILOW"
	Name: "Willow"
	Lv: 8
	Hp: 91
	Sp: 1
	Exp: 31
	JExp: 23
	AttackRange: 1
	Attack: [13, 5]
	Def: 38
	Mdef: 2
	Stats: {
		Str: 13
		Agi: 3
		Vit: 8
		Int: 5
		Dex: 12
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 432
	Drops: {
		Moon_Cake18: 500
		Moon_Cake19: 500
		Moon_Cake20: 500
	}
},
{
	Id: 2926
	SpriteName: "T_HARPY"
	Name: "Harpy"
	Lv: 83
	Hp: 4423
	Sp: 1
	Exp: 660
	JExp: 760
	AttackRange: 1
	Attack: [340, 41]
	Def: 69
	Mdef: 44
	Stats: {
		Str: 71
		Agi: 39
		Vit: 50
		Int: 31
		Dex: 125
		Luk: 12
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 155
	AttackDelay: 972
	AttackMotion: 672
	DamageMotion: 470
	Drops: {
		Moon_Cake1: 500
		Moon_Cake2: 500
	}
},
{
	Id: 2927
	SpriteName: "T_MINERAL"
	Name: "Mineral"
	Lv: 96
	Hp: 8300
	Sp: 1
	Exp: 802
	JExp: 1013
	AttackRange: 1
	Attack: [751, 57]
	Def: 127
	Mdef: 23
	Stats: {
		Str: 70
		Agi: 61
		Vit: 40
		Int: 50
		Dex: 74
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		CastSensorIdle: true
		CanAttack: true
	}
	MoveSpeed: 250
	AttackDelay: 648
	AttackMotion: 480
	DamageMotion: 360
	Drops: {
		Moon_Cake1: 500
		Moon_Cake2: 500
	}
},
{
	Id: 2928
	SpriteName: "T_GIBBET"
	Name: "Gibbet"
	Lv: 105
	Hp: 12999
	Sp: 1
	Exp: 972
	JExp: 874
	AttackRange: 1
	Attack: [697, 85]
	Def: 116
	Mdef: 45
	Stats: {
		Str: 103
		Agi: 56
		Vit: 62
		Int: 55
		Dex: 73
		Luk: 37
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 917
	AttackMotion: 1584
	DamageMotion: 576
	Drops: {
		Moon_Cake1: 500
		Moon_Cake2: 500
	}
},
{
	Id: 2929
	SpriteName: "T_PLASMA_G"
	Name: "Plasma"
	Lv: 116
	Hp: 24975
	Sp: 1
	Exp: 2176
	JExp: 1506
	AttackRange: 1
	Attack: [851, 112]
	Def: 120
	Mdef: 3
	Stats: {
		Str: 121
		Agi: 60
		Vit: 58
		Int: 62
		Dex: 102
		Luk: 50
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Earth", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 1000
	AttackMotion: 500
	DamageMotion: 1000
	Drops: {
		Moon_Cake18: 500
		Moon_Cake19: 500
	}
},
{
	Id: 2930
	SpriteName: "T_SOLACE"
	Name: "Solace"
	Lv: 123
	Hp: 24729
	Sp: 1
	Exp: 2442
	JExp: 2409
	AttackRange: 2
	Attack: [1234, 165]
	Def: 96
	Mdef: 96
	Stats: {
		Str: 106
		Agi: 65
		Vit: 61
		Int: 42
		Dex: 125
		Luk: 72
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 576
	AttackMotion: 420
	DamageMotion: 360
	Drops: {
		Moon_Cake20: 500
	}
},
{
	Id: 2931
	SpriteName: "T_METALING"
	Name: "Metaling"
	Lv: 81
	Hp: 4300
	Sp: 1
	Exp: 524
	JExp: 537
	AttackRange: 1
	Attack: [188, 39]
	Def: 69
	Mdef: 28
	Stats: {
		Str: 58
		Agi: 30
		Vit: 49
		Int: 17
		Dex: 60
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 384
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Moon_Cake20: 500
	}
},
{
	Id: 2932
	SpriteName: "T_POPORING"
	Name: "Poporing"
	Lv: 30
	Hp: 524
	Sp: 1
	Exp: 99
	JExp: 112
	AttackRange: 1
	Attack: [74, 20]
	Def: 36
	Mdef: 17
	Stats: {
		Str: 17
		Agi: 26
		Vit: 20
		Int: 18
		Dex: 36
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Moon_Cake20: 500
	}
},
{
	Id: 2933
	SpriteName: "T_DEVILING"
	Name: "Deviling"
	Lv: 66
	Hp: 16890
	Sp: 1
	Exp: 1197
	JExp: 1189
	AttackRange: 1
	Attack: [313, 183]
	Def: 67
	Mdef: 70
	Stats: {
		Str: 48
		Agi: 50
		Vit: 33
		Int: 75
		Dex: 85
		Luk: 200
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1072
	AttackMotion: 1056
	DamageMotion: 384
	Drops: {
		Moon_Cake5: 500
		Moon_Cake6: 500
	}
},
{
	Id: 2934
	SpriteName: "T_ARCHANGELING"
	Name: "Arc Angeling"
	Lv: 84
	Hp: 25100
	Sp: 1
	Exp: 1789
	JExp: 1455
	AttackRange: 1
	Attack: [593, 100]
	Def: 92
	Mdef: 81
	Stats: {
		Str: 32
		Agi: 48
		Vit: 62
		Int: 99
		Dex: 119
		Luk: 105
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Angel"
	Element: ("Ele_Holy", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 180
	AttackDelay: 1072
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Moon_Cake5: 500
		Moon_Cake6: 500
	}
},
{
	Id: 2935
	SpriteName: "T_EVIL_CLOUD_HERMIT"
	Name: "Taoist Hermit"
	Lv: 96
	Hp: 8266
	Sp: 1
	Exp: 902
	JExp: 563
	AttackRange: 10
	Attack: [611, 30]
	Def: 66
	Mdef: 46
	Stats: {
		Str: 63
		Agi: 57
		Vit: 45
		Int: 60
		Dex: 119
		Luk: 45
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		ChangeTargetChase: true
	}
	MoveSpeed: 190
	AttackDelay: 480
	AttackMotion: 840
	DamageMotion: 432
	Drops: {
		Moon_Cake20: 500
	}
},
{
	Id: 2936
	SpriteName: "E_GHOSTRING"
	Name: "Ghostring"
	Lv: 1
	Hp: 10
	Sp: 0
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [1, 2]
	Def: 100
	Mdef: 99
	Stats: {
		Str: 0
		Agi: 0
		Vit: 0
		Int: 0
		Dex: 0
		Luk: 0
	}
	ViewRange: 7
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Neutral", 1)
	MoveSpeed: 300
	AttackDelay: 1220
	AttackMotion: 1080
	DamageMotion: 648
	Drops: {
		Pumpkin: 2000
		Pumpkin_Pie: 2000
		Pumpkin_Bucket: 2000
		Halloween_Coin: 4000
	}
},
//2937,M_LOKI
//2938,MM_MAGIC_SEAL
//2939,MM_EVIL_SHADOW1
//2940,MM_EVIL_SHADOW2
//2941,MM_EVIL_SHADOW3
//2942,MM_EVIL_FANATICS
//2943,MM_ICE_MINE
//2944,J_HORNET
//2945,J_MUMMY
//2946,J_ANUBIS
//2947,J_EGGYRA
{
	Id: 2948
	SpriteName: "CURSED_SOLDIER"
	Name: "Cursed Solider"
	Lv: 110
	Hp: 18574
	Sp: 1
	Exp: 1907
	JExp: 1851
	AttackRange: 9
	Attack: [1258, 533]
	Def: 84
	Mdef: 35
	Stats: {
		Str: 81
		Agi: 50
		Vit: 64
		Int: 56
		Dex: 178
		Luk: 23
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1960
	AttackMotion: 576
	DamageMotion: 420
	Drops: {
		Decayed_Nail: 3000
		Gray_Shard: 1000
	}
},
{
	Id: 2949
	SpriteName: "CURSED_SENTINEL"
	Name: "Cursed Sentinel"
	Lv: 110
	Hp: 14099
	Sp: 1
	Exp: 1634
	JExp: 1346
	AttackRange: 2
	Attack: [1347, 559]
	Def: 84
	Mdef: 41
	Stats: {
		Str: 120
		Agi: 65
		Vit: 66
		Int: 41
		Dex: 107
		Luk: 26
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 914
	AttackMotion: 1344
	DamageMotion: 384
	Drops: {
		Mementos: 2500
		Worn_Out_Page: 1500
		Gray_Shard: 1000
	}
},
{
	Id: 2950
	SpriteName: "BROKEN_MIND"
	Name: "Broken Mind"
	Lv: 110
	Hp: 13520
	Sp: 1
	Exp: 1545
	JExp: 1557
	AttackRange: 1
	Attack: [1259, 540]
	Def: 84
	Mdef: 41
	Stats: {
		Str: 69
		Agi: 37
		Vit: 36
		Int: 10
		Dex: 64
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 920
	AttackMotion: 720
	DamageMotion: 200
	Drops: {
		Exorcize_Herb: 1000
		Withered_Flower: 2500
		Gray_Shard: 1000
	}
},
{
	Id: 2951
	SpriteName: "FLOATING_WORD"
	Name: "Floating Word"
	Lv: 110
	Hp: 11276
	Sp: 1
	Exp: 1166
	JExp: 1034
	AttackRange: 1
	Attack: [1080, 429]
	Def: 93
	Mdef: 40
	Stats: {
		Str: 111
		Agi: 90
		Vit: 60
		Int: 70
		Dex: 139
		Luk: 65
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 972
	AttackMotion: 648
	DamageMotion: 432
	Drops: {
		Sticky_Mucus: 3000
		Horn: 2500
		Gray_Shard: 1000
	}
},
{
	Id: 2952
	SpriteName: "LIKE_LOVE"
	Name: "Like Love"
	Lv: 110
	Hp: 14008
	Sp: 1
	Exp: 1505
	JExp: 1667
	AttackRange: 2
	Attack: [1182, 1]
	Def: 64
	Mdef: 51
	Stats: {
		Str: 62
		Agi: 27
		Vit: 25
		Int: 55
		Dex: 102
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1056
	AttackMotion: 1056
	DamageMotion: 336
	Drops: {
		Immortal_Heart: 2500
		Gray_Shard: 1000
	}
},
{
	Id: 2953
	SpriteName: "CURSED_MEMORY"
	Name: "Cursed Memory"
	Lv: 110
	Hp: 18045
	Sp: 1
	Exp: 1802
	JExp: 1623
	AttackRange: 1
	Attack: [1310, 557]
	Def: 89
	Mdef: 28
	Stats: {
		Str: 87
		Agi: 39
		Vit: 58
		Int: 5
		Dex: 82
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 1768
	AttackMotion: 500
	DamageMotion: 192
	Drops: {
		Decayed_Nail: 3000
		Gray_Shard: 1000
	}
},
{
	Id: 2954
	SpriteName: "COLORLESS_VOW"
	Name: "Colorless Vow"
	Lv: 110
	Hp: 19194
	Sp: 1
	Exp: 1939
	JExp: 1881
	AttackRange: 1
	Attack: [1478, 643]
	Def: 95
	Mdef: 41
	Stats: {
		Str: 84
		Agi: 35
		Vit: 60
		Int: 20
		Dex: 85
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 1848
	AttackMotion: 500
	DamageMotion: 576
	Drops: {
		Horrendous_Mouth: 3500
		Sharpened_Cuspid: 2000
		Gray_Shard: 1000
	}
},
{
	Id: 2955
	SpriteName: "OLD_FRIENDSHIP"
	Name: "Old Friendship"
	Lv: 110
	Hp: 12614
	Sp: 1
	Exp: 1306
	JExp: 1328
	AttackRange: 1
	Attack: [1147, 491]
	Def: 78
	Mdef: 5
	Stats: {
		Str: 56
		Agi: 12
		Vit: 19
		Int: 11
		Dex: 30
		Luk: 10
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 250
	AttackDelay: 2456
	AttackMotion: 912
	DamageMotion: 504
	Drops: {
		Skel_Bone: 3500
		Manacles: 2500
		Gray_Shard: 1000
	}
},
{
	Id: 2956
	SpriteName: "SWEET_SLAUGHTER"
	Name: "Sweet Slaughter"
	Lv: 110
	Hp: 13986
	Sp: 1
	Exp: 1960
	JExp: 1587
	AttackRange: 1
	Attack: [1216, 493]
	Def: 125
	Mdef: 10
	Stats: {
		Str: 121
		Agi: 48
		Vit: 40
		Int: 31
		Dex: 125
		Luk: 32
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 350
	AttackDelay: 528
	AttackMotion: 1000
	DamageMotion: 396
	Drops: {
		Realgar_Wine: 1000
		Immortal_Heart: 2000
		Gray_Shard: 1000
	}
},
{
	Id: 2957
	SpriteName: "FORGOTTEN_NAME"
	Name: "Forgotten Name"
	Lv: 110
	Hp: 19546
	Sp: 1
	Exp: 1505
	JExp: 1485
	AttackRange: 2
	Attack: [1093, 427]
	Def: 111
	Mdef: 38
	Stats: {
		Str: 121
		Agi: 29
		Vit: 51
		Int: 43
		Dex: 100
		Luk: 3
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 155
	AttackDelay: 847
	AttackMotion: 1152
	DamageMotion: 480
	Drops: {
		Realgar_Wine: 5000
		Exorcize_Herb: 5000
		Gray_Shard: 1500
	}
},
{
	Id: 2958
	SpriteName: "FATAL_DAYS"
	Name: "Fatal Days"
	Lv: 120
	Hp: 24240
	Sp: 1
	Exp: 2052
	JExp: 2026
	AttackRange: 2
	Attack: [1025, 403]
	Def: 84
	Mdef: 41
	Stats: {
		Str: 100
		Agi: 71
		Vit: 63
		Int: 85
		Dex: 115
		Luk: 37
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 170
	AttackDelay: 720
	AttackMotion: 384
	DamageMotion: 480
	Drops: {
		Petite_DiablOfs_Horn: 2500
		Tendon: 2500
		Gray_Shard: 1500
	}
},
{
	Id: 2959
	SpriteName: "TORTUROUS_REDEEMER"
	Name: "Torturous Redeemer"
	Lv: 120
	Hp: 103342
	Sp: 1
	Exp: 10599
	JExp: 8378
	AttackRange: 1
	Attack: [1253, 500]
	Def: 144
	Mdef: 28
	Stats: {
		Str: 133
		Agi: 69
		Vit: 72
		Int: 55
		Dex: 165
		Luk: 44
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 672
	AttackMotion: 420
	DamageMotion: 360
	Drops: {
		Evil_Horn: 2000
		Gray_Shard: 10000
		Gray_Shard: 10000
	}
},
//2960,MM_FLAMECROSS
{
	Id: 2961
	SpriteName: "E_TORTUROUS_REDEEMER"
	Name: "Torturous Redeemer"
	Lv: 120
	Hp: 103342
	Sp: 1
	Exp: 1
	JExp: 1
	AttackRange: 1
	Attack: [1, 1]
	Def: 144
	Mdef: 28
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 672
	AttackMotion: 420
	DamageMotion: 360
},
//2962,E_DEVILING
{
	Id: 2963
	SpriteName: "WOODIE"
	Name: "Woodie"
	Hp: 60
	Exp: 18
	JExp: 10
	Attack: [13, 3]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Solid_Twig: 2000
		Resin: 2000
		Log: 2000
		Wooden_Block: 2000
		Oridecon_Stone: 200
		Log_: 5000
		Woodie_Card: 300
	}
},
//2964,EXP_1000
//2965,TW_APOCALIPS_H
//2966,TW_B_EREMES
//2967,TW_B_HARWORD
//2968,TW_B_SEYREN
//2969,TW_BAPHOMET2
//2970,TW_DARK_LORD
//2971,TW_DARK_SNAKE_LORD
//2972,TW_DOPPELGANGER
//2973,TW_DRACULA
//2974,TW_EDDGA
//2975,TW_FALLINGBISHOP
//2976,TW_GLOOMUNDERNIGHT
//2977,TW_IFRIT
//2978,TW_KTULLANUX
//2979,TW_LORD_OF_DEATH2
//2980,TW_MISTRESS
//2981,TW_ORK_HERO2
//2982,TW_OSIRIS2
//2983,TW_RANDGRIS
//2984,TW_TURTLE_GENERAL
//2985,E_MYSTERIOUS_BUG
//2986,J_XMAS_SMOKEY_GIFT
//2987,XM_TREE
//2988,XM_ANTONIO
//2989,XM_COOKIE
//2990,XM_CRUISER
//2991,XM_MYSTCASE
//2992,XM_LUDE
//2993,XM_HYLOZOIST
//2994,XM_MARIONETTE
{
	Id: 2995
	SpriteName: "XM_TEDDY_BEAR"
	Name: "Abandoned Teddy Bear"
	Lv: 148
	Hp: 180000
	Exp: 6666
	JExp: 7332
	Attack: [1347, 577]
	Def: 106
	Mdef: 44
	Stats: {
		Str: 44
		Agi: 166
		Vit: 44
		Int: 44
		Dex: 166
		Luk: 44
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Undead", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 512
	AttackMotion: 780
	DamageMotion: 504
	Drops: {
		Screw: 1900
		Oridecon_Hammer: 150
		Str_Dish09: 100
		Runstone_Quality: 1000
		Runstone_Rare: 100
		Abandoned_Teddy_Bear_Card: 1
	}
},
{
	Id: 2996
	SpriteName: "XM_CELINE_KIMI"
	Name: "Celine Kimi"
	Lv: 160
	Hp: 66666666
	Sp: 1
	Exp: 4444444
	JExp: 4033332
	AttackRange: 2
	Attack: [5636, 8303]
	Def: 479
	Mdef: 444
	Stats: {
		Str: 144
		Agi: 166
		Vit: 44
		Int: 444
		Dex: 166
		Luk: 166
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Ghost", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 768
	AttackMotion: 1056
	DamageMotion: 480
	MvpExp: 444444
	MvpDrops: {
		Old_Card_Album: 10000
		Old_Violet_Box: 10000
		Closedmind_Box: 10000
	}
	Drops: {
		Closedmind_Box: 4000
		Butterfly_Hairpin: 4000
		Bloody_Coin: 4000
		C_Red_Bonnet: 100
		Old_Parasol: 100
		Flower: 10000
	}
},

//2997,G_XM_CELINE_KIMI
//2998,EP14_MORS_EVENT
//2999,EP14_MORS_BOSSA
//3000,EP14_MORS_BOSSB
//3001,EP14_MORS_MOB1
//3002,EP14_MORS_MOB2
//3003,EP14_MORS_MOB3
//3004,EP14_MORS_MOB4
//3005,EP14_MORS_MOB5
//3006,EP14_MORS_MOB6
//3007,EP14_MORS_DUMMY
//3008,EP14_MORS_HIDDEN
//3009,EP14_3_DEATH_BOSS
//3010,EP14_3_DEATH_A_MOB1
//3011,EP14_3_DEATH_A_MOB2
//3012,EP14_3_DEATH_A_MOB3
//3013,EP14_3_DEATH_B_MOB1
//3014,EP14_3_DEATH_B_MOB2
//3015,EP14_3_DEATH_B_MOB3
//3016,EP14_3_DEATH_C_MOB1
//3017,EP14_3_DEATH_C_MOB2
//3018,EP14_3_DEATH_C_MOB3
//3019,CELINE_KIMI
//3020,FIRE_CONDOR
//3021,FIRE_SAND_MAN
//3022,FIRE_FRILLDORA
//3023,FIRE_GOLEM
//3024,14_3_MERCENARY_A
//3025,14_3_MERCENARY_B
//3026,FIREPIT
//3027,FULBUK
//3028,SONIA
{
	Id: 3029
	SpriteName: "GRIM_REAPER_ANKOU"
	Name: "Grim Reaper Ankou"
	Lv: 159
	Hp: 50000000
	Sp: 1553
	Exp: 300000
	JExp: 330000
	AttackRange: 1
	Attack: [1500, 2500]
	Def: 200
	Mdef: 70
	Stats: {
		Str: 200
		Agi: 100
		Vit: 200
		Int: 200
		Dex: 220
		Luk: 100
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Undead"
	Element: ("Ele_Undead", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 900
	AttackMotion: 864
	DamageMotion: 480
	Drops: {
		Yggdrasilberry: 500
		Old_Blue_Box: 200
		Branch_Of_Dead_Tree: 200
		PrizeOfHero: 10000
		Fruit_Of_Mastela: 200
	}
},
//3030,STANDING_SOUL
//3031,MUTANT_NECROMANCER
//3032,MUTANT_GHOUL
//3033,MUTANT_OSIRIS
//3034,MUTANT_ARCHER_SKELETON
//3035,MUTANT_WRAITH_DEAD
//3036,MUTANT_VERIT
//3037,MUTANT_LUDE
//3038,HIDDEN_MOB7
//3039,B_MOROCC_1
//3040,B_MOROCC_2
//3041,B_MOROCC_4
//3042,WATERMELON_17
//3043,WATERMELON_18
//3044,WATERMELON_19
//3045,WATERMELON_20
//3046,WATERMELON_21
//3047,WATERMELON_22
//3048,WATERMELON_23
//3049,WATERMELON_24
//3050,WATERMELON_25
//3051,WATERMELON_26
//3052,WATERMELON_27
//3053,WATERMELON_28
//3054,WATERMELON_29
//3055,WATERMELON_30
//3056,WATERMELON_31
//3057,WATERMELON_32
//3058,WATERMELON_33
//3059,EIGHT_DIVISION
//3060,E_QUESTION_OCTOPUS
//3061,E_ANGRY_MIMIC
//3062,GIANT_DEVIRUCHI
//3063,DEVIRUCHI_W
//3064,GIANT_DEVIRUCHI_W
//3065,E_ICE_MINE
//3066,SNAKE_NEWYEAR
//3067,E_ORC_WOMAN
//3068,E_PYTHON_SKIN
//3069,PERE1
//3070,PERE2
//3071,PERE3
//3072,PERE4
//3073,GRAND_PERE
{
	Id: 3074
	SpriteName: "TIMEHOLDER"
	Name: "Time Holder"
	Lv: 170
	Hp: 25000000
	Sp: 1
	Exp: 2291250
	JExp: 1938750
	AttackRange: 1
	Attack: [5250, 2100]
	Def: 288
	Mdef: 265
	Stats: {
		Str: 224
		Agi: 152
		Vit: 251
		Int: 257
		Dex: 402
		Luk: 77
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Neutral", 4)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 76
	AttackMotion: 384
	DamageMotion: 288
	DamageTakenRate: 10
	MvpExp: 2291250
	Drops: {
		Needle_Of_Alarm: 3000
		Memorize_Book_: 10
		Brigan: 3000
		Key_Of_Twisted_Time: 3000
		One_Eyed_Glass_: 20
		Quadrille_: 5
		Lounge_Suit: 3
		Timeholder_Card: 1
	}
},
//3075,WA_TREASURE
//3076,WA_MONSTER_1
//3077,WA_MONSTER_2
//3078,WA_MONSTER_3
//3079,WA_MONSTER_4
//3080,WA_MONSTER_5
//3081,WA_MONSTER_6
//3082,WA_MONSTER_7
//3083,WA_MONSTER_8
//3084,WA_MONSTER_9
//3085,WA_MONSTER_10
//3086,WA_MERCENARY
//3087,M_NYDHOG
//3088,MM_BRINARANEA_BABY
//3089,MM_LOCO_KASA
//3090,MM_LOCO_SALAMANDER
//3091,MM_BRINARANEA
//3092,MM_MUSPELLSKOLL
//3093,MM_BRINARANEA_CORE
//3094,MM_MUSPELLSKOLL_CORE
//3095,MM_GOD_SHADOW
//3096,MM_MOROCC_KID
//3097,MM_MOROCC_ADT
//3098,MM_MOROCC_ORIGIN
//3099,MM_MOROCC_REST
//3100,MM_MANA_BLACK
//3101,MM_MANA_WHITE
//3102,MM_MANA_RED
//3103,MM_MANA_YELLOW
//3104,MM_MANA_BLUE
//3105,MM_GB_MOROCC_1
//3106,MM_GB_MOROCC_4
//3107,E_EASTER_BUNNY
//3108,JITTERBUG1
//3109,JITTERBUG2
//
//3124,CHARLESTON3
//3125,STEP
//3126,ROCK_STEP
//3127,KICK_STEP
//3128,KICK_AND_KICK
//3153,EXCAVATOR_ROBOT
//3154,RECON_ROBOT
//3155,REPAIR_ROBOT
//3156,EXPLORATION_ROVER
{
	Id: 3162
	SpriteName: "ELEPHANT"
	Name: "Elephant"
	Lv: 48
	Hp: 1080
	Exp: 184
	JExp: 207
	Attack: [184, 48]
	Def: 70
	Mdef: 30
	Stats: {
		Str: 40
		Agi: 45
		Vit: 32
		Int: 19
		Dex: 42
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 1028
	AttackMotion: 528
	DamageMotion: 360
},
{
	Id: 3163
	SpriteName: "GORILLA"
	Name: "Gorilla"
	Lv: 48
	Hp: 1080
	Exp: 184
	JExp: 207
	Attack: [184, 48]
	Def: 70
	Mdef: 30
	Stats: {
		Str: 40
		Agi: 45
		Vit: 32
		Int: 19
		Dex: 42
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 190
	AttackDelay: 1028
	AttackMotion: 528
	DamageMotion: 360
},
{
	Id: 3164
	SpriteName: "LION"
	Name: "Lion"
	Lv: 48
	Hp: 1080
	Exp: 184
	JExp: 207
	Attack: [184, 48]
	Def: 70
	Mdef: 30
	Stats: {
		Str: 40
		Agi: 45
		Vit: 32
		Int: 19
		Dex: 42
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 1028
	AttackMotion: 528
	DamageMotion: 360
},
{
	Id: 3165
	SpriteName: "RHINO"
	Name: "Rhino"
	Lv: 48
	Hp: 1080
	Exp: 184
	JExp: 207
	Attack: [184, 48]
	Def: 70
	Mdef: 30
	Stats: {
		Str: 40
		Agi: 45
		Vit: 32
		Int: 19
		Dex: 42
		Luk: 20
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 1028
	AttackMotion: 528
	DamageMotion: 360
},
//3166,M_E_DEVILING
{
	Id: 3169
	SpriteName: "J_REB_SHECIL1"
	Name: "Shooting Target"
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
	}
	MoveSpeed: 200
},
{
	Id: 3170
	SpriteName: "J_REB_SHECIL2"
	Name: "Shooting Target"
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
	}
	MoveSpeed: 200
},
{
	Id: 3181
	SpriteName: "E1_FELOCK"
	Name: "Captain Ferlock"
	Lv: 130
	Hp: 3000000
	Sp: 1
	Exp: 3088
	JExp: 333333
	AttackRange: 10
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Dragon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 170
	AttackDelay: 1018
	AttackMotion: 1008
	DamageMotion: 300
	Drops: {
		Felock_Armor: 100
		Felock_Cape: 100
		Felock_Boots: 100
		Vit_Dish07: 3000
		Str_Dish07: 3000
		Agi_Dish07: 3000
		Int_Dish07: 3000
		Dex_Dish07: 3000
		Captain_Felock_Card: 1
	}
},
{
	Id: 3190
	SpriteName: "MM_SARAH"
	Name: "Sarah"
	Lv: 160
	Hp: 100000000
	Sp: 1
	AttackRange: 12
	Attack: [1090, 2755]
	Def: 276
	Mdef: 255
	Stats: {
		Str: 43
		Agi: 161
		Vit: 6
		Int: 188
		Dex: 225
		Luk: 136
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Human"
	Element: ("Ele_Neutral", 1)
	Mode: {
		Aggressive: true
		Boss: true
		CanAttack: true
	}
	MoveSpeed: 2000
	AttackDelay: 500
	AttackMotion: 500
	Drops: {
		Robe_Of_Sarah: 1000
		Sarah_Card: 1
	}
},

/*{
	Id: 3201
	SpriteName: "JT_LUCKYCASE"
	Name: "Poring"
	Lv: 1
	Hp: 60
	Sp: 1
	Exp: 27
	JExp: 20
	AttackRange: 1
	Attack: [8, 9]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},*/
{
	Id: 3202
	SpriteName: "ORGANIC_JAKK"
	Name: "Organic Pumpkin"
	Lv: 10
	Hp: 40
	Sp: 1
	Exp: 20
	JExp: 13
	AttackRange: 1
	Attack: [100, 0]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 999
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Boss: true
		Plant: true
	}
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		ORGANIC_PUMPKIN: 5000
		ORGANIC_PUMPKIN: 5000
		ORGANIC_PUMPKIN: 1000
		Cigar: 100
		Pumpkin_Head: 1000
		Gift_Box_1: 100
		Yellow_Slim_Potion: 1000
		Pumpkin_Pie: 100
	}
},
{
	Id: 3203
	SpriteName: "INORGANIC_JAKK"
	Name: "Inorganic Pumpkin"
	Lv: 10
	Hp: 40
	Sp: 1
	Exp: 20
	JExp: 13
	AttackRange: 1
	Attack: [100, 0]
	Def: 160
	Mdef: 99
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 999
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Small"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Boss: true
		Plant: true
	}
	MoveSpeed: 200
	AttackDelay: 0
	AttackMotion: 0
	DamageMotion: 0
	Drops: {
		INORGANIC_PUMPKIN: 5000
		INORGANIC_PUMPKIN: 5000
		INORGANIC_PUMPKIN: 1000
		Cigar: 100
		Pumpkin_Head: 1000
		Gift_Box_1: 100
		Yellow_Slim_Potion: 1000
		Pumpkin_Pie: 100
	}
},
/*{
	Id: 3204
	SpriteName: "PIXY_PINK_PORING"
	Name: "Poring"
	Lv: 1
	Hp: 60
	Sp: 1
	Exp: 27
	JExp: 20
	AttackRange: 1
	Attack: [8, 9]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 3205
	SpriteName: "PIXY_BLUE_PORING"
	Name: "Poring"
	Lv: 1
	Hp: 60
	Sp: 1
	Exp: 27
	JExp: 20
	AttackRange: 1
	Attack: [8, 9]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 3206
	SpriteName: "LITTLE_GOLDPORING"
	Name: "Poring"
	Lv: 1
	Hp: 60
	Sp: 1
	Exp: 27
	JExp: 20
	AttackRange: 1
	Attack: [8, 9]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 3207
	SpriteName: "E_AQUA_ELEMENTAL"
	Name: "Poring"
	Lv: 1
	Hp: 60
	Sp: 1
	Exp: 27
	JExp: 20
	AttackRange: 1
	Attack: [8, 9]
	Def: 2
	Mdef: 5
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Int: 0
		Dex: 6
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Plant"
	Element: ("Ele_Water", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
},*/
{
	Id: 3261
	SpriteName: "BLUE_UNICORN"
	Name: "Blue Unicorn"
	Lv: 30
	Hp: 20
	Exp: 99
	JExp: 112
	Attack: [106, 29]
	Def: 36
	Mdef: 17
	Stats: {
		Str: 17
		Agi: 26
		Vit: 20
		Int: 18
		Dex: 36
		Luk: 5
	}
	ViewRange: 10
	ChaseRange: 12
	Race: "RC_Plant"
	Element: ("Ele_Poison", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1672
	AttackMotion: 672
	DamageMotion: 480
},
//3295,G_MOBSTER
//3296,HIDDEN_TEST
//3297,PAD_LEVIATHAN
//3299,PAD_IFRIT
//3300,PAD_HORAI
//3301,PAD_SHANGRILA
//3302,PAD_NIRAIKANAI
//3303,PAD_HELHEIM
//3304,PAD_MUSPELHEIM
//3305,PAD_ZAEROG
{/* jRO exclusive pet. No stats required. */
	Id: 3306
	SpriteName: "PAD_TAMADORA"
	Name: "Tamadora"
},
//3307,PAD_TAMADORABABY
//3308,ROC_EMPELIUM
//3309,ROC_OBJ_A
//3310,ROC_OBJ_B
//3311,ROC_OBJ_N
//3312,ROC_TOWER_A
//3313,ROC_TOWER_B
//3314,SMOKIE_THIEF
//3315,PAD_KINGGOLD
//3316,PAD_KINGMETAL
{/* jRO exclusive pet. No stats required. */
	Id: 3317
	SpriteName: "PAD_RUBYLIT"
	Name: "Rubylit"
},
{/* jRO exclusive pet. No stats required. */
	Id: 3318
	SpriteName: "PAD_SAPPHILIT"
	Name: "Sapphilit"
},
{/* jRO exclusive pet. No stats required. */
	Id: 3319
	SpriteName: "PAD_EMELIT"
	Name: "Emelit"
},
{/* jRO exclusive pet. No stats required. */
	Id: 3320
	SpriteName: "PAD_TOPALIT"
	Name: "Topalit"
},
{/* jRO exclusive pet. No stats required. */
	Id: 3321
	SpriteName: "PAD_AMELIT"
	Name: "Amelit"
},
//3322,PAD_METAL_DRAGON
//3323,PAD_M_FLAME_KNIGHT
//3324,PAD_M_ICE_KNIGHT
//3325,PAD_M_STONE_KNIGHT
//3326,PAD_M_LIGHT_KNIGHT
//3327,PAD_M_DARK_KNIGHT
//3328,PAD_C_D_DRAGON
//3329,PAD_ECHIDNA
//3330,PAD_SIREN
//3331,PAD_LILITH
//3332,PAD_HERA
//3333,PAD_RUBYLIT_H
//3334,PAD_SAPPHILIT_H
//3335,PAD_EMELIT_H
//3336,PAD_TOPALIT_H
//3337,PAD_AMELIT_H
//3338,PAD_METAL_DRAGON_H
//3339,PAD_M_FLAME_KNIGHT_H
//3340,PAD_M_ICE_KNIGHT_H
//3341,PAD_M_STONE_KNIGHT_H
//3342,PAD_M_LIGHT_KNIGHT_H
//3343,PAD_M_DARK_KNIGHT_H
//3344,PAD_C_D_DRAGON_H
//3345,PAD_ECHIDNA_H
//3346,PAD_SIREN_H
//3347,PAD_LILITH_H
//3348,PAD_HERA_H
{/* jRO exclusive pet. No stats required. */
	Id: 3349
	SpriteName: "PAD_MYTHLIT"
	Name: "Mythlit"
},
//3350,PAD_TYRRA
//3351,PAD_TYRANNOS
//3352,PAD_PLESSIE
//3353,PAD_PLESIOS
//3354,PAD_BRACHY
//3355,PAD_BRACHYS

// 2014 Halloween Event
{
	Id: 3381
	SpriteName: "DARK_SOUL"
	Name: "Dark Soul"
	Lv: 10
	Hp: 20
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [20, 20]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 100
	AttackDelay: 1960
	AttackMotion: 960
	DamageMotion: 504
	Drops: {
		Pumpkin_Pie: 2000
		Black_Soul: 4000
	}
},
{
	Id: 3382
	SpriteName: "WANDERING_SOUL"
	Name: "Wandering Soul"
	Lv: 1
	Hp: 10
	Sp: 1
	Exp: 0
	JExp: 0
	AttackRange: 1
	Attack: [10, 10]
	Def: 0
	Mdef: 0
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 0
	ChaseRange: 0
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Ghost", 1)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 100
	AttackDelay: 912
	AttackMotion: 1248
	DamageMotion: 576
	Drops: {
		Pumpkin_Pie: 2000
		Captured_Soul: 4000
	}
},
{
	Id: 3495
	SpriteName: "DR_EGGRING"
	Name: "Eggring"
	Hp: 50
	Exp: 50
	JExp: 35
	Attack: [7, 1]
	Def: 2
	Mdef: 4
	Stats: {
		Str: 6
		Agi: 1
		Vit: 1
		Dex: 6
		Luk: 4
	}
	ViewRange: 10
	ChaseRange: 12
	Race: "RC_Plant"
	Element: ("Ele_Earth", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 400
	AttackDelay: 1872
	AttackMotion: 672
	DamageMotion: 480
	Drops: {
		Jellopy: 7000
		Apple: 1000
		Sticky_Mucus: 400
		Phracon: 30
		Wing_Of_Fly: 500
		Apple: 150
		Apple: 20
		Eggring_Card: 20
	}
},
{
	Id: 3496
	SpriteName: "DR_LUNATIC"
	Name: "Leaf Lunatic"
	Lv: 3
	Hp: 44
	Exp: 50
	JExp: 35
	Attack: [12, 1]
	Def: 16
	Stats: {
		Str: 9
		Agi: 1
		Vit: 2
		Dex: 7
		Luk: 4
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Brute"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		CanAttack: true
	}
	MoveSpeed: 200
	AttackDelay: 1456
	AttackMotion: 456
	DamageMotion: 336
	Drops: {
		Clover: 7000
		Feather: 3000
		Pierrot_Nose: 4
		Apple: 1000
		Wing_Of_Fly: 500
		Carrot: 3000
		Phracon: 30
		Leaf_Lunatic_Card: 10
	}
},
{
	Id: 3636
	SpriteName: "LITTLE_ISIS"
	Name: "Little Isis"
	Lv: 59
	Hp: 2092
	Exp: 279
	JExp: 298
	Attack: [278, 81]
	Def: 83
	Mdef: 5
	Stats: {
		Str: 58
		Agi: 43
		Vit: 22
		Int: 5
		Dex: 43
		Luk: 15
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		CanAttack: true
		Detector: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1384
	AttackMotion: 768
	DamageMotion: 336
},
{
	Id: 3669
	SpriteName: "DIABOLIC2"
	Name: "Diabolic2"
	Lv: 104
	Hp: 10572
	Exp: 1086
	JExp: 1073
	Attack: [772, 283]
	Def: 68
	Mdef: 61
	Stats: {
		Str: 103
		Agi: 80
		Vit: 53
		Int: 65
		Dex: 94
		Luk: 25
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1080
	AttackMotion: 780
	DamageMotion: 180
},
{
	Id: 3670
	SpriteName: "DELETER_2"
	Name: "Deleter 2"
	Lv: 105
	Hp: 10000
	Exp: 1049
	JExp: 1038
	Attack: [733, 265]
	Def: 114
	Mdef: 53
	Stats: {
		Str: 98
		Agi: 72
		Vit: 65
		Int: 49
		Dex: 68
		Luk: 71
	}
	ViewRange: 10
	ChaseRange: 12
	Race: "RC_Dragon"
	Element: ("Ele_Fire", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		Assist: true
		CanAttack: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 175
	AttackDelay: 1024
	AttackMotion: 624
	DamageMotion: 336
},
{
	Id: 3731
	SpriteName: "SCATLETON"
	Name: "Scatleton"
	Lv: 14
	Hp: 140
	Attack: [50, 13]
	Def: 13
	Stats: {
		Str: 10
		Agi: 12
		Vit: 8
		Int: 5
		Dex: 17
		Luk: 7
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
	}
	MoveSpeed: 300
	AttackDelay: 1600
	AttackMotion: 900
	DamageMotion: 240
},
{
	Id: 3790
	SpriteName: "SWEETS_DROPS"
	Name: "Sweets Drops"
	Lv: 1
	Hp: 20
	Exp: 27
	JExp: 20
	Attack: [12, 1]
	Def: 16
	Stats: {
		Str: 1
		Agi: 1
		Vit: 1
		Int: 1
		Dex: 1
		Luk: 1
	}
	ViewRange: 10
	ChaseRange: 12
	Race: "RC_Plant"
	Element: ("Ele_Fire", 1)
	Mode: {
		CanMove: true
		Looter: true
		CanAttack: true
	}
	MoveSpeed: 440
	AttackDelay: 1372
	AttackMotion: 672
	DamageMotion: 480
},
{
	Id: 3971
	SpriteName: "SKELION"
	Name: "Skelion"
	Lv: 150
	Hp: 13000
	Exp: 594
	JExp: 669
	Attack: [222, 56]
	Def: 88
	Mdef: 16
	Stats: {
		Str: 25
		Agi: 16
		Vit: 12
		Int: 45
		Dex: 33
		Luk: 29
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Small"
	Race: "RC_Formless"
	Element: ("Ele_Neutral", 1)
	Mode: {
		CanMove: true
		Aggressive: true
		Boss: true
		CanAttack: true
	}
	MoveSpeed: 150
	AttackDelay: 960
	AttackMotion: 864
	DamageMotion: 0
},
{
	Id: 20373
	SpriteName: "NIGHTMARE_TERROR_H"
	Name: "Rigid Nightmare Terror"
	Lv: 179
	Hp: 1523377
	Exp: 138489
	JExp: 96942
	Attack: [1709, 725]
	Def: 242
	Mdef: 75
	Stats: {
		Str: 81
		Agi: 149
		Vit: 21
		Int: 186
		Dex: 129
		Luk: 61
	}
	ViewRange: 12
	ChaseRange: 10
	Size: "Size_Large"
	Race: "RC_Demon"
	Element: ("Ele_Dark", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 165
	AttackDelay: 1216
	AttackMotion: 816
	DamageMotion: 432
	Drops: {
		Rigid_Nightmare_Terror_Card: 10
	}
},
{
	Id: 20420
	SpriteName: "WANDER_MAN_H"
	Name: "Corrupted Wanderer"
	Lv: 187
	Hp: 2387582
	Exp: 170542
	JExp: 119379
	Attack: [3654, 1645]
	Def: 289
	Mdef: 102
	Stats: {
		Str: 176
		Agi: 121
		Vit: 34
		Int: 67
		Dex: 139
		Luk: 77
	}
	ViewRange: 10
	ChaseRange: 12
	Race: "RC_Demon"
	Element: ("Ele_Wind", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CanAttack: true
		Detector: true
		Angry: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 100
	AttackDelay: 672
	AttackMotion: 500
	DamageMotion: 192
	Drops: {
		Contaminated_Wanderer_Card: 10
	}
},
{
	Id: 20423
	SpriteName: "BACSOJIN2"
	Name: "Bacsojin"
	Lv: 97
	Hp: 720500
	Sp: 1
	Exp: 801792
	JExp: 542880
	AttackRange: 3
	Attack: [1414, 2036]
	Def: 210
	Mdef: 178
	Stats: {
		Str: 118
		Agi: 244
		Vit: 98
		Int: 126
		Dex: 246
		Luk: 102
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Wind", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 130
	AttackDelay: 576
	AttackMotion: 960
	DamageMotion: 480
},
{
	Id: 20424
	SpriteName: "MOONLIGHT2"
	Name: "Moonlight Flower"
	Lv: 79
	Hp: 324000
	Sp: 1
	Exp: 367488
	JExp: 271440
	AttackRange: 1
	Attack: [2232, 1251]
	Def: 254
	Mdef: 81
	Stats: {
		Str: 86
		Agi: 102
		Vit: 93
		Int: 82
		Dex: 157
		Luk: 120
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Medium"
	Race: "RC_Demon"
	Element: ("Ele_Fire", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1276
	AttackMotion: 576
	DamageMotion: 288
},
{
	Id: 20425
	SpriteName: "PHREEONI2"
	Name: "Phreeoni"
	Lv: 71
	Hp: 300000
	Sp: 1
	Exp: 127600
	JExp: 180000
	AttackRange: 1
	Attack: [693, 967]
	Def: 269
	Mdef: 98
	Stats: {
		Str: 88
		Agi: 70
		Vit: 112
		Int: 87
		Dex: 122
		Luk: 71
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Brute"
	Element: ("Ele_Neutral", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1020
	AttackMotion: 1020
	DamageMotion: 288
},
{
	Id: 20571
	SpriteName: "ORK_HERO2"
	Name: "Orc Hero"
	Lv: 50
	Hp: 362000
	Sp: 1
	Exp: 106920
	JExp: 97200
	AttackRange: 1
	Attack: [662, 441]
	Def: 197
	Mdef: 70
	Stats: {
		Str: 97
		Agi: 82
		Vit: 107
		Int: 71
		Dex: 144
		Luk: 43
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_DemiHuman"
	Element: ("Ele_Earth", 2)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 150
	AttackDelay: 1678
	AttackMotion: 780
	DamageMotion: 648
},
{
	Id: 20619
	SpriteName: "GLOOMUNDERNIGHT2"
	Name: "Gloom Under Night"
	Lv: 139
	Hp: 3005000
	Sp: 1
	Exp: 2808000
	JExp: 1800000
	AttackRange: 3
	Attack: [6592, 2785]
	Def: 479
	Mdef: 262
	Stats: {
		Str: 191
		Agi: 223
		Vit: 187
		Int: 155
		Dex: 362
		Luk: 163
	}
	ViewRange: 10
	ChaseRange: 12
	Size: "Size_Large"
	Race: "RC_Formless"
	Element: ("Ele_Ghost", 3)
	Mode: {
		CanMove: true
		Aggressive: true
		CastSensorIdle: true
		Boss: true
		CanAttack: true
		Detector: true
		CastSensorChase: true
		ChangeChase: true
		ChangeTargetMelee: true
		ChangeTargetChase: true
	}
	MoveSpeed: 200
	AttackDelay: 1344
	AttackMotion: 2880
	DamageMotion: 576
},
{/** Needs info. No data found. Using dummy data for now to enable pet. **/
	Id: 20696
	SpriteName: "EP17_2_CHILD_ADMIN1"
	Name: "Child Admin Beta"
},
{/** Needs info. No data found. Using dummy data for now to enable pet. **/
	Id: 20697
	SpriteName: "EP17_2_CHILD_ADMIN2"
	Name: "Child Admin Alpha"
},
)