//================= Hercules Database ===================================== //= _ _ _ //= | | | | | | //= | |_| | ___ _ __ ___ _ _| | ___ ___ //= | _ |/ _ \ '__/ __| | | | |/ _ \/ __| //= | | | | __/ | | (__| |_| | | __/\__ \ //= \_| |_/\___|_| \___|\__,_|_|\___||___/ //================= License =============================================== //= This file is part of Hercules. //= http://herc.ws - http://github.com/HerculesWS/Hercules //= //= Copyright (C) 2015 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 . //========================================================================= //= 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_Medium") Race: race (string, defaults to "RC_Formless") Element: (type, level) 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") // ... } }, **************************************************************************/ { Id: 1001 SpriteName: "SCORPION" Name: "Scorpion" Lv: 24 Hp: 1109 Sp: 0 Exp: 287 JExp: 176 AttackRange: 1 Attack: [80, 135] Def: 30 Mdef: 0 Stats: { Str: 1 Agi: 24 Vit: 24 Int: 5 Dex: 52 Luk: 5 } 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: 1564 AttackMotion: 864 DamageMotion: 576 MvpExp: 0 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: 50 Sp: 0 Exp: 2 JExp: 1 AttackRange: 1 Attack: [7, 10] 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: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 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 MvpExp: 0 },*/ { Id: 1004 SpriteName: "HORNET" Name: "Hornet" Lv: 8 Hp: 169 Sp: 0 Exp: 19 JExp: 15 AttackRange: 1 Attack: [22, 27] Def: 5 Mdef: 5 Stats: { Str: 6 Agi: 20 Vit: 8 Int: 10 Dex: 17 Luk: 5 } ViewRange: 10 ChaseRange: 12 Size: "Size_Small" Race: "RC_Insect" Element: ("Ele_Wind", 1) Mode: { CanMove: true Assist: true CanAttack: true Detector: true ChangeTargetMelee: true } MoveSpeed: 150 AttackDelay: 1292 AttackMotion: 792 DamageMotion: 216 MvpExp: 0 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: 8 Hp: 155 Sp: 0 Exp: 28 JExp: 15 AttackRange: 1 Attack: [20, 28] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 12 Vit: 8 Int: 5 Dex: 28 Luk: 0 } ViewRange: 10 ChaseRange: 12 Size: "Size_Small" Race: "RC_Brute" Element: ("Ele_Dark", 1) Mode: { CanMove: true Aggressive: true CanAttack: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 150 AttackDelay: 1276 AttackMotion: 576 DamageMotion: 384 MvpExp: 0 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 MvpExp: 0 },*/ { Id: 1007 SpriteName: "FABRE" Name: "Fabre" Lv: 2 Hp: 63 Sp: 0 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 MvpExp: 0 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: 2 Hp: 427 Sp: 0 Exp: 2 JExp: 4 AttackRange: 0 Attack: [1, 2] 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 MvpExp: 0 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: 5 Hp: 92 Sp: 0 Exp: 6 JExp: 5 AttackRange: 1 Attack: [11, 14] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 13 Vit: 5 Int: 0 Dex: 13 Luk: 10 } ViewRange: 10 ChaseRange: 12 Size: "Size_Medium" Race: "RC_Brute" Element: ("Ele_Wind", 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true } MoveSpeed: 150 AttackDelay: 1148 AttackMotion: 648 DamageMotion: 480 MvpExp: 0 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: 4 Hp: 95 Sp: 0 Exp: 5 JExp: 4 AttackRange: 1 Attack: [9, 12] Def: 5 Mdef: 15 Stats: { Str: 1 Agi: 4 Vit: 8 Int: 30 Dex: 9 Luk: 10 } 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 MvpExp: 0 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: 4 Hp: 67 Sp: 0 Exp: 5 JExp: 4 AttackRange: 1 Attack: [10, 13] Def: 10 Mdef: 0 Stats: { Str: 1 Agi: 10 Vit: 4 Int: 5 Dex: 12 Luk: 2 } 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 MvpExp: 0 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: 5 Hp: 133 Sp: 0 Exp: 6 JExp: 5 AttackRange: 1 Attack: [11, 14] Def: 0 Mdef: 5 Stats: { Str: 1 Agi: 5 Vit: 5 Int: 5 Dex: 10 Luk: 5 } 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 MvpExp: 0 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: 25 Hp: 919 Sp: 0 Exp: 329 JExp: 199 AttackRange: 1 Attack: [37, 46] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 20 Vit: 28 Int: 15 Dex: 32 Luk: 20 } 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 MvpExp: 0 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: 16 Hp: 510 Sp: 0 Exp: 66 JExp: 108 AttackRange: 1 Attack: [24, 48] Def: 0 Mdef: 5 Stats: { Str: 1 Agi: 12 Vit: 12 Int: 5 Dex: 19 Luk: 8 } 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 MvpExp: 0 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: 15 Hp: 534 Sp: 0 Exp: 50 JExp: 33 AttackRange: 1 Attack: [67, 79] Def: 0 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 MvpExp: 0 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: 31 Hp: 3040 Sp: 0 Exp: 483 JExp: 283 AttackRange: 9 Attack: [128, 153] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 8 Vit: 14 Int: 5 Dex: 90 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 MvpExp: 0 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 MvpExp: 0 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: 16 Hp: 595 Sp: 0 Exp: 105 JExp: 70 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: 150 AttackDelay: 1136 AttackMotion: 720 DamageMotion: 840 MvpExp: 0 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: 19 Hp: 531 Sp: 0 Exp: 159 JExp: 72 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 Assist: true CanAttack: true ChangeTargetMelee: true } MoveSpeed: 200 AttackDelay: 1564 AttackMotion: 864 DamageMotion: 576 MvpExp: 0 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: 12 Hp: 405 Sp: 0 Exp: 45 JExp: 32 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 MvpExp: 0 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 MvpExp: 0 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 MvpExp: 0 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: 24 Hp: 1400 Sp: 0 Exp: 408 JExp: 160 AttackRange: 1 Attack: [104, 126] 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 CanAttack: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 200 AttackDelay: 1864 AttackMotion: 864 DamageMotion: 288 MvpExp: 0 Drops: { Iron: 210 Orcish_Voucher: 9000 Oridecon_Stone: 40 Cigar: 3 Battle_Axe_: 10 Orcish_Axe: 5 Axe: 100 Orc_Warrior_Card: 1 } }, { Id: 1024 SpriteName: "WORM_TAIL" Name: "Wormtail" Lv: 14 Hp: 426 Sp: 0 Exp: 59 JExp: 40 AttackRange: 2 Attack: [42, 51] Def: 5 Mdef: 0 Stats: { Str: 1 Agi: 14 Vit: 28 Int: 5 Dex: 46 Luk: 5 } 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 MvpExp: 0 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: 15 Hp: 471 Sp: 0 Exp: 72 JExp: 48 AttackRange: 1 Attack: [46, 55] Def: 0 Mdef: 0 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 MvpExp: 0 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: 30 Hp: 2872 Sp: 0 Exp: 601 JExp: 318 AttackRange: 1 Attack: [150, 230] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 15 Vit: 20 Int: 5 Dex: 46 Luk: 15 } 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 MvpExp: 0 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 MvpExp: 0 Drops: { Jellopy: 7000 } },*/ { Id: 1028 SpriteName: "SOLDIER_SKELETON" Name: "Soldier Skeleton" Lv: 29 Hp: 2334 Sp: 0 Exp: 372 JExp: 226 AttackRange: 1 Attack: [221, 245] Def: 10 Mdef: 15 Stats: { Str: 1 Agi: 15 Vit: 22 Int: 5 Dex: 40 Luk: 15 } 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 MvpExp: 0 Drops: { Skel_Bone: 5500 Oridecon_Stone: 60 Dagger_: 12 Red_Herb: 700 Mementos: 10 Knife: 150 Stiletto: 50 Soldier_Skeleton_Card: 1 } }, { Id: 1029 SpriteName: "ISIS" Name: "Isis" Lv: 47 Hp: 7003 Sp: 0 Exp: 3709 JExp: 1550 AttackRange: 1 Attack: [423, 507] Def: 10 Mdef: 35 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 MvpExp: 0 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: 23 Hp: 1109 Sp: 0 Exp: 300 JExp: 149 AttackRange: 1 Attack: [124, 157] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 23 Vit: 28 Int: 10 Dex: 36 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 MvpExp: 0 Drops: { Emveretarcon: 50 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: 14 Hp: 344 Sp: 0 Exp: 81 JExp: 44 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 MvpExp: 0 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: 38 Hp: 5272 Sp: 0 Exp: 835 JExp: 517 AttackRange: 1 Attack: [389, 469] Def: 0 Mdef: 5 Stats: { Str: 1 Agi: 19 Vit: 38 Int: 0 Dex: 38 Luk: 20 } 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 MvpExp: 0 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: 20 Hp: 693 Sp: 0 Exp: 163 JExp: 101 AttackRange: 1 Attack: [58, 70] Def: 10 Mdef: 30 Stats: { Str: 1 Agi: 20 Vit: 25 Int: 35 Dex: 38 Luk: 30 } 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 MvpExp: 0 Drops: { Boody_Red: 50 Resin: 9000 Wooden_Block: 350 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: 22 Hp: 2152 Sp: 0 Exp: 219 JExp: 138 AttackRange: 1 Attack: [105, 127] Def: 0 Mdef: 10 Stats: { Str: 1 Agi: 22 Vit: 22 Int: 5 Dex: 34 Luk: 10 } 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 MvpExp: 0 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: 42 Hp: 5242 Sp: 0 Exp: 1517 JExp: 952 AttackRange: 1 Attack: [246, 333] Def: 25 Mdef: 15 Stats: { Str: 33 Agi: 105 Vit: 32 Int: 15 Dex: 72 Luk: 30 } 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 MvpExp: 0 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: 40 Hp: 5418 Sp: 0 Exp: 1088 JExp: 622 AttackRange: 1 Attack: [420, 500] Def: 5 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 MvpExp: 0 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: 43 Hp: 4929 Sp: 0 Exp: 1996 JExp: 993 AttackRange: 1 Attack: [240, 320] Def: 5 Mdef: 10 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 MvpExp: 0 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: 78 Hp: 415400 Sp: 0 Exp: 71500 JExp: 28600 AttackRange: 1 Attack: [780, 2880] Def: 10 Mdef: 25 Stats: { Str: 1 Agi: 75 Vit: 30 Int: 37 Dex: 86 Luk: 40 } 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: 35750 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: 0 Exp: 107250 JExp: 37895 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 MvpExp: 53625 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: 25 Hp: 3900 Sp: 0 Exp: 465 JExp: 94 AttackRange: 1 Attack: [175, 187] Def: 40 Mdef: 0 Stats: { Str: 1 Agi: 15 Vit: 25 Int: 0 Dex: 15 Luk: 0 } 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 MvpExp: 0 Drops: { Steel: 150 Stone_Heart: 9000 Zargon: 220 Elunium_Stone: 70 Coal: 210 Yellow_Gemstone: 200 Iron: 350 Golem_Card: 1 } }, { Id: 1041 SpriteName: "MUMMY" Name: "Mummy" Lv: 37 Hp: 5176 Sp: 0 Exp: 800 JExp: 602 AttackRange: 1 Attack: [305, 360] 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_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 MvpExp: 0 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: 17 Hp: 530 Sp: 0 Exp: 109 JExp: 71 AttackRange: 1 Attack: [54, 65] Def: 15 Mdef: 0 Stats: { Str: 1 Agi: 43 Vit: 17 Int: 5 Dex: 33 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 MvpExp: 0 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 MvpExp: 0 },*/ { Id: 1044 SpriteName: "OBEAUNE" Name: "Obeaune" Lv: 31 Hp: 3952 Sp: 0 Exp: 644 JExp: 407 AttackRange: 1 Attack: [141, 165] 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: { CanMove: true Aggressive: true CastSensorIdle: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 200 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 288 MvpExp: 0 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: 36 Hp: 6900 Sp: 0 Exp: 988 JExp: 625 AttackRange: 1 Attack: [220, 280] Def: 5 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: { CanMove: true Aggressive: true CanAttack: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 150 AttackDelay: 1272 AttackMotion: 72 DamageMotion: 480 MvpExp: 0 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: 72 Hp: 249000 Sp: 0 Exp: 51480 JExp: 10725 AttackRange: 1 Attack: [1340, 1590] Def: 60 Mdef: 35 Stats: { Str: 88 Agi: 90 Vit: 30 Int: 35 Dex: 125 Luk: 65 } 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: 25740 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: 3 Hp: 420 Sp: 0 Exp: 4 JExp: 4 AttackRange: 0 Attack: [1, 2] Def: 20 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 MvpExp: 0 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: 4 Hp: 48 Sp: 0 Exp: 8 JExp: 4 AttackRange: 0 Attack: [13, 17] Def: 20 Mdef: 0 Stats: { Str: 1 Agi: 6 Vit: 4 Int: 0 Dex: 14 Luk: 20 } 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 MvpExp: 0 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: 3 Hp: 80 Sp: 0 Exp: 4 JExp: 3 AttackRange: 1 Attack: [9, 12] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 3 Vit: 3 Int: 5 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 MvpExp: 0 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: 4 Hp: 83 Sp: 0 Exp: 5 JExp: 4 AttackRange: 1 Attack: [8, 11] Def: 20 Mdef: 0 Stats: { Str: 1 Agi: 3 Vit: 3 Int: 10 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 MvpExp: 0 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: 6 Hp: 126 Sp: 0 Exp: 17 JExp: 5 AttackRange: 1 Attack: [18, 24] Def: 5 Mdef: 0 Stats: { Str: 1 Agi: 6 Vit: 6 Int: 0 Dex: 11 Luk: 0 } ViewRange: 10 ChaseRange: 12 Size: "Size_Small" Race: "RC_Insect" Element: ("Ele_Neutral", 3) Mode: { CanMove: true Looter: true Assist: true CanAttack: true Detector: true ChangeTargetMelee: true } MoveSpeed: 150 AttackDelay: 1288 AttackMotion: 288 DamageMotion: 768 MvpExp: 0 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: 9 Hp: 198 Sp: 0 Exp: 20 JExp: 16 AttackRange: 1 Attack: [24, 29] Def: 5 Mdef: 10 Stats: { Str: 1 Agi: 9 Vit: 18 Int: 10 Dex: 14 Luk: 15 } 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 MvpExp: 0 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: 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 Looter: true Assist: true CanAttack: true Detector: true ChangeTargetMelee: true } MoveSpeed: 200 AttackDelay: 988 AttackMotion: 288 DamageMotion: 768 MvpExp: 0 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: 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: 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 MvpExp: 0 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: 17 Hp: 610 Sp: 0 Exp: 273 JExp: 120 AttackRange: 1 Attack: [40, 49] Def: 5 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 CanAttack: true } MoveSpeed: 300 AttackDelay: 1960 AttackMotion: 960 DamageMotion: 384 MvpExp: 0 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: 18 Hp: 641 Sp: 0 Exp: 134 JExp: 86 AttackRange: 1 Attack: [61, 72] 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 MvpExp: 0 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: 21 Hp: 879 Sp: 0 Exp: 280 JExp: 111 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 MvpExp: 0 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: 22 Hp: 926 Sp: 0 Exp: 241 JExp: 152 AttackRange: 1 Attack: [131, 159] Def: 15 Mdef: 30 Stats: { Str: 1 Agi: 22 Vit: 22 Int: 20 Dex: 49 Luk: 50 } 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 MvpExp: 0 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: 74 Hp: 212000 Sp: 0 Exp: 39325 JExp: 27170 AttackRange: 1 Attack: [880, 1110] Def: 40 Mdef: 60 Stats: { Str: 50 Agi: 165 Vit: 60 Int: 95 Dex: 70 Luk: 130 } 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: 19662 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: 25 Hp: 1619 Sp: 0 Exp: 310 JExp: 188 AttackRange: 1 Attack: [198, 220] Def: 10 Mdef: 0 Stats: { Str: 1 Agi: 25 Vit: 55 Int: 15 Dex: 20 Luk: 25 } 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 MvpExp: 0 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: 49 Hp: 4437 Sp: 0 Exp: 1912 JExp: 1912 AttackRange: 1 Attack: [447, 529] Def: 0 Mdef: 40 Stats: { Str: 1 Agi: 74 Vit: 25 Int: 15 Dex: 64 Luk: 10 } 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 MvpExp: 0 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: 0 Exp: 4 JExp: 5 AttackRange: 1 Attack: [12, 16] 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 MvpExp: 0 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: 60 Sp: 0 Exp: 6 JExp: 2 AttackRange: 1 Attack: [9, 12] 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 CanAttack: true } MoveSpeed: 200 AttackDelay: 1456 AttackMotion: 456 DamageMotion: 336 MvpExp: 0 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: 24 Hp: 1648 Sp: 0 Exp: 215 JExp: 132 AttackRange: 1 Attack: [155, 188] Def: 0 Mdef: 15 Stats: { Str: 1 Agi: 12 Vit: 24 Int: 0 Dex: 26 Luk: 5 } 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 MvpExp: 0 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: 48 Hp: 11990 Sp: 0 Exp: 3080 JExp: 2098 AttackRange: 1 Attack: [200, 1250] Def: 5 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: { CanMove: true Aggressive: true CanAttack: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 150 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 384 MvpExp: 0 Drops: { Fin: 5335 Oridecon_Stone: 115 Granpa_Beard: 2 Trident_: 2 Feather: 3000 Skyblue_Jewel: 20 Gill: 1500 Strouf_Card: 1 } }, { Id: 1066 SpriteName: "VADON" Name: "Vadon" Lv: 19 Hp: 1017 Sp: 0 Exp: 135 JExp: 85 AttackRange: 1 Attack: [74, 85] Def: 20 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: { CanMove: true CastSensorIdle: true CanAttack: true } MoveSpeed: 300 AttackDelay: 1632 AttackMotion: 432 DamageMotion: 540 MvpExp: 0 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: 23 Hp: 1620 Sp: 0 Exp: 240 JExp: 149 AttackRange: 1 Attack: [109, 131] Def: 30 Mdef: 0 Stats: { Str: 1 Agi: 23 Vit: 23 Int: 5 Dex: 36 Luk: 12 } 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 MvpExp: 0 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: 14 Hp: 660 Sp: 0 Exp: 59 JExp: 40 AttackRange: 7 Attack: [22, 28] Def: 0 Mdef: 40 Stats: { Str: 1 Agi: 14 Vit: 14 Int: 0 Dex: 40 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 MvpExp: 0 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: 30 Hp: 4299 Sp: 0 Exp: 1251 JExp: 638 AttackRange: 1 Attack: [168, 199] Def: 5 Mdef: 20 Stats: { Str: 1 Agi: 30 Vit: 30 Int: 41 Dex: 62 Luk: 30 } 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 MvpExp: 0 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: 11 Hp: 507 Sp: 0 Exp: 38 JExp: 28 AttackRange: 1 Attack: [28, 37] Def: 15 Mdef: 0 Stats: { Str: 1 Agi: 11 Vit: 11 Int: 5 Dex: 16 Luk: 2 } 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 MvpExp: 0 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: 25 Hp: 1676 Sp: 0 Exp: 233 JExp: 142 AttackRange: 1 Attack: [145, 178] Def: 10 Mdef: 15 Stats: { Str: 25 Agi: 13 Vit: 25 Int: 5 Dex: 25 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 MvpExp: 0 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: 60 Hp: 8409 Sp: 0 Exp: 3990 JExp: 450 AttackRange: 1 Attack: [110, 760] Def: 5 Mdef: 50 Stats: { Str: 1 Agi: 55 Vit: 43 Int: 88 Dex: 80 Luk: 46 } 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 MvpExp: 0 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: 20 Hp: 2451 Sp: 0 Exp: 163 JExp: 101 AttackRange: 1 Attack: [71, 81] Def: 35 Mdef: 0 Stats: { Str: 18 Agi: 20 Vit: 15 Int: 0 Dex: 36 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 MvpExp: 0 Drops: { Crap_Shell: 5500 Nipper: 1500 Stone: 700 Sparkling_Dust: 13 Elunium_Stone: 37 Crab_Card: 1 } }, { Id: 1074 SpriteName: "SHELLFISH" Name: "Shellfish" Lv: 15 Hp: 920 Sp: 0 Exp: 66 JExp: 44 AttackRange: 1 Attack: [35, 42] Def: 35 Mdef: 0 Stats: { Str: 1 Agi: 12 Vit: 8 Int: 0 Dex: 32 Luk: 5 } 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 MvpExp: 0 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 MvpExp: 0 },*/ { Id: 1076 SpriteName: "SKELETON" Name: "Skeleton" Lv: 10 Hp: 234 Sp: 0 Exp: 18 JExp: 14 AttackRange: 1 Attack: [39, 47] Def: 10 Mdef: 10 Stats: { Str: 1 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: 528 DamageMotion: 576 MvpExp: 0 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: 19 Hp: 665 Sp: 0 Exp: 186 JExp: 93 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 MvpExp: 0 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: 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_Earth", 1) Mode: { Plant: true } MoveSpeed: 2000 AttackDelay: 1 AttackMotion: 1 DamageMotion: 1 MvpExp: 0 Drops: { Red_Herb: 5500 Flower: 1000 Shoot: 1000 Stem: 500 Pointed_Scale: 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, 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_Earth", 1) Mode: { Plant: true } MoveSpeed: 2000 AttackDelay: 1 AttackMotion: 1 DamageMotion: 1 MvpExp: 0 Drops: { Blue_Herb: 5500 Flower: 1000 Shoot: 1000 Stem: 500 Pointed_Scale: 300 Fruit_Of_Mastela: 50 Grape: 1000 Centimental_Leaf: 2 } }, { Id: 1080 SpriteName: "GREEN_PLANT" Name: "Green Plant" 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_Earth", 1) Mode: { Plant: true } MoveSpeed: 2000 AttackDelay: 1 AttackMotion: 1 DamageMotion: 1 MvpExp: 0 Drops: { Green_Herb: 7000 Flower: 1000 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: 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_Earth", 1) Mode: { Plant: true } MoveSpeed: 2000 AttackDelay: 1 AttackMotion: 1 DamageMotion: 1 MvpExp: 0 Drops: { Yellow_Herb: 5500 Flower: 1000 Shoot: 1000 Stem: 500 Pointed_Scale: 300 Singing_Plant: 5 Fluff: 500 Centimental_Flower: 2 } }, { Id: 1082 SpriteName: "WHITE_PLANT" Name: "White Plant" 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_Earth", 1) Mode: { Plant: true } MoveSpeed: 2000 AttackDelay: 1 AttackMotion: 1 DamageMotion: 1 MvpExp: 0 Drops: { White_Herb: 5500 Flower: 1000 Deadly_Noxious_Herb: 20 Stem: 3000 Pointed_Scale: 1500 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, 2] 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 MvpExp: 0 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: 15 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_Earth", 1) Mode: { Plant: true } MoveSpeed: 2000 AttackDelay: 1 AttackMotion: 1 DamageMotion: 1 MvpExp: 0 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: 15 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_Earth", 1) Mode: { Plant: true } MoveSpeed: 2000 AttackDelay: 1 AttackMotion: 1 DamageMotion: 1 MvpExp: 0 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: 64 Hp: 126000 Sp: 0 Exp: 14300 JExp: 7150 AttackRange: 1 Attack: [870, 1145] Def: 60 Mdef: 45 Stats: { Str: 65 Agi: 75 Vit: 35 Int: 45 Dex: 85 Luk: 150 } 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 MvpExp: 7150 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: 77 Hp: 585700 Sp: 0 Exp: 58630 JExp: 32890 AttackRange: 1 Attack: [2257, 2542] Def: 40 Mdef: 45 Stats: { Str: 1 Agi: 91 Vit: 30 Int: 70 Dex: 105 Luk: 90 } 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: 29315 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: 3016 Sp: 0 Exp: 110 JExp: 88 AttackRange: 1 Attack: [71, 82] Def: 10 Mdef: 30 Stats: { Str: 77 Agi: 28 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 MvpExp: 0 Drops: { Oldmans_Romance: 50 Grasshoppers_Leg: 8000 Azure_Jewel: 1000 Grasshopper_Doll: 1500 Angels_Arrival: 1000 Center_Potion: 700 Guitar_Of_Gentle_Breeze: 10 Vocal_Card: 1 } }, { Id: 1089 SpriteName: "TOAD" Name: "Toad" Lv: 10 Hp: 5065 Sp: 0 Exp: 100 JExp: 50 AttackRange: 1 Attack: [26, 32] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 5 Vit: 10 Int: 10 Dex: 10 Luk: 25 } 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 MvpExp: 0 Drops: { Big_Sis_Ribbon: 50 Honey: 2000 Bluish_Green_Jewel: 1000 Glass_Bead: 1500 Alchol: 100 Detrimindexta: 100 Kiss_Of_Angel: 1000 Toad_Card: 1 } }, { Id: 1090 SpriteName: "MASTERING" Name: "Mastering" Lv: 2 Hp: 2415 Sp: 0 Exp: 30 JExp: 10 AttackRange: 1 Attack: [18, 24] Def: 0 Mdef: 10 Stats: { Str: 1 Agi: 2 Vit: 2 Int: 0 Dex: 17 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 MvpExp: 0 Drops: { Snowy_Horn: 200 Unripe_Apple: 50 Scarlet_Jewel: 1000 Angels_Safeguard: 1000 Apple: 8000 Apple: 8000 Apple_Juice: 4000 Mastering_Card: 1 } }, { Id: 1091 SpriteName: "DRAGON_FLY" Name: "Dragon Fly" Lv: 8 Hp: 2400 Sp: 0 Exp: 88 JExp: 44 AttackRange: 1 Attack: [22, 27] Def: 40 Mdef: 0 Stats: { Str: 1 Agi: 20 Vit: 8 Int: 15 Dex: 17 Luk: 5 } 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 MvpExp: 0 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: 24 Hp: 12240 Sp: 0 Exp: 247 JExp: 176 AttackRange: 1 Attack: [135, 159] Def: 10 Mdef: 0 Stats: { Str: 57 Agi: 45 Vit: 48 Int: 20 Dex: 50 Luk: 65 } 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 MvpExp: 0 Drops: { Western_Grace: 200 Claw_Of_Wolves: 8000 Golden_Jewel: 1500 Star_Dust_Blade: 100 Angels_Warmth: 1000 Red_Jewel: 10 Monster_Juice: 50 Vagabond_Wolf_Card: 1 } }, { Id: 1093 SpriteName: "ECLIPSE" Name: "Eclipse" Lv: 6 Hp: 1800 Sp: 0 Exp: 60 JExp: 55 AttackRange: 1 Attack: [20, 26] 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 MvpExp: 0 Drops: { Fillet: 200 Red_Herb: 8000 White_Jewel: 1200 Glass_Bead: 1500 Four_Leaf_Clover: 30 Rainbow_Carrot: 50 Angels_Protection: 1000 Eclipse_Card: 1 } }, { Id: 1094 SpriteName: "AMBERNITE" Name: "Ambernite" Lv: 13 Hp: 495 Sp: 0 Exp: 57 JExp: 38 AttackRange: 1 Attack: [39, 46] Def: 30 Mdef: 0 Stats: { Str: 1 Agi: 13 Vit: 13 Int: 5 Dex: 18 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 MvpExp: 0 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: 17 Hp: 688 Sp: 0 Exp: 109 JExp: 71 AttackRange: 1 Attack: [60, 71] Def: 10 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 Looter: true Assist: true CanAttack: true Detector: true ChangeTargetMelee: true } MoveSpeed: 300 AttackDelay: 1288 AttackMotion: 288 DamageMotion: 384 MvpExp: 0 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: 20 Hp: 55000 Sp: 0 Exp: 163 JExp: 144 AttackRange: 1 Attack: [120, 195] Def: 0 Mdef: 70 Stats: { Str: 1 Agi: 50 Vit: 20 Int: 75 Dex: 68 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 MvpExp: 0 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: 4 Hp: 420 Sp: 0 Exp: 5 JExp: 4 AttackRange: 0 Attack: [1, 2] Def: 20 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 MvpExp: 0 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: 75 Hp: 38000 Sp: 0 Exp: 28000 JExp: 22000 AttackRange: 1 Attack: [530, 1697] Def: 25 Mdef: 31 Stats: { Str: 5 Agi: 65 Vit: 10 Int: 82 Dex: 77 Luk: 33 } 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: 768 DamageMotion: 360 MvpExp: 0 Drops: { Rotten_Bandage: 3000 Healing_Staff: 10 Mementos: 550 Oridecon: 105 Sacred_Masque: 4365 Mitten_Of_Presbyter: 1 Blessed_Wand: 3 Anubis_Card: 1 } }, { Id: 1099 SpriteName: "ARGIOPE" Name: "Argiope" Lv: 41 Hp: 4382 Sp: 0 Exp: 1797 JExp: 849 AttackRange: 1 Attack: [395, 480] Def: 30 Mdef: 0 Stats: { Str: 1 Agi: 41 Vit: 31 Int: 10 Dex: 56 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 MvpExp: 0 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: 25 Hp: 1117 Sp: 0 Exp: 388 JExp: 188 AttackRange: 1 Attack: [158, 191] Def: 15 Mdef: 0 Stats: { Str: 1 Agi: 25 Vit: 25 Int: 5 Dex: 32 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 MvpExp: 0 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: 50 Hp: 8578 Sp: 0 Exp: 2706 JExp: 1480 AttackRange: 1 Attack: [487, 590] Def: 15 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 Aggressive: true CastSensorIdle: true CanAttack: true Detector: true CastSensorChase: true ChangeChase: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 100 AttackDelay: 868 AttackMotion: 480 DamageMotion: 120 MvpExp: 0 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: 44 Hp: 5415 Sp: 0 Exp: 2503 JExp: 1034 AttackRange: 1 Attack: [198, 398] Def: 0 Mdef: 60 Stats: { Str: 1 Agi: 76 Vit: 24 Int: 85 Dex: 65 Luk: 15 } 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 MvpExp: 0 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: 23 Hp: 1424 Sp: 0 Exp: 264 JExp: 162 AttackRange: 1 Attack: [90, 112] Def: 5 Mdef: 5 Stats: { Str: 35 Agi: 23 Vit: 46 Int: 5 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: 200 AttackDelay: 1604 AttackMotion: 840 DamageMotion: 756 MvpExp: 0 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: 17 Hp: 817 Sp: 0 Exp: 120 JExp: 78 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 MvpExp: 0 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: 19 Hp: 760 Sp: 0 Exp: 135 JExp: 85 AttackRange: 1 Attack: [68, 79] Def: 15 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 Looter: true Assist: true CanAttack: true Detector: true ChangeTargetMelee: true } MoveSpeed: 150 AttackDelay: 1288 AttackMotion: 288 DamageMotion: 576 MvpExp: 0 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: 27 Hp: 1716 Sp: 0 Exp: 427 JExp: 266 AttackRange: 1 Attack: [169, 208] Def: 0 Mdef: 10 Stats: { Str: 56 Agi: 27 Vit: 45 Int: 15 Dex: 56 Luk: 10 } 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 MvpExp: 0 Drops: { Katar_: 5 Claw_Of_Desert_Wolf: 5500 Mink_Coat: 1 Meat: 1200 Claw_Of_Wolves: 2000 Oridecon_Stone: 53 Stiletto_: 140 Desert_Wolf_Card: 1 } }, { Id: 1107 SpriteName: "DESERT_WOLF_B" Name: "Desert Wolf Baby" JName: "Baby Desert Wolf" Lv: 9 Hp: 164 Sp: 0 Exp: 20 JExp: 16 AttackRange: 1 Attack: [30, 36] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 9 Vit: 9 Int: 5 Dex: 21 Luk: 40 } ViewRange: 10 ChaseRange: 12 Size: "Size_Small" Race: "RC_Brute" Element: ("Ele_Fire", 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true } MoveSpeed: 300 AttackDelay: 1600 AttackMotion: 900 DamageMotion: 240 MvpExp: 0 Drops: { Phracon: 85 Animals_Skin: 5500 Adventureres_Suit_: 80 Meat: 600 Cotton_Shirt: 200 Asura_: 5 Orange: 1000 Desert_Wolf_Babe_Card: 1 } }, { Id: 1108 SpriteName: "DEVIACE" Name: "Deviace" Lv: 47 Hp: 20090 Sp: 0 Exp: 9988 JExp: 7207 AttackRange: 1 Attack: [514, 1024] Def: 10 Mdef: 20 Stats: { Str: 1 Agi: 47 Vit: 62 Int: 48 Dex: 62 Luk: 25 } 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 MvpExp: 0 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: 46 Hp: 6666 Sp: 0 Exp: 2662 JExp: 1278 AttackRange: 1 Attack: [475, 560] 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 MvpExp: 0 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: 33 Hp: 2697 Sp: 0 Exp: 889 JExp: 455 AttackRange: 1 Attack: [197, 249] Def: 0 Mdef: 10 Stats: { Str: 50 Agi: 50 Vit: 40 Int: 35 Dex: 69 Luk: 40 } 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 MvpExp: 0 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: 1111 SpriteName: "DRAINLIAR" Name: "Drainliar" Lv: 24 Hp: 1162 Sp: 0 Exp: 431 JExp: 176 AttackRange: 1 Attack: [74, 84] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 36 Vit: 24 Int: 0 Dex: 78 Luk: 0 } 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 MvpExp: 0 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: 70 Hp: 326666 Sp: 0 Exp: 28600 JExp: 22880 AttackRange: 1 Attack: [1800, 2100] Def: 20 Mdef: 35 Stats: { Str: 85 Agi: 80 Vit: 49 Int: 75 Dex: 79 Luk: 50 } 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 MvpExp: 14300 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: 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 MvpExp: 0 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: 21 Hp: 1044 Sp: 0 Exp: 218 JExp: 140 AttackRange: 1 Attack: [80, 102] Def: 0 Mdef: 10 Stats: { Str: 1 Agi: 53 Vit: 17 Int: 0 Dex: 38 Luk: 5 } 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 MvpExp: 0 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: 152000 Sp: 0 Exp: 25025 JExp: 12870 AttackRange: 1 Attack: [1215, 1565] Def: 15 Mdef: 15 Stats: { Str: 78 Agi: 70 Vit: 85 Int: 66 Dex: 90 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: 12512 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: 250 Elunium: 2300 Krieg: 100 Eddga_Card: 1 } }, { Id: 1116 SpriteName: "EGGYRA" Name: "Eggyra" Lv: 24 Hp: 633 Sp: 0 Exp: 215 JExp: 220 AttackRange: 1 Attack: [85, 107] Def: 20 Mdef: 25 Stats: { Str: 1 Agi: 36 Vit: 24 Int: 0 Dex: 32 Luk: 0 } 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 MvpExp: 0 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: 58 Hp: 16506 Sp: 0 Exp: 2890 JExp: 1827 AttackRange: 1 Attack: [420, 670] Def: 5 Mdef: 60 Stats: { Str: 1 Agi: 29 Vit: 58 Int: 80 Dex: 68 Luk: 30 } 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 MvpExp: 0 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: 26 Hp: 2092 Sp: 0 Exp: 357 JExp: 226 AttackRange: 3 Attack: [242, 273] Def: 10 Mdef: 35 Stats: { Str: 1 Agi: 26 Vit: 35 Int: 5 Dex: 43 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 MvpExp: 0 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: 30 Hp: 2023 Sp: 0 Exp: 529 JExp: 319 AttackRange: 1 Attack: [200, 239] Def: 0 Mdef: 10 Stats: { Str: 35 Agi: 30 Vit: 38 Int: 15 Dex: 53 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 MvpExp: 0 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: 18 Hp: 73300 Sp: 0 Exp: 101 JExp: 108 AttackRange: 1 Attack: [82, 122] Def: 0 Mdef: 60 Stats: { Str: 40 Agi: 27 Vit: 18 Int: 45 Dex: 72 Luk: 30 } 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 MvpExp: 0 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: 29 Hp: 2252 Sp: 0 Exp: 495 JExp: 301 AttackRange: 1 Attack: [154, 185] Def: 10 Mdef: 50 Stats: { Str: 25 Agi: 29 Vit: 46 Int: 60 Dex: 64 Luk: 105 } 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 MvpExp: 0 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: 25 Hp: 1176 Sp: 0 Exp: 310 JExp: 188 AttackRange: 1 Attack: [118, 140] Def: 10 Mdef: 5 Stats: { Str: 1 Agi: 53 Vit: 25 Int: 20 Dex: 38 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 MvpExp: 0 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: 24 Hp: 1034 Sp: 0 Exp: 287 JExp: 176 AttackRange: 1 Attack: [88, 100] Def: 10 Mdef: 5 Stats: { Str: 1 Agi: 24 Vit: 24 Int: 15 Dex: 66 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 MvpExp: 0 Drops: { Iron: 250 Scell: 9000 Indian_Hair_Piece: 3 Flail_: 10 Buckler_: 1 Red_Herb: 1550 Goblini_Mask: 3 Goblin_Card: 1 } }, { Id: 1124 SpriteName: "GOBLIN_3" Name: "Goblin" Lv: 24 Hp: 1034 Sp: 0 Exp: 357 JExp: 176 AttackRange: 1 Attack: [132, 165] Def: 10 Mdef: 5 Stats: { Str: 1 Agi: 24 Vit: 24 Int: 15 Dex: 24 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 MvpExp: 0 Drops: { Iron: 230 Scell: 9000 Red_Bandana: 3 Goblin_Mask_02: 15 Buckler_: 1 Red_Herb: 1550 Yellow_Herb: 220 Goblin_Card: 1 } }, { Id: 1125 SpriteName: "GOBLIN_4" Name: "Goblin" Lv: 23 Hp: 1359 Sp: 0 Exp: 264 JExp: 164 AttackRange: 1 Attack: [109, 131] Def: 10 Mdef: 5 Stats: { Str: 1 Agi: 23 Vit: 46 Int: 15 Dex: 36 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 MvpExp: 0 Drops: { Yellow_Live: 100 Iron: 170 Goblin_Mask_01: 15 Gangster_Patch: 3 Smasher_: 10 Buckler_: 1 Red_Herb: 1500 Goblin_Card: 1 } }, { Id: 1126 SpriteName: "GOBLIN_5" Name: "Goblin" Lv: 22 Hp: 1952 Sp: 0 Exp: 241 JExp: 152 AttackRange: 1 Attack: [105, 127] Def: 10 Mdef: 5 Stats: { Str: 1 Agi: 22 Vit: 22 Int: 15 Dex: 32 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 MvpExp: 0 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: 26 Hp: 2282 Sp: 0 Exp: 550 JExp: 300 AttackRange: 1 Attack: [146, 177] Def: 0 Mdef: 30 Stats: { Str: 1 Agi: 26 Vit: 42 Int: 5 Dex: 49 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 MvpExp: 0 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: 18 Hp: 659 Sp: 0 Exp: 134 JExp: 86 AttackRange: 1 Attack: [58, 69] Def: 10 Mdef: 0 Stats: { Str: 22 Agi: 18 Vit: 28 Int: 10 Dex: 47 Luk: 15 } 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 MvpExp: 0 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: 34 Hp: 1939 Sp: 0 Exp: 786 JExp: 479 AttackRange: 1 Attack: [275, 327] Def: 99 Mdef: 50 Stats: { Str: 1 Agi: 34 Vit: 10 Int: 0 Dex: 50 Luk: 0 } 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 MvpExp: 0 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: 38 Hp: 3581 Sp: 0 Exp: 1408 JExp: 880 AttackRange: 1 Attack: [315, 382] Def: 5 Mdef: 30 Stats: { Str: 1 Agi: 38 Vit: 38 Int: 43 Dex: 75 Luk: 45 } 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 MvpExp: 0 Drops: { Pumpkin_Head: 9000 Zargon: 900 Elunium: 31 Tights_: 5 Frozen_Heart: 5 Pumpkin: 1000 Jakk_Card: 1 } }, { Id: 1131 SpriteName: "JOKER" Name: "Joker" Lv: 57 Hp: 12450 Sp: 0 Exp: 3706 JExp: 2362 AttackRange: 1 Attack: [621, 738] Def: 10 Mdef: 35 Stats: { Str: 1 Agi: 143 Vit: 47 Int: 75 Dex: 98 Luk: 175 } 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 MvpExp: 0 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: 63 Hp: 19276 Sp: 0 Exp: 4378 JExp: 2750 AttackRange: 1 Attack: [875, 1025] Def: 45 Mdef: 10 Stats: { Str: 58 Agi: 65 Vit: 48 Int: 5 Dex: 73 Luk: 40 } 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 MvpExp: 0 Drops: { Skel_Bone: 8000 Elunium: 191 Bone_Helm: 1 Mirror_Shield_: 2 Patriotism_Marks: 10 White_Herb: 2000 Saber_: 2 Khalitzburg_Card: 1 } }, { Id: 1133 SpriteName: "KOBOLD_1" Name: "Kobold" Lv: 36 Hp: 3893 Sp: 0 Exp: 988 JExp: 625 AttackRange: 1 Attack: [265, 318] Def: 15 Mdef: 10 Stats: { Str: 1 Agi: 90 Vit: 36 Int: 30 Dex: 52 Luk: 20 } 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 MvpExp: 0 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: 31 Hp: 2179 Sp: 0 Exp: 806 JExp: 407 AttackRange: 1 Attack: [262, 324] Def: 15 Mdef: 10 Stats: { Str: 1 Agi: 31 Vit: 31 Int: 20 Dex: 46 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 MvpExp: 0 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: 31 Hp: 2179 Sp: 0 Exp: 644 JExp: 407 AttackRange: 1 Attack: [186, 216] Def: 15 Mdef: 10 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 MvpExp: 0 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: 2179 Sp: 0 Exp: 806 JExp: 407 AttackRange: 1 Attack: [262, 324] Def: 15 Mdef: 10 Stats: { Str: 1 Agi: 31 Vit: 31 Int: 20 Dex: 46 Luk: 20 } ViewRange: 10 ChaseRange: 12 Size: "Size_Medium" Race: "RC_DemiHuman" Element: ("Ele_Poison", 2) Mode: { CanMove: true Aggressive: true Assist: true Boss: true CanAttack: true Detector: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 200 AttackDelay: 1528 AttackMotion: 528 DamageMotion: 360 MvpExp: 0 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: 2179 Sp: 0 Exp: 644 JExp: 407 AttackRange: 1 Attack: [186, 216] Def: 15 Mdef: 10 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 Boss: true CanAttack: true Detector: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 300 AttackDelay: 1228 AttackMotion: 528 DamageMotion: 360 MvpExp: 0 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: 26 Hp: 3195 Sp: 0 Exp: 393 JExp: 248 AttackRange: 1 Attack: [120, 151] Def: 5 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 MvpExp: 0 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: 26 Hp: 2472 Sp: 0 Exp: 393 JExp: 248 AttackRange: 1 Attack: [118, 149] Def: 10 Mdef: 0 Stats: { Str: 1 Agi: 26 Vit: 24 Int: 5 Dex: 45 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 MvpExp: 0 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: 40 Hp: 4214 Sp: 0 Exp: 1238 JExp: 752 AttackRange: 1 Attack: [315, 382] Def: 0 Mdef: 60 Stats: { Str: 1 Agi: 40 Vit: 20 Int: 79 Dex: 78 Luk: 20 } 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 MvpExp: 0 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: 21 Hp: 2087 Sp: 0 Exp: 218 JExp: 140 AttackRange: 1 Attack: [84, 106] 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: { CanMove: true CanAttack: true } MoveSpeed: 400 AttackDelay: 2280 AttackMotion: 1080 DamageMotion: 864 MvpExp: 0 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: 28 Hp: 3518 Sp: 0 Exp: 461 JExp: 284 AttackRange: 1 Attack: [120, 320] Def: 0 Mdef: 40 Stats: { Str: 1 Agi: 28 Vit: 28 Int: 0 Dex: 33 Luk: 50 } ViewRange: 10 ChaseRange: 12 Size: "Size_Small" Race: "RC_Plant" Element: ("Ele_Water", 2) MoveSpeed: 800 AttackDelay: 1201 AttackMotion: 1 DamageMotion: 1 MvpExp: 0 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: 41 Hp: 3222 Sp: 0 Exp: 1078 JExp: 1276 AttackRange: 1 Attack: [355, 422] Def: 0 Mdef: 25 Stats: { Str: 1 Agi: 62 Vit: 36 Int: 44 Dex: 69 Luk: 45 } 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 MvpExp: 0 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: 31 Hp: 5034 Sp: 0 Exp: 586 JExp: 370 AttackRange: 1 Attack: [211, 252] Def: 0 Mdef: 5 Stats: { Str: 1 Agi: 31 Vit: 25 Int: 5 Dex: 52 Luk: 30 } 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 MvpExp: 0 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: 18 Hp: 1109 Sp: 0 Exp: 134 JExp: 86 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 MvpExp: 0 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: 31 Hp: 2585 Sp: 0 Exp: 967 JExp: 407 AttackRange: 1 Attack: [134, 160] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 47 Vit: 38 Int: 5 Dex: 64 Luk: 5 } 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 MvpExp: 0 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: 81 Hp: 169000 Sp: 0 Exp: 42900 JExp: 17875 AttackRange: 1 Attack: [1800, 2070] Def: 60 Mdef: 25 Stats: { Str: 95 Agi: 97 Vit: 76 Int: 95 Dex: 82 Luk: 105 } 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 MvpExp: 21450 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: 79 Hp: 16408 Sp: 0 Exp: 6876 JExp: 4697 AttackRange: 1 Attack: [827, 1100] Def: 28 Mdef: 18 Stats: { Str: 1 Agi: 74 Vit: 50 Int: 57 Dex: 77 Luk: 69 } 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 MvpExp: 0 Drops: { Slender_Snake: 5335 Whip_Of_Red_Flame: 250 Animal_Blood: 200 Sea_Witch_Foot: 20 Scarlet_Jewel: 250 Turtle_Shell: 3500 Penetration: 3 Medusa_Card: 1 } }, { Id: 1149 SpriteName: "MINOROUS" Name: "Minorous" Lv: 52 Hp: 7431 Sp: 0 Exp: 2750 JExp: 1379 AttackRange: 1 Attack: [590, 770] Def: 15 Mdef: 5 Stats: { Str: 65 Agi: 42 Vit: 61 Int: 66 Dex: 52 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 MvpExp: 0 Drops: { Nose_Ring: 5335 Oridecon_Stone: 196 Two_Handed_Axe_: 2 Hammer_Of_Blacksmith: 10 Sweet_Potato: 1500 Axe: 200 Lemon: 300 Minorous_Card: 1 } }, { Id: 1150 SpriteName: "MOONLIGHT" Name: "Moonlight Flower" Lv: 67 Hp: 120000 Sp: 0 Exp: 27500 JExp: 14300 AttackRange: 1 Attack: [1200, 1700] Def: 10 Mdef: 55 Stats: { Str: 55 Agi: 99 Vit: 55 Int: 82 Dex: 95 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 MvpExp: 13750 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: 38 Hp: 3745 Sp: 0 Exp: 1391 JExp: 688 AttackRange: 1 Attack: [365, 445] Def: 0 Mdef: 40 Stats: { Str: 1 Agi: 38 Vit: 18 Int: 0 Dex: 53 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 MvpExp: 0 Drops: { Gas_Mask: 2 Wooden_Block: 800 Wig: 10 Oridecon_Stone: 65 Elunium_Stone: 97 Anodyne: 20 Grape: 35 Myst_Card: 1 } }, { Id: 1152 SpriteName: "ORC_SKELETON" Name: "Orc Skeleton" Lv: 28 Hp: 2278 Sp: 0 Exp: 315 JExp: 194 AttackRange: 1 Attack: [190, 236] Def: 10 Mdef: 10 Stats: { Str: 1 Agi: 14 Vit: 18 Int: 0 Dex: 30 Luk: 15 } 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 MvpExp: 0 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: 24 Hp: 1568 Sp: 0 Exp: 196 JExp: 120 AttackRange: 1 Attack: [151, 184] Def: 5 Mdef: 10 Stats: { Str: 1 Agi: 12 Vit: 24 Int: 0 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: 400 AttackDelay: 2852 AttackMotion: 1152 DamageMotion: 840 MvpExp: 0 Drops: { Nail_Of_Orc: 5500 Sticky_Mucus: 3000 Emperium: 1 Orc_Zombie_Card: 1 } }, { Id: 1154 SpriteName: "PASANA" Name: "Pasana" Lv: 61 Hp: 8289 Sp: 0 Exp: 4087 JExp: 2135 AttackRange: 1 Attack: [513, 682] Def: 29 Mdef: 35 Stats: { Str: 1 Agi: 73 Vit: 50 Int: 61 Dex: 59 Luk: 43 } 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 MvpExp: 0 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: 44 Hp: 6881 Sp: 0 Exp: 1677 JExp: 1034 AttackRange: 1 Attack: [360, 427] Def: 30 Mdef: 30 Stats: { Str: 1 Agi: 44 Vit: 62 Int: 55 Dex: 79 Luk: 60 } 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: 200 AttackDelay: 1624 AttackMotion: 620 DamageMotion: 384 MvpExp: 0 Drops: { Dragon_Canine: 5335 Dragon_Train: 300 Oridecon_Stone: 140 White_Herb: 1000 Flail: 150 Zargon: 1500 Aloebera: 15 Petit_Card: 1 } }, { Id: 1156 SpriteName: "PETIT_" Name: "Petite" Lv: 45 Hp: 5747 Sp: 0 Exp: 1758 JExp: 1075 AttackRange: 1 Attack: [300, 355] Def: 20 Mdef: 45 Stats: { Str: 1 Agi: 113 Vit: 45 Int: 55 Dex: 73 Luk: 80 } 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: 150 AttackDelay: 1420 AttackMotion: 1080 DamageMotion: 528 MvpExp: 0 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: 93 Hp: 445997 Sp: 0 Exp: 114990 JExp: 41899 AttackRange: 1 Attack: [2267, 3015] Def: 67 Mdef: 70 Stats: { Str: 1 Agi: 93 Vit: 100 Int: 104 Dex: 89 Luk: 112 } 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 MvpExp: 57495 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: 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: 0 Dex: 88 Luk: 75 } 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 MvpExp: 0 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: 69 Hp: 188000 Sp: 0 Exp: 32175 JExp: 16445 AttackRange: 1 Attack: [880, 1530] Def: 10 Mdef: 20 Stats: { Str: 1 Agi: 85 Vit: 78 Int: 35 Dex: 130 Luk: 60 } 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 MvpExp: 16087 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: 18 Hp: 733 Sp: 0 Exp: 122 JExp: 78 AttackRange: 1 Attack: [64, 75] Def: 15 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 Looter: true Assist: true CanAttack: true Detector: true ChangeTargetMelee: true } MoveSpeed: 200 AttackDelay: 1288 AttackMotion: 288 DamageMotion: 576 MvpExp: 0 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: 10 Hp: 354 Sp: 0 Exp: 23 JExp: 18 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 MvpExp: 0 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: 17 Hp: 1333 Sp: 0 Exp: 333 JExp: 333 AttackRange: 3 Attack: [105, 127] Def: 0 Mdef: 2 Stats: { Str: 1 Agi: 18 Vit: 24 Int: 11 Dex: 37 Luk: 10 } 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 MvpExp: 0 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: 52 Hp: 8613 Sp: 0 Exp: 3410 JExp: 1795 AttackRange: 1 Attack: [830, 930] Def: 40 Mdef: 15 Stats: { Str: 58 Agi: 47 Vit: 42 Int: 5 Dex: 69 Luk: 26 } 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 MvpExp: 0 Drops: { Elunium: 106 Iron_Cane: 1 Chain_Mail_: 2 Two_Hand_Sword_: 2 Katana: 100 Patriotism_Marks: 10 Brigan: 4850 Daydric_Card: 1 } }, { Id: 1164 SpriteName: "REQUIEM" Name: "Requiem" Lv: 35 Hp: 3089 Sp: 0 Exp: 800 JExp: 458 AttackRange: 1 Attack: [220, 272] Def: 0 Mdef: 15 Stats: { Str: 1 Agi: 53 Vit: 35 Int: 5 Dex: 57 Luk: 2 } 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 MvpExp: 0 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: 34 Hp: 3413 Sp: 0 Exp: 810 JExp: 492 AttackRange: 1 Attack: [180, 205] Def: 10 Mdef: 25 Stats: { Str: 24 Agi: 34 Vit: 58 Int: 38 Dex: 60 Luk: 5 } 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 MvpExp: 0 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: 26 Hp: 2092 Sp: 0 Exp: 521 JExp: 248 AttackRange: 1 Attack: [120, 150] Def: 10 Mdef: 5 Stats: { Str: 1 Agi: 26 Vit: 54 Int: 10 Dex: 37 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 MvpExp: 0 Drops: { Wild_Boars_Mane: 9000 Grape: 300 Animal_Blood: 2 Eagle_Eyes: 1 Anodyne: 10 Elunium_Stone: 70 Royal_Jelly: 2 Savage_Card: 1 } }, { Id: 1167 SpriteName: "SAVAGE_BABE" Name: "Savage Babe" Lv: 7 Hp: 182 Sp: 0 Exp: 14 JExp: 12 AttackRange: 1 Attack: [20, 25] 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 CanAttack: true } MoveSpeed: 400 AttackDelay: 1624 AttackMotion: 624 DamageMotion: 576 MvpExp: 0 Drops: { Animals_Skin: 9000 Axe_: 100 Meat: 500 Arrow: 1000 Feather: 850 Phracon: 80 Sweet_Milk: 40 Savage_Babe_Card: 1 } }, /*{ Id: 1168 SpriteName: "SCORPION_KING" Name: "Scorpion King" Lv: 50 Hp: 6354 Sp: 0 Exp: 2187 JExp: 1346 AttackRange: 1 Attack: [500, 603] Def: 40 Mdef: 10 Stats: { Str: 1 Agi: 50 Vit: 47 Int: 1 Dex: 83 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 MvpExp: 0 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: 30 Hp: 2872 Sp: 0 Exp: 397 JExp: 240 AttackRange: 1 Attack: [242, 288] Def: 0 Mdef: 15 Stats: { Str: 1 Agi: 15 Vit: 30 Int: 5 Dex: 42 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: 400 AttackDelay: 2420 AttackMotion: 720 DamageMotion: 384 MvpExp: 0 Drops: { Iron: 400 Lantern: 5500 Elunium_Stone: 90 Safety_Helmet: 2 Steel: 100 Coal: 200 Iron_Ore: 800 Skel_Worker_Card: 1 } }, { Id: 1170 SpriteName: "SOHEE" Name: "Sohee" Lv: 33 Hp: 5628 Sp: 0 Exp: 739 JExp: 455 AttackRange: 1 Attack: [210, 251] Def: 0 Mdef: 10 Stats: { Str: 1 Agi: 33 Vit: 33 Int: 10 Dex: 58 Luk: 15 } 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 MvpExp: 0 Drops: { Long_Hair: 9000 Skirt_Of_Virgin: 50 Nurse_Cap: 1 Muffler_: 5 Stiletto_: 5 Red_Herb: 1000 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 MvpExp: 0 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 MvpExp: 0 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 MvpExp: 0 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: 16 Hp: 538 Sp: 0 Exp: 105 JExp: 70 AttackRange: 1 Attack: [53, 64] Def: 10 Mdef: 0 Stats: { Str: 1 Agi: 40 Vit: 16 Int: 5 Dex: 30 Luk: 5 } 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 MvpExp: 0 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: 11 Hp: 284 Sp: 0 Exp: 57 JExp: 28 AttackRange: 1 Attack: [34, 45] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 20 Vit: 11 Int: 10 Dex: 24 Luk: 5 } 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 MvpExp: 0 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: 20 Hp: 894 Sp: 0 Exp: 163 JExp: 101 AttackRange: 1 Attack: [69, 80] Def: 15 Mdef: 20 Stats: { Str: 1 Agi: 20 Vit: 25 Int: 65 Dex: 40 Luk: 70 } 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 MvpExp: 0 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: 31 Hp: 2585 Sp: 0 Exp: 967 JExp: 407 AttackRange: 1 Attack: [188, 223] Def: 0 Mdef: 15 Stats: { Str: 1 Agi: 77 Vit: 15 Int: 0 Dex: 76 Luk: 10 } 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 MvpExp: 0 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: 23 Hp: 1109 Sp: 0 Exp: 240 JExp: 149 AttackRange: 1 Attack: [127, 155] Def: 0 Mdef: 10 Stats: { Str: 1 Agi: 23 Vit: 23 Int: 5 Dex: 42 Luk: 0 } 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 MvpExp: 0 Drops: { Emveretarcon: 55 Iron: 190 G_Strings: 200 Ganster_Mask: 3 Cuffs: 10 Iron_Ore: 300 Iron_Ore: 300 Zerom_Card: 1 } }, { Id: 1179 SpriteName: "WHISPER" Name: "Whisper" Lv: 34 Hp: 1796 Sp: 0 Exp: 591 JExp: 599 AttackRange: 1 Attack: [180, 221] 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_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 MvpExp: 0 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: 51 Hp: 7766 Sp: 0 Exp: 2812 JExp: 825 AttackRange: 1 Attack: [610, 734] Def: 10 Mdef: 25 Stats: { Str: 1 Agi: 80 Vit: 46 Int: 1 Dex: 74 Luk: 85 } 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 MvpExp: 0 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: "Zombie Dragon" Lv: 1 Hp: 1000 Sp: 0 Exp: 49500 JExp: 1650 AttackRange: 3 Attack: [7900, 9140] 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 MvpExp: 0 },*/ { Id: 1182 SpriteName: "THIEF_MUSHROOM" Name: "Thief Mushroom" Lv: 1 Hp: 15 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_Earth", 1) Mode: { Plant: true } MoveSpeed: 2000 AttackDelay: 1 AttackMotion: 1 DamageMotion: 1 MvpExp: 0 Drops: { Mushroom_Of_Thief_1: 1500 Mushroom_Of_Thief_2: 3000 } }, { Id: 1183 SpriteName: "CHONCHON_" Name: "Chonchon" Lv: 4 Hp: 67 Sp: 0 Exp: 5 JExp: 4 AttackRange: 1 Attack: [10, 13] Def: 10 Mdef: 0 Stats: { Str: 1 Agi: 10 Vit: 4 Int: 5 Dex: 12 Luk: 2 } 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 MvpExp: 0 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: 0 Exp: 1 JExp: 0 AttackRange: 1 Attack: [4, 7] 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 MvpExp: 0 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: 0 Exp: 537 JExp: 545 AttackRange: 1 Attack: [198, 239] 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 MvpExp: 0 Drops: { Sparkling_Dust: 10 Transparent_Cloth: 100 Silver_Robe_: 1 } }, { Id: 1186 SpriteName: "WHISPER_BOSS" Name: "Giant Whisper" Lv: 34 Hp: 5040 Sp: 0 Exp: 537 JExp: 545 AttackRange: 1 Attack: [198, 239] 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_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 MvpExp: 0 Drops: { Sparkling_Dust: 150 Transparent_Cloth: 5335 Spirit_Chain: 1 Silver_Robe_: 10 Whisper_Boss_Card: 1 } }, { Id: 1187 SpriteName: "SWITCH" Name: "Switch" Lv: 1 Hp: 2 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [1, 2] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 0 Dex: 1 Luk: 0 } ViewRange: 1 ChaseRange: 12 Size: "Size_Medium" Race: "RC_Formless" Element: ("Ele_Neutral", 1) MoveSpeed: 1 AttackDelay: 1 AttackMotion: 1 DamageMotion: 1 MvpExp: 0 }, { Id: 1188 SpriteName: "BON_GUN" Name: "Bongun" Lv: 32 Hp: 3520 Sp: 0 Exp: 424 JExp: 242 AttackRange: 1 Attack: [220, 260] Def: 0 Mdef: 0 Stats: { Str: 45 Agi: 15 Vit: 36 Int: 10 Dex: 48 Luk: 15 } 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 MvpExp: 0 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: 49 Hp: 7440 Sp: 0 Exp: 1729 JExp: 1787 AttackRange: 9 Attack: [310, 390] Def: 10 Mdef: 5 Stats: { Str: 1 Agi: 44 Vit: 25 Int: 20 Dex: 125 Luk: 20 } 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 MvpExp: 0 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: 74 Hp: 783000 Sp: 0 Exp: 62205 JExp: 8580 AttackRange: 1 Attack: [3700, 4150] Def: 40 Mdef: 5 Stats: { Str: 85 Agi: 82 Vit: 30 Int: 70 Dex: 110 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 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: 51 Hp: 6120 Sp: 182 Exp: 165 JExp: 165 AttackRange: 1 Attack: [150, 900] 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 MvpExp: 0 Drops: { Old_Violet_Box: 5 Old_Blue_Box: 45 Booby_Trap: 1200 Spectacles: 3000 Emperium: 3 Rosary_: 1 Elunium_Stone: 270 Mimic_Card: 1 } }, { Id: 1192 SpriteName: "WRAITH" Name: "Wraith" Lv: 53 Hp: 10999 Sp: 0 Exp: 2199 JExp: 1099 AttackRange: 1 Attack: [580, 760] Def: 5 Mdef: 30 Stats: { Str: 1 Agi: 95 Vit: 30 Int: 65 Dex: 95 Luk: 35 } 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 MvpExp: 0 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: 58 Hp: 10647 Sp: 0 Exp: 3987 JExp: 2300 AttackRange: 1 Attack: [480, 600] Def: 15 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: 300 AttackDelay: 1020 AttackMotion: 500 DamageMotion: 768 MvpExp: 0 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: 59 Hp: 6075 Sp: 0 Exp: 860 JExp: 1000 AttackRange: 1 Attack: [570, 640] Def: 10 Mdef: 15 Stats: { Str: 1 Agi: 75 Vit: 5 Int: 5 Dex: 75 Luk: 50 } 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 MvpExp: 0 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: 59 Hp: 11638 Sp: 0 Exp: 2007 JExp: 3106 AttackRange: 1 Attack: [584, 804] Def: 5 Mdef: 35 Stats: { Str: 48 Agi: 75 Vit: 10 Int: 20 Dex: 120 Luk: 45 } 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 MvpExp: 0 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: 52 Hp: 8691 Sp: 0 Exp: 2466 JExp: 1562 AttackRange: 1 Attack: [660, 890] Def: 10 Mdef: 20 Stats: { Str: 55 Agi: 20 Vit: 36 Int: 0 Dex: 76 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: 350 AttackDelay: 1848 AttackMotion: 500 DamageMotion: 576 MvpExp: 0 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: 53 Hp: 11280 Sp: 0 Exp: 2635 JExp: 1724 AttackRange: 1 Attack: [780, 930] Def: 10 Mdef: 20 Stats: { Str: 1 Agi: 24 Vit: 39 Int: 0 Dex: 72 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: 350 AttackDelay: 1768 AttackMotion: 500 DamageMotion: 192 MvpExp: 0 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: 79 Hp: 101992 Sp: 0 Exp: 12192 JExp: 5152 AttackRange: 2 Attack: [1238, 2037] Def: 56 Mdef: 70 Stats: { Str: 5 Agi: 91 Vit: 41 Int: 101 Dex: 103 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 MvpExp: 0 Drops: { Book_Of_The_Apocalypse: 5 Rosary: 30 Blue_Potion: 100 Red_Gemstone: 450 Sacred_Marks: 50 Glittering_Clothes: 5 Cursed_Dagger: 1 Dark_Priest_Card: 1 } }, { Id: 1199 SpriteName: "PUNK" Name: "Punk" Lv: 43 Hp: 3620 Sp: 0 Exp: 1699 JExp: 1033 AttackRange: 1 Attack: [292, 365] Def: 0 Mdef: 45 Stats: { Str: 1 Agi: 105 Vit: 5 Int: 45 Dex: 65 Luk: 20 } 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 MvpExp: 0 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: 63 Hp: 18300 Sp: 0 Exp: 3608 JExp: 2304 AttackRange: 1 Attack: [700, 850] 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 MvpExp: 0 Drops: { Executioners_Mitten: 5 White_Herb: 1800 Rose_Quartz: 1500 Tights_: 8 Earring_: 1 Queens_Whip: 100 Masquerade: 3 Zherlthsh_Card: 1 } }, { Id: 1201 SpriteName: "RYBIO" Name: "Rybio" Lv: 71 Hp: 9572 Sp: 0 Exp: 6317 JExp: 3520 AttackRange: 1 Attack: [686, 912] Def: 45 Mdef: 37 Stats: { Str: 1 Agi: 97 Vit: 75 Int: 74 Dex: 77 Luk: 90 } 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 MvpExp: 0 Drops: { Thin_N_Long_Tongue: 3880 Executioners_Mitten: 3 White_Herb: 1800 Crystal_Jewel_: 30 Frozen_Heart: 10 Oridecon: 100 Izidor: 30 Rybio_Card: 1 } }, { Id: 1202 SpriteName: "PHENDARK" Name: "Phendark" Lv: 73 Hp: 22729 Sp: 0 Exp: 6826 JExp: 3443 AttackRange: 2 Attack: [794, 1056] Def: 52 Mdef: 36 Stats: { Str: 1 Agi: 62 Vit: 120 Int: 65 Dex: 76 Luk: 66 } 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 MvpExp: 0 Drops: { Thin_N_Long_Tongue: 3880 Executioners_Mitten: 4 White_Herb: 1800 Oridecon: 150 Electric_Wire: 100 Phendark_Card: 1 } }, { Id: 1203 SpriteName: "MYSTELTAINN" Name: "Mysteltainn" Lv: 76 Hp: 33350 Sp: 0 Exp: 6457 JExp: 5159 AttackRange: 2 Attack: [1160, 1440] Def: 30 Mdef: 30 Stats: { Str: 77 Agi: 139 Vit: 80 Int: 35 Dex: 159 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 MvpExp: 0 Drops: { Lokis_Whispers: 1 Biotite: 1500 Slayer_: 70 Bastard_Sword_: 40 Claymore: 2 Steel: 120 Oridecon: 243 Mysteltainn_Card: 1 } }, { Id: 1204 SpriteName: "TIRFING" Name: "Tirfing" JName: "Ogretooth" Lv: 71 Hp: 29900 Sp: 0 Exp: 5412 JExp: 4235 AttackRange: 1 Attack: [950, 1146] Def: 30 Mdef: 35 Stats: { Str: 58 Agi: 87 Vit: 55 Int: 35 Dex: 132 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 MvpExp: 0 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: 65 Hp: 28980 Sp: 0 Exp: 4730 JExp: 3536 AttackRange: 2 Attack: [570, 950] Def: 35 Mdef: 35 Stats: { Str: 64 Agi: 85 Vit: 40 Int: 25 Dex: 88 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 MvpExp: 0 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: 61 Hp: 18960 Sp: 0 Exp: 5900 JExp: 3700 AttackRange: 1 Attack: [640, 980] Def: 15 Mdef: 15 Stats: { Str: 1 Agi: 43 Vit: 58 Int: 25 Dex: 80 Luk: 65 } 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 MvpExp: 0 Drops: { Anolian_Skin: 4850 Crystal_Arrow: 2000 Royal_Jelly: 5 Red_Muffler: 10 Solid_Shell: 5335 Brooch_: 1 Oridecon: 134 Anolian_Card: 1 } }, { Id: 1207 SpriteName: "STING" Name: "Sting" Lv: 61 Hp: 9500 Sp: 0 Exp: 4081 JExp: 2970 AttackRange: 1 Attack: [850, 1032] Def: 5 Mdef: 30 Stats: { Str: 57 Agi: 45 Vit: 55 Int: 5 Dex: 120 Luk: 85 } 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 MvpExp: 0 Drops: { Mud_Lump: 4850 Stone_Arrow: 1500 Glove_: 1 Coal: 130 Great_Nature: 25 Silk_Ribbon: 10 Violet_Jewel: 3 Sting_Card: 1 } }, { Id: 1208 SpriteName: "WANDER_MAN" Name: "Wander Man" JName: "Wanderer" Lv: 74 Hp: 8170 Sp: 0 Exp: 5786 JExp: 4730 AttackRange: 2 Attack: [450, 1170] Def: 5 Mdef: 5 Stats: { Str: 1 Agi: 192 Vit: 38 Int: 45 Dex: 127 Luk: 85 } 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 MvpExp: 0 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: 56 Hp: 4720 Sp: 0 Exp: 2300 JExp: 1513 AttackRange: 1 Attack: [395, 465] Def: 0 Mdef: 5 Stats: { Str: 1 Agi: 85 Vit: 35 Int: 5 Dex: 65 Luk: 60 } 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 MvpExp: 0 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 MvpExp: 0 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: 46 Hp: 5562 Sp: 0 Exp: 1826 JExp: 1331 AttackRange: 1 Attack: [298, 383] Def: 30 Mdef: 5 Stats: { Str: 1 Agi: 90 Vit: 15 Int: 10 Dex: 50 Luk: 35 } 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 MvpExp: 0 Drops: { Glitter_Shell: 5335 Wind_Of_Verdure: 200 Zargon: 1200 Wing_Of_Butterfly: 1000 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: 1435 JExp: 1520 AttackRange: 1 Attack: [430, 590] Def: 40 Mdef: 5 Stats: { Str: 1 Agi: 25 Vit: 15 Int: 10 Dex: 81 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 MvpExp: 0 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: 52 Hp: 6890 Sp: 0 Exp: 3618 JExp: 1639 AttackRange: 1 Attack: [428, 533] Def: 15 Mdef: 5 Stats: { Str: 55 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: 150 AttackDelay: 1500 AttackMotion: 500 DamageMotion: 1000 MvpExp: 0 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: 43 Hp: 4278 Sp: 0 Exp: 1265 JExp: 1265 AttackRange: 1 Attack: [315, 402] Def: 5 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 MvpExp: 0 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: 40 Hp: 6136 Sp: 0 Exp: 1452 JExp: 939 AttackRange: 2 Attack: [290, 375] Def: 5 Mdef: 10 Stats: { Str: 1 Agi: 30 Vit: 26 Int: 15 Dex: 79 Luk: 35 } 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: 200 AttackDelay: 1500 AttackMotion: 500 DamageMotion: 1000 MvpExp: 0 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: 57 Hp: 7256 Sp: 0 Exp: 2870 JExp: 2200 AttackRange: 7 Attack: [415, 565] Def: 5 Mdef: 50 Stats: { Str: 1 Agi: 5 Vit: 35 Int: 15 Dex: 136 Luk: 30 } 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 MvpExp: 0 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: 79 Hp: 36140 Sp: 0 Exp: 8469 JExp: 6268 AttackRange: 1 Attack: [1600, 2150] Def: 55 Mdef: 50 Stats: { Str: 66 Agi: 68 Vit: 64 Int: 25 Dex: 135 Luk: 50 } 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 MvpExp: 0 Drops: { Reins: 5335 Blade_Lost_In_Darkness: 5 Clothes_Of_The_Lord: 1 Battle_Hook: 25 Broad_Sword_: 1 Elunium: 369 Oridecon: 259 Knight_Of_Abyss_Card: 1 } }, { Id: 1220 SpriteName: "M_DESERT_WOLF" Name: "Desert Wolf" Lv: 27 Hp: 1716 Sp: 0 Exp: 388 JExp: 242 AttackRange: 1 Attack: [169, 208] Def: 0 Mdef: 10 Stats: { Str: 1 Agi: 27 Vit: 45 Int: 15 Dex: 56 Luk: 10 } 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 MvpExp: 0 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: 357 JExp: 226 AttackRange: 1 Attack: [146, 177] Def: 10 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 MvpExp: 0 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 MvpExp: 0 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 MvpExp: 0 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 MvpExp: 0 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 MvpExp: 0 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 MvpExp: 0 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 MvpExp: 0 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 MvpExp: 0 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: 0 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 MvpExp: 0 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: 0 Exp: 2 JExp: 4 AttackRange: 0 Attack: [1, 2] Def: 20 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 MvpExp: 0 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: 0 Exp: 96 JExp: 64 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 MvpExp: 0 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: 0 Exp: 4 JExp: 4 AttackRange: 0 Attack: [1, 2] Def: 20 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 MvpExp: 0 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 MvpExp: 0 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: 0 Exp: 135 JExp: 85 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 MvpExp: 0 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: 0 Exp: 261 JExp: 160 AttackRange: 1 Attack: [114, 136] Def: 10 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 MvpExp: 0 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: 0 Exp: 5 JExp: 4 AttackRange: 0 Attack: [1, 2] Def: 20 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 MvpExp: 0 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: 0 Exp: 109 JExp: 71 AttackRange: 1 Attack: [60, 71] Def: 10 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 Looter: true Assist: true CanAttack: true Detector: true ChangeTargetMelee: true } MoveSpeed: 300 AttackDelay: 1288 AttackMotion: 288 DamageMotion: 576 MvpExp: 0 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: 0 Exp: 122 JExp: 78 AttackRange: 1 Attack: [64, 75] Def: 15 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 Looter: true Assist: true CanAttack: true Detector: true ChangeTargetMelee: true } MoveSpeed: 200 AttackDelay: 1288 AttackMotion: 288 DamageMotion: 576 MvpExp: 0 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: 0 Exp: 135 JExp: 85 AttackRange: 1 Attack: [68, 79] Def: 15 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 Looter: true Assist: true CanAttack: true Detector: true ChangeTargetMelee: true } MoveSpeed: 150 AttackDelay: 1288 AttackMotion: 288 DamageMotion: 576 MvpExp: 0 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: 0 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 MvpExp: 0 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: 0 Exp: 5 JExp: 4 AttackRange: 1 Attack: [8, 11] Def: 20 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 MvpExp: 0 Drops: { Feather_Of_Birds: 6500 Feather: 850 Egg_Shell: 7 Red_Herb: 750 Milk: 350 Yellow_Gemstone: 60 Picky__Card: 1 } }, { Id: 1242 SpriteName: "MARIN" Name: "Marin" Lv: 15 Hp: 742 Sp: 0 Exp: 66 JExp: 44 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 CanAttack: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 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: 30 Hp: 3163 Sp: 0 Exp: 529 JExp: 319 AttackRange: 1 Attack: [250, 280] Def: 5 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 MvpExp: 0 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: 38 Hp: 3581 Sp: 0 Exp: 1113 JExp: 688 AttackRange: 1 Attack: [315, 382] Def: 5 Mdef: 30 Stats: { Str: 1 Agi: 38 Vit: 38 Int: 43 Dex: 75 Luk: 45 } 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 MvpExp: 0 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: 0 Exp: 282 JExp: 171 AttackRange: 1 Attack: [118, 140] Def: 10 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 MvpExp: 0 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: 28 Hp: 2090 Sp: 0 Exp: 461 JExp: 284 AttackRange: 1 Attack: [140, 170] Def: 0 Mdef: 50 Stats: { Str: 1 Agi: 24 Vit: 30 Int: 53 Dex: 45 Luk: 100 } 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 MvpExp: 0 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: 0 Exp: 3 JExp: 2 AttackRange: 1 Attack: [13, 20] Def: 100 Mdef: 0 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 50 Dex: 100 Luk: 100 } ViewRange: 10 ChaseRange: 12 Size: "Size_Medium" Race: "RC_Plant" Element: ("Ele_Holy", 3) Mode: { CanMove: true Plant: true CanAttack: true } MoveSpeed: 100 AttackDelay: 720 AttackMotion: 720 DamageMotion: 432 MvpExp: 0 Drops: { Red_Socks_With_Holes: 10000 Gift_Box: 200 Well_Baked_Cookie: 1500 Piece_Of_Cake: 1000 Candy: 5500 Candy_Striper: 5500 Santas_Hat: 250 Antonio_Card: 1 } }, { Id: 1248 SpriteName: "CRUISER" Name: "Cruiser" Lv: 35 Hp: 2820 Sp: 0 Exp: 1100 JExp: 450 AttackRange: 7 Attack: [175, 215] Def: 5 Mdef: 5 Stats: { Str: 1 Agi: 40 Vit: 10 Int: 10 Dex: 90 Luk: 25 } 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 MvpExp: 0 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: 38 Hp: 3450 Sp: 0 Exp: 1113 JExp: 688 AttackRange: 1 Attack: [160, 360] Def: 5 Mdef: 10 Stats: { Str: 65 Agi: 50 Vit: 25 Int: 5 Dex: 48 Luk: 75 } 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 MvpExp: 0 Drops: { Candy_Striper: 90 Zargon: 1500 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: 1518 JExp: 946 AttackRange: 1 Attack: [380, 440] Def: 0 Mdef: 25 Stats: { Str: 1 Agi: 72 Vit: 35 Int: 71 Dex: 65 Luk: 85 } 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 MvpExp: 0 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: 77 Hp: 240000 Sp: 0 Exp: 64350 JExp: 21450 AttackRange: 2 Attack: [1425, 1585] Def: 35 Mdef: 60 Stats: { Str: 75 Agi: 185 Vit: 83 Int: 55 Dex: 130 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 MvpExp: 32175 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: 73 Hp: 197000 Sp: 0 Exp: 50050 JExp: 20020 AttackRange: 3 Attack: [1700, 1900] Def: 40 Mdef: 45 Stats: { Str: 85 Agi: 126 Vit: 82 Int: 65 Dex: 95 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 MvpExp: 25025 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 } }, { Id: 1253 SpriteName: "GARGOYLE" Name: "Gargoyle" Lv: 48 Hp: 3950 Sp: 0 Exp: 1650 JExp: 1650 AttackRange: 9 Attack: [290, 360] Def: 10 Mdef: 10 Stats: { Str: 15 Agi: 61 Vit: 20 Int: 20 Dex: 126 Luk: 40 } 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 MvpExp: 0 Drops: { Zargon: 3880 Petite_DiablOfs_Wing: 500 Thimble_Of_Archer: 1 Silence_Arrow: 2000 Elunium_Stone: 238 Gargoyle_Card: 1 } }, { Id: 1254 SpriteName: "RAGGLER" Name: "Raggler" Lv: 21 Hp: 1020 Sp: 0 Exp: 218 JExp: 140 AttackRange: 1 Attack: [102, 113] Def: 0 Mdef: 5 Stats: { Str: 18 Agi: 10 Vit: 32 Int: 20 Dex: 39 Luk: 35 } 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 MvpExp: 0 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: 40 Hp: 4120 Sp: 0 Exp: 1126 JExp: 684 AttackRange: 1 Attack: [325, 360] Def: 0 Mdef: 10 Stats: { Str: 1 Agi: 45 Vit: 50 Int: 5 Dex: 64 Luk: 5 } 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 MvpExp: 0 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: 40 Hp: 3240 Sp: 0 Exp: 1238 JExp: 752 AttackRange: 1 Attack: [375, 450] Def: 0 Mdef: 5 Stats: { Str: 1 Agi: 60 Vit: 22 Int: 5 Dex: 80 Luk: 5 } 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 MvpExp: 0 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: 51 Hp: 7600 Sp: 0 Exp: 2118 JExp: 1488 AttackRange: 1 Attack: [480, 600] Def: 0 Mdef: 0 Stats: { Str: 84 Agi: 42 Vit: 39 Int: 0 Dex: 71 Luk: 35 } 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 MvpExp: 0 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: 28 Hp: 1750 Sp: 0 Exp: 461 JExp: 284 AttackRange: 9 Attack: [89, 113] Def: 0 Mdef: 0 Stats: { Str: 10 Agi: 15 Vit: 20 Int: 15 Dex: 72 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 MvpExp: 0 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: 72 Hp: 27800 Sp: 0 Exp: 5896 JExp: 4400 AttackRange: 1 Attack: [880, 1260] Def: 35 Mdef: 35 Stats: { Str: 68 Agi: 95 Vit: 78 Int: 65 Dex: 115 Luk: 75 } 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 MvpExp: 0 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: 59 Hp: 7500 Sp: 0 Exp: 3652 JExp: 3271 AttackRange: 1 Attack: [960, 1210] Def: 10 Mdef: 45 Stats: { Str: 1 Agi: 72 Vit: 42 Int: 45 Dex: 85 Luk: 25 } 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 MvpExp: 0 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: 38 Hp: 2980 Sp: 0 Exp: 1113 JExp: 688 AttackRange: 1 Attack: [315, 360] Def: 0 Mdef: 15 Stats: { Str: 65 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: { CanMove: true Looter: true CanAttack: true } MoveSpeed: 100 AttackDelay: 964 AttackMotion: 864 DamageMotion: 288 MvpExp: 0 Drops: { Cyfar: 5335 Witherless_Rose: 50 Fruit_Shell: 120 Arrow_Of_Shadow: 3000 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: 62600 Sp: 0 Exp: 4730 JExp: 3536 AttackRange: 4 Attack: [2400, 3400] Def: 15 Mdef: 20 Stats: { Str: 75 Agi: 47 Vit: 30 Int: 68 Dex: 45 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 MvpExp: 0 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: 51 Hp: 4820 Sp: 0 Exp: 2424 JExp: 1488 AttackRange: 2 Attack: [489, 639] Def: 0 Mdef: 45 Stats: { Str: 1 Agi: 89 Vit: 15 Int: 90 Dex: 85 Luk: 25 } 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 MvpExp: 0 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: 53 Hp: 14690 Sp: 0 Exp: 4500 JExp: 3000 AttackRange: 2 Attack: [482, 964] Def: 10 Mdef: 35 Stats: { Str: 72 Agi: 45 Vit: 46 Int: 35 Dex: 60 Luk: 55 } 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 MvpExp: 0 Drops: { Lip_Of_Ancient_Fish: 1300 Holy_Water: 300 Lemon: 400 Skyblue_Jewel: 40 Mistic_Frozen: 35 Trident: 3 Oridecon_Stone: 203 Merman_Card: 1 } }, { Id: 1265 SpriteName: "COOKIE" Name: "Cookie" Lv: 25 Hp: 950 Sp: 0 Exp: 310 JExp: 188 AttackRange: 1 Attack: [130, 145] Def: 0 Mdef: 25 Stats: { Str: 1 Agi: 35 Vit: 20 Int: 53 Dex: 37 Luk: 90 } 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 MvpExp: 0 Drops: { Well_Baked_Cookie: 1000 Candy_Striper: 150 Darkgreen_Dyestuffs: 1 Great_Chef_Orleans01: 50 Sandals_: 30 Holy_Scroll_1_3: 100 Candy: 320 Cookie_Card: 1 } }, { Id: 1266 SpriteName: "ASTER" Name: "Aster" Lv: 18 Hp: 1372 Sp: 0 Exp: 122 JExp: 78 AttackRange: 1 Attack: [56, 64] Def: 0 Mdef: 10 Stats: { Str: 1 Agi: 19 Vit: 15 Int: 0 Dex: 34 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 MvpExp: 0 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: 51 Hp: 5200 Sp: 0 Exp: 1926 JExp: 1353 AttackRange: 1 Attack: [330, 417] Def: 0 Mdef: 25 Stats: { Str: 1 Agi: 41 Vit: 45 Int: 5 Dex: 85 Luk: 155 } 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 MvpExp: 0 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: 82 Hp: 57870 Sp: 0 Exp: 10120 JExp: 6820 AttackRange: 3 Attack: [2150, 3030] Def: 60 Mdef: 50 Stats: { Str: 88 Agi: 75 Vit: 70 Int: 77 Dex: 125 Luk: 55 } 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 MvpExp: 0 Drops: { Brigan: 4850 Helm_: 45 Plate_Armor_: 5 Strong_Shield: 62 Katzbalger: 1 Pole_Axe: 2 Elunium: 433 Bloody_Knight_Card: 1 } }, { Id: 1269 SpriteName: "CLOCK" Name: "Clock" Lv: 60 Hp: 11050 Sp: 0 Exp: 3410 JExp: 2904 AttackRange: 1 Attack: [720, 909] Def: 15 Mdef: 10 Stats: { Str: 1 Agi: 70 Vit: 50 Int: 25 Dex: 90 Luk: 50 } 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 MvpExp: 0 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: 63 Hp: 18600 Sp: 0 Exp: 4378 JExp: 2850 AttackRange: 3 Attack: [880, 1180] Def: 35 Mdef: 30 Stats: { Str: 1 Agi: 75 Vit: 20 Int: 64 Dex: 75 Luk: 60 } 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 MvpExp: 0 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: 42 Hp: 6962 Sp: 0 Exp: 1379 JExp: 866 AttackRange: 1 Attack: [315, 360] Def: 2 Mdef: 5 Stats: { Str: 1 Agi: 45 Vit: 50 Int: 10 Dex: 69 Luk: 65 } 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 MvpExp: 0 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: 80 Hp: 720000 Sp: 0 Exp: 65780 JExp: 45045 AttackRange: 2 Attack: [2800, 3320] Def: 30 Mdef: 70 Stats: { Str: 1 Agi: 120 Vit: 30 Int: 118 Dex: 99 Luk: 60 } 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 MvpExp: 32890 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: 31 Hp: 2000 Sp: 0 Exp: 644 JExp: 407 AttackRange: 1 Attack: [135, 170] Def: 10 Mdef: 10 Stats: { Str: 35 Agi: 42 Vit: 25 Int: 15 Dex: 69 Luk: 55 } 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 MvpExp: 0 Drops: { Cyfar: 4656 Iron: 300 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: 45 Hp: 5300 Sp: 0 Exp: 1758 JExp: 1075 AttackRange: 9 Attack: [264, 314] Def: 50 Mdef: 25 Stats: { Str: 1 Agi: 45 Vit: 60 Int: 5 Dex: 95 Luk: 5 } 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 MvpExp: 0 Drops: { Zargon: 100 Stone: 1000 Old_Violet_Box: 1 Elunium: 61 Elunium_Stone: 207 Megalith_Card: 1 } }, { Id: 1275 SpriteName: "ALICE" Name: "Alice" Lv: 62 Hp: 10000 Sp: 221 Exp: 3583 JExp: 2400 AttackRange: 1 Attack: [550, 700] 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: 2304 DamageMotion: 480 MvpExp: 0 Drops: { Alices_Apron: 2500 Old_Broom: 40 Chrystal_Pumps: 3 Rouge: 30 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: 52 Hp: 5250 Sp: 0 Exp: 3025 JExp: 2125 AttackRange: 9 Attack: [415, 500] Def: 35 Mdef: 5 Stats: { Str: 15 Agi: 25 Vit: 22 Int: 5 Dex: 145 Luk: 35 } 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 MvpExp: 0 Drops: { Brigan: 4656 Chain_Mail_: 2 Bow: 150 Incisive_Arrow: 2000 Arbalest_: 3 Elunium: 106 Raydric_Archer_Card: 1 } }, { Id: 1277 SpriteName: "GREATEST_GENERAL" Name: "Greatest General" Lv: 40 Hp: 3632 Sp: 0 Exp: 1238 JExp: 752 AttackRange: 3 Attack: [350, 400] Def: 15 Mdef: 15 Stats: { Str: 1 Agi: 20 Vit: 60 Int: 55 Dex: 82 Luk: 140 } 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 MvpExp: 0 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: 60 Hp: 18700 Sp: 0 Exp: 5808 JExp: 2695 AttackRange: 1 Attack: [950, 1260] Def: 50 Mdef: 5 Stats: { Str: 73 Agi: 45 Vit: 85 Int: 5 Dex: 90 Luk: 25 } 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 MvpExp: 0 Drops: { Mud_Lump: 2000 Brigan: 4850 Star_Crumb: 250 Great_Nature: 30 Elunium_Stone: 250 Elunium: 163 Stalactic_Golem_Card: 1 } }, { Id: 1279 SpriteName: "TRI_JOINT" Name: "Tri Joint" Lv: 32 Hp: 2300 Sp: 0 Exp: 386 JExp: 220 AttackRange: 1 Attack: [178, 206] Def: 20 Mdef: 5 Stats: { Str: 1 Agi: 48 Vit: 24 Int: 10 Dex: 67 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 MvpExp: 0 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: 35 Hp: 2490 Sp: 0 Exp: 864 JExp: 495 AttackRange: 1 Attack: [234, 269] Def: 20 Mdef: 5 Stats: { Str: 58 Agi: 59 Vit: 32 Int: 15 Dex: 75 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 MvpExp: 0 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: 43 Hp: 3850 Sp: 0 Exp: 1155 JExp: 1320 AttackRange: 1 Attack: [120, 280] Def: 0 Mdef: 50 Stats: { Str: 1 Agi: 52 Vit: 24 Int: 88 Dex: 79 Luk: 55 } 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 MvpExp: 0 Drops: { Librarian_Glove: 5 Worn_Out_Page: 1000 Earthworm_Peeling: 3000 Fire_Scroll_1_5: 100 Blue_Potion: 40 Cold_Scroll_1_5: 100 Ph_D_Hat: 1 Sageworm_Card: 1 } }, { Id: 1282 SpriteName: "KOBOLD_ARCHER" Name: "Kobold Archer" Lv: 33 Hp: 2560 Sp: 0 Exp: 739 JExp: 455 AttackRange: 9 Attack: [155, 185] Def: 10 Mdef: 5 Stats: { Str: 10 Agi: 20 Vit: 15 Int: 30 Dex: 100 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 MvpExp: 0 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: 32600 Sp: 0 Exp: 4950 JExp: 3000 AttackRange: 1 Attack: [1200, 1320] Def: 30 Mdef: 10 Stats: { Str: 1 Agi: 72 Vit: 110 Int: 88 Dex: 75 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 MvpExp: 0 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 MvpExp: 0 Drops: { Apple: 100 Apple: 100 Apple: 100 Apple: 100 Apple: 100 Apple: 100 Apple: 100 Apple: 100 } },*/ { Id: 1285 SpriteName: "ARCHER_GUARDIAN" Name: "Archer Guardian" Lv: 74 Hp: 28634 Sp: 0 Exp: 1 JExp: 1 AttackRange: 12 Attack: [1120, 1600] Def: 35 Mdef: 60 Stats: { Str: 95 Agi: 80 Vit: 80 Int: 90 Dex: 165 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 MvpExp: 0 }, { Id: 1286 SpriteName: "KNIGHT_GUARDIAN" Name: "Knight Guardian" Lv: 86 Hp: 30214 Sp: 0 Exp: 1 JExp: 1 AttackRange: 2 Attack: [1280, 1560] Def: 55 Mdef: 30 Stats: { Str: 110 Agi: 40 Vit: 140 Int: 65 Dex: 125 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 MvpExp: 0 }, { Id: 1287 SpriteName: "SOLDIER_GUARDIAN" Name: "Soldier Guardian" Lv: 56 Hp: 15670 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [873, 1036] Def: 35 Mdef: 0 Stats: { Str: 85 Agi: 56 Vit: 100 Int: 45 Dex: 103 Luk: 43 } ViewRange: 10 ChaseRange: 12 Size: "Size_Small" Race: "RC_Insect" Element: ("Ele_Earth", 1) Mode: { CanMove: true Aggressive: true Boss: true CanAttack: true Detector: true ChangeTargetChase: true } MoveSpeed: 265 AttackDelay: 1288 AttackMotion: 288 DamageMotion: 384 MvpExp: 0 }, { Id: 1288 SpriteName: "EMPELIUM" Name: "Emperium" Lv: 90 Hp: 68430 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [60, 71] Def: 40 Mdef: 50 Stats: { Str: 1 Agi: 17 Vit: 80 Int: 50 Dex: 26 Luk: 20 } ViewRange: 10 ChaseRange: 12 Size: "Size_Small" Race: "RC_Angel" Element: ("Ele_Holy", 1) Mode: { Boss: true Detector: true NoKnockback: true } MoveSpeed: 300 AttackDelay: 1288 AttackMotion: 288 DamageMotion: 384 MvpExp: 0 }, { Id: 1289 SpriteName: "MAYA_PUPLE" Name: "Maya Purple" Lv: 81 Hp: 55479 Sp: 0 Exp: 10496 JExp: 3893 AttackRange: 2 Attack: [1447, 2000] Def: 68 Mdef: 48 Stats: { Str: 95 Agi: 90 Vit: 80 Int: 95 Dex: 90 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 MvpExp: 0 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: 73 Hp: 17402 Sp: 0 Exp: 8170 JExp: 3370 AttackRange: 1 Attack: [910, 1089] Def: 25 Mdef: 25 Stats: { Str: 90 Agi: 25 Vit: 40 Int: 20 Dex: 77 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 MvpExp: 0 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: 74 Hp: 43021 Sp: 0 Exp: 10341 JExp: 3618 AttackRange: 2 Attack: [1366, 1626] Def: 25 Mdef: 30 Stats: { Str: 5 Agi: 99 Vit: 55 Int: 75 Dex: 115 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 MvpExp: 0 Drops: { Transparent_Cloth: 4413 Wedding_Veil: 10 Manteau_: 8 Red_Gemstone: 700 Crystal_Jewel__: 5 Old_Blue_Box: 100 Lemon: 300 Wraith_Dead_Card: 1 } }, { Id: 1292 SpriteName: "MINI_DEMON" Name: "Mini Demon" Lv: 68 Hp: 32538 Sp: 0 Exp: 8396 JExp: 3722 AttackRange: 1 Attack: [1073, 1414] Def: 30 Mdef: 25 Stats: { Str: 5 Agi: 75 Vit: 40 Int: 55 Dex: 89 Luk: 42 } 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 MvpExp: 0 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: 62 Hp: 13387 Sp: 0 Exp: 7365 JExp: 2691 AttackRange: 2 Attack: [666, 829] Def: 45 Mdef: 30 Stats: { Str: 5 Agi: 40 Vit: 16 Int: 15 Dex: 68 Luk: 55 } 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 MvpExp: 0 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: 56 Hp: 13183 Sp: 0 Exp: 6509 JExp: 2366 AttackRange: 1 Attack: [764, 927] Def: 35 Mdef: 20 Stats: { Str: 5 Agi: 26 Vit: 24 Int: 5 Dex: 75 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 MvpExp: 0 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: 75 Hp: 60746 Sp: 0 Exp: 10967 JExp: 4811 AttackRange: 2 Attack: [1252, 1610] Def: 65 Mdef: 25 Stats: { Str: 25 Agi: 25 Vit: 80 Int: 95 Dex: 95 Luk: 55 } 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 MvpExp: 0 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: 65 Hp: 18313 Sp: 0 Exp: 7432 JExp: 2713 AttackRange: 1 Attack: [649, 958] Def: 37 Mdef: 37 Stats: { Str: 5 Agi: 90 Vit: 36 Int: 30 Dex: 77 Luk: 59 } 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 MvpExp: 0 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: 64 Hp: 40599 Sp: 0 Exp: 8040 JExp: 3499 AttackRange: 1 Attack: [836, 1129] Def: 27 Mdef: 27 Stats: { Str: 28 Agi: 19 Vit: 32 Int: 5 Dex: 83 Luk: 35 } 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 MvpExp: 0 Drops: { Rotten_Bandage: 4413 Mementos: 1800 Glove_: 1 Silver_Ring: 150 Yellow_Herb: 650 Oridecon_Stone: 150 Elunium_Stone: 100 Ancient_Mummy_Card: 1 } }, { Id: 1298 SpriteName: "ZOMBIE_MASTER" Name: "Zombie Master" Lv: 62 Hp: 14211 Sp: 0 Exp: 7610 JExp: 2826 AttackRange: 1 Attack: [824, 1084] Def: 37 Mdef: 26 Stats: { Str: 25 Agi: 20 Vit: 30 Int: 5 Dex: 77 Luk: 35 } 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 MvpExp: 0 Drops: { Tatters_Clothes: 4413 Sticky_Mucus: 1500 Horrendous_Mouth: 1500 Cardinal_Jewel: 200 White_Jewel: 100 Ghoul_Leg: 1 Scapulare_: 2 Zombie_Master_Card: 1 } }, { Id: 1299 SpriteName: "GOBLIN_LEADER" Name: "Goblin Leader" Lv: 64 Hp: 20152 Sp: 0 Exp: 6036 JExp: 2184 AttackRange: 1 Attack: [663, 752] Def: 48 Mdef: 16 Stats: { Str: 5 Agi: 55 Vit: 37 Int: 30 Dex: 69 Luk: 58 } 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 MvpExp: 0 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: 64 Hp: 14439 Sp: 0 Exp: 6272 JExp: 3107 AttackRange: 1 Attack: [894, 1447] Def: 47 Mdef: 29 Stats: { Str: 35 Agi: 25 Vit: 85 Int: 15 Dex: 69 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 MvpExp: 0 Drops: { Feather: 3000 Brigan: 5335 Twilight_Desert: 20 Star_Crumb: 100 Great_Nature: 50 Blue_Potion: 12 Yellow_Herb: 500 Caterpillar_Card: 1 } }, { Id: 1301 SpriteName: "AM_MUT" Name: "Am Mut" Lv: 61 Hp: 12099 Sp: 0 Exp: 7709 JExp: 2690 AttackRange: 1 Attack: [1040, 1121] Def: 50 Mdef: 10 Stats: { Str: 50 Agi: 65 Vit: 40 Int: 35 Dex: 83 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 MvpExp: 0 Drops: { Dokkaebi_Horn: 4550 Elunium_Stone: 250 Sword_Mace_: 3 Gold: 5 Spirit_Chain: 1 Old_Card_Album: 1 Glass_Bead: 250 Am_Mut_Card: 1 } }, { Id: 1302 SpriteName: "DARK_ILLUSION" Name: "Dark Illusion" Lv: 77 Hp: 103631 Sp: 0 Exp: 11163 JExp: 4181 AttackRange: 2 Attack: [1300, 1983] Def: 64 Mdef: 70 Stats: { Str: 5 Agi: 100 Vit: 40 Int: 100 Dex: 97 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: 145 AttackDelay: 1024 AttackMotion: 768 DamageMotion: 480 MvpExp: 0 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: 56 Hp: 13105 Sp: 0 Exp: 5785 JExp: 2006 AttackRange: 1 Attack: [650, 852] Def: 38 Mdef: 43 Stats: { Str: 35 Agi: 38 Vit: 32 Int: 10 Dex: 71 Luk: 64 } 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 MvpExp: 0 Drops: { Royal_Jelly: 550 Honey: 1200 Fruit_Of_Mastela: 12 Leaf_Of_Yggdrasil: 15 Staff_: 3 Scarlet_Jewel: 20 Double_Bound: 15 Giant_Honet_Card: 1 } }, { Id: 1304 SpriteName: "GIANT_SPIDER" Name: "Giant Spider" Lv: 55 Hp: 11874 Sp: 0 Exp: 6211 JExp: 2146 AttackRange: 1 Attack: [624, 801] Def: 41 Mdef: 28 Stats: { Str: 5 Agi: 36 Vit: 43 Int: 5 Dex: 73 Luk: 69 } 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 MvpExp: 0 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: 67 Hp: 22598 Sp: 0 Exp: 8174 JExp: 3782 AttackRange: 1 Attack: [948, 1115] Def: 35 Mdef: 30 Stats: { Str: 5 Agi: 35 Vit: 56 Int: 55 Dex: 81 Luk: 72 } 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 MvpExp: 0 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: 58 Hp: 24233 Sp: 0 Exp: 6011 JExp: 2171 AttackRange: 1 Attack: [740, 1390] Def: 27 Mdef: 31 Stats: { Str: 5 Agi: 35 Vit: 95 Int: 5 Dex: 64 Luk: 85 } 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 MvpExp: 0 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: 76 Hp: 64512 Sp: 0 Exp: 10869 JExp: 4283 AttackRange: 1 Attack: [1112, 1275] Def: 61 Mdef: 55 Stats: { Str: 55 Agi: 75 Vit: 55 Int: 82 Dex: 86 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: 155 AttackDelay: 1276 AttackMotion: 576 DamageMotion: 288 MvpExp: 0 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: 59 Hp: 14130 Sp: 0 Exp: 7212 JExp: 2697 AttackRange: 1 Attack: [683, 878] Def: 41 Mdef: 28 Stats: { Str: 60 Agi: 60 Vit: 40 Int: 20 Dex: 81 Luk: 160 } 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 MvpExp: 0 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: 63 Hp: 13669 Sp: 0 Exp: 6625 JExp: 2900 AttackRange: 1 Attack: [917, 950] Def: 85 Mdef: 50 Stats: { Str: 5 Agi: 34 Vit: 10 Int: 5 Dex: 75 Luk: 140 } 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 MvpExp: 0 Drops: { Stone_Heart: 6500 Zargon: 2300 Yellow_Herb: 870 Bomb_Wick: 8 Fire_Arrow: 10000 Magic_Study_Vol1: 20 Flame_Heart: 180 Gajomart_Card: 1 } }, { Id: 1310 SpriteName: "MAJORUROS" Name: "Majoruros" Lv: 66 Hp: 57991 Sp: 0 Exp: 8525 JExp: 3799 AttackRange: 1 Attack: [780, 1300] Def: 10 Mdef: 25 Stats: { Str: 65 Agi: 50 Vit: 75 Int: 50 Dex: 85 Luk: 48 } 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 MvpExp: 0 Drops: { Nose_Ring: 4413 Two_Handed_Axe_: 4 Lemon: 300 Oridecon: 16 White_Herb: 1850 Silver_Ring: 160 Star_Crumb: 250 Majoruros_Card: 1 } }, { Id: 1311 SpriteName: "GULLINBURSTI" Name: "Gullinbursti" Lv: 62 Hp: 21331 Sp: 0 Exp: 5814 JExp: 2376 AttackRange: 1 Attack: [699, 1431] Def: 10 Mdef: 15 Stats: { Str: 55 Agi: 25 Vit: 60 Int: 5 Dex: 70 Luk: 45 } 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 MvpExp: 0 Drops: { Wild_Boars_Mane: 3500 Grape: 290 Animal_Blood: 6 Eagle_Eyes: 1 Anodyne: 15 Belt: 1 Zargon: 160 Gullinbursti_Card: 1 } }, { Id: 1312 SpriteName: "TURTLE_GENERAL" Name: "Turtle General" Lv: 97 Hp: 320700 Sp: 0 Exp: 18202 JExp: 9800 AttackRange: 2 Attack: [2438, 3478] Def: 50 Mdef: 54 Stats: { Str: 100 Agi: 45 Vit: 55 Int: 65 Dex: 105 Luk: 164 } 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: 9101 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: 61 Hp: 7991 Sp: 0 Exp: 4424 JExp: 1688 AttackRange: 1 Attack: [910, 1128] Def: 41 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 MvpExp: 0 Drops: { Poison_Knife: 3 Blue_Jewel: 4559 Ring_: 1 Red_Gemstone: 600 Zargon: 2500 Panacea: 450 Blue_Potion: 60 Mobster_Card: 1 } }, { Id: 1314 SpriteName: "PERMETER" Name: "Permeter" Lv: 63 Hp: 8228 Sp: 0 Exp: 3756 JExp: 1955 AttackRange: 2 Attack: [943, 1211] Def: 46 Mdef: 45 Stats: { Str: 69 Agi: 59 Vit: 60 Int: 5 Dex: 69 Luk: 100 } 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 MvpExp: 0 Drops: { Turtle_Shell: 4413 Broken_Shell: 45 Wooden_Block: 1240 Red_Herb: 2450 Zargon: 1240 Fruit_Of_Mastela: 25 Anodyne: 1 Permeter_Card: 1 } }, { Id: 1315 SpriteName: "ASSULTER" Name: "Assaulter" Lv: 71 Hp: 11170 Sp: 0 Exp: 4854 JExp: 2654 AttackRange: 2 Attack: [764, 1499] Def: 35 Mdef: 28 Stats: { Str: 85 Agi: 74 Vit: 10 Int: 35 Dex: 100 Luk: 100 } 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: 155 AttackDelay: 1000 AttackMotion: 900 DamageMotion: 432 MvpExp: 0 Drops: { Turtle_Shell: 4413 Broken_Armor_Piece: 1200 Rust_Suriken: 840 Yellow_Herb: 1280 Zargon: 1240 Huuma_Bird_Wing: 5 Old_Blue_Box: 1 Assulter_Card: 1 } }, { Id: 1316 SpriteName: "SOLIDER" Name: "Solider" Lv: 70 Hp: 12099 Sp: 0 Exp: 4458 JExp: 1951 AttackRange: 2 Attack: [797, 979] Def: 57 Mdef: 43 Stats: { Str: 69 Agi: 35 Vit: 85 Int: 5 Dex: 74 Luk: 100 } 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 MvpExp: 0 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: 63 Hp: 9114 Sp: 0 Exp: 3765 JExp: 1824 AttackRange: 1 Attack: [845, 1203] Def: 25 Mdef: 33 Stats: { Str: 5 Agi: 28 Vit: 22 Int: 15 Dex: 69 Luk: 84 } 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 MvpExp: 0 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: 68 Hp: 11020 Sp: 0 Exp: 3766 JExp: 2359 AttackRange: 2 Attack: [683, 1008] Def: 40 Mdef: 42 Stats: { Str: 69 Agi: 47 Vit: 25 Int: 5 Dex: 71 Luk: 100 } 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 MvpExp: 0 Drops: { Turtle_Shell: 4413 Broken_Shell: 750 Fire_Scroll_2_5: 100 Zargon: 1640 Royal_Jelly: 140 Brigan: 600 Burn_Tree: 1250 Heater_Card: 1 } }, { Id: 1319 SpriteName: "FREEZER" Name: "Freezer" Lv: 72 Hp: 8636 Sp: 0 Exp: 3665 JExp: 2197 AttackRange: 2 Attack: [671, 983] Def: 55 Mdef: 43 Stats: { Str: 69 Agi: 41 Vit: 59 Int: 5 Dex: 67 Luk: 100 } 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 MvpExp: 0 Drops: { Turtle_Shell: 4413 Broken_Shell: 850 Ice_Piece: 1250 Zargon: 1800 Royal_Jelly: 160 Cyfar: 600 Cold_Scroll_1_5: 100 Freezer_Card: 1 } }, { Id: 1320 SpriteName: "OWL_DUKE" Name: "Owl Duke" Lv: 75 Hp: 26623 Sp: 0 Exp: 7217 JExp: 3474 AttackRange: 1 Attack: [715, 910] Def: 27 Mdef: 49 Stats: { Str: 15 Agi: 45 Vit: 40 Int: 75 Dex: 79 Luk: 88 } 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 MvpExp: 0 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: 61 Hp: 8368 Sp: 0 Exp: 3587 JExp: 1453 AttackRange: 1 Attack: [520, 715] Def: 25 Mdef: 19 Stats: { Str: 10 Agi: 68 Vit: 15 Int: 5 Dex: 67 Luk: 67 } 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 MvpExp: 0 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: 58 Hp: 9045 Sp: 0 Exp: 3982 JExp: 1766 AttackRange: 1 Attack: [585, 813] Def: 29 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: 511 MvpExp: 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: 59 Hp: 9999 Sp: 0 Exp: 3048 JExp: 1642 AttackRange: 1 Attack: [650, 813] Def: 33 Mdef: 35 Stats: { Str: 5 Agi: 36 Vit: 40 Int: 25 Dex: 82 Luk: 65 } 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 MvpExp: 0 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 } }, { Id: 1324 SpriteName: "TREASURE_BOX1" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Jewel__: 7760 Seed_Of_Yggdrasil: 3000 Yggdrasilberry: 2500 Muffler_: 800 Shoes_: 800 Chain_Mail_: 800 Buckler_: 800 Old_Card_Album: 1000 } }, { Id: 1325 SpriteName: "TREASURE_BOX2" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Jewel_Of_Prayer: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree: 10000 Oridecon: 4850 Elunium: 7275 Poison_Knife: 1500 Wizardry_Hat: 75 Masamune: 8 } }, { Id: 1326 SpriteName: "TREASURE_BOX3" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Jewel__: 7760 Seed_Of_Yggdrasil: 3000 Yggdrasilberry: 2500 Muffler_: 800 Shoes_: 800 Chain_Mail_: 800 Buckler_: 800 Old_Card_Album: 1000 } }, { Id: 1327 SpriteName: "TREASURE_BOX4" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Iron_Glove: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree: 10000 Oridecon: 4850 Elunium: 7275 Mirror_Shield_: 1000 War_Axe: 75 Helm_Of_Sun: 2 } }, { Id: 1328 SpriteName: "TREASURE_BOX5" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Jewel__: 7760 Seed_Of_Yggdrasil: 3000 Yggdrasilberry: 2500 Muffler_: 800 Shoes_: 800 Chain_Mail_: 800 Buckler_: 800 Old_Card_Album: 1000 } }, { Id: 1329 SpriteName: "TREASURE_BOX6" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Iron_Maiden: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree: 10000 Oridecon: 4850 Elunium: 7275 Guard_: 834 Corsair: 100 Gemmed_Crown: 9 } }, { Id: 1330 SpriteName: "TREASURE_BOX7" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Jewel__: 7760 Seed_Of_Yggdrasil: 3000 Yggdrasilberry: 2500 Muffler_: 800 Shoes_: 800 Chain_Mail_: 800 Buckler_: 800 Old_Card_Album: 1000 } }, { Id: 1331 SpriteName: "TREASURE_BOX8" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Mystery_Wheel: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree: 10000 Oridecon: 4850 Elunium: 7275 Critical_Ring: 500 Mage_Coat: 125 Earring_: 9 } }, { Id: 1332 SpriteName: "TREASURE_BOX9" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Jewel__: 7760 Seed_Of_Yggdrasil: 3000 Yggdrasilberry: 2500 Muffler_: 800 Shoes_: 800 Chain_Mail_: 800 Buckler_: 800 Old_Card_Album: 1000 } }, { Id: 1333 SpriteName: "TREASURE_BOX10" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Silver_Fancy: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree: 10000 Oridecon: 4850 Elunium: 7275 Buckler_: 500 Tights_: 150 Necklace_: 10 } }, { Id: 1334 SpriteName: "TREASURE_BOX11" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Jewel__: 7760 Seed_Of_Yggdrasil: 3000 Yggdrasilberry: 2500 Muffler_: 800 Shoes_: 800 Chain_Mail_: 800 Buckler_: 800 Old_Card_Album: 1000 } }, { Id: 1335 SpriteName: "TREASURE_BOX12" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Anger_Of_Valkurye: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree: 10000 Oridecon: 4850 Elunium: 7275 Centimental_Leaf: 500 Kakkung_: 150 Magestic_Goat: 10 } }, { Id: 1336 SpriteName: "TREASURE_BOX13" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Jewel__: 7760 Seed_Of_Yggdrasil: 3000 Yggdrasilberry: 2500 Muffler_: 800 Shoes_: 800 Chain_Mail_: 800 Buckler_: 800 Old_Card_Album: 1000 } }, { Id: 1337 SpriteName: "TREASURE_BOX14" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Feather_Of_Angel: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree: 10000 Oridecon: 4850 Elunium: 7275 Zeny_Knife: 375 Spanner: 150 Clothes_Of_The_Lord: 10 } }, { Id: 1338 SpriteName: "TREASURE_BOX15" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Jewel__: 7760 Seed_Of_Yggdrasil: 3000 Yggdrasilberry: 2500 Muffler_: 800 Shoes_: 800 Chain_Mail_: 800 Buckler_: 800 Old_Card_Album: 1000 } }, { Id: 1339 SpriteName: "TREASURE_BOX16" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Foot_Step_Of_Cat: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree: 10000 Oridecon: 4850 Elunium: 7275 Rosary_: 300 Staff_Of_Soul: 167 Holy_Robe: 10 } }, { Id: 1340 SpriteName: "TREASURE_BOX17" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Jewel__: 7760 Seed_Of_Yggdrasil: 3000 Yggdrasilberry: 2500 Muffler_: 800 Shoes_: 800 Chain_Mail_: 800 Buckler_: 800 Old_Card_Album: 1000 } }, { Id: 1341 SpriteName: "TREASURE_BOX18" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Beard_Of_Women: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree: 10000 Oridecon: 4850 Elunium: 7275 Gaia_Sword: 250 Grimtooth_: 188 Crown: 12 } }, { Id: 1342 SpriteName: "TREASURE_BOX19" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Jewel__: 7760 Seed_Of_Yggdrasil: 3000 Yggdrasilberry: 2500 Muffler_: 800 Shoes_: 800 Chain_Mail_: 800 Buckler_: 800 Old_Card_Album: 1000 } }, { Id: 1343 SpriteName: "TREASURE_BOX20" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Root_Of_Stone: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree: 10000 Oridecon: 4850 Elunium: 7275 Old_Violet_Box: 250 Sasimi: 188 Loard_Circlet: 19 } }, { Id: 1344 SpriteName: "TREASURE_BOX21" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Jewel__: 7760 Seed_Of_Yggdrasil: 3000 Yggdrasilberry: 2500 Muffler_: 800 Shoes_: 800 Chain_Mail_: 800 Buckler_: 800 Old_Card_Album: 1000 } }, { Id: 1345 SpriteName: "TREASURE_BOX22" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Soul_Of_Fish: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree: 10000 Oridecon: 4850 Elunium: 7275 Ragamuffin_Cape: 1000 Thief_Clothes_: 69 Ring_: 20 } }, { Id: 1346 SpriteName: "TREASURE_BOX23" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Jewel__: 7760 Seed_Of_Yggdrasil: 3000 Yggdrasilberry: 2500 Muffler_: 800 Shoes_: 800 Chain_Mail_: 800 Buckler_: 800 Old_Card_Album: 1000 } }, { Id: 1347 SpriteName: "TREASURE_BOX24" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Saliva_Of_Bird: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree: 10000 Oridecon: 4850 Elunium: 7275 Shield_: 1000 Muramasa: 50 Helm_Of_Angel: 24 } }, { Id: 1348 SpriteName: "TREASURE_BOX25" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Jewel__: 7760 Seed_Of_Yggdrasil: 3000 Yggdrasilberry: 2500 Muffler_: 800 Shoes_: 800 Chain_Mail_: 800 Buckler_: 800 Old_Card_Album: 1000 } }, { Id: 1349 SpriteName: "TREASURE_BOX26" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Tendon_Of_Bear: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree: 10000 Oridecon: 4850 Elunium: 7275 Gemmed_Sallet_: 750 Glove_: 46 Elven_Ears: 25 } }, { Id: 1350 SpriteName: "TREASURE_BOX27" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Jewel__: 7760 Seed_Of_Yggdrasil: 3000 Yggdrasilberry: 2500 Muffler_: 800 Shoes_: 800 Chain_Mail_: 800 Buckler_: 800 Old_Card_Album: 1000 } }, { Id: 1351 SpriteName: "TREASURE_BOX28" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Symbol_Of_Sun: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree: 10000 Oridecon: 4850 Elunium: 7275 Ear_Mufs: 500 Safety_Ring: 41 Tiara: 32 } }, { Id: 1352 SpriteName: "TREASURE_BOX29" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Jewel__: 7760 Seed_Of_Yggdrasil: 3000 Yggdrasilberry: 2500 Muffler_: 800 Shoes_: 800 Chain_Mail_: 800 Buckler_: 800 Old_Card_Album: 1000 } }, { Id: 1353 SpriteName: "TREASURE_BOX30" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Breath_Of_Soul: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree: 10000 Oridecon: 4850 Elunium: 7275 Cape_Of_Ancient_Lord: 500 Brooch_: 38 Magician_Hat: 34 } }, { Id: 1354 SpriteName: "TREASURE_BOX31" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Jewel__: 7760 Seed_Of_Yggdrasil: 3000 Yggdrasilberry: 2500 Muffler_: 800 Shoes_: 800 Chain_Mail_: 800 Buckler_: 800 Old_Card_Album: 1000 } }, { Id: 1355 SpriteName: "TREASURE_BOX32" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Of_Snow: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree: 10000 Oridecon: 4850 Elunium: 7275 Chrystal_Pumps: 429 Centimental_Flower: 250 Plate_Armor_: 35 } }, { Id: 1356 SpriteName: "TREASURE_BOX33" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Jewel__: 7760 Seed_Of_Yggdrasil: 3000 Yggdrasilberry: 2500 Muffler_: 800 Shoes_: 800 Chain_Mail_: 800 Buckler_: 800 Old_Card_Album: 1000 } }, { Id: 1357 SpriteName: "TREASURE_BOX34" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Indication_Of_Tempest: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree: 10000 Oridecon: 4850 Elunium: 7275 Memorize_Book: 300 Boots_: 273 Sharp_Gear: 38 } }, { Id: 1358 SpriteName: "TREASURE_BOX35" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Jewel__: 7760 Seed_Of_Yggdrasil: 3000 Yggdrasilberry: 2500 Muffler_: 800 Shoes_: 800 Chain_Mail_: 800 Buckler_: 800 Old_Card_Album: 1000 } }, { Id: 1359 SpriteName: "TREASURE_BOX36" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Slilince_Wave: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree: 10000 Oridecon: 4850 Elunium: 7275 Jewel_Sword: 215 Satanic_Chain: 60 Bone_Helm: 38 } }, { Id: 1360 SpriteName: "TREASURE_BOX37" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Jewel__: 7760 Seed_Of_Yggdrasil: 3000 Yggdrasilberry: 2500 Muffler_: 800 Shoes_: 800 Chain_Mail_: 800 Buckler_: 800 Old_Card_Album: 1000 } }, { Id: 1361 SpriteName: "TREASURE_BOX38" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Rough_Billows: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree: 10000 Oridecon: 4850 Elunium: 7275 Pole_Axe: 50 Spinx_Helm: 50 Helm_: 50 } }, { Id: 1362 SpriteName: "TREASURE_BOX39" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Crystal_Jewel__: 7760 Seed_Of_Yggdrasil: 3000 Yggdrasilberry: 2500 Muffler_: 800 Shoes_: 800 Chain_Mail_: 800 Buckler_: 800 Old_Card_Album: 1000 } }, { Id: 1363 SpriteName: "TREASURE_BOX40" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Air_Stream: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree: 10000 Oridecon: 4850 Elunium: 7275 Manteau_: 43 Angelic_Chain: 43 Iron_Driver: 38 } }, { Id: 1364 SpriteName: "G_ASSULTER" Name: "Assaulter" Lv: 59 Hp: 12853 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [152, 177] Def: 35 Mdef: 36 Stats: { Str: 85 Agi: 55 Vit: 10 Int: 35 Dex: 145 Luk: 100 } 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 MvpExp: 0 Drops: { Wooden_Block: 9000 } }, { Id: 1365 SpriteName: "APOCALIPS" Name: "Apocalypse" Lv: 66 Hp: 22880 Sp: 0 Exp: 6540 JExp: 4935 AttackRange: 2 Attack: [1030, 1370] Def: 62 Mdef: 49 Stats: { Str: 1 Agi: 48 Vit: 120 Int: 48 Dex: 66 Luk: 85 } 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 MvpExp: 0 Drops: { Broken_Steel_Piece: 5335 Mystery_Piece: 2400 Wheel: 2200 Elunium: 5 Destroyer_: 1 Manteau_: 20 Steel: 2500 Apocalips_Card: 1 } }, { Id: 1366 SpriteName: "LAVA_GOLEM" Name: "Lava Golem" Lv: 77 Hp: 24324 Sp: 0 Exp: 6470 JExp: 3879 AttackRange: 1 Attack: [1541, 2049] Def: 65 Mdef: 50 Stats: { Str: 1 Agi: 57 Vit: 115 Int: 70 Dex: 76 Luk: 68 } 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 MvpExp: 0 Drops: { Cold_Magma: 4559 Burning_Heart: 3686 Plate_Armor_: 1 Plate_Armor: 2 White_Herb: 2500 Magma_Fist: 20 Lava_Golem_Card: 1 } }, { Id: 1367 SpriteName: "BLAZZER" Name: "Blazer" Lv: 43 Hp: 8252 Sp: 0 Exp: 3173 JExp: 1871 AttackRange: 2 Attack: [533, 709] Def: 50 Mdef: 40 Stats: { Str: 1 Agi: 52 Vit: 50 Int: 39 Dex: 69 Luk: 40 } 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 MvpExp: 0 Drops: { Burning_Heart: 4850 Live_Coal: 3400 White_Herb: 3000 Blazzer_Card: 1 } }, { Id: 1368 SpriteName: "GEOGRAPHER" Name: "Geographer" Lv: 56 Hp: 8071 Sp: 0 Exp: 2715 JExp: 2000 AttackRange: 3 Attack: [467, 621] Def: 28 Mdef: 26 Stats: { Str: 1 Agi: 66 Vit: 47 Int: 60 Dex: 68 Luk: 44 } 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 MvpExp: 0 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: 58 Hp: 8054 Sp: 0 Exp: 2387 JExp: 1361 AttackRange: 2 Attack: [444, 565] Def: 37 Mdef: 30 Stats: { Str: 1 Agi: 66 Vit: 66 Int: 50 Dex: 71 Luk: 51 } 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 MvpExp: 0 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: 85 Hp: 16955 Sp: 0 Exp: 5357 JExp: 4322 AttackRange: 2 Attack: [1268, 1686] Def: 54 Mdef: 48 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: 155 AttackDelay: 1306 AttackMotion: 1056 DamageMotion: 288 MvpExp: 0 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: 65 Hp: 16845 Sp: 0 Exp: 3371 JExp: 1949 AttackRange: 2 Attack: [513, 682] Def: 50 Mdef: 35 Stats: { Str: 1 Agi: 64 Vit: 57 Int: 70 Dex: 61 Luk: 88 } 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 MvpExp: 0 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: 69 Hp: 11077 Sp: 0 Exp: 3357 JExp: 2015 AttackRange: 1 Attack: [457, 608] Def: 44 Mdef: 25 Stats: { Str: 1 Agi: 58 Vit: 66 Int: 62 Dex: 67 Luk: 43 } 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 MvpExp: 0 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: 603383 Sp: 0 Exp: 131343 JExp: 43345 AttackRange: 3 Attack: [3430, 4232] Def: 77 Mdef: 73 Stats: { Str: 1 Agi: 99 Vit: 30 Int: 109 Dex: 100 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: 65671 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: 75 Hp: 17281 Sp: 0 Exp: 5254 JExp: 4212 AttackRange: 2 Attack: [1408, 1873] 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 MvpExp: 0 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: 56 Hp: 18557 Sp: 0 Exp: 2849 JExp: 1998 AttackRange: 1 Attack: [845, 1124] Def: 25 Mdef: 24 Stats: { Str: 1 Agi: 66 Vit: 52 Int: 76 Dex: 71 Luk: 79 } 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: 170 AttackDelay: 1160 AttackMotion: 960 DamageMotion: 336 MvpExp: 0 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: 70 Hp: 16599 Sp: 0 Exp: 3562 JExp: 2133 AttackRange: 1 Attack: [926, 1231] Def: 42 Mdef: 44 Stats: { Str: 1 Agi: 112 Vit: 72 Int: 67 Dex: 74 Luk: 76 } 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 MvpExp: 0 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: 64 Hp: 21592 Sp: 0 Exp: 5650 JExp: 3408 AttackRange: 3 Attack: [421, 560] Def: 45 Mdef: 68 Stats: { Str: 1 Agi: 76 Vit: 68 Int: 108 Dex: 72 Luk: 86 } 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 MvpExp: 0 Drops: { Old_Magic_Circle: 4000 Rent_Spell_Book: 1500 Rent_Scroll: 1500 Encyclopedia: 10 Wizardy_Staff: 1 Old_Card_Album: 1 Underground_Key: 3000 Elder_Card: 1 } }, { Id: 1378 SpriteName: "DEMON_PUNGUS" Name: "Demon Pungus" Lv: 56 Hp: 7259 Sp: 0 Exp: 3148 JExp: 1817 AttackRange: 1 Attack: [360, 479] Def: 48 Mdef: 31 Stats: { Str: 1 Agi: 83 Vit: 55 Int: 59 Dex: 63 Luk: 34 } 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 MvpExp: 0 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: 78 Hp: 22605 Sp: 0 Exp: 6683 JExp: 4359 AttackRange: 1 Attack: [757, 1007] Def: 37 Mdef: 37 Stats: { Str: 1 Agi: 76 Vit: 55 Int: 60 Dex: 76 Luk: 54 } 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 MvpExp: 0 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: 52 Hp: 7452 Sp: 0 Exp: 3215 JExp: 1860 AttackRange: 1 Attack: [666, 886] Def: 48 Mdef: 31 Stats: { Str: 1 Agi: 66 Vit: 58 Int: 50 Dex: 60 Luk: 47 } 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 MvpExp: 0 Drops: { Lizard_Scruff: 7500 Yellow_Gemstone: 3880 Red_Gemstone: 3500 Driller_Card: 1 } }, { Id: 1381 SpriteName: "GRIZZLY" Name: "Grizzly" Lv: 68 Hp: 11733 Sp: 0 Exp: 3341 JExp: 2012 AttackRange: 1 Attack: [809, 1076] Def: 44 Mdef: 32 Stats: { Str: 1 Agi: 55 Vit: 68 Int: 58 Dex: 70 Luk: 61 } 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 MvpExp: 0 Drops: { Bears_Foot: 5000 Animals_Skin: 5000 Nice_Sweet_Potato: 2500 Grizzly_Card: 1 } }, { Id: 1382 SpriteName: "DIABOLIC" Name: "Diabolic" Lv: 67 Hp: 9642 Sp: 0 Exp: 3662 JExp: 2223 AttackRange: 1 Attack: [796, 1059] Def: 64 Mdef: 36 Stats: { Str: 1 Agi: 84 Vit: 53 Int: 67 Dex: 71 Luk: 69 } 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 MvpExp: 0 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: 46 Hp: 8054 Sp: 0 Exp: 2404 JExp: 1642 AttackRange: 1 Attack: [336, 447] Def: 35 Mdef: 27 Stats: { Str: 1 Agi: 61 Vit: 56 Int: 50 Dex: 66 Luk: 38 } 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 MvpExp: 0 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: 66 Hp: 17292 Sp: 0 Exp: 3403 JExp: 2066 AttackRange: 1 Attack: [446, 593] Def: 45 Mdef: 53 Stats: { Str: 1 Agi: 104 Vit: 40 Int: 65 Dex: 72 Luk: 54 } 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 MvpExp: 0 Drops: { Dragons_Skin: 4074 Dragon_Canine: 5335 Dragon_Train: 3880 Dragon_Scale: 3589 Flying_Deleter_Card: 1 } }, { Id: 1385 SpriteName: "DELETER_" Name: "Deleter" Lv: 65 Hp: 15168 Sp: 0 Exp: 3403 JExp: 2066 AttackRange: 1 Attack: [446, 593] Def: 52 Mdef: 53 Stats: { Str: 1 Agi: 66 Vit: 40 Int: 65 Dex: 72 Luk: 68 } 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 MvpExp: 0 Drops: { Dragons_Skin: 4074 Dragon_Canine: 5335 Dragon_Train: 3880 Dragon_Scale: 3589 Deleter_Card: 1 } }, { Id: 1386 SpriteName: "SLEEPER" Name: "Sleeper" Lv: 67 Hp: 8237 Sp: 0 Exp: 3603 JExp: 2144 AttackRange: 1 Attack: [593, 789] Def: 49 Mdef: 35 Stats: { Str: 1 Agi: 48 Vit: 100 Int: 57 Dex: 75 Luk: 28 } 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 MvpExp: 0 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: 60 Hp: 8409 Sp: 0 Exp: 3934 JExp: 2039 AttackRange: 1 Attack: [360, 479] Def: 60 Mdef: 28 Stats: { Str: 1 Agi: 61 Vit: 80 Int: 53 Dex: 59 Luk: 46 } 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 MvpExp: 0 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: 60 Hp: 79523 Sp: 0 Exp: 4152 JExp: 2173 AttackRange: 1 Attack: [669, 890] Def: 54 Mdef: 58 Stats: { Str: 1 Agi: 65 Vit: 80 Int: 74 Dex: 65 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 MvpExp: 0 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: 85 Hp: 320096 Sp: 0 Exp: 120157 JExp: 38870 AttackRange: 3 Attack: [1625, 1890] Def: 45 Mdef: 76 Stats: { Str: 1 Agi: 95 Vit: 90 Int: 87 Dex: 85 Luk: 100 } 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: 60078 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: 75 Hp: 18257 Sp: 0 Exp: 6353 JExp: 3529 AttackRange: 10 Attack: [738, 982] Def: 37 Mdef: 36 Stats: { Str: 1 Agi: 93 Vit: 54 Int: 58 Dex: 101 Luk: 83 } 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 MvpExp: 0 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: 61 Hp: 9145 Sp: 0 Exp: 3204 JExp: 1966 AttackRange: 1 Attack: [457, 608] Def: 33 Mdef: 33 Stats: { Str: 1 Agi: 56 Vit: 56 Int: 45 Dex: 66 Luk: 57 } 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 MvpExp: 0 Drops: { Cyfar: 5335 Leaf_Of_Yggdrasil: 100 Yellow_Herb: 3500 Aloebera: 100 Anodyne: 100 Galapago_Cap: 1 Orange: 1000 Galapago_Card: 1 } }, { Id: 1392 SpriteName: "ROTAR_ZAIRO" Name: "Rotar Zairo" Lv: 25 Hp: 1209 Sp: 0 Exp: 351 JExp: 215 AttackRange: 10 Attack: [109, 137] Def: 4 Mdef: 34 Stats: { Str: 1 Agi: 62 Vit: 45 Int: 26 Dex: 55 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 MvpExp: 0 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: 37 Hp: 5176 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [305, 360] 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_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 MvpExp: 0 }, { Id: 1394 SpriteName: "G_ZOMBIE" Name: "Zombie" Lv: 15 Hp: 534 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [67, 79] Def: 0 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 MvpExp: 0 }, { Id: 1395 SpriteName: "CRYSTAL_1" Name: "Wind Crystal" Lv: 1 Hp: 15 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 100 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 MvpExp: 0 Drops: { Piece_Of_Cake: 3800 Candy_Striper: 4500 White_Chocolate: 5000 Gift_Box_2: 4900 Cone_Hat_: 7000 Banana_Juice: 6500 Chocolate: 5000 Yggdrasilberry: 200 } }, { Id: 1396 SpriteName: "CRYSTAL_2" Name: "Earth Crystal" Lv: 1 Hp: 15 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 100 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 MvpExp: 0 Drops: { Piece_Of_Cake: 3800 Candy_Striper: 4500 White_Chocolate: 5000 Gift_Box_4: 4900 Cone_Hat_: 7000 Apple_Juice: 6500 Chocolate: 5000 Seed_Of_Yggdrasil: 250 } }, { Id: 1397 SpriteName: "CRYSTAL_3" Name: "Fire Crystal" Lv: 1 Hp: 15 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 100 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 MvpExp: 0 Drops: { Piece_Of_Cake: 3800 Candy_Striper: 4500 White_Chocolate: 5000 Gift_Box_1: 4900 Cone_Hat_: 7000 Carrot_Juice: 6500 Chocolate: 5000 Branch_Of_Dead_Tree: 300 } }, { Id: 1398 SpriteName: "CRYSTAL_4" Name: "Water Crystal" Lv: 1 Hp: 15 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 100 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 MvpExp: 0 Drops: { Piece_Of_Cake: 3800 Candy_Striper: 4500 White_Chocolate: 5000 Gift_Box_3: 4900 Cone_Hat_: 7000 Grape_Juice: 6500 Chocolate: 5000 Old_Blue_Box: 100 } }, { Id: 1399 SpriteName: "EVENT_BAPHO" Name: "Baphomet" Lv: 68 Hp: 1264000 Sp: 0 Exp: 261750 JExp: 83685 AttackRange: 3 Attack: [1847, 2267] Def: 35 Mdef: 45 Stats: { Str: 1 Agi: 152 Vit: 96 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: 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 } }, { Id: 1400 SpriteName: "KARAKASA" Name: "Karakasa" Lv: 30 Hp: 3092 Sp: 0 Exp: 489 JExp: 322 AttackRange: 1 Attack: [141, 183] Def: 1 Mdef: 5 Stats: { Str: 1 Agi: 45 Vit: 12 Int: 20 Dex: 49 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 MvpExp: 0 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: 69 Hp: 12700 Sp: 0 Exp: 4970 JExp: 3010 AttackRange: 2 Attack: [460, 1410] Def: 34 Mdef: 21 Stats: { Str: 85 Agi: 85 Vit: 25 Int: 25 Dex: 100 Luk: 100 } 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 MvpExp: 0 Drops: { Broken_Shuriken: 5335 Ninja_Suit: 2 Cyfar: 2200 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: 46 Hp: 6629 Sp: 0 Exp: 1929 JExp: 1457 AttackRange: 3 Attack: [288, 408] Def: 5 Mdef: 10 Stats: { Str: 20 Agi: 34 Vit: 19 Int: 14 Dex: 66 Luk: 55 } 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 MvpExp: 0 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: 47 Hp: 3852 Sp: 0 Exp: 1293 JExp: 1003 AttackRange: 10 Attack: [289, 336] Def: 10 Mdef: 10 Stats: { Str: 15 Agi: 35 Vit: 29 Int: 15 Dex: 120 Luk: 42 } 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 MvpExp: 0 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: 33 Hp: 6300 Sp: 0 Exp: 795 JExp: 453 AttackRange: 1 Attack: [250, 305] Def: 1 Mdef: 20 Stats: { Str: 1 Agi: 52 Vit: 15 Int: 10 Dex: 62 Luk: 15 } 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 MvpExp: 0 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: 65 Hp: 16940 Sp: 0 Exp: 4207 JExp: 2843 AttackRange: 2 Attack: [660, 980] Def: 12 Mdef: 82 Stats: { Str: 90 Agi: 42 Vit: 69 Int: 45 Dex: 78 Luk: 80 } 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 MvpExp: 0 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: 41 Hp: 7892 Sp: 0 Exp: 2278 JExp: 1552 AttackRange: 3 Attack: [399, 719] Def: 20 Mdef: 38 Stats: { Str: 1 Agi: 51 Vit: 49 Int: 22 Dex: 73 Luk: 45 } 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 MvpExp: 0 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 MvpExp: 0 },*/ { Id: 1408 SpriteName: "BLOOD_BUTTERFLY" Name: "Bloody Butterfly" Lv: 55 Hp: 8082 Sp: 0 Exp: 2119 JExp: 1562 AttackRange: 3 Attack: [121, 342] Def: 5 Mdef: 23 Stats: { Str: 1 Agi: 59 Vit: 14 Int: 55 Dex: 68 Luk: 15 } 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 MvpExp: 0 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: 27 Hp: 2098 Sp: 0 Exp: 231 JExp: 149 AttackRange: 1 Attack: [112, 134] Def: 5 Mdef: 12 Stats: { Str: 1 Agi: 22 Vit: 29 Int: 5 Dex: 41 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: 647 AttackMotion: 768 DamageMotion: 420 MvpExp: 0 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: 53 Hp: 8905 Sp: 0 Exp: 2591 JExp: 1799 AttackRange: 7 Attack: [301, 351] Def: 10 Mdef: 38 Stats: { Str: 72 Agi: 45 Vit: 35 Int: 39 Dex: 80 Luk: 5 } 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 MvpExp: 0 Drops: { Hard_Peach: 4365 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: "Peach Tree Bullet" Lv: 0 Hp: 0 Sp: 0 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", 0) MoveSpeed: 0 AttackDelay: 0 AttackMotion: 0 DamageMotion: 0 MvpExp: 0 },*/ { Id: 1412 SpriteName: "EVIL_CLOUD_HERMIT" Name: "Evil Cloud Hermit" JName: "Taoist Hermit" Lv: 56 Hp: 10392 Sp: 0 Exp: 3304 JExp: 2198 AttackRange: 10 Attack: [311, 333] Def: 25 Mdef: 59 Stats: { Str: 1 Agi: 20 Vit: 18 Int: 50 Dex: 136 Luk: 11 } 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 MvpExp: 0 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: 46 Hp: 6900 Sp: 0 Exp: 1038 JExp: 692 AttackRange: 1 Attack: [220, 280] Def: 10 Mdef: 20 Stats: { Str: 13 Agi: 42 Vit: 36 Int: 55 Dex: 66 Luk: 30 } 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 MvpExp: 0 Drops: { Leaflet_Of_Hinal: 3500 Leaflet_Of_Aloe: 3500 Root_Of_Maneater: 3800 Blossom_Of_Maneater: 4800 Sweet_Potato: 4800 Rope_: 1 Strawberry: 1000 Wild_Ginseng_Card: 1 } }, /*{ Id: 1414 SpriteName: "GINSENG_BULLET" Name: "Ginseng Bullet" Lv: 0 Hp: 0 Sp: 0 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", 0) MoveSpeed: 0 AttackDelay: 0 AttackMotion: 0 DamageMotion: 0 MvpExp: 0 },*/ { Id: 1415 SpriteName: "BABY_LEOPARD" Name: "Baby Leopard" Lv: 32 Hp: 2590 Sp: 0 Exp: 352 JExp: 201 AttackRange: 2 Attack: [155, 207] Def: 0 Mdef: 5 Stats: { Str: 20 Agi: 44 Vit: 20 Int: 4 Dex: 49 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 MvpExp: 0 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: 63 Hp: 16029 Sp: 0 Exp: 3945 JExp: 2599 AttackRange: 2 Attack: [399, 1090] Def: 12 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 Detector: true CastSensorChase: true ChangeChase: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 200 AttackDelay: 637 AttackMotion: 1008 DamageMotion: 360 MvpExp: 0 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: 35 Hp: 2901 Sp: 0 Exp: 370 JExp: 225 AttackRange: 1 Attack: [248, 289] Def: 10 Mdef: 5 Stats: { Str: 30 Agi: 25 Vit: 55 Int: 15 Dex: 28 Luk: 25 } 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 MvpExp: 0 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: 73 Hp: 254993 Sp: 0 Exp: 34288 JExp: 17950 AttackRange: 3 Attack: [2433, 4210] Def: 25 Mdef: 55 Stats: { Str: 70 Agi: 83 Vit: 30 Int: 80 Dex: 164 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: 17144 MvpDrops: { Yggdrasilberry: 5500 Seed_Of_Yggdrasil: 3500 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 } }, { Id: 1419 SpriteName: "G_FARMILIAR" Name: "Familiar" Lv: 8 Hp: 155 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [20, 28] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 12 Vit: 8 Int: 5 Dex: 28 Luk: 0 } ViewRange: 10 ChaseRange: 12 Size: "Size_Small" Race: "RC_Brute" Element: ("Ele_Dark", 1) Mode: { CanMove: true Aggressive: true CanAttack: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 150 AttackDelay: 1276 AttackMotion: 576 DamageMotion: 384 MvpExp: 0 }, { Id: 1420 SpriteName: "G_ARCHER_SKELETON" Name: "Archer Skeleton" Lv: 31 Hp: 3040 Sp: 0 Exp: 0 JExp: 0 AttackRange: 9 Attack: [128, 153] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 8 Vit: 14 Int: 5 Dex: 90 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 MvpExp: 0 }, { Id: 1421 SpriteName: "G_ISIS" Name: "Isis" Lv: 43 Hp: 4828 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [423, 507] Def: 10 Mdef: 35 Stats: { Str: 38 Agi: 65 Vit: 43 Int: 30 Dex: 72 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 MvpExp: 0 }, { Id: 1422 SpriteName: "G_HUNTER_FLY" Name: "Hunter Fly" Lv: 42 Hp: 5242 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [246, 333] Def: 25 Mdef: 15 Stats: { Str: 33 Agi: 105 Vit: 32 Int: 15 Dex: 72 Luk: 30 } 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 MvpExp: 0 }, { Id: 1423 SpriteName: "G_GHOUL" Name: "Ghoul" Lv: 39 Hp: 5118 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [420, 500] Def: 5 Mdef: 20 Stats: { Str: 1 Agi: 20 Vit: 29 Int: 0 Dex: 33 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 MvpExp: 0 }, { Id: 1424 SpriteName: "G_SIDE_WINDER" Name: "Side Winder" Lv: 43 Hp: 4929 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [240, 320] Def: 5 Mdef: 10 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 CanAttack: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 200 AttackDelay: 1576 AttackMotion: 576 DamageMotion: 576 MvpExp: 0 }, { Id: 1425 SpriteName: "G_OBEAUNE" Name: "Obeaune" Lv: 31 Hp: 3952 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [141, 165] 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: { CanMove: true Aggressive: true CanAttack: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 200 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 288 MvpExp: 0 }, { Id: 1426 SpriteName: "G_MARC" Name: "Marc" Lv: 36 Hp: 6900 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [220, 280] Def: 5 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: { CanMove: true Aggressive: true CanAttack: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 150 AttackDelay: 1272 AttackMotion: 72 DamageMotion: 480 MvpExp: 0 }, { Id: 1427 SpriteName: "G_NIGHTMARE" Name: "Nightmare" Lv: 49 Hp: 4437 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [447, 529] Def: 0 Mdef: 40 Stats: { Str: 1 Agi: 74 Vit: 25 Int: 15 Dex: 64 Luk: 10 } 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 MvpExp: 0 }, { Id: 1428 SpriteName: "G_POISON_SPORE" Name: "Poison Spore" Lv: 19 Hp: 665 Sp: 0 Exp: 0 JExp: 0 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 MvpExp: 0 }, { Id: 1429 SpriteName: "G_ARGIOPE" Name: "Argiope" Lv: 41 Hp: 4382 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [395, 480] Def: 30 Mdef: 0 Stats: { Str: 1 Agi: 41 Vit: 31 Int: 10 Dex: 56 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 MvpExp: 0 }, { Id: 1430 SpriteName: "G_ARGOS" Name: "Argos" Lv: 25 Hp: 1117 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [158, 191] Def: 15 Mdef: 0 Stats: { Str: 1 Agi: 25 Vit: 25 Int: 5 Dex: 32 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 MvpExp: 0 }, { Id: 1431 SpriteName: "G_BAPHOMET_" Name: "Baphomet Jr." Lv: 50 Hp: 8578 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [487, 590] Def: 15 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 Aggressive: true CanAttack: true Detector: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 100 AttackDelay: 868 AttackMotion: 480 DamageMotion: 120 MvpExp: 0 }, { Id: 1432 SpriteName: "G_DESERT_WOLF" Name: "Desert Wolf" Lv: 27 Hp: 1716 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [169, 208] Def: 0 Mdef: 10 Stats: { Str: 56 Agi: 27 Vit: 45 Int: 15 Dex: 56 Luk: 10 } 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 MvpExp: 0 }, { Id: 1433 SpriteName: "G_DEVIRUCHI" Name: "Deviruchi" Lv: 46 Hp: 7360 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [475, 560] Def: 10 Mdef: 25 Stats: { Str: 1 Agi: 69 Vit: 40 Int: 55 Dex: 87 Luk: 30 } 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 MvpExp: 0 }, { Id: 1434 SpriteName: "G_DRAINLIAR" Name: "Drainliar" Lv: 24 Hp: 1162 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [74, 84] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 36 Vit: 24 Int: 0 Dex: 78 Luk: 0 } 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 MvpExp: 0 }, { Id: 1435 SpriteName: "G_EVIL_DRUID" Name: "Evil Druid" Lv: 58 Hp: 16506 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [420, 670] Def: 5 Mdef: 60 Stats: { Str: 1 Agi: 29 Vit: 58 Int: 80 Dex: 68 Luk: 30 } 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 MvpExp: 0 }, { Id: 1436 SpriteName: "G_JAKK" Name: "Jakk" Lv: 38 Hp: 3581 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [315, 382] Def: 5 Mdef: 30 Stats: { Str: 1 Agi: 38 Vit: 38 Int: 43 Dex: 75 Luk: 45 } 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 MvpExp: 0 }, { Id: 1437 SpriteName: "G_JOKER" Name: "Joker" Lv: 57 Hp: 12450 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [621, 738] Def: 10 Mdef: 35 Stats: { Str: 1 Agi: 143 Vit: 47 Int: 75 Dex: 98 Luk: 175 } 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 MvpExp: 0 }, { Id: 1438 SpriteName: "G_KHALITZBURG" Name: "Khalitzburg" Lv: 63 Hp: 19276 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [875, 1025] Def: 45 Mdef: 10 Stats: { Str: 58 Agi: 65 Vit: 48 Int: 5 Dex: 73 Luk: 40 } 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 MvpExp: 0 }, { Id: 1439 SpriteName: "G_HIGH_ORC" Name: "High Orc" Lv: 52 Hp: 6890 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [428, 533] Def: 15 Mdef: 5 Stats: { Str: 55 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 CanAttack: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 150 AttackDelay: 1500 AttackMotion: 500 DamageMotion: 1000 MvpExp: 0 }, { Id: 1440 SpriteName: "G_STEM_WORM" Name: "Stem Worm" Lv: 40 Hp: 6136 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [290, 375] Def: 5 Mdef: 10 Stats: { Str: 1 Agi: 30 Vit: 26 Int: 15 Dex: 79 Luk: 35 } 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 MvpExp: 0 }, { Id: 1441 SpriteName: "G_PENOMENA" Name: "Penomena" Lv: 57 Hp: 7256 Sp: 0 Exp: 0 JExp: 0 AttackRange: 7 Attack: [415, 565] Def: 5 Mdef: 50 Stats: { Str: 1 Agi: 5 Vit: 35 Int: 15 Dex: 136 Luk: 30 } 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 MvpExp: 0 }, { Id: 1442 SpriteName: "G_SASQUATCH" Name: "Sasquatch" Lv: 30 Hp: 3163 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [250, 280] Def: 5 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 CanAttack: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 300 AttackDelay: 1260 AttackMotion: 192 DamageMotion: 192 MvpExp: 0 }, { Id: 1443 SpriteName: "G_CRUISER" Name: "Cruiser" Lv: 35 Hp: 2820 Sp: 0 Exp: 0 JExp: 0 AttackRange: 7 Attack: [175, 215] Def: 5 Mdef: 5 Stats: { Str: 1 Agi: 40 Vit: 10 Int: 10 Dex: 90 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: 1296 AttackMotion: 1296 DamageMotion: 432 MvpExp: 0 }, { Id: 1444 SpriteName: "G_CHEPET" Name: "Chepet" Lv: 42 Hp: 4950 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [380, 440] Def: 0 Mdef: 25 Stats: { Str: 1 Agi: 72 Vit: 35 Int: 71 Dex: 65 Luk: 85 } 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 MvpExp: 0 }, { Id: 1445 SpriteName: "G_RAGGLER" Name: "Raggler" Lv: 21 Hp: 1020 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [102, 113] Def: 0 Mdef: 5 Stats: { Str: 18 Agi: 10 Vit: 32 Int: 20 Dex: 39 Luk: 35 } 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 MvpExp: 0 }, { Id: 1446 SpriteName: "G_INJUSTICE" Name: "Injustice" Lv: 51 Hp: 7600 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [480, 600] Def: 0 Mdef: 0 Stats: { Str: 84 Agi: 42 Vit: 39 Int: 0 Dex: 71 Luk: 35 } 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 MvpExp: 0 }, { Id: 1447 SpriteName: "G_GRYPHON" Name: "Gryphon" Lv: 72 Hp: 27800 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [880, 1260] Def: 35 Mdef: 35 Stats: { Str: 68 Agi: 95 Vit: 78 Int: 65 Dex: 115 Luk: 75 } 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 MvpExp: 0 }, { Id: 1448 SpriteName: "G_DARK_FRAME" Name: "Dark Frame" Lv: 59 Hp: 7500 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [960, 1210] Def: 10 Mdef: 45 Stats: { Str: 1 Agi: 72 Vit: 42 Int: 45 Dex: 85 Luk: 25 } 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 MvpExp: 0 }, { Id: 1449 SpriteName: "G_MUTANT_DRAGON" Name: "Mutant Dragon" JName: "Mutant Dragonoid" Lv: 65 Hp: 62600 Sp: 0 Exp: 0 JExp: 0 AttackRange: 4 Attack: [2400, 3400] Def: 15 Mdef: 20 Stats: { Str: 75 Agi: 47 Vit: 30 Int: 68 Dex: 45 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 MvpExp: 0 }, { Id: 1450 SpriteName: "G_WIND_GHOST" Name: "Wind Ghost" Lv: 51 Hp: 4820 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [489, 639] Def: 0 Mdef: 45 Stats: { Str: 1 Agi: 89 Vit: 15 Int: 90 Dex: 85 Luk: 25 } 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 MvpExp: 0 }, { Id: 1451 SpriteName: "G_MERMAN" Name: "Merman" Lv: 53 Hp: 12300 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [482, 603] Def: 10 Mdef: 35 Stats: { Str: 72 Agi: 45 Vit: 46 Int: 15 Dex: 85 Luk: 55 } 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 MvpExp: 0 }, { Id: 1452 SpriteName: "G_ORC_LADY" Name: "Orc Lady" Lv: 31 Hp: 2000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [135, 170] Def: 10 Mdef: 10 Stats: { Str: 35 Agi: 42 Vit: 25 Int: 15 Dex: 69 Luk: 55 } 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 MvpExp: 0 }, { Id: 1453 SpriteName: "G_RAYDRIC_ARCHER" Name: "Raydric Archer" Lv: 52 Hp: 5250 Sp: 0 Exp: 0 JExp: 0 AttackRange: 9 Attack: [415, 500] Def: 35 Mdef: 5 Stats: { Str: 15 Agi: 25 Vit: 22 Int: 5 Dex: 145 Luk: 35 } 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 MvpExp: 0 }, { Id: 1454 SpriteName: "G_TRI_JOINT" Name: "Tri Joint" Lv: 32 Hp: 2300 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [178, 206] Def: 20 Mdef: 5 Stats: { Str: 1 Agi: 48 Vit: 24 Int: 10 Dex: 67 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 MvpExp: 0 }, { Id: 1455 SpriteName: "G_KOBOLD_ARCHER" Name: "Kobold Archer" Lv: 33 Hp: 2560 Sp: 0 Exp: 0 JExp: 0 AttackRange: 9 Attack: [155, 185] Def: 10 Mdef: 5 Stats: { Str: 10 Agi: 20 Vit: 15 Int: 30 Dex: 100 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 MvpExp: 0 }, { Id: 1456 SpriteName: "G_CHIMERA" Name: "Chimera" Lv: 70 Hp: 32600 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [1200, 1320] Def: 30 Mdef: 10 Stats: { Str: 1 Agi: 72 Vit: 110 Int: 88 Dex: 75 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 MvpExp: 0 }, { Id: 1457 SpriteName: "G_MANTIS" Name: "Mantis" Lv: 26 Hp: 2472 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [118, 149] Def: 10 Mdef: 0 Stats: { Str: 1 Agi: 26 Vit: 24 Int: 5 Dex: 45 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 MvpExp: 0 }, { Id: 1458 SpriteName: "G_MARDUK" Name: "Marduk" Lv: 40 Hp: 4214 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [315, 382] Def: 0 Mdef: 60 Stats: { Str: 1 Agi: 40 Vit: 20 Int: 79 Dex: 78 Luk: 20 } 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 MvpExp: 0 }, { Id: 1459 SpriteName: "G_MARIONETTE" Name: "Marionette" Lv: 41 Hp: 3222 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [355, 422] Def: 0 Mdef: 25 Stats: { Str: 1 Agi: 62 Vit: 36 Int: 44 Dex: 69 Luk: 45 } 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 MvpExp: 0 }, { Id: 1460 SpriteName: "G_MATYR" Name: "Matyr" Lv: 31 Hp: 2585 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [134, 160] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 47 Vit: 38 Int: 5 Dex: 64 Luk: 5 } 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 MvpExp: 0 }, { Id: 1461 SpriteName: "G_MINOROUS" Name: "Minorous" Lv: 52 Hp: 7431 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [590, 770] Def: 15 Mdef: 5 Stats: { Str: 65 Agi: 42 Vit: 61 Int: 66 Dex: 52 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 MvpExp: 0 }, { Id: 1462 SpriteName: "G_ORC_SKELETON" Name: "Orc Skeleton" Lv: 28 Hp: 2278 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [190, 236] Def: 10 Mdef: 10 Stats: { Str: 1 Agi: 14 Vit: 18 Int: 0 Dex: 30 Luk: 15 } 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 MvpExp: 0 }, { Id: 1463 SpriteName: "G_ORC_ZOMBIE" Name: "Orc Zombie" Lv: 24 Hp: 1568 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [151, 184] Def: 5 Mdef: 10 Stats: { Str: 1 Agi: 12 Vit: 24 Int: 0 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: 400 AttackDelay: 2852 AttackMotion: 1152 DamageMotion: 840 MvpExp: 0 }, { Id: 1464 SpriteName: "G_PASANA" Name: "Pasana" Lv: 61 Hp: 8289 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [513, 682] Def: 29 Mdef: 35 Stats: { Str: 1 Agi: 73 Vit: 50 Int: 61 Dex: 69 Luk: 43 } 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 MvpExp: 0 }, { Id: 1465 SpriteName: "G_PETIT" Name: "Petite" Lv: 44 Hp: 6881 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [360, 427] Def: 30 Mdef: 30 Stats: { Str: 1 Agi: 44 Vit: 62 Int: 55 Dex: 79 Luk: 60 } 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 MvpExp: 0 }, { Id: 1466 SpriteName: "G_PETIT_" Name: "Petite" Lv: 45 Hp: 5747 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [300, 355] Def: 20 Mdef: 45 Stats: { Str: 1 Agi: 113 Vit: 45 Int: 55 Dex: 73 Luk: 80 } 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 MvpExp: 0 }, { Id: 1467 SpriteName: "G_RAYDRIC" Name: "Raydric" Lv: 52 Hp: 8613 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [830, 930] Def: 40 Mdef: 15 Stats: { Str: 58 Agi: 47 Vit: 42 Int: 5 Dex: 69 Luk: 26 } 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 MvpExp: 0 }, { Id: 1468 SpriteName: "G_REQUIEM" Name: "Requim" JName: "Requiem" Lv: 35 Hp: 3089 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [220, 272] Def: 0 Mdef: 15 Stats: { Str: 1 Agi: 53 Vit: 35 Int: 5 Dex: 57 Luk: 2 } 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 MvpExp: 0 }, { Id: 1469 SpriteName: "G_SKEL_WORKER" Name: "Skeleton Worker" Lv: 30 Hp: 2872 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [242, 288] Def: 0 Mdef: 15 Stats: { Str: 1 Agi: 15 Vit: 30 Int: 5 Dex: 42 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: 400 AttackDelay: 2420 AttackMotion: 720 DamageMotion: 384 MvpExp: 0 }, { Id: 1470 SpriteName: "G_ZEROM" Name: "Zerom" Lv: 23 Hp: 1109 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [127, 155] Def: 0 Mdef: 10 Stats: { Str: 1 Agi: 23 Vit: 23 Int: 5 Dex: 42 Luk: 0 } 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 MvpExp: 0 }, { Id: 1471 SpriteName: "G_NINE_TAIL" Name: "Nine Tail" Lv: 51 Hp: 9466 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [610, 734] Def: 10 Mdef: 25 Stats: { Str: 1 Agi: 80 Vit: 46 Int: 1 Dex: 89 Luk: 85 } 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 MvpExp: 0 }, { Id: 1472 SpriteName: "G_BON_GUN" Name: "Bongun" Lv: 32 Hp: 3520 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [220, 260] Def: 0 Mdef: 0 Stats: { Str: 45 Agi: 15 Vit: 36 Int: 10 Dex: 48 Luk: 15 } 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 MvpExp: 0 }, { Id: 1473 SpriteName: "G_ORC_ARCHER" Name: "Orc Archer" Lv: 49 Hp: 7440 Sp: 0 Exp: 0 JExp: 0 AttackRange: 9 Attack: [310, 390] Def: 10 Mdef: 5 Stats: { Str: 1 Agi: 44 Vit: 25 Int: 20 Dex: 125 Luk: 20 } 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 MvpExp: 0 }, { Id: 1474 SpriteName: "G_MIMIC" Name: "Mimic" Lv: 51 Hp: 6120 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [150, 900] 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 CanAttack: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 100 AttackDelay: 972 AttackMotion: 500 DamageMotion: 288 MvpExp: 0 }, { Id: 1475 SpriteName: "G_WRAITH" Name: "Wraith" Lv: 53 Hp: 10999 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [580, 760] Def: 5 Mdef: 30 Stats: { Str: 1 Agi: 95 Vit: 30 Int: 65 Dex: 95 Luk: 35 } 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 MvpExp: 0 }, { Id: 1476 SpriteName: "G_ALARM" Name: "Alarm" Lv: 58 Hp: 10647 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [480, 600] Def: 15 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 CanAttack: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 300 AttackDelay: 1020 AttackMotion: 500 DamageMotion: 768 MvpExp: 0 }, { Id: 1477 SpriteName: "G_ARCLOUSE" Name: "Arclouse" JName: "Arclouze" Lv: 59 Hp: 6075 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [570, 640] Def: 10 Mdef: 15 Stats: { Str: 1 Agi: 75 Vit: 5 Int: 5 Dex: 75 Luk: 50 } 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 MvpExp: 0 }, { Id: 1478 SpriteName: "G_RIDEWORD" Name: "Rideword" Lv: 59 Hp: 11638 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [584, 804] Def: 5 Mdef: 35 Stats: { Str: 48 Agi: 75 Vit: 10 Int: 20 Dex: 120 Luk: 45 } 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 MvpExp: 0 }, { Id: 1479 SpriteName: "G_SKEL_PRISONER" Name: "Skeleton Prisoner" Lv: 52 Hp: 8691 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [660, 890] Def: 10 Mdef: 20 Stats: { Str: 55 Agi: 20 Vit: 36 Int: 0 Dex: 76 Luk: 25 } 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 MvpExp: 0 }, { Id: 1480 SpriteName: "G_ZOMBIE_PRISONER" Name: "Zombie Prisoner" Lv: 53 Hp: 11280 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [780, 930] Def: 10 Mdef: 20 Stats: { Str: 1 Agi: 24 Vit: 39 Int: 0 Dex: 72 Luk: 25 } 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 MvpExp: 0 }, { Id: 1481 SpriteName: "G_PUNK" Name: "Punk" Lv: 43 Hp: 3620 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [292, 365] Def: 0 Mdef: 45 Stats: { Str: 1 Agi: 105 Vit: 5 Int: 45 Dex: 65 Luk: 20 } 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 MvpExp: 0 }, { Id: 1482 SpriteName: "G_ZHERLTHSH" Name: "Zherlthsh" JName: "Zealotus" Lv: 63 Hp: 18300 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [700, 850] 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 CanAttack: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 200 AttackDelay: 800 AttackMotion: 792 DamageMotion: 384 MvpExp: 0 }, { Id: 1483 SpriteName: "G_RYBIO" Name: "Rybio" Lv: 71 Hp: 9572 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [686, 912] Def: 45 Mdef: 37 Stats: { Str: 1 Agi: 97 Vit: 75 Int: 74 Dex: 77 Luk: 90 } 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 MvpExp: 0 }, { Id: 1484 SpriteName: "G_PHENDARK" Name: "Phendark" Lv: 73 Hp: 22729 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [794, 1056] Def: 52 Mdef: 36 Stats: { Str: 1 Agi: 62 Vit: 120 Int: 65 Dex: 76 Luk: 66 } 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 MvpExp: 0 }, { Id: 1485 SpriteName: "G_MYSTELTAINN" Name: "Mysteltainn" Lv: 76 Hp: 33350 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [1160, 1440] Def: 30 Mdef: 30 Stats: { Str: 77 Agi: 139 Vit: 80 Int: 35 Dex: 159 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 MvpExp: 0 }, { Id: 1486 SpriteName: "G_TIRFING" Name: "Tirfing" JName: "Ogretooth" Lv: 71 Hp: 29900 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [950, 1146] Def: 30 Mdef: 35 Stats: { Str: 58 Agi: 87 Vit: 55 Int: 35 Dex: 132 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 MvpExp: 0 }, { Id: 1487 SpriteName: "G_EXECUTIONER" Name: "Executioner" Lv: 65 Hp: 28980 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [570, 950] Def: 35 Mdef: 35 Stats: { Str: 64 Agi: 85 Vit: 40 Int: 25 Dex: 88 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 MvpExp: 0 }, { Id: 1488 SpriteName: "G_ANOLIAN" Name: "Anolian" Lv: 63 Hp: 18960 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [640, 760] Def: 15 Mdef: 15 Stats: { Str: 1 Agi: 43 Vit: 58 Int: 25 Dex: 97 Luk: 65 } 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 MvpExp: 0 }, { Id: 1489 SpriteName: "G_STING" Name: "Sting" Lv: 61 Hp: 9500 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [850, 1032] Def: 5 Mdef: 30 Stats: { Str: 57 Agi: 45 Vit: 55 Int: 5 Dex: 120 Luk: 85 } 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 MvpExp: 0 }, { Id: 1490 SpriteName: "G_WANDER_MAN" Name: "Wander Man" JName: "Wanderer" Lv: 74 Hp: 8170 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [450, 1170] Def: 5 Mdef: 5 Stats: { Str: 1 Agi: 192 Vit: 38 Int: 45 Dex: 127 Luk: 85 } 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 MvpExp: 0 }, { Id: 1491 SpriteName: "G_DOKEBI" Name: "Dokebi" Lv: 33 Hp: 2697 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [197, 249] Def: 0 Mdef: 10 Stats: { Str: 50 Agi: 50 Vit: 40 Int: 35 Dex: 69 Luk: 40 } 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 MvpExp: 0 }, // Umbala { Id: 1492 SpriteName: "INCANTATION_SAMURAI" Name: "Incantation Samurai" JName: "Samurai Specter" Lv: 71 Hp: 218652 Sp: 0 Exp: 33095 JExp: 18214 AttackRange: 3 Attack: [2219, 3169] Def: 10 Mdef: 51 Stats: { Str: 91 Agi: 85 Vit: 30 Int: 85 Dex: 150 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 MvpExp: 16547 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: 50 Hp: 8791 Sp: 0 Exp: 2763 JExp: 1493 AttackRange: 3 Attack: [499, 589] Def: 15 Mdef: 33 Stats: { Str: 1 Agi: 75 Vit: 55 Int: 1 Dex: 78 Luk: 45 } 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 MvpExp: 0 Drops: { Tough_Vines: 5335 Great_Leaf: 1000 Browny_Root: 3000 Rope_: 80 Chemeti: 1 Centimental_Leaf: 10 Sharp_Leaf: 3000 Dryad_Card: 1 } }, { Id: 1494 SpriteName: "KIND_OF_BEETLE" Name: "Beetle King" Lv: 34 Hp: 1874 Sp: 0 Exp: 679 JExp: 442 AttackRange: 1 Attack: [191, 243] Def: 45 Mdef: 12 Stats: { Str: 1 Agi: 34 Vit: 10 Int: 0 Dex: 40 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 MvpExp: 0 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: 42 Hp: 4104 Sp: 0 Exp: 1238 JExp: 752 AttackRange: 10 Attack: [309, 350] Def: 12 Mdef: 45 Stats: { Str: 1 Agi: 40 Vit: 20 Int: 79 Dex: 92 Luk: 20 } 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 MvpExp: 0 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: 0 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", 0) MoveSpeed: 0 AttackDelay: 0 AttackMotion: 0 DamageMotion: 0 MvpExp: 0 },*/ { Id: 1497 SpriteName: "WOODEN_GOLEM" Name: "Wooden Golem" Lv: 51 Hp: 9200 Sp: 0 Exp: 1926 JExp: 1353 AttackRange: 1 Attack: [570, 657] Def: 32 Mdef: 36 Stats: { Str: 1 Agi: 41 Vit: 69 Int: 5 Dex: 85 Luk: 155 } 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 MvpExp: 0 Drops: { Heart_Of_Tree: 4000 Browny_Root: 4000 Elunium_Stone: 110 Centimental_Leaf: 10 Branch_Of_Dead_Tree: 100 Log: 5000 Mushroom_Spore: 1000 Wooden_Golem_Card: 1 } }, { Id: 1498 SpriteName: "WOOTAN_SHOOTER" Name: "Wootan Shooter" Lv: 39 Hp: 3977 Sp: 0 Exp: 886 JExp: 453 AttackRange: 10 Attack: [84, 105] Def: 10 Mdef: 28 Stats: { Str: 15 Agi: 35 Vit: 29 Int: 15 Dex: 100 Luk: 42 } 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 MvpExp: 0 Drops: { Air_Rifle: 4500 Flexible_String: 3500 Banana: 1000 Stone: 1000 Apple: 100 Cacao: 100 Banana_Hat: 10 Wootan_Shooter_Card: 1 } }, { Id: 1499 SpriteName: "WOOTAN_FIGHTER" Name: "Wootan Fighter" Lv: 41 Hp: 4457 Sp: 0 Exp: 1790 JExp: 833 AttackRange: 1 Attack: [395, 480] Def: 30 Mdef: 19 Stats: { Str: 1 Agi: 41 Vit: 31 Int: 10 Dex: 45 Luk: 30 } 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 MvpExp: 0 Drops: { Meat: 4500 Shoulder_Protection: 4000 Waghnakh: 3 Finger_: 1 Banana: 1000 Great_Leaf: 1000 Banana_Hat: 5 Wootan_Fighter_Card: 1 } }, { Id: 1500 SpriteName: "PARASITE" Name: "Parasite" Lv: 49 Hp: 5188 Sp: 0 Exp: 1098 JExp: 1453 AttackRange: 8 Attack: [215, 430] Def: 10 Mdef: 19 Stats: { Str: 1 Agi: 40 Vit: 30 Int: 30 Dex: 90 Luk: 50 } 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 MvpExp: 0 Drops: { Germinating_Sprout: 5500 Soft_Leaf: 2000 Thin_Stem: 3880 Great_Leaf: 500 Rante_: 1 Bladed_Whip: 1 Shoot: 500 Parasite_Card: 1 } }, /*{ Id: 1501 SpriteName: "PARASITE_BULLET" Name: "Parasite Bullet" Lv: 0 Hp: 0 Sp: 0 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", 0) MoveSpeed: 0 AttackDelay: 0 AttackMotion: 0 DamageMotion: 0 MvpExp: 0 },*/ { Id: 1502 SpriteName: "PORING_V" Name: "Pori Pori" JName: "Bring it on!" Lv: 99 Hp: 95000000 Sp: 0 Exp: 87250 JExp: 27895 AttackRange: 1 Attack: [10000, 30000] Def: 0 Mdef: 10 Stats: { Str: 100 Agi: 100 Vit: 65 Int: 100 Dex: 255 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: 4000 Large_Jellopy: 10000 Holy_Guard: 4500 } }, // Niflheim { Id: 1503 SpriteName: "GIBBET" Name: "Gibbet" Lv: 58 Hp: 6841 Sp: 0 Exp: 4011 JExp: 1824 AttackRange: 1 Attack: [418, 656] Def: 28 Mdef: 31 Stats: { Str: 0 Agi: 42 Vit: 42 Int: 27 Dex: 46 Luk: 28 } 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 MvpExp: 0 Drops: { Hanging_Doll: 1800 Rotten_Rope: 5335 Tree_Knot: 4074 Cardinal_Jewel_: 300 Red_Gemstone: 100 Branch_Of_Dead_Tree: 10 Gibbet_Card: 1 } }, { Id: 1504 SpriteName: "DULLAHAN" Name: "Dullahan" Lv: 62 Hp: 12437 Sp: 0 Exp: 4517 JExp: 2963 AttackRange: 2 Attack: [647, 1065] Def: 47 Mdef: 38 Stats: { Str: 0 Agi: 30 Vit: 5 Int: 45 Dex: 62 Luk: 22 } 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 MvpExp: 0 Drops: { Dullahans_Helm: 3200 Dullahan_Armor: 4850 An_Eye_Of_Dullahan: 1 Manteau: 13 Manteau_: 1 Dullahan_Card: 1 } }, { Id: 1505 SpriteName: "LOLI_RURI" Name: "Loli Ruri" Lv: 71 Hp: 23470 Sp: 0 Exp: 6641 JExp: 4314 AttackRange: 2 Attack: [1476, 2317] Def: 39 Mdef: 44 Stats: { Str: 0 Agi: 66 Vit: 54 Int: 74 Dex: 81 Luk: 43 } 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 MvpExp: 0 Drops: { Black_Kitty_Doll: 800 Striped_Socks: 3000 Bat_Cage: 5044 Elunium: 100 Lokis_Whispers: 1 Lunatic_Brooch: 5 Loli_Ruri_Card: 1 } }, { Id: 1506 SpriteName: "DISGUISE" Name: "Disguise" Lv: 55 Hp: 7543 Sp: 180 Exp: 2815 JExp: 1919 AttackRange: 2 Attack: [279, 546] 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 Detector: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 147 AttackDelay: 516 AttackMotion: 768 DamageMotion: 384 MvpExp: 0 Drops: { Red_Scarf: 4850 Tangled_Chain: 3686 Hood_: 50 Honey: 100 Ragamuffin_Cape: 50 Muffler_: 2 Rider_Insignia: 5 Disguise_Card: 1 } }, { Id: 1507 SpriteName: "BLOODY_MURDERER" Name: "Bloody Murderer" Lv: 72 Hp: 27521 Sp: 0 Exp: 9742 JExp: 3559 AttackRange: 2 Attack: [864, 1081] Def: 37 Mdef: 41 Stats: { Str: 0 Agi: 30 Vit: 90 Int: 15 Dex: 52 Luk: 12 } 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 MvpExp: 0 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: 40 Hp: 4559 Sp: 0 Exp: 414 JExp: 306 AttackRange: 1 Attack: [299, 469] Def: 12 Mdef: 12 Stats: { Str: 0 Agi: 61 Vit: 24 Int: 19 Dex: 37 Luk: 24 } 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 MvpExp: 0 Drops: { Piece_Of_Black_Cloth: 3200 Ectoplasm: 5723 Wing_Of_Fly: 1000 Poison_Powder: 100 Oridecon_Stone: 10 Quve_Card: 1 } }, { Id: 1509 SpriteName: "LUDE" Name: "Lude" Lv: 36 Hp: 3214 Sp: 0 Exp: 392 JExp: 247 AttackRange: 2 Attack: [287, 451] Def: 14 Mdef: 10 Stats: { Str: 0 Agi: 59 Vit: 21 Int: 18 Dex: 36 Luk: 21 } 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 MvpExp: 0 Drops: { Pumpkin_Bucket: 3200 Ectoplasm: 5723 Transparent_Cloth: 1000 Spirit_Chain: 10 Elunium_Stone: 10 Holy_Scroll_1_3: 100 Lude_Card: 1 } }, { Id: 1510 SpriteName: "HYLOZOIST" Name: "Hylozoist" JName: "Heirozoist" Lv: 51 Hp: 7186 Sp: 0 Exp: 2314 JExp: 1297 AttackRange: 1 Attack: [317, 498] Def: 16 Mdef: 51 Stats: { Str: 0 Agi: 28 Vit: 26 Int: 47 Dex: 66 Luk: 14 } 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 MvpExp: 0 Drops: { Broken_Needle: 4365 Spool: 5335 Needle_Pouch: 2000 Stuffed_Doll: 80 Ectoplasm: 300 Elunium_Stone: 10 Angry_Mouth: 1 Hylozoist_Card: 1 } }, { Id: 1511 SpriteName: "AMON_RA" Name: "Amon Ra" Lv: 88 Hp: 1214138 Sp: 0 Exp: 87264 JExp: 35891 AttackRange: 3 Attack: [1647, 2576] Def: 26 Mdef: 52 Stats: { Str: 0 Agi: 1 Vit: 90 Int: 124 Dex: 74 Luk: 45 } 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 MvpExp: 43632 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 { Id: 1512 SpriteName: "HYEGUN" Name: "Hyegun" JName: "Yao Jun" Lv: 56 Hp: 9981 Sp: 0 Exp: 2199 JExp: 1022 AttackRange: 1 Attack: [710, 1128] Def: 12 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", 2) Mode: { CanMove: true Aggressive: true CanAttack: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 180 AttackDelay: 890 AttackMotion: 1320 DamageMotion: 720 MvpExp: 0 Drops: { Brigan: 3880 Amulet: 100 Elunium: 10 Boots_: 1 Munak_Doll: 300 Hyegun_Card: 1 } }, { Id: 1513 SpriteName: "CIVIL_SERVANT" Name: "Civil Servant" JName: "Mao Guai" Lv: 62 Hp: 14390 Sp: 0 Exp: 4023 JExp: 2750 AttackRange: 2 Attack: [650, 1010] Def: 42 Mdef: 5 Stats: { Str: 58 Agi: 15 Vit: 20 Int: 60 Dex: 80 Luk: 50 } 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 MvpExp: 0 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: 54 Hp: 9136 Sp: 0 Exp: 3030 JExp: 769 AttackRange: 2 Attack: [550, 789] Def: 39 Mdef: 10 Stats: { Str: 55 Agi: 62 Vit: 55 Int: 25 Dex: 72 Luk: 22 } 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 MvpExp: 0 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: 61 Hp: 20199 Sp: 0 Exp: 1022 JExp: 2980 AttackRange: 1 Attack: [680, 1179] Def: 34 Mdef: 13 Stats: { Str: 45 Agi: 30 Vit: 56 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 MvpExp: 0 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: 51 Hp: 8230 Sp: 0 Exp: 2760 JExp: 2110 AttackRange: 1 Attack: [560, 700] Def: 30 Mdef: 12 Stats: { Str: 40 Agi: 45 Vit: 23 Int: 12 Dex: 69 Luk: 12 } 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 MvpExp: 0 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: 48 Hp: 5920 Sp: 0 Exp: 1643 JExp: 1643 AttackRange: 1 Attack: [434, 633] Def: 23 Mdef: 16 Stats: { Str: 46 Agi: 51 Vit: 19 Int: 8 Dex: 57 Luk: 30 } 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 MvpExp: 0 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: 72 Hp: 56380 Sp: 0 Exp: 5590 JExp: 1659 AttackRange: 2 Attack: [560, 1446] Def: 10 Mdef: 15 Stats: { Str: 38 Agi: 65 Vit: 34 Int: 80 Dex: 102 Luk: 35 } 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 MvpExp: 0 Drops: { Long_Hair: 5500 Old_Blue_Box: 2 Old_Violet_Box: 2 Limpid_Celestial_Robe: 3000 Soft_Silk_Cloth: 1000 Crystal_Mirror: 500 Tiara: 1 } }, { Id: 1519 SpriteName: "CHUNG_E" Name: "Chung E" JName: "Green Maiden" Lv: 49 Hp: 23900 Sp: 0 Exp: 2396 JExp: 993 AttackRange: 1 Attack: [460, 1050] 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 MvpExp: 0 Drops: { Cyfar: 4850 Stuffed_Doll: 100 Hora_: 10 Honey: 500 Tantanmen: 20 Hat_Of_Cake: 50 Hair_Protector: 2 } }, { Id: 1520 SpriteName: "BOILED_RICE" Name: "Boiled Rice" JName: "Dumpling" Lv: 15 Hp: 400 Sp: 0 Exp: 84 JExp: 45 AttackRange: 1 Attack: [49, 82] 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_Water", 1) Mode: { CanMove: true CanAttack: true } MoveSpeed: 170 AttackDelay: 1152 AttackMotion: 672 DamageMotion: 672 MvpExp: 0 Drops: { Rice_Ball: 5500 Meat_Dumpling_Doll: 3000 Soft_Leaf: 1000 Great_Leaf: 1000 } }, { Id: 1521 SpriteName: "G_ALICE" Name: "Alice" Lv: 62 Hp: 10000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [550, 700] 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: 520 AttackMotion: 2304 DamageMotion: 480 MvpExp: 0 }, { Id: 1522 SpriteName: "G_ANCIENT_MUMMY" Name: "Ancient Mummy" Lv: 64 Hp: 40599 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [836, 1129] Def: 27 Mdef: 27 Stats: { Str: 28 Agi: 19 Vit: 32 Int: 5 Dex: 83 Luk: 35 } 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 MvpExp: 0 }, { Id: 1523 SpriteName: "G_ANTIQUE_FIRELOCK" Name: "Antique Firelock" JName: "Firelock Soldier" Lv: 47 Hp: 3852 Sp: 0 Exp: 0 JExp: 0 AttackRange: 10 Attack: [289, 336] Def: 10 Mdef: 10 Stats: { Str: 15 Agi: 35 Vit: 29 Int: 15 Dex: 120 Luk: 42 } 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 MvpExp: 0 }, { Id: 1524 SpriteName: "G_BABY_LEOPARD" Name: "Baby Leopard" Lv: 32 Hp: 2590 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [155, 207] Def: 0 Mdef: 5 Stats: { Str: 20 Agi: 44 Vit: 20 Int: 4 Dex: 49 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 MvpExp: 0 }, { Id: 1525 SpriteName: "G_BATHORY" Name: "Bathory" Lv: 44 Hp: 5415 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [198, 398] Def: 0 Mdef: 60 Stats: { Str: 1 Agi: 76 Vit: 24 Int: 85 Dex: 65 Luk: 15 } 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 MvpExp: 0 }, { Id: 1526 SpriteName: "G_BLOOD_BUTTERFLY" Name: "Bloody Butterfly" Lv: 55 Hp: 8082 Sp: 0 Exp: 0 JExp: 0 AttackRange: 3 Attack: [121, 342] Def: 5 Mdef: 23 Stats: { Str: 1 Agi: 59 Vit: 14 Int: 55 Dex: 68 Luk: 15 } 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 MvpExp: 0 }, { Id: 1527 SpriteName: "G_C_TOWER_MANAGER" Name: "Clock Tower Manager" JName: "Tower Keeper" Lv: 63 Hp: 18600 Sp: 0 Exp: 0 JExp: 0 AttackRange: 3 Attack: [880, 1180] Def: 35 Mdef: 30 Stats: { Str: 1 Agi: 75 Vit: 20 Int: 64 Dex: 75 Luk: 60 } 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 MvpExp: 0 }, { Id: 1528 SpriteName: "G_CLOCK" Name: "Clock" Lv: 60 Hp: 11050 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [720, 909] Def: 15 Mdef: 10 Stats: { Str: 1 Agi: 70 Vit: 50 Int: 25 Dex: 90 Luk: 50 } 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 MvpExp: 0 }, { Id: 1529 SpriteName: "G_DARK_SNAKE_LORD" Name: "Dark Snake Lord" JName: "Evil Snake Lord" Lv: 73 Hp: 254993 Sp: 0 Exp: 0 JExp: 0 AttackRange: 3 Attack: [1433, 2210] Def: 25 Mdef: 55 Stats: { Str: 70 Agi: 83 Vit: 62 Int: 80 Dex: 164 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: 0 }, { Id: 1530 SpriteName: "G_DRACULA" Name: "Dracula" Lv: 85 Hp: 320096 Sp: 0 Exp: 0 JExp: 0 AttackRange: 3 Attack: [1625, 1890] Def: 45 Mdef: 76 Stats: { Str: 1 Agi: 95 Vit: 90 Int: 87 Dex: 85 Luk: 100 } 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: 0 }, { Id: 1531 SpriteName: "G_EVIL_CLOUD_HERMIT" Name: "Evil Cloud Hermit" JName: "Taoist Hermit" Lv: 56 Hp: 10392 Sp: 0 Exp: 0 JExp: 0 AttackRange: 10 Attack: [311, 333] Def: 25 Mdef: 59 Stats: { Str: 1 Agi: 20 Vit: 18 Int: 50 Dex: 136 Luk: 11 } 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 MvpExp: 0 }, { Id: 1532 SpriteName: "G_EXPLOSION" Name: "Explosion" Lv: 46 Hp: 8054 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [336, 447] Def: 35 Mdef: 27 Stats: { Str: 1 Agi: 61 Vit: 56 Int: 50 Dex: 66 Luk: 38 } 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 MvpExp: 0 }, { Id: 1533 SpriteName: "G_FUR_SEAL" Name: "Fur Seal" JName: "Seal" Lv: 63 Hp: 9114 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [845, 1203] Def: 25 Mdef: 33 Stats: { Str: 5 Agi: 28 Vit: 22 Int: 15 Dex: 69 Luk: 84 } 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 MvpExp: 0 }, { Id: 1534 SpriteName: "G_GOBLIN_1" Name: "Goblin" Lv: 25 Hp: 1176 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [118, 140] Def: 10 Mdef: 5 Stats: { Str: 1 Agi: 53 Vit: 25 Int: 20 Dex: 38 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 MvpExp: 0 }, { Id: 1535 SpriteName: "G_GOBLIN_2" Name: "Goblin" Lv: 24 Hp: 1034 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [88, 100] Def: 10 Mdef: 5 Stats: { Str: 1 Agi: 24 Vit: 24 Int: 15 Dex: 66 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 MvpExp: 0 }, { Id: 1536 SpriteName: "G_GOBLIN_3" Name: "Goblin" Lv: 24 Hp: 1034 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [132, 165] Def: 10 Mdef: 5 Stats: { Str: 1 Agi: 24 Vit: 24 Int: 15 Dex: 24 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 MvpExp: 0 }, { Id: 1537 SpriteName: "G_GOBLIN_4" Name: "Goblin" Lv: 23 Hp: 1359 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [109, 131] Def: 10 Mdef: 5 Stats: { Str: 1 Agi: 23 Vit: 46 Int: 15 Dex: 36 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 MvpExp: 0 }, { Id: 1538 SpriteName: "G_GOBLIN_5" Name: "Goblin" Lv: 22 Hp: 1952 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [105, 127] Def: 10 Mdef: 5 Stats: { Str: 1 Agi: 22 Vit: 22 Int: 15 Dex: 32 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 MvpExp: 0 }, { Id: 1539 SpriteName: "G_GOBLIN_LEADER" Name: "Goblin Leader" Lv: 64 Hp: 20152 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [663, 752] Def: 48 Mdef: 16 Stats: { Str: 5 Agi: 55 Vit: 37 Int: 30 Dex: 69 Luk: 58 } 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 MvpExp: 0 }, { Id: 1540 SpriteName: "G_GOLEM" Name: "Golem" Lv: 25 Hp: 3900 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [175, 187] Def: 40 Mdef: 0 Stats: { Str: 1 Agi: 15 Vit: 25 Int: 0 Dex: 15 Luk: 0 } 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 MvpExp: 0 }, { Id: 1541 SpriteName: "G_GREATEST_GENERAL" Name: "Greatest General" Lv: 40 Hp: 3632 Sp: 0 Exp: 0 JExp: 0 AttackRange: 3 Attack: [350, 400] Def: 15 Mdef: 15 Stats: { Str: 1 Agi: 20 Vit: 60 Int: 55 Dex: 82 Luk: 140 } 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 MvpExp: 0 }, { Id: 1542 SpriteName: "G_INCANTATION_SAMURA" Name: "Incantation Samurai" Lv: 71 Hp: 218652 Sp: 0 Exp: 0 JExp: 0 AttackRange: 3 Attack: [1219, 2169] Def: 10 Mdef: 51 Stats: { Str: 91 Agi: 85 Vit: 78 Int: 85 Dex: 150 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 MvpExp: 0 }, { Id: 1543 SpriteName: "G_KAPHA" Name: "Kapha" Lv: 41 Hp: 7892 Sp: 0 Exp: 0 JExp: 0 AttackRange: 3 Attack: [399, 719] Def: 20 Mdef: 38 Stats: { Str: 1 Agi: 51 Vit: 49 Int: 22 Dex: 73 Luk: 45 } 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 MvpExp: 0 }, { Id: 1544 SpriteName: "G_KARAKASA" Name: "Karakasa" Lv: 30 Hp: 3092 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [141, 183] Def: 1 Mdef: 5 Stats: { Str: 1 Agi: 45 Vit: 12 Int: 20 Dex: 49 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 MvpExp: 0 }, { Id: 1545 SpriteName: "G_KOBOLD_1" Name: "Kobold" Lv: 36 Hp: 3893 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [265, 318] Def: 15 Mdef: 10 Stats: { Str: 1 Agi: 90 Vit: 36 Int: 30 Dex: 52 Luk: 20 } 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 MvpExp: 0 }, { Id: 1546 SpriteName: "G_KOBOLD_2" Name: "Kobold" Lv: 31 Hp: 2179 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [262, 324] Def: 15 Mdef: 10 Stats: { Str: 1 Agi: 31 Vit: 31 Int: 20 Dex: 46 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 MvpExp: 0 }, { Id: 1547 SpriteName: "G_KOBOLD_3" Name: "Kobold" Lv: 31 Hp: 2179 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [186, 216] Def: 15 Mdef: 10 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 MvpExp: 0 }, { Id: 1548 SpriteName: "G_KOBOLD_LEADER" Name: "Kobold Leader" Lv: 65 Hp: 18313 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [649, 958] Def: 37 Mdef: 37 Stats: { Str: 5 Agi: 90 Vit: 36 Int: 30 Dex: 77 Luk: 59 } 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 MvpExp: 0 }, { Id: 1549 SpriteName: "G_LAVA_GOLEM" Name: "Lava Golem" Lv: 77 Hp: 24324 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [1541, 2049] Def: 65 Mdef: 50 Stats: { Str: 1 Agi: 57 Vit: 115 Int: 70 Dex: 76 Luk: 68 } 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 MvpExp: 0 }, { Id: 1550 SpriteName: "G_LIVE_PEACH_TREE" Name: "Live Peach Tree" JName: "Enchanted Peach Tree" Lv: 53 Hp: 8905 Sp: 0 Exp: 0 JExp: 0 AttackRange: 7 Attack: [301, 351] Def: 10 Mdef: 38 Stats: { Str: 72 Agi: 45 Vit: 35 Int: 39 Dex: 80 Luk: 5 } 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 MvpExp: 0 }, { Id: 1551 SpriteName: "G_MARSE" Name: "Marse" Lv: 31 Hp: 5034 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [211, 252] Def: 0 Mdef: 5 Stats: { Str: 1 Agi: 31 Vit: 25 Int: 5 Dex: 52 Luk: 30 } 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 MvpExp: 0 }, { Id: 1552 SpriteName: "G_MIYABI_NINGYO" Name: "Miyabi Ningyo" JName: "Miyabi Doll" Lv: 33 Hp: 6300 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [250, 305] Def: 1 Mdef: 20 Stats: { Str: 1 Agi: 52 Vit: 15 Int: 10 Dex: 62 Luk: 15 } 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 MvpExp: 0 }, { Id: 1553 SpriteName: "G_MYST" Name: "Myst" Lv: 38 Hp: 3745 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [365, 445] Def: 0 Mdef: 40 Stats: { Str: 1 Agi: 38 Vit: 18 Int: 0 Dex: 53 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 MvpExp: 0 }, { Id: 1554 SpriteName: "G_NIGHTMARE_TERROR" Name: "Nightmare Terror" Lv: 78 Hp: 22605 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [757, 1007] Def: 37 Mdef: 37 Stats: { Str: 1 Agi: 76 Vit: 55 Int: 60 Dex: 76 Luk: 54 } 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 MvpExp: 0 }, { Id: 1555 SpriteName: "G_PARASITE" Name: "Parasite" Lv: 49 Hp: 5188 Sp: 0 Exp: 0 JExp: 0 AttackRange: 8 Attack: [215, 430] Def: 10 Mdef: 19 Stats: { Str: 1 Agi: 40 Vit: 30 Int: 30 Dex: 90 Luk: 50 } 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 MvpExp: 0 }, { Id: 1556 SpriteName: "G_POISON_TOAD" Name: "Poison Toad" JName: "Poisonous Toad" Lv: 46 Hp: 6629 Sp: 0 Exp: 0 JExp: 0 AttackRange: 3 Attack: [288, 408] Def: 5 Mdef: 10 Stats: { Str: 20 Agi: 34 Vit: 19 Int: 14 Dex: 66 Luk: 55 } 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 MvpExp: 0 }, { Id: 1557 SpriteName: "G_ROTAR_ZAIRO" Name: "Rotar Zairo" Lv: 25 Hp: 1209 Sp: 0 Exp: 0 JExp: 0 AttackRange: 10 Attack: [109, 137] Def: 4 Mdef: 34 Stats: { Str: 1 Agi: 62 Vit: 45 Int: 26 Dex: 55 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 MvpExp: 0 }, { Id: 1558 SpriteName: "G_SAND_MAN" Name: "Sandman" Lv: 34 Hp: 3413 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [180, 205] Def: 10 Mdef: 25 Stats: { Str: 24 Agi: 34 Vit: 58 Int: 38 Dex: 60 Luk: 5 } 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 MvpExp: 0 }, { Id: 1559 SpriteName: "G_SCORPION" Name: "Scorpion" Lv: 24 Hp: 1109 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [80, 135] Def: 30 Mdef: 0 Stats: { Str: 1 Agi: 24 Vit: 24 Int: 5 Dex: 52 Luk: 5 } 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: 1564 AttackMotion: 864 DamageMotion: 576 MvpExp: 0 }, { Id: 1560 SpriteName: "G_SHINOBI" Name: "Shinobi" Lv: 69 Hp: 12700 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [460, 1410] Def: 34 Mdef: 21 Stats: { Str: 85 Agi: 85 Vit: 25 Int: 25 Dex: 100 Luk: 100 } 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 MvpExp: 0 }, { Id: 1561 SpriteName: "G_SMOKIE" Name: "Smokie" Lv: 18 Hp: 641 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [61, 72] 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 MvpExp: 0 }, { Id: 1562 SpriteName: "G_SOLDIER_SKELETON" Name: "Soldier Skeleton" Lv: 29 Hp: 2334 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [221, 245] Def: 10 Mdef: 15 Stats: { Str: 1 Agi: 15 Vit: 22 Int: 5 Dex: 40 Luk: 15 } 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 MvpExp: 0 }, { Id: 1563 SpriteName: "G_TENGU" Name: "Tengu" Lv: 65 Hp: 16940 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [660, 980] Def: 12 Mdef: 82 Stats: { Str: 90 Agi: 42 Vit: 69 Int: 45 Dex: 78 Luk: 80 } 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 MvpExp: 0 }, { Id: 1564 SpriteName: "G_WICKED_NYMPH" Name: "Wicked Nymph" JName: "Evil Nymph" Lv: 63 Hp: 16029 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [399, 1090] Def: 12 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 Detector: true CastSensorChase: true ChangeChase: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 200 AttackDelay: 637 AttackMotion: 1008 DamageMotion: 360 MvpExp: 0 }, { Id: 1565 SpriteName: "G_WILD_GINSENG" Name: "Wild Ginseng" JName: "Hermit Plant" Lv: 46 Hp: 6900 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [220, 280] Def: 10 Mdef: 20 Stats: { Str: 13 Agi: 42 Vit: 36 Int: 55 Dex: 66 Luk: 30 } 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 MvpExp: 0 }, { Id: 1566 SpriteName: "G_WRAITH_DEAD" Name: "Wraith Dead" Lv: 74 Hp: 43021 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [1366, 1626] Def: 25 Mdef: 30 Stats: { Str: 5 Agi: 99 Vit: 55 Int: 75 Dex: 115 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 MvpExp: 0 }, { Id: 1567 SpriteName: "G_ANCIENT_WORM" Name: "Ancient Worm" Lv: 67 Hp: 22598 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [948, 1115] Def: 35 Mdef: 30 Stats: { Str: 5 Agi: 35 Vit: 56 Int: 55 Dex: 81 Luk: 72 } 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 MvpExp: 0 }, { Id: 1568 SpriteName: "G_ANGELING" Name: "Angeling" Lv: 20 Hp: 55000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [120, 195] Def: 0 Mdef: 70 Stats: { Str: 1 Agi: 50 Vit: 20 Int: 75 Dex: 68 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 MvpExp: 0 }, { Id: 1569 SpriteName: "G_BLOODY_KNIGHT" Name: "Bloody Knight" Lv: 82 Hp: 57870 Sp: 0 Exp: 0 JExp: 0 AttackRange: 3 Attack: [2150, 3030] Def: 60 Mdef: 50 Stats: { Str: 88 Agi: 75 Vit: 70 Int: 77 Dex: 125 Luk: 55 } 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 MvpExp: 0 }, { Id: 1570 SpriteName: "G_CRAMP" Name: "Cramp" Lv: 56 Hp: 4720 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [395, 465] Def: 0 Mdef: 5 Stats: { Str: 1 Agi: 85 Vit: 35 Int: 5 Dex: 65 Luk: 60 } 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 MvpExp: 0 }, { Id: 1571 SpriteName: "G_DEVIACE" Name: "Deviace" Lv: 47 Hp: 19192 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [514, 674] Def: 10 Mdef: 20 Stats: { Str: 1 Agi: 47 Vit: 62 Int: 48 Dex: 62 Luk: 25 } 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 MvpExp: 0 }, { Id: 1572 SpriteName: "G_DROPS" Name: "Drops" Lv: 3 Hp: 55 Sp: 0 Exp: 0 JExp: 0 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 MvpExp: 0 }, { Id: 1573 SpriteName: "G_ELDER" Name: "Elder" Lv: 64 Hp: 21592 Sp: 0 Exp: 0 JExp: 0 AttackRange: 3 Attack: [421, 560] Def: 45 Mdef: 68 Stats: { Str: 1 Agi: 76 Vit: 68 Int: 108 Dex: 72 Luk: 86 } 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 MvpExp: 0 }, { Id: 1574 SpriteName: "G_ELDER_WILOW" Name: "Elder Willow" Lv: 20 Hp: 693 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [58, 70] Def: 10 Mdef: 30 Stats: { Str: 1 Agi: 20 Vit: 25 Int: 35 Dex: 38 Luk: 30 } 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 MvpExp: 0 }, { Id: 1575 SpriteName: "G_FLORA" Name: "Flora" Lv: 26 Hp: 2092 Sp: 0 Exp: 0 JExp: 0 AttackRange: 3 Attack: [242, 273] Def: 10 Mdef: 35 Stats: { Str: 1 Agi: 26 Vit: 35 Int: 5 Dex: 43 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 MvpExp: 0 }, { Id: 1576 SpriteName: "G_GHOSTRING" Name: "Ghostring" Lv: 18 Hp: 73300 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [82, 122] Def: 0 Mdef: 60 Stats: { Str: 40 Agi: 27 Vit: 18 Int: 45 Dex: 72 Luk: 30 } 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 MvpExp: 0 }, { Id: 1577 SpriteName: "G_GOBLIN_ARCHER" Name: "Goblin Archer" Lv: 28 Hp: 1750 Sp: 0 Exp: 0 JExp: 0 AttackRange: 9 Attack: [89, 113] Def: 0 Mdef: 0 Stats: { Str: 10 Agi: 15 Vit: 20 Int: 15 Dex: 72 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 MvpExp: 0 }, { Id: 1578 SpriteName: "G_HORONG" Name: "Horong" Lv: 34 Hp: 1939 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [275, 327] Def: 99 Mdef: 50 Stats: { Str: 1 Agi: 34 Vit: 10 Int: 0 Dex: 50 Luk: 0 } 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 MvpExp: 0 }, { Id: 1579 SpriteName: "G_HYDRA" Name: "Hydra" Lv: 14 Hp: 660 Sp: 0 Exp: 0 JExp: 0 AttackRange: 7 Attack: [22, 28] Def: 0 Mdef: 40 Stats: { Str: 1 Agi: 14 Vit: 14 Int: 0 Dex: 40 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 MvpExp: 0 }, { Id: 1580 SpriteName: "G_INCUBUS" Name: "Incubus" Lv: 75 Hp: 17281 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [1408, 1873] 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 MvpExp: 0 }, { Id: 1581 SpriteName: "G_VOCAL" Name: "Vocal" Lv: 18 Hp: 3016 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [71, 82] Def: 10 Mdef: 30 Stats: { Str: 77 Agi: 28 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 MvpExp: 0 }, { Id: 1582 SpriteName: "DEVILING" Name: "Deviling" Lv: 31 Hp: 64500 Sp: 0 Exp: 211 JExp: 412 AttackRange: 1 Attack: [135, 270] Def: 5 Mdef: 70 Stats: { Str: 30 Agi: 50 Vit: 20 Int: 75 Dex: 77 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 MvpExp: 0 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: 70 Hp: 193000 Sp: 0 Exp: 59175 JExp: 10445 AttackRange: 2 Attack: [1450, 1770] Def: 20 Mdef: 20 Stats: { Str: 1 Agi: 85 Vit: 78 Int: 35 Dex: 140 Luk: 60 } 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 MvpExp: 29587 MvpDrops: { Oridecon: 6000 Old_Violet_Box: 3000 Blue_Potion: 6000 } Drops: { Gemstone: 4850 Stone_Piece: 4850 Golden_Jewel: 1000 Binoculars: 400 White_Potion: 3000 Iron_Ore: 1000 Gemmed_Sallet_: 5 Tao_Gunka_Card: 1 } }, // Ayothaya { Id: 1584 SpriteName: "TAMRUAN" Name: "Tamruan" Lv: 52 Hp: 10234 Sp: 0 Exp: 3812 JExp: 55 AttackRange: 1 Attack: [489, 534] Def: 15 Mdef: 35 Stats: { Str: 80 Agi: 62 Vit: 38 Int: 75 Dex: 72 Luk: 15 } 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 MvpExp: 0 Drops: { Sword_Accessory: 4850 Broken_Armor_Piece: 3000 Katana_: 40 Bastard_Sword_: 8 Chain_Mail_: 3 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 MvpExp: 0 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: 38 Hp: 2396 Sp: 0 Exp: 165 JExp: 1212 AttackRange: 1 Attack: [266, 307] Def: 5 Mdef: 19 Stats: { Str: 25 Agi: 67 Vit: 12 Int: 45 Dex: 60 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 MvpExp: 0 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: 50 Hp: 5880 Sp: 0 Exp: 206 JExp: 1322 AttackRange: 1 Attack: [125, 765] Def: 5 Mdef: 42 Stats: { Str: 50 Agi: 125 Vit: 1 Int: 66 Dex: 75 Luk: 50 } 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 MvpExp: 0 Drops: { Zargon: 3500 Milk: 3000 Leaflet_Of_Aloe: 1000 Guard_: 1 Bamboo_Basket: 4850 Chilli: 1000 Old_Blue_Box: 10 Kraben_Card: 1 } }, // Some more G_Mobs and Xmas_Orc { Id: 1588 SpriteName: "ORC_XMAS" Name: "Christmas Orc" Lv: 24 Hp: 1400 Sp: 0 Exp: 261 JExp: 160 AttackRange: 1 Attack: [104, 126] 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 CanAttack: true } MoveSpeed: 200 AttackDelay: 1864 AttackMotion: 864 DamageMotion: 288 MvpExp: 0 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: 12 Hp: 405 Sp: 0 Exp: 0 JExp: 0 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 MvpExp: 0 }, { Id: 1590 SpriteName: "G_GEOGRAPHER" Name: "Geographer" Lv: 56 Hp: 8071 Sp: 0 Exp: 0 JExp: 0 AttackRange: 3 Attack: [467, 621] Def: 28 Mdef: 26 Stats: { Str: 1 Agi: 66 Vit: 47 Int: 60 Dex: 68 Luk: 44 } 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 MvpExp: 0 }, { Id: 1591 SpriteName: "A_LUNATIC" Name: "Lunatic" Lv: 29 Hp: 2334 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [221, 245] Def: 10 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 MvpExp: 0 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, 355] Def: 20 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 MvpExp: 0 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, 930] Def: 40 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 MvpExp: 0 Drops: { Orange_Potion: 2000 } }, { Id: 1594 SpriteName: "G_FREEZER" Name: "Freezer" Lv: 72 Hp: 8636 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [671, 983] Def: 55 Mdef: 43 Stats: { Str: 69 Agi: 41 Vit: 59 Int: 5 Dex: 67 Luk: 100 } 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 MvpExp: 0 }, { Id: 1595 SpriteName: "G_MARIN" Name: "Marin" Lv: 15 Hp: 742 Sp: 0 Exp: 0 JExp: 0 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 CanAttack: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 }, { Id: 1596 SpriteName: "G_TAMRUAN" Name: "Tamruan" Lv: 52 Hp: 10234 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [489, 534] Def: 15 Mdef: 35 Stats: { Str: 80 Agi: 62 Vit: 38 Int: 75 Dex: 72 Luk: 15 } 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 MvpExp: 0 }, { Id: 1597 SpriteName: "G_GARGOYLE" Name: "Gargoyle" Lv: 48 Hp: 3950 Sp: 0 Exp: 0 JExp: 0 AttackRange: 9 Attack: [290, 360] Def: 10 Mdef: 10 Stats: { Str: 15 Agi: 61 Vit: 20 Int: 20 Dex: 126 Luk: 40 } 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 MvpExp: 0 }, { Id: 1598 SpriteName: "G_BLAZZER" Name: "Blazzer" Lv: 43 Hp: 8252 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [533, 709] Def: 50 Mdef: 40 Stats: { Str: 1 Agi: 52 Vit: 50 Int: 39 Dex: 69 Luk: 40 } 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 MvpExp: 0 }, { Id: 1599 SpriteName: "G_WHISPER_BOSS" Name: "Giant Whisper" Lv: 34 Hp: 5040 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [198, 239] 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_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 MvpExp: 0 }, { Id: 1600 SpriteName: "G_HEATER" Name: "Heater" Lv: 68 Hp: 11020 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [683, 1008] Def: 40 Mdef: 42 Stats: { Str: 69 Agi: 47 Vit: 25 Int: 5 Dex: 71 Luk: 100 } 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 MvpExp: 0 }, { Id: 1601 SpriteName: "G_PERMETER" Name: "Permeter" Lv: 63 Hp: 8228 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [943, 1211] Def: 46 Mdef: 45 Stats: { Str: 69 Agi: 59 Vit: 60 Int: 5 Dex: 69 Luk: 100 } 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 MvpExp: 0 }, { Id: 1602 SpriteName: "G_SOLIDER" Name: "Solider" Lv: 70 Hp: 12099 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [797, 979] Def: 57 Mdef: 43 Stats: { Str: 69 Agi: 35 Vit: 85 Int: 5 Dex: 74 Luk: 100 } 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 MvpExp: 0 }, { Id: 1603 SpriteName: "G_BIGFOOT" Name: "Bigfoot" Lv: 25 Hp: 1619 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [198, 220] Def: 10 Mdef: 0 Stats: { Str: 1 Agi: 25 Vit: 55 Int: 15 Dex: 20 Luk: 25 } 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 MvpExp: 0 }, { Id: 1604 SpriteName: "G_GIANT_HONET" Name: "Giant Hornet" Lv: 56 Hp: 13105 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [650, 852] Def: 38 Mdef: 43 Stats: { Str: 35 Agi: 38 Vit: 32 Int: 10 Dex: 71 Luk: 64 } 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 MvpExp: 0 }, { Id: 1605 SpriteName: "G_DARK_ILLUSION" Name: "Dark Illusion" Lv: 77 Hp: 103631 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [1300, 1983] Def: 64 Mdef: 70 Stats: { Str: 5 Agi: 100 Vit: 40 Int: 100 Dex: 97 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: 145 AttackDelay: 1024 AttackMotion: 768 DamageMotion: 480 MvpExp: 0 }, { Id: 1606 SpriteName: "G_GARM_BABY" Name: "Garm Baby" JName: "Hatii Baby" Lv: 61 Hp: 20199 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [680, 1179] Def: 34 Mdef: 13 Stats: { Str: 45 Agi: 30 Vit: 56 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 MvpExp: 0 }, { Id: 1607 SpriteName: "G_GOBLINE_XMAS" Name: "Christmas Goblin" JName: "Santa Goblin" Lv: 25 Hp: 1176 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [118, 140] Def: 10 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 MvpExp: 0 }, { Id: 1608 SpriteName: "G_THIEF_BUG__" Name: "Thief Bug Male" JName: "Male Thief Bug" Lv: 19 Hp: 583 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [76, 88] Def: 15 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 MvpExp: 0 }, { Id: 1609 SpriteName: "G_DANCING_DRAGON" Name: "Dancing Dragon" JName: "Zhu Po Long" Lv: 54 Hp: 9136 Sp: 0 Exp: 3030 JExp: 769 AttackRange: 2 Attack: [550, 789] Def: 39 Mdef: 10 Stats: { Str: 55 Agi: 62 Vit: 55 Int: 25 Dex: 72 Luk: 22 } 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 MvpExp: 0 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, 50] 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 MvpExp: 0 Drops: { Orange_Potion: 2000 Slow_Down_Potion: 100 Speed_Up_Potion: 100 } }, { Id: 1611 SpriteName: "A_BON_GUN" Name: "Bongun" Lv: 32 Hp: 3520 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [220, 260] Def: 0 Mdef: 0 Stats: { Str: 45 Agi: 15 Vit: 36 Int: 10 Dex: 48 Luk: 15 } 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 MvpExp: 0 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, 1128] Def: 12 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 MvpExp: 0 Drops: { Orange_Potion: 2000 Slow_Down_Potion: 100 Speed_Up_Potion: 100 } }, // Einbroch { Id: 1613 SpriteName: "METALING" Name: "Metaling" Lv: 26 Hp: 889 Sp: 0 Exp: 492 JExp: 249 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 MvpExp: 0 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: 56 Hp: 7950 Sp: 0 Exp: 3563 JExp: 1768 AttackRange: 1 Attack: [723, 812] Def: 29 Mdef: 35 Stats: { Str: 60 Agi: 52 Vit: 35 Int: 21 Dex: 67 Luk: 32 } 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 MvpExp: 0 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: 50 Hp: 8812 Sp: 0 Exp: 2799 JExp: 1802 AttackRange: 1 Attack: [841, 980] Def: 35 Mdef: 5 Stats: { Str: 62 Agi: 32 Vit: 42 Int: 24 Dex: 61 Luk: 55 } 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 MvpExp: 0 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: 43 Hp: 5015 Sp: 0 Exp: 1799 JExp: 1083 AttackRange: 1 Attack: [290, 486] Def: 22 Mdef: 26 Stats: { Str: 0 Agi: 15 Vit: 5 Int: 5 Dex: 52 Luk: 36 } 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 MvpExp: 0 Drops: { Old_Pick: 3000 Old_Steel_Plate: 500 Iron: 800 Steel: 500 Coal: 100 Lantern: 1000 Headlamp: 80 Pitman_Card: 1 } }, { Id: 1617 SpriteName: "WASTE_STOVE" Name: "Waste Stove" JName: "Old Stove" Lv: 68 Hp: 15895 Sp: 0 Exp: 4412 JExp: 1135 AttackRange: 1 Attack: [692, 1081] Def: 23 Mdef: 10 Stats: { Str: 20 Agi: 69 Vit: 55 Int: 5 Dex: 59 Luk: 77 } 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 MvpExp: 0 Drops: { Battered_Kettle: 1000 Burn_Tree: 1000 Iron: 500 Lusty_Iron: 50 Iron_Ore: 1000 Branch_Of_Dead_Tree: 50 Old_Steel_Plate: 3800 Waste_Stove_Card: 1 } }, { Id: 1618 SpriteName: "UNGOLIANT" Name: "Ungoliant" Lv: 69 Hp: 29140 Sp: 0 Exp: 8211 JExp: 142 AttackRange: 1 Attack: [1290, 2280] Def: 25 Mdef: 25 Stats: { Str: 33 Agi: 52 Vit: 57 Int: 25 Dex: 119 Luk: 43 } 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 MvpExp: 0 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: 28 Hp: 1654 Sp: 0 Exp: 512 JExp: 346 AttackRange: 1 Attack: [82, 247] Def: 0 Mdef: 8 Stats: { Str: 0 Agi: 31 Vit: 21 Int: 50 Dex: 54 Luk: 85 } 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 MvpExp: 0 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: 35 Hp: 2038 Sp: 0 Exp: 698 JExp: 698 AttackRange: 1 Attack: [299, 400] Def: 0 Mdef: 60 Stats: { Str: 12 Agi: 41 Vit: 10 Int: 30 Dex: 44 Luk: 2 } 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 MvpExp: 0 Drops: { Poisonous_Gas: 1000 Mould_Powder: 3000 Anodyne: 50 Air_Pollutant: 3000 Old_Blue_Box: 1 Noxious_Card: 1 } }, { Id: 1621 SpriteName: "VENOMOUS" Name: "Venomous" Lv: 42 Hp: 4653 Sp: 0 Exp: 1780 JExp: 1280 AttackRange: 1 Attack: [422, 844] Def: 0 Mdef: 49 Stats: { Str: 12 Agi: 60 Vit: 17 Int: 19 Dex: 60 Luk: 1 } 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 MvpExp: 0 Drops: { Air_Pollutant: 5000 Spawns: 3000 Poison_Powder: 1000 Poisonous_Gas: 2000 Old_Blue_Box: 1 Venomous_Card: 1 } }, { Id: 1622 SpriteName: "TEDDY_BEAR" Name: "Teddy Bear" Lv: 71 Hp: 8109 Sp: 0 Exp: 5891 JExp: 3455 AttackRange: 1 Attack: [621, 1432] Def: 19 Mdef: 32 Stats: { Str: 5 Agi: 155 Vit: 32 Int: 41 Dex: 121 Luk: 26 } 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 MvpExp: 0 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: 86 Hp: 560733 Sp: 0 Exp: 31010 JExp: 32011 AttackRange: 1 Attack: [2740, 5620] Def: 39 Mdef: 41 Stats: { Str: 85 Agi: 51 Vit: 30 Int: 25 Dex: 93 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 MvpExp: 15505 MvpDrops: { Yggdrasilberry: 5500 Dark_Blindfold: 3500 Crystal_Jewel__: 5500 } Drops: { Wheel: 6000 House_Auger: 10 House_Auger_: 1 Old_Violet_Box: 1000 Headlamp: 5000 Counter_Dagger: 50 Spanner: 20 Rsx_0806_Card: 1 } }, { Id: 1624 SpriteName: "G_WASTE_STOVE" Name: "Waste Stove" JName: "Old Stove" Lv: 68 Hp: 15895 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [500, 889] Def: 23 Mdef: 10 Stats: { Str: 20 Agi: 69 Vit: 55 Int: 5 Dex: 79 Luk: 77 } 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 MvpExp: 0 }, { Id: 1625 SpriteName: "G_PORCELLIO" Name: "Porcellio" Lv: 43 Hp: 5523 Sp: 0 Exp: 1024 JExp: 693 AttackRange: 1 Attack: [164, 494] Def: 0 Mdef: 8 Stats: { Str: 0 Agi: 31 Vit: 21 Int: 50 Dex: 64 Luk: 85 } 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 MvpExp: 0 }, // Hellion Revenant { Id: 1626 SpriteName: "G_DARK_PRIEST" Name: "Hellion Revenant" Lv: 88 Hp: 286900 Sp: 0 Exp: 1 JExp: 1 AttackRange: 2 Attack: [50, 3150] Def: 25 Mdef: 50 Stats: { Str: 1 Agi: 80 Vit: 50 Int: 99 Dex: 130 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 MvpExp: 0 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 { Id: 1627 SpriteName: "ANOPHELES" Name: "Anopheles" Lv: 23 Hp: 100 Sp: 0 Exp: 99 JExp: 55 AttackRange: 1 Attack: [48, 63] Def: 0 Mdef: 90 Stats: { Str: 1 Agi: 200 Vit: 4 Int: 5 Dex: 120 Luk: 5 } 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: 200 AttackDelay: 140 AttackMotion: 864 DamageMotion: 430 MvpExp: 0 Drops: { Wing_Of_Fly: 1000 Spawns: 500 Anopheles_Card: 1 } }, { Id: 1628 SpriteName: "MOLE" Name: "Mole" JName: "Holden" Lv: 36 Hp: 2209 Sp: 0 Exp: 268 JExp: 172 AttackRange: 9 Attack: [52, 63] Def: 0 Mdef: 5 Stats: { Str: 24 Agi: 18 Vit: 23 Int: 30 Dex: 45 Luk: 5 } 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: 140 AttackMotion: 960 DamageMotion: 504 MvpExp: 0 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: 3189 Sp: 0 Exp: 1800 JExp: 1100 AttackRange: 3 Attack: [290, 480] Def: 10 Mdef: 15 Stats: { Str: 21 Agi: 42 Vit: 31 Int: 50 Dex: 41 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 MvpExp: 0 Drops: { Meat: 1000 Monsters_Feed: 1000 Hill_Wind_Card: 1 } }, { Id: 1630 SpriteName: "BACSOJIN_" Name: "Bacsojin" JName: "White Lady" Lv: 85 Hp: 253221 Sp: 0 Exp: 45250 JExp: 16445 AttackRange: 3 Attack: [1868, 6124] Def: 20 Mdef: 55 Stats: { Str: 52 Agi: 65 Vit: 44 Int: 112 Dex: 152 Luk: 35 } 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 MvpExp: 22625 MvpDrops: { Yggdrasilberry: 5500 Celestial_Robe: 2000 Old_Violet_Box: 5000 } Drops: { Long_Hair: 5500 Old_Blue_Box: 5000 Tantanmen: 50 Limpid_Celestial_Robe: 3000 Soft_Silk_Cloth: 1000 Red_Silk_Seal: 100 Tiara: 10 Bacsojin_Card: 1 } }, { Id: 1631 SpriteName: "CHUNG_E_" Name: "Chung E" JName: "Green Maiden" Lv: 59 Hp: 23900 Sp: 0 Exp: 4256 JExp: 920 AttackRange: 2 Attack: [460, 1050] 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_Wind", 2) Mode: { CanMove: true Aggressive: true CanAttack: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 150 AttackDelay: 1728 AttackMotion: 816 DamageMotion: 1188 MvpExp: 0 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: 53 Hp: 9280 Sp: 0 Exp: 4355 JExp: 1768 AttackRange: 1 Attack: [329, 762] Def: 29 Mdef: 25 Stats: { Str: 80 Agi: 41 Vit: 59 Int: 75 Dex: 62 Luk: 15 } 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 MvpExp: 0 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: 56 Hp: 7950 Sp: 0 Exp: 4821 JExp: 3822 AttackRange: 6 Attack: [723, 812] Def: 17 Mdef: 30 Stats: { Str: 60 Agi: 62 Vit: 25 Int: 59 Dex: 85 Luk: 32 } 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 MvpExp: 0 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: 91 Hp: 88402 Sp: 0 Exp: 100000 JExp: 116460 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 Detector: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 170 AttackDelay: 76 AttackMotion: 384 DamageMotion: 288 MvpExp: 0 Drops: { Armlet_Of_Prisoner: 3000 Dragon_Killer: 2 Claymore: 200 Old_Blue_Box: 30 Helm_: 12 Plate_Armor_: 1 Ruber: 1 Seyren_Card: 1 } }, { Id: 1635 SpriteName: "EREMES" Name: "Eremes" JName: "Eremes Guile" Lv: 87 Hp: 60199 Sp: 0 Exp: 100000 JExp: 99800 AttackRange: 1 Attack: [2020, 2320] Def: 23 Mdef: 12 Stats: { Str: 45 Agi: 138 Vit: 31 Int: 19 Dex: 99 Luk: 30 } 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 MvpExp: 0 Drops: { Lab_Staff_Record: 2000 Krishna: 1 Pauldron: 1 Nail_Of_Loki: 3 Various_Jur: 30 Poison_Bottle: 110 Thief_Clothes_: 2 Eremes_Card: 1 } }, { Id: 1636 SpriteName: "HARWORD" Name: "Harword" JName: "Howard Alt-Eisen" Lv: 83 Hp: 78690 Sp: 0 Exp: 100000 JExp: 112540 AttackRange: 1 Attack: [1890, 2390] Def: 59 Mdef: 10 Stats: { Str: 90 Agi: 62 Vit: 99 Int: 35 Dex: 98 Luk: 66 } 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 MvpExp: 0 Drops: { Armlet_Of_Prisoner: 3000 Pauldron: 1 Vecer_Axe: 1 Two_Handed_Axe_: 110 Buckler_: 10 Clothes_Of_The_Lord: 1 Old_Blue_Box: 50 Harword_Card: 1 } }, { Id: 1637 SpriteName: "MAGALETA" Name: "Magaleta" JName: "Margaretha Sorin" Lv: 90 Hp: 61282 Sp: 0 Exp: 100000 JExp: 117800 AttackRange: 1 Attack: [1300, 2053] Def: 35 Mdef: 60 Stats: { Str: 1 Agi: 9 Vit: 97 Int: 145 Dex: 88 Luk: 40 } 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 MvpExp: 0 Drops: { Lab_Staff_Record: 2000 Croce_Staff: 2 Rod_: 200 Hardback: 10 Holy_Robe: 1 Old_Blue_Box: 50 Muffler_: 10 Magaleta_Card: 1 } }, { Id: 1638 SpriteName: "SHECIL" Name: "Shecil" JName: "Cecil Damon" Lv: 82 Hp: 58900 Sp: 0 Exp: 100000 JExp: 118260 AttackRange: 14 Attack: [1226, 1854] Def: 25 Mdef: 15 Stats: { Str: 1 Agi: 145 Vit: 27 Int: 32 Dex: 134 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 ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 180 AttackDelay: 76 AttackMotion: 384 DamageMotion: 288 MvpExp: 0 Drops: { Armlet_Of_Prisoner: 3000 Imma_Arrow_Container: 110 Tights_: 10 CrossBow_: 100 Ori_Arrow_Container: 150 Old_Blue_Box: 50 Falken_Blitz: 1 Shecil_Card: 1 } }, { Id: 1639 SpriteName: "KATRINN" Name: "Katrinn" JName: "Kathryne Keyron" Lv: 92 Hp: 47280 Sp: 0 Exp: 100000 JExp: 116470 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 MvpExp: 0 Drops: { Armlet_Of_Prisoner: 3000 Old_Blue_Box: 50 Lacryma_Stick: 1 Survival_Rod2_: 5 Guard_: 30 Pair_Of_Red_Ribbon: 1 Shoes_: 20 Katrinn_Card: 1 } }, // MVP Slaves { Id: 1640 SpriteName: "G_SEYREN" Name: "Lord Knight Seyren" Lv: 99 Hp: 347590 Sp: 0 Exp: 18000 JExp: 10000 AttackRange: 1 Attack: [4238, 5040] Def: 72 Mdef: 37 Stats: { Str: 120 Agi: 110 Vit: 81 Int: 65 Dex: 130 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 MvpExp: 0 Drops: { Old_Violet_Box: 10 } }, { Id: 1641 SpriteName: "G_EREMES" Name: "Assassin Cross Eremes" Lv: 99 Hp: 211230 Sp: 0 Exp: 18000 JExp: 10000 AttackRange: 1 Attack: [3189, 5289] Def: 27 Mdef: 39 Stats: { Str: 90 Agi: 181 Vit: 62 Int: 37 Dex: 122 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: 0 Drops: { Old_Violet_Box: 10 } }, { Id: 1642 SpriteName: "G_HARWORD" Name: "Whitesmith Harword" JName: "MasterSmith Howard" Lv: 99 Hp: 310000 Sp: 0 Exp: 18000 JExp: 10000 AttackRange: 1 Attack: [4822, 5033] Def: 66 Mdef: 36 Stats: { Str: 100 Agi: 73 Vit: 112 Int: 35 Dex: 136 Luk: 60 } 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 MvpExp: 0 Drops: { Old_Violet_Box: 10 } }, { Id: 1643 SpriteName: "G_MAGALETA" Name: "High Priest Magaleta" JName: "High Priest Margaretha" Lv: 99 Hp: 182910 Sp: 0 Exp: 18000 JExp: 10000 AttackRange: 1 Attack: [1688, 2580] Def: 35 Mdef: 78 Stats: { Str: 1 Agi: 84 Vit: 64 Int: 182 Dex: 92 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: 0 Drops: { Old_Violet_Box: 10 } }, { Id: 1644 SpriteName: "G_SHECIL" Name: "Sniper Shecil" JName: "Sniper Cecil" Lv: 99 Hp: 209000 Sp: 0 Exp: 18000 JExp: 10000 AttackRange: 14 Attack: [1892, 5113] Def: 22 Mdef: 35 Stats: { Str: 1 Agi: 180 Vit: 39 Int: 67 Dex: 193 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 ChangeChase: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 100 AttackDelay: 76 AttackMotion: 384 DamageMotion: 288 MvpExp: 0 Drops: { Old_Violet_Box: 10 } }, { Id: 1645 SpriteName: "G_KATRINN" Name: "High Wizard Katrinn" JName: "High Wizard Kathryne" Lv: 99 Hp: 189920 Sp: 0 Exp: 18000 JExp: 10000 AttackRange: 1 Attack: [497, 2094] Def: 10 Mdef: 88 Stats: { Str: 1 Agi: 89 Vit: 42 Int: 223 Dex: 128 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: 0 Drops: { Old_Violet_Box: 10 } }, // MVP Monsters { Id: 1646 SpriteName: "B_SEYREN" Name: "Lord Knight Seyren" Lv: 99 Hp: 1647590 Sp: 0 Exp: 4835600 JExp: 1569970 AttackRange: 1 Attack: [7238, 11040] Def: 72 Mdef: 37 Stats: { Str: 120 Agi: 110 Vit: 81 Int: 65 Dex: 130 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 MvpExp: 2417800 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: 99 Hp: 1411230 Sp: 0 Exp: 4083400 JExp: 1592380 AttackRange: 1 Attack: [4189, 8289] Def: 37 Mdef: 39 Stats: { Str: 90 Agi: 181 Vit: 62 Int: 37 Dex: 122 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: 2041700 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: 99 Hp: 1460000 Sp: 0 Exp: 4002340 JExp: 1421000 AttackRange: 1 Attack: [7822, 8251] Def: 66 Mdef: 36 Stats: { Str: 100 Agi: 73 Vit: 112 Int: 35 Dex: 136 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: 2001170 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: 99 Hp: 1092910 Sp: 0 Exp: 4257000 JExp: 1318800 AttackRange: 1 Attack: [4688, 5580] Def: 35 Mdef: 78 Stats: { Str: 1 Agi: 84 Vit: 64 Int: 182 Dex: 92 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: 2128500 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: 99 Hp: 1349000 Sp: 0 Exp: 4093000 JExp: 1526000 AttackRange: 14 Attack: [4892, 9113] Def: 22 Mdef: 35 Stats: { Str: 1 Agi: 180 Vit: 39 Int: 67 Dex: 193 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 ChangeChase: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 100 AttackDelay: 76 AttackMotion: 384 DamageMotion: 288 MvpExp: 2046500 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: 99 Hp: 1069920 Sp: 0 Exp: 4008200 JExp: 1636700 AttackRange: 1 Attack: [1197, 4394] Def: 10 Mdef: 88 Stats: { Str: 1 Agi: 89 Vit: 42 Int: 223 Dex: 128 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: 2004100 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: 58 Hp: 11200 Sp: 0 Exp: 4870 JExp: 98 AttackRange: 1 Attack: [823, 1212] Def: 35 Mdef: 8 Stats: { Str: 60 Agi: 35 Vit: 52 Int: 18 Dex: 79 Luk: 20 } 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 MvpExp: 0 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: 62 Hp: 7320 Sp: 0 Exp: 4204 JExp: 21 AttackRange: 1 Attack: [693, 889] Def: 9 Mdef: 8 Stats: { Str: 1 Agi: 102 Vit: 34 Int: 20 Dex: 83 Luk: 30 } 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 MvpExp: 0 Drops: { Armlet_Of_Prisoner: 2000 Forturn_Sword: 1 Adventureres_Suit_: 40 Gladius_: 10 Chain_Mail_: 2 Ring_Of_Rogue: 2 Coward_: 10 Whikebain_Card: 1 } }, { Id: 1654 SpriteName: "ARMAIA" Name: "Armaia" JName: "Armeyer Dinze" Lv: 66 Hp: 7110 Sp: 0 Exp: 4008 JExp: 35 AttackRange: 1 Attack: [750, 913] Def: 42 Mdef: 6 Stats: { Str: 5 Agi: 36 Vit: 50 Int: 15 Dex: 89 Luk: 60 } 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 MvpExp: 0 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: 59 Hp: 6980 Sp: 0 Exp: 4501 JExp: 67 AttackRange: 1 Attack: [896, 1159] Def: 14 Mdef: 30 Stats: { Str: 1 Agi: 31 Vit: 41 Int: 93 Dex: 67 Luk: 30 } 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 MvpExp: 0 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: 60 Hp: 7899 Sp: 0 Exp: 4090 JExp: 86 AttackRange: 9 Attack: [684, 904] Def: 12 Mdef: 5 Stats: { Str: 48 Agi: 100 Vit: 10 Int: 15 Dex: 118 Luk: 40 } 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 MvpExp: 0 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: 61 Hp: 6168 Sp: 0 Exp: 4620 JExp: 30 AttackRange: 1 Attack: [430, 517] Def: 8 Mdef: 48 Stats: { Str: 1 Agi: 41 Vit: 5 Int: 120 Dex: 45 Luk: 10 } 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 MvpExp: 0 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: 79 Hp: 214200 Sp: 0 Exp: 258760 JExp: 86000 AttackRange: 1 Attack: [3890, 5690] Def: 48 Mdef: 25 Stats: { Str: 82 Agi: 60 Vit: 45 Int: 31 Dex: 110 Luk: 40 } 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: 129380 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: 62 Hp: 7320 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [593, 789] Def: 9 Mdef: 12 Stats: { Str: 1 Agi: 102 Vit: 34 Int: 23 Dex: 74 Luk: 30 } 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 MvpExp: 0 Drops: { Gift_Box: 10 } }, { Id: 1660 SpriteName: "G_ARMAIA" Name: "Armaia" JName: "Armeyer Dinze" Lv: 66 Hp: 7110 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [650, 813] Def: 42 Mdef: 6 Stats: { Str: 5 Agi: 36 Vit: 40 Int: 15 Dex: 80 Luk: 60 } 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 MvpExp: 0 Drops: { Gift_Box: 10 } }, { Id: 1661 SpriteName: "G_EREND" Name: "Erend" JName: "Errende Ebecee" Lv: 59 Hp: 6980 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [796, 1059] Def: 14 Mdef: 30 Stats: { Str: 1 Agi: 31 Vit: 41 Int: 93 Dex: 60 Luk: 30 } 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 MvpExp: 0 Drops: { Gift_Box: 10 } }, { Id: 1662 SpriteName: "G_KAVAC" Name: "Kavac" JName: "Kavach Icarus" Lv: 60 Hp: 7899 Sp: 0 Exp: 0 JExp: 0 AttackRange: 9 Attack: [584, 804] Def: 12 Mdef: 5 Stats: { Str: 48 Agi: 100 Vit: 10 Int: 20 Dex: 118 Luk: 40 } 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 MvpExp: 0 Drops: { Gift_Box: 10 } }, { Id: 1663 SpriteName: "G_RAWREL" Name: "Rawrel" JName: "Laurell Weinder" Lv: 61 Hp: 6168 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [330, 417] Def: 8 Mdef: 48 Stats: { Str: 1 Agi: 41 Vit: 5 Int: 100 Dex: 45 Luk: 10 } 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 MvpExp: 0 Drops: { Gift_Box: 10 } }, // Juperos { Id: 1664 SpriteName: "POTON_CANON" Name: "Photon Cannon" Lv: 66 Hp: 8000 Sp: 0 Exp: 3900 JExp: 1800 AttackRange: 9 Attack: [800, 900] Def: 10 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 MvpExp: 0 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: 4300 JExp: 2000 AttackRange: 9 Attack: [700, 800] Def: 15 Mdef: 30 Stats: { Str: 1 Agi: 40 Vit: 30 Int: 40 Dex: 86 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 MvpExp: 0 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: 3100 JExp: 2700 AttackRange: 9 Attack: [800, 900] Def: 8 Mdef: 30 Stats: { Str: 1 Agi: 40 Vit: 21 Int: 29 Dex: 80 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 MvpExp: 0 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: 3800 JExp: 2300 AttackRange: 9 Attack: [700, 800] Def: 15 Mdef: 30 Stats: { Str: 1 Agi: 40 Vit: 23 Int: 30 Dex: 90 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 MvpExp: 0 Drops: { Large_Jellopy: 5000 Golden_Jewel: 1000 Sticky_Mucus: 1000 } }, { Id: 1668 SpriteName: "ARCHDAM" Name: "Archdam" Lv: 79 Hp: 25000 Sp: 0 Exp: 8000 JExp: 5000 AttackRange: 3 Attack: [1000, 2000] Def: 15 Mdef: 15 Stats: { Str: 65 Agi: 65 Vit: 35 Int: 75 Dex: 75 Luk: 15 } 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 MvpExp: 0 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: [1040, 1880] Def: 45 Mdef: 28 Stats: { Str: 15 Agi: 35 Vit: 40 Int: 15 Dex: 120 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 MvpExp: 0 Drops: { Dimik_Card: 1 } }, { Id: 1670 SpriteName: "DIMIK_1" Name: "Dimik" Lv: 79 Hp: 16000 Sp: 0 Exp: 6400 JExp: 3500 AttackRange: 7 Attack: [1140, 1980] Def: 45 Mdef: 28 Stats: { Str: 15 Agi: 88 Vit: 20 Int: 20 Dex: 120 Luk: 40 } 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 MvpExp: 0 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: 1671 SpriteName: "DIMIK_2" Name: "Dimik" Lv: 89 Hp: 29000 Sp: 0 Exp: 8000 JExp: 5000 AttackRange: 5 Attack: [1440, 2280] Def: 45 Mdef: 28 Stats: { Str: 15 Agi: 40 Vit: 30 Int: 30 Dex: 150 Luk: 70 } 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 MvpExp: 0 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: 80 Hp: 19000 Sp: 0 Exp: 5900 JExp: 2800 AttackRange: 5 Attack: [1240, 2080] Def: 68 Mdef: 28 Stats: { Str: 15 Agi: 30 Vit: 78 Int: 20 Dex: 120 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: 200 AttackDelay: 576 AttackMotion: 720 DamageMotion: 432 MvpExp: 0 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: 82 Hp: 13900 Sp: 0 Exp: 5800 JExp: 4500 AttackRange: 5 Attack: [1840, 2840] Def: 45 Mdef: 28 Stats: { Str: 15 Agi: 20 Vit: 20 Int: 10 Dex: 120 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: 200 AttackDelay: 576 AttackMotion: 720 DamageMotion: 432 MvpExp: 0 Drops: { Old_Steel_Plate: 2000 Transparent_Plate04: 50 Steel: 300 Mystery_Piece: 300 Hyper_Changer: 10 Oridecon: 10 Imperial_Cooking_Kits: 50 Dimik_Card: 1 } }, { Id: 1674 SpriteName: "MONEMUS" Name: "Monemus" Lv: 88 Hp: 80000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 5 Attack: [2000, 3000] Def: 54 Mdef: 25 Stats: { Str: 0 Agi: 1 Vit: 90 Int: 24 Dex: 144 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 MvpExp: 0 Drops: { Stone: 2000 Stone_Heart: 1000 } }, { Id: 1675 SpriteName: "VENATU" Name: "Venatu" Lv: 77 Hp: 8000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [1200, 1800] Def: 35 Mdef: 20 Stats: { Str: 5 Agi: 26 Vit: 24 Int: 5 Dex: 75 Luk: 40 } 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 MvpExp: 0 Drops: { Venatu_Card: 1 } }, { Id: 1676 SpriteName: "VENATU_1" Name: "Venatu" Lv: 72 Hp: 8900 Sp: 0 Exp: 4000 JExp: 2000 AttackRange: 2 Attack: [800, 1400] Def: 30 Mdef: 20 Stats: { Str: 5 Agi: 26 Vit: 24 Int: 5 Dex: 82 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 MvpExp: 0 Drops: { Screw: 2000 Piece_Of_Crest1: 350 Steel: 300 Mystery_Piece: 300 Drifter: 5 Elunium: 10 High_end_Cooking_Kits: 100 Venatu_Card: 1 } }, { Id: 1677 SpriteName: "VENATU_2" Name: "Venatu" Lv: 80 Hp: 9000 Sp: 0 Exp: 4000 JExp: 2000 AttackRange: 2 Attack: [900, 1500] Def: 30 Mdef: 20 Stats: { Str: 5 Agi: 82 Vit: 32 Int: 5 Dex: 105 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 MvpExp: 0 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: 78 Hp: 9500 Sp: 0 Exp: 4500 JExp: 2000 AttackRange: 2 Attack: [800, 1400] Def: 30 Mdef: 20 Stats: { Str: 5 Agi: 26 Vit: 68 Int: 5 Dex: 95 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 MvpExp: 0 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: 75 Hp: 12300 Sp: 0 Exp: 4000 JExp: 2000 AttackRange: 2 Attack: [800, 1400] Def: 30 Mdef: 20 Stats: { Str: 5 Agi: 26 Vit: 24 Int: 5 Dex: 100 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 MvpExp: 0 Drops: { Screw: 2000 Piece_Of_Crest4: 300 Steel: 300 Mystery_Piece: 300 Hyper_Changer: 10 Elunium: 10 High_end_Cooking_Kits: 100 Venatu_Card: 1 } }, { Id: 1680 SpriteName: "HILL_WIND_1" Name: "Hill Wind" Lv: 45 Hp: 4233 Sp: 0 Exp: 2132 JExp: 1722 AttackRange: 3 Attack: [320, 510] Def: 10 Mdef: 15 Stats: { Str: 21 Agi: 42 Vit: 31 Int: 50 Dex: 67 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: 170 AttackDelay: 504 AttackMotion: 480 DamageMotion: 360 MvpExp: 0 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: 72 Hp: 57870 Sp: 0 Exp: 22024 JExp: 9442 AttackRange: 3 Attack: [2150, 3030] Def: 60 Mdef: 45 Stats: { Str: 88 Agi: 75 Vit: 70 Int: 77 Dex: 105 Luk: 55 } 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 MvpExp: 0 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: 55 Hp: 10289 Sp: 0 Exp: 3831 JExp: 1278 AttackRange: 1 Attack: [558, 797] Def: 5 Mdef: 20 Stats: { Str: 1 Agi: 20 Vit: 56 Int: 35 Dex: 57 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: 1536 AttackMotion: 1056 DamageMotion: 1152 MvpExp: 0 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: 46 Hp: 7000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 9 Attack: [560, 570] Def: 5 Mdef: 10 Stats: { Str: 1 Agi: 36 Vit: 36 Int: 20 Dex: 56 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: 300 AttackDelay: 1536 AttackMotion: 960 DamageMotion: 480 MvpExp: 0 }, { Id: 1684 SpriteName: "G_ARCHDAM" Name: "Archdam" Lv: 57 Hp: 11000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 3 Attack: [600, 700] Def: 15 Mdef: 15 Stats: { Str: 65 Agi: 65 Vit: 35 Int: 75 Dex: 75 Luk: 15 } 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 MvpExp: 0 }, { Id: 1685 SpriteName: "APOCALIPS_H" Name: "Vesper" Lv: 97 Hp: 640700 Sp: 0 Exp: 200000 JExp: 100000 AttackRange: 3 Attack: [4000, 10000] Def: 50 Mdef: 54 Stats: { Str: 100 Agi: 50 Vit: 30 Int: 70 Dex: 160 Luk: 150 } 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: 21 Hp: 912 Sp: 0 Exp: 220 JExp: 220 AttackRange: 1 Attack: [135, 270] Def: 10 Mdef: 10 Stats: { Str: 30 Agi: 15 Vit: 10 Int: 18 Dex: 35 Luk: 2 } 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 MvpExp: 0 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: 54 Hp: 6444 Sp: 0 Exp: 2400 JExp: 2050 AttackRange: 1 Attack: [550, 650] Def: 0 Mdef: 10 Stats: { Str: 1 Agi: 52 Vit: 64 Int: 5 Dex: 98 Luk: 14 } ViewRange: 10 ChaseRange: 12 Size: "Size_Medium" Race: "RC_Brute" Element: ("Ele_Earth", 2) Mode: { CanMove: true Looter: true CanAttack: true } MoveSpeed: 200 AttackDelay: 720 AttackMotion: 528 DamageMotion: 432 MvpExp: 0 Drops: { Leaflet_Of_Aloe: 1500 Reptile_Tongue: 1000 Leaflet_Of_Hinal: 1000 Green_Herb: 1000 Monsters_Feed: 2000 Aloebera: 10 Green_Herb: 1 Green_Iguana_Card: 1 } }, { Id: 1688 SpriteName: "LADY_TANEE" Name: "Lady Tanee" Lv: 89 Hp: 493000 Sp: 0 Exp: 64995 JExp: 43222 AttackRange: 14 Attack: [450, 2170] Def: 20 Mdef: 44 Stats: { Str: 1 Agi: 125 Vit: 48 Int: 78 Dex: 210 Luk: 38 } 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 MvpExp: 32497 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: 85 Hp: 253221 Sp: 0 Exp: 45250 JExp: 16445 AttackRange: 3 Attack: [1868, 6124] Def: 20 Mdef: 55 Stats: { Str: 52 Agi: 65 Vit: 44 Int: 112 Dex: 152 Luk: 35 } 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 MvpExp: 0 }, { Id: 1690 SpriteName: "G_SPRING_RABBIT" Name: "Spring Rabbit" JName: "Lunar Rabbit" Lv: 12 Hp: 15 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [0, 0] Def: 100 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_Earth", 2) Mode: { CanMove: true Looter: true Plant: true CanAttack: true } MoveSpeed: 160 AttackDelay: 1120 AttackMotion: 552 DamageMotion: 511 MvpExp: 0 Drops: { Hometown_Gift: 100 Lucky_Cookie01: 300 Lucky_Cookie03: 300 Bag_Of_Nuts: 5000 } }, { Id: 1691 SpriteName: "G_KRABEN" Name: "Kraben" Lv: 70 Hp: 10880 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [125, 765] Def: 5 Mdef: 42 Stats: { Str: 50 Agi: 155 Vit: 1 Int: 66 Dex: 112 Luk: 60 } 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 MvpExp: 0 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 & Abyss { Id: 1692 SpriteName: "BREEZE" Name: "Breeze" Lv: 56 Hp: 5099 Sp: 0 Exp: 2390 JExp: 1340 AttackRange: 2 Attack: [94, 215] Def: 7 Mdef: 32 Stats: { Str: 1 Agi: 96 Vit: 6 Int: 38 Dex: 91 Luk: 45 } 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 MvpExp: 0 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: 56 Hp: 8400 Sp: 0 Exp: 2200 JExp: 2100 AttackRange: 3 Attack: [400, 900] Def: 0 Mdef: 40 Stats: { Str: 1 Agi: 30 Vit: 10 Int: 83 Dex: 105 Luk: 45 } 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: 100 AttackDelay: 608 AttackMotion: 1440 DamageMotion: 576 MvpExp: 0 Drops: { Scell: 100 Gift_Box: 10 Crystal_Jewel_: 2 Yellow_Gemstone: 100 Gold: 1 Plasma_Card: 1 } }, { Id: 1694 SpriteName: "PLASMA_R" Name: "Plasma" Lv: 43 Hp: 5700 Sp: 0 Exp: 2000 JExp: 1000 AttackRange: 3 Attack: [300, 700] 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 MvpExp: 0 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: 47 Hp: 7600 Sp: 0 Exp: 2000 JExp: 1000 AttackRange: 3 Attack: [300, 700] Def: 0 Mdef: 30 Stats: { Str: 1 Agi: 30 Vit: 5 Int: 61 Dex: 90 Luk: 30 } 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: 150 AttackDelay: 608 AttackMotion: 1440 DamageMotion: 576 MvpExp: 0 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: 49 Hp: 5900 Sp: 0 Exp: 2000 JExp: 1000 AttackRange: 3 Attack: [300, 700] 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 MvpExp: 0 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: 44 Hp: 8200 Sp: 0 Exp: 2000 JExp: 1000 AttackRange: 3 Attack: [300, 700] 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 MvpExp: 0 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: 65 Hp: 18990 Sp: 0 Exp: 2986 JExp: 4912 AttackRange: 1 Attack: [622, 1102] Def: 10 Mdef: 40 Stats: { Str: 50 Agi: 75 Vit: 10 Int: 20 Dex: 140 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: 150 AttackDelay: 176 AttackMotion: 912 DamageMotion: 300 MvpExp: 0 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: 60 Hp: 8080 Sp: 0 Exp: 2950 JExp: 2650 AttackRange: 1 Attack: [530, 1697] Def: 20 Mdef: 40 Stats: { Str: 50 Agi: 100 Vit: 30 Int: 40 Dex: 150 Luk: 110 } 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 MvpExp: 0 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: 81 Hp: 65111 Sp: 0 Exp: 39872 JExp: 33120 AttackRange: 2 Attack: [1666, 2609] Def: 55 Mdef: 55 Stats: { Str: 30 Agi: 74 Vit: 56 Int: 126 Dex: 145 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 ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 100 AttackDelay: 432 AttackMotion: 480 DamageMotion: 360 MvpExp: 0 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: 80 Hp: 38000 Sp: 0 Exp: 29010 JExp: 25110 AttackRange: 2 Attack: [1871, 1971] Def: 22 Mdef: 63 Stats: { Str: 12 Agi: 67 Vit: 34 Int: 167 Dex: 157 Luk: 120 } 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 MvpExp: 0 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: 79 Hp: 46666 Sp: 0 Exp: 28332 JExp: 33120 AttackRange: 2 Attack: [2022, 2288] Def: 35 Mdef: 35 Stats: { Str: 30 Agi: 142 Vit: 66 Int: 72 Dex: 133 Luk: 39 } 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 MvpExp: 0 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: 77 Hp: 25252 Sp: 0 Exp: 21000 JExp: 25110 AttackRange: 2 Attack: [1392, 1462] Def: 21 Mdef: 67 Stats: { Str: 12 Agi: 76 Vit: 29 Int: 145 Dex: 99 Luk: 100 } 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 MvpExp: 0 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: 92 Hp: 72389 Sp: 0 Exp: 88420 JExp: 63880 AttackRange: 9 Attack: [2100, 2800] Def: 68 Mdef: 30 Stats: { Str: 100 Agi: 52 Vit: 165 Int: 62 Dex: 185 Luk: 90 } 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 MvpExp: 0 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: 88 Hp: 86666 Sp: 0 Exp: 62001 JExp: 51220 AttackRange: 2 Attack: [2182, 3082] Def: 38 Mdef: 39 Stats: { Str: 100 Agi: 167 Vit: 79 Int: 92 Dex: 151 Luk: 120 } 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 MvpExp: 0 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: 83 Hp: 62000 Sp: 0 Exp: 56699 JExp: 63880 AttackRange: 2 Attack: [2022, 2288] Def: 29 Mdef: 72 Stats: { Str: 100 Agi: 176 Vit: 30 Int: 200 Dex: 122 Luk: 29 } 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 MvpExp: 0 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: 83 Hp: 59922 Sp: 0 Exp: 43200 JExp: 51220 AttackRange: 2 Attack: [1392, 2092] Def: 21 Mdef: 80 Stats: { Str: 100 Agi: 76 Vit: 29 Int: 206 Dex: 139 Luk: 44 } 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 MvpExp: 0 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: 445660 Sp: 0 Exp: 3666000 JExp: 2145060 AttackRange: 3 Attack: [3812, 7483] Def: 35 Mdef: 35 Stats: { Str: 100 Agi: 108 Vit: 30 Int: 86 Dex: 147 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 MvpExp: 1833000 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: 92 Hp: 72389 Sp: 0 Exp: 10000 JExp: 5000 AttackRange: 9 Attack: [2100, 2800] Def: 68 Mdef: 30 Stats: { Str: 100 Agi: 52 Vit: 165 Int: 62 Dex: 185 Luk: 90 } 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 MvpExp: 0 Drops: { Brigan: 1000 Crystal_Jewel_: 500 Crystal_Jewel__: 100 } }, { Id: 1710 SpriteName: "G_THA_DESPERO" Name: "Thanatos Despero" JName: "Despero of Thanatos" Lv: 88 Hp: 86666 Sp: 0 Exp: 10000 JExp: 5000 AttackRange: 2 Attack: [2182, 3082] Def: 38 Mdef: 39 Stats: { Str: 100 Agi: 167 Vit: 79 Int: 92 Dex: 151 Luk: 120 } 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 MvpExp: 0 Drops: { Brigan: 1000 Crystal_Jewel_: 500 Crystal_Jewel__: 100 } }, { Id: 1711 SpriteName: "G_THA_MAERO" Name: "Thanatos Maero" JName: "Maero of Thanatos" Lv: 83 Hp: 62000 Sp: 0 Exp: 10000 JExp: 5000 AttackRange: 2 Attack: [2022, 2288] Def: 29 Mdef: 72 Stats: { Str: 100 Agi: 176 Vit: 30 Int: 200 Dex: 122 Luk: 29 } 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 MvpExp: 0 Drops: { Brigan: 1000 Crystal_Jewel_: 500 Crystal_Jewel__: 100 } }, { Id: 1712 SpriteName: "G_THA_DOLOR" Name: "Thanatos Dolor" JName: "Dolor of Thanatos" Lv: 83 Hp: 59922 Sp: 0 Exp: 10000 JExp: 5000 AttackRange: 2 Attack: [1392, 2092] Def: 21 Mdef: 80 Stats: { Str: 100 Agi: 76 Vit: 29 Int: 206 Dex: 139 Luk: 44 } 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 MvpExp: 0 Drops: { Brigan: 1000 Crystal_Jewel_: 500 Crystal_Jewel__: 100 } }, { Id: 1713 SpriteName: "ACIDUS" Name: "Acidus" Lv: 80 Hp: 51112 Sp: 0 Exp: 28043 JExp: 8023 AttackRange: 2 Attack: [1289, 2109] Def: 29 Mdef: 69 Stats: { Str: 1 Agi: 71 Vit: 55 Int: 135 Dex: 103 Luk: 69 } 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 MvpExp: 0 Drops: { Orange: 5100 Dragon_Canine: 4000 Treasure_Box: 5 Dragon_Scale: 3589 Dragonball_Yellow: 800 Inverse_Scale: 10 Stone_Buckler: 50 Acidus_Card: 1 } }, { Id: 1714 SpriteName: "FERUS" Name: "Ferus" Lv: 70 Hp: 29218 Sp: 0 Exp: 8093 JExp: 3952 AttackRange: 2 Attack: [1056, 1496] Def: 14 Mdef: 45 Stats: { Str: 1 Agi: 78 Vit: 45 Int: 72 Dex: 81 Luk: 73 } 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 MvpExp: 0 Drops: { Strawberry: 2200 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: 42 Hp: 5430 Sp: 0 Exp: 1320 JExp: 1002 AttackRange: 1 Attack: [284, 384] Def: 20 Mdef: 28 Stats: { Str: 1 Agi: 56 Vit: 43 Int: 45 Dex: 124 Luk: 43 } 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 MvpExp: 0 Drops: { Green_Herb: 3000 Cyfar: 1035 Dragon_Scale: 589 Novus_Card: 1 } }, { Id: 1716 SpriteName: "ACIDUS_" Name: "Acidus" Lv: 76 Hp: 39111 Sp: 0 Exp: 14392 JExp: 4203 AttackRange: 2 Attack: [1180, 2000] Def: 21 Mdef: 47 Stats: { Str: 1 Agi: 78 Vit: 31 Int: 93 Dex: 88 Luk: 52 } 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 MvpExp: 0 Drops: { Blue_Potion: 150 Dragon_Canine: 4000 Blue_Herb: 150 Dragon_Scale: 3589 Dragonball_Blue: 800 Rough_Wind: 20 Dragonball_Blue: 100 Acidus__Card: 1 } }, { Id: 1717 SpriteName: "FERUS_" Name: "Ferus" Lv: 69 Hp: 21182 Sp: 0 Exp: 6750 JExp: 2230 AttackRange: 2 Attack: [930, 1170] Def: 14 Mdef: 38 Stats: { Str: 1 Agi: 66 Vit: 77 Int: 60 Dex: 79 Luk: 35 } 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 MvpExp: 0 Drops: { Delicious_Fish: 5100 Dragon_Canine: 1000 Dragon_Scale: 3589 Dragonball_Green: 800 Great_Nature: 20 Dragonball_Green: 100 Ferus__Card: 1 } }, { Id: 1718 SpriteName: "NOVUS_" Name: "Novus" Lv: 43 Hp: 5830 Sp: 0 Exp: 1411 JExp: 1100 AttackRange: 1 Attack: [314, 414] Def: 24 Mdef: 28 Stats: { Str: 1 Agi: 60 Vit: 43 Int: 39 Dex: 119 Luk: 43 } 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 MvpExp: 0 Drops: { Yellow_Herb: 2000 Cyfar: 1035 Dragon_Scale: 589 Novus__Card: 1 } }, { Id: 1719 SpriteName: "DETALE" Name: "Detale" JName: "Detardeurus" Lv: 90 Hp: 960000 Sp: 0 Exp: 291850 JExp: 123304 AttackRange: 3 Attack: [4560, 5548] Def: 66 Mdef: 59 Stats: { Str: 100 Agi: 90 Vit: 30 Int: 136 Dex: 140 Luk: 56 } 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 MvpExp: 145925 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: 89 Hp: 308230 Sp: 0 Exp: 83450 JExp: 2480 AttackRange: 3 Attack: [2554, 3910] Def: 52 Mdef: 62 Stats: { Str: 1 Agi: 96 Vit: 110 Int: 86 Dex: 94 Luk: 32 } 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 MvpExp: 0 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: 43 Hp: 18322 Sp: 0 Exp: 6740 JExp: 0 AttackRange: 0 Attack: [1, 2] Def: 78 Mdef: 60 Stats: { Str: 1 Agi: 1 Vit: 56 Int: 67 Dex: 1 Luk: 63 } ViewRange: 10 ChaseRange: 12 Size: "Size_Medium" Race: "RC_Dragon" Element: ("Ele_Neutral", 2) MoveSpeed: 1000 AttackDelay: 24 AttackMotion: 0 DamageMotion: 0 MvpExp: 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: 103 JExp: 100 AttackRange: 1 Attack: [115, 182] Def: 5 Mdef: 11 Stats: { Str: 1 Agi: 28 Vit: 18 Int: 13 Dex: 35 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 MvpExp: 0 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: [600, 900] Def: 25 Mdef: 15 Stats: { Str: 1 Agi: 145 Vit: 27 Int: 32 Dex: 134 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 MvpExp: 0 }, { Id: 1724 SpriteName: "A_POTON_CANON" Name: "Photon Cannon" Lv: 66 Hp: 8000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 9 Attack: [1000, 1300] Def: 10 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 MvpExp: 0 }, { Id: 1725 SpriteName: "R_PORING" Name: "Poring" 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: 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 MvpExp: 0 }, { Id: 1726 SpriteName: "R_LUNATIC" Name: "Lunatic" Lv: 3 Hp: 60 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [9, 12] 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 MvpExp: 0 }, { Id: 1727 SpriteName: "R_SAVAGE_BABE" Name: "Savage Babe" Lv: 7 Hp: 182 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [20, 25] 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 MvpExp: 0 }, { Id: 1728 SpriteName: "R_DESERT_WOLF_B" Name: "Desert Wolf Baby" JName: "Baby Desert Wolf" Lv: 9 Hp: 164 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [30, 36] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 9 Vit: 9 Int: 5 Dex: 21 Luk: 40 } 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 MvpExp: 0 }, { Id: 1729 SpriteName: "R_BAPHOMET_" Name: "Baphomet Jr." Lv: 50 Hp: 8578 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [487, 590] Def: 15 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 MvpExp: 0 }, { Id: 1730 SpriteName: "R_DEVIRUCHI" Name: "Deviruchi" Lv: 46 Hp: 7360 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [475, 560] Def: 10 Mdef: 25 Stats: { Str: 1 Agi: 69 Vit: 40 Int: 55 Dex: 87 Luk: 30 } 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 MvpExp: 0 }, { Id: 1731 SpriteName: "G_DOPPELGANGER" Name: "Doppelganger" JName: "Outrageous Doppelganger" Lv: 72 Hp: 12000000 Sp: 0 Exp: 3000000 JExp: 2000000 AttackRange: 1 Attack: [5000, 10000] Def: 99 Mdef: 99 Stats: { Str: 88 Agi: 180 Vit: 70 Int: 75 Dex: 180 Luk: 65 } 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 MvpExp: 0 Drops: { Warrior_Symbol: 10000 } }, { Id: 1732 SpriteName: "G_TREASURE_BOX" Name: "Treasure Chest" JName: "New Year Treasure Chest" Lv: 98 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { 3rd_Floor_Pass: 1000 } }, // Kiel Dungeon monsters { Id: 1733 SpriteName: "KIEL" Name: "Kiel" Lv: 90 Hp: 523000 Sp: 0 Exp: 36500 JExp: 23405 AttackRange: 3 Attack: [1682, 3311] Def: 28 Mdef: 32 Stats: { Str: 100 Agi: 112 Vit: 76 Int: 89 Dex: 156 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 MvpExp: 0 }, { Id: 1734 SpriteName: "KIEL_" Name: "Kiel D-01" Lv: 90 Hp: 1523000 Sp: 0 Exp: 2356200 JExp: 512602 AttackRange: 3 Attack: [3280, 6560] Def: 28 Mdef: 32 Stats: { Str: 100 Agi: 130 Vit: 30 Int: 160 Dex: 199 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 MvpExp: 1178100 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: 75 Hp: 37520 Sp: 0 Exp: 8890 JExp: 5420 AttackRange: 2 Attack: [1800, 2770] Def: 30 Mdef: 30 Stats: { Str: 50 Agi: 58 Vit: 50 Int: 51 Dex: 92 Luk: 40 } 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 MvpExp: 0 Drops: { Burnt_Parts: 2000 Sturdy_Iron_Piece: 3000 Steel: 200 Screw: 500 Drill_Katar: 5 Elunium: 10 Valis_Manteau: 20 Alicel_Card: 1 } }, { Id: 1736 SpriteName: "ALIOT" Name: "Aliot" Lv: 75 Hp: 48290 Sp: 0 Exp: 13020 JExp: 4006 AttackRange: 2 Attack: [950, 2470] Def: 35 Mdef: 15 Stats: { Str: 50 Agi: 32 Vit: 87 Int: 12 Dex: 68 Luk: 19 } 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 MvpExp: 0 Drops: { Burnt_Parts: 2000 Sturdy_Iron_Piece: 3000 Falcon_Robe: 10 Screw: 500 Claw_: 10 Elunium: 10 Curved_Sword: 15 Aliot_Card: 1 } }, { Id: 1737 SpriteName: "ALIZA" Name: "Aliza" Lv: 69 Hp: 19000 Sp: 0 Exp: 6583 JExp: 3400 AttackRange: 1 Attack: [750, 1100] Def: 8 Mdef: 5 Stats: { Str: 74 Agi: 74 Vit: 52 Int: 35 Dex: 110 Luk: 140 } 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 MvpExp: 0 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: 55 Hp: 10000 Sp: 0 Exp: 3230 JExp: 116 AttackRange: 1 Attack: [460, 580] Def: 12 Mdef: 12 Stats: { Str: 50 Agi: 28 Vit: 26 Int: 47 Dex: 66 Luk: 14 } 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 MvpExp: 0 Drops: { Burnt_Parts: 100 Sturdy_Iron_Piece: 1500 Tube: 10 Steel: 10 Elunium_Stone: 10 } }, { Id: 1739 SpriteName: "G_ALICEL" Name: "Alicel" Lv: 75 Hp: 37520 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [1600, 2570] Def: 30 Mdef: 30 Stats: { Str: 50 Agi: 60 Vit: 50 Int: 51 Dex: 92 Luk: 40 } 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: 150 AttackDelay: 1080 AttackMotion: 480 DamageMotion: 504 MvpExp: 0 Drops: { Sturdy_Iron_Piece: 500 } }, { Id: 1740 SpriteName: "G_ALIOT" Name: "Aliot" Lv: 75 Hp: 43290 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [950, 2070] Def: 35 Mdef: 15 Stats: { Str: 50 Agi: 32 Vit: 87 Int: 12 Dex: 68 Luk: 19 } 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: 150 AttackDelay: 1296 AttackMotion: 432 DamageMotion: 360 MvpExp: 0 Drops: { Sturdy_Iron_Piece: 500 } }, { Id: 1741 SpriteName: "G_COOKIE_XMAS" Name: "Christmas Cookie" Lv: 28 Hp: 2090 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [140, 170] Def: 0 Mdef: 50 Stats: { Str: 1 Agi: 24 Vit: 30 Int: 53 Dex: 45 Luk: 100 } 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 MvpExp: 0 }, { Id: 1742 SpriteName: "G_CARAT" Name: "Carat" Lv: 51 Hp: 5200 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [330, 417] Def: 0 Mdef: 25 Stats: { Str: 1 Agi: 41 Vit: 45 Int: 5 Dex: 85 Luk: 155 } 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 MvpExp: 0 }, { Id: 1743 SpriteName: "G_MYSTCASE" Name: "Myst Case" Lv: 38 Hp: 3450 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [160, 360] Def: 5 Mdef: 10 Stats: { Str: 65 Agi: 50 Vit: 25 Int: 5 Dex: 48 Luk: 75 } 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 MvpExp: 0 }, { Id: 1744 SpriteName: "G_WILD_ROSE" Name: "Wild Rose" Lv: 38 Hp: 2980 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [315, 360] Def: 0 Mdef: 15 Stats: { Str: 65 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: { CanMove: true Aggressive: true CanAttack: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 100 AttackDelay: 964 AttackMotion: 864 DamageMotion: 288 MvpExp: 0 }, { Id: 1745 SpriteName: "G_CONSTANT" Name: "Constant" Lv: 55 Hp: 1000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [460, 580] Def: 12 Mdef: 12 Stats: { Str: 50 Agi: 28 Vit: 26 Int: 47 Dex: 66 Luk: 14 } 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 MvpExp: 0 Drops: { Sturdy_Iron_Piece: 500 } }, { Id: 1746 SpriteName: "G_ALIZA" Name: "Aliza" Lv: 69 Hp: 15000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [750, 1100] Def: 8 Mdef: 5 Stats: { Str: 74 Agi: 74 Vit: 52 Int: 35 Dex: 110 Luk: 140 } 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: 1440 AttackMotion: 576 DamageMotion: 600 MvpExp: 0 Drops: { Sturdy_Iron_Piece: 500 } }, { Id: 1747 SpriteName: "G_SNAKE" Name: "Snake" JName: "Boa" Lv: 15 Hp: 471 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [46, 55] Def: 0 Mdef: 0 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 Aggressive: true CanAttack: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 200 AttackDelay: 1576 AttackMotion: 576 DamageMotion: 576 MvpExp: 0 }, { Id: 1748 SpriteName: "G_ANACONDAQ" Name: "Anacondaq" Lv: 23 Hp: 1109 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [124, 157] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 23 Vit: 28 Int: 10 Dex: 36 Luk: 5 } 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 MvpExp: 0 }, { Id: 1749 SpriteName: "G_MEDUSA" Name: "Medusa" Lv: 79 Hp: 22408 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [827, 1100] Def: 48 Mdef: 38 Stats: { Str: 1 Agi: 74 Vit: 50 Int: 57 Dex: 77 Luk: 69 } 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 MvpExp: 0 }, { Id: 1750 SpriteName: "G_RED_PLANT" Name: "Red Plant" Lv: 1 Hp: 100 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [100, 200] Def: 100 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 MvpExp: 0 }, // Odin monsters { Id: 1751 SpriteName: "RANDGRIS" Name: "Valkyrie Randgris" Lv: 99 Hp: 3567200 Sp: 0 Exp: 2854900 JExp: 3114520 AttackRange: 3 Attack: [5560, 9980] Def: 25 Mdef: 42 Stats: { Str: 100 Agi: 120 Vit: 30 Int: 120 Dex: 220 Luk: 210 } 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: 1427450 MvpDrops: { Old_Violet_Box: 5500 Old_Blue_Box: 5000 Old_Card_Album: 2000 } Drops: { Valhalla_Flower: 5000 Valkyrie_Armor: 1600 Valkyrie_Manteau: 3000 Valkyrie_Shoes: 3000 Helm_: 5000 Bloody_Edge: 2500 Randgris_Card: 1 } }, { Id: 1752 SpriteName: "SKOGUL" Name: "Skogul" Lv: 70 Hp: 87544 Sp: 0 Exp: 27620 JExp: 10 AttackRange: 2 Attack: [1110, 1930] Def: 20 Mdef: 15 Stats: { Str: 1 Agi: 69 Vit: 70 Int: 50 Dex: 67 Luk: 52 } 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 MvpExp: 0 Drops: { Rune_Of_Darkness: 3500 Brigan: 1000 Red_Gemstone: 1000 Rouge: 500 Skul_Ring: 100 Elunium_Stone: 500 Blood_Tears: 5 Skogul_Card: 1 } }, { Id: 1753 SpriteName: "FRUS" Name: "Frus" Lv: 69 Hp: 83422 Sp: 0 Exp: 20620 JExp: 10 AttackRange: 2 Attack: [1110, 1780] Def: 20 Mdef: 15 Stats: { Str: 1 Agi: 69 Vit: 60 Int: 50 Dex: 76 Luk: 52 } 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 MvpExp: 0 Drops: { Rune_Of_Darkness: 3500 Brigan: 1000 Red_Gemstone: 1000 Earring_: 3 Mantle_: 10 Elunium_Stone: 500 Frus_Card: 1 } }, { Id: 1754 SpriteName: "SKEGGIOLD" Name: "Skeggiold" Lv: 81 Hp: 295200 Sp: 0 Exp: 91100 JExp: 10 AttackRange: 1 Attack: [1400, 2020] Def: 12 Mdef: 24 Stats: { Str: 80 Agi: 100 Vit: 50 Int: 72 Dex: 90 Luk: 50 } 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 MvpExp: 0 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: 83 Hp: 315200 Sp: 0 Exp: 99200 JExp: 10 AttackRange: 1 Attack: [1600, 2050] Def: 15 Mdef: 24 Stats: { Str: 80 Agi: 120 Vit: 60 Int: 85 Dex: 98 Luk: 80 } 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 MvpExp: 0 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: 89 Hp: 308230 Sp: 0 Exp: 0 JExp: 0 AttackRange: 3 Attack: [2554, 3910] Def: 52 Mdef: 62 Stats: { Str: 1 Agi: 96 Vit: 110 Int: 86 Dex: 94 Luk: 32 } 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 MvpExp: 0 }, { Id: 1757 SpriteName: "G_ACIDUS" Name: "Acidus" Lv: 80 Hp: 51112 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [1289, 2109] Def: 39 Mdef: 69 Stats: { Str: 1 Agi: 71 Vit: 55 Int: 135 Dex: 103 Luk: 69 } 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 MvpExp: 0 }, { Id: 1758 SpriteName: "G_FERUS" Name: "Ferus" Lv: 70 Hp: 29218 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [1056, 1496] Def: 34 Mdef: 45 Stats: { Str: 1 Agi: 78 Vit: 45 Int: 72 Dex: 81 Luk: 73 } 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 MvpExp: 0 }, { Id: 1759 SpriteName: "G_ACIDUS_" Name: "Acidus" Lv: 76 Hp: 39111 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [1180, 2000] Def: 31 Mdef: 47 Stats: { Str: 1 Agi: 78 Vit: 31 Int: 93 Dex: 88 Luk: 52 } 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 MvpExp: 0 }, { Id: 1760 SpriteName: "G_FERUS_" Name: "Ferus" Lv: 69 Hp: 21182 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [930, 1170] Def: 24 Mdef: 38 Stats: { Str: 1 Agi: 66 Vit: 77 Int: 60 Dex: 79 Luk: 35 } 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 MvpExp: 0 }, { Id: 1761 SpriteName: "G_SKOGUL" Name: "Skogul" Lv: 70 Hp: 57544 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [1110, 1930] Def: 20 Mdef: 15 Stats: { Str: 1 Agi: 69 Vit: 70 Int: 50 Dex: 67 Luk: 52 } 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 MvpExp: 0 Drops: { Rune_Of_Darkness: 500 } }, { Id: 1762 SpriteName: "G_FRUS" Name: "Frus" Lv: 69 Hp: 53422 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [1110, 1780] Def: 20 Mdef: 15 Stats: { Str: 1 Agi: 69 Vit: 60 Int: 50 Dex: 76 Luk: 52 } 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 MvpExp: 0 Drops: { Rune_Of_Darkness: 500 } }, { Id: 1763 SpriteName: "G_SKEGGIOLD" Name: "Skeggiold" Lv: 81 Hp: 100200 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [1400, 3410] Def: 12 Mdef: 24 Stats: { Str: 80 Agi: 100 Vit: 50 Int: 72 Dex: 90 Luk: 50 } 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 MvpExp: 0 Drops: { Rune_Of_Darkness: 500 } }, { Id: 1764 SpriteName: "G_SKEGGIOLD_" Name: "Skeggiold" Lv: 83 Hp: 103000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [1600, 4110] Def: 15 Mdef: 24 Stats: { Str: 80 Agi: 120 Vit: 60 Int: 85 Dex: 98 Luk: 80 } 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 MvpExp: 0 Drops: { Rune_Of_Darkness: 500 } }, { Id: 1765 SpriteName: "G_RANDGRIS" Name: "Valkyrie" Lv: 99 Hp: 1567200 Sp: 0 Exp: 10000 JExp: 10000 AttackRange: 3 Attack: [5560, 9980] Def: 25 Mdef: 42 Stats: { Str: 100 Agi: 120 Vit: 80 Int: 120 Dex: 220 Luk: 210 } 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: 0 Drops: { Valhalla_Flower: 500 Old_Violet_Box: 100 Valkyrjas_Shield: 500 } }, { Id: 1766 SpriteName: "EM_ANGELING" Name: "Angeling" Lv: 99 Hp: 128430 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [60, 71] Def: 40 Mdef: 50 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 ChangeChase: true } MoveSpeed: 300 AttackDelay: 1288 AttackMotion: 288 DamageMotion: 384 MvpExp: 0 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: [60, 71] Def: 40 Mdef: 50 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 ChangeChase: true } MoveSpeed: 300 AttackDelay: 1288 AttackMotion: 288 DamageMotion: 384 MvpExp: 0 MvpDrops: { Jellopy: 5000 Jellopy: 5000 Poring_Doll: 5000 } }, // Rachel / Ice Dungeon monsters { Id: 1768 SpriteName: "GLOOMUNDERNIGHT" Name: "Gloom Under Night" Lv: 89 Hp: 2298000 Sp: 0 Exp: 962175 JExp: 276445 AttackRange: 3 Attack: [5880, 9516] Def: 10 Mdef: 20 Stats: { Str: 100 Agi: 115 Vit: 98 Int: 78 Dex: 111 Luk: 50 } 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: 481087 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: 73 Hp: 29620 Sp: 0 Exp: 9780 JExp: 6622 AttackRange: 1 Attack: [103, 1109] Def: 15 Mdef: 35 Stats: { Str: 1 Agi: 32 Vit: 27 Int: 132 Dex: 69 Luk: 15 } 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 MvpExp: 0 Drops: { Suspicious_Hat: 2500 High_Fashion_Sandals: 2 Bloody_Rune: 4000 Memorize_Book: 1 Holy_Arrow_Quiver: 50 Bloody_Rune: 100 Agav_Card: 1 } }, { Id: 1770 SpriteName: "ECHIO" Name: "Echio" Lv: 69 Hp: 34900 Sp: 0 Exp: 13560 JExp: 4300 AttackRange: 1 Attack: [750, 1800] Def: 33 Mdef: 11 Stats: { Str: 74 Agi: 74 Vit: 52 Int: 35 Dex: 59 Luk: 56 } 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 MvpExp: 0 Drops: { Suspicious_Hat: 2500 Seed_Of_Yggdrasil: 10 Bloody_Rune: 4000 Beret: 20 Holy_Arrow_Quiver: 20 Bloody_Rune: 100 Divine_Cloth: 20 Echio_Card: 1 } }, { Id: 1771 SpriteName: "VANBERK" Name: "Vanberk" Lv: 59 Hp: 9988 Sp: 0 Exp: 4203 JExp: 901 AttackRange: 1 Attack: [230, 660] Def: 24 Mdef: 6 Stats: { Str: 69 Agi: 66 Vit: 39 Int: 29 Dex: 51 Luk: 41 } 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 MvpExp: 0 Drops: { White_Mask: 2500 Royal_Jelly: 10 Bloody_Rune: 1000 Beret: 10 Scalpel: 5 Bloody_Rune: 100 Vanberk_Card: 1 } }, { Id: 1772 SpriteName: "ISILLA" Name: "Isilla" Lv: 62 Hp: 8297 Sp: 0 Exp: 3001 JExp: 3001 AttackRange: 1 Attack: [89, 733] Def: 11 Mdef: 19 Stats: { Str: 1 Agi: 28 Vit: 12 Int: 97 Dex: 57 Luk: 12 } 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 MvpExp: 0 Drops: { White_Mask: 2500 High_Fashion_Sandals: 1 Bloody_Rune: 1000 Gold_Ring: 10 Ring: 1 Bloody_Rune: 100 Isilla_Card: 1 } }, { Id: 1773 SpriteName: "HODREMLIN" Name: "Hodremlin" Lv: 61 Hp: 12180 Sp: 0 Exp: 6782 JExp: 2022 AttackRange: 1 Attack: [845, 1678] Def: 29 Mdef: 25 Stats: { Str: 80 Agi: 41 Vit: 81 Int: 56 Dex: 62 Luk: 11 } 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 MvpExp: 0 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: 65 Hp: 10090 Sp: 0 Exp: 5671 JExp: 4278 AttackRange: 6 Attack: [723, 852] Def: 17 Mdef: 30 Stats: { Str: 60 Agi: 52 Vit: 34 Int: 143 Dex: 107 Luk: 27 } 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 MvpExp: 0 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: 60 Hp: 19230 Sp: 0 Exp: 5882 JExp: 2699 AttackRange: 2 Attack: [770, 1347] Def: 22 Mdef: 12 Stats: { Str: 73 Agi: 46 Vit: 72 Int: 15 Dex: 52 Luk: 25 } 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 MvpExp: 0 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: 42 Hp: 6800 Sp: 0 Exp: 2230 JExp: 1005 AttackRange: 1 Attack: [220, 440] Def: 12 Mdef: 8 Stats: { Str: 33 Agi: 23 Vit: 52 Int: 11 Dex: 40 Luk: 19 } 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 MvpExp: 0 Drops: { Ice_Heart: 1000 Ice_Piece: 500 Blue_Herb: 10 Crystal_Blue: 20 Siroma_Card: 1 } }, { Id: 1777 SpriteName: "ICE_TITAN" Name: "Ice Titan" Lv: 60 Hp: 38200 Sp: 0 Exp: 13872 JExp: 7928 AttackRange: 1 Attack: [1090, 1570] Def: 71 Mdef: 15 Stats: { Str: 99 Agi: 34 Vit: 88 Int: 10 Dex: 79 Luk: 29 } 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 MvpExp: 0 Drops: { Ice_Heart: 5000 Ice_Piece: 3000 Frozen_Rose: 100 Oridecon: 10 Elunium: 30 Mistic_Frozen: 100 Ice_Titan_Card: 1 } }, { Id: 1778 SpriteName: "GAZETI" Name: "Gazeti" Lv: 55 Hp: 12300 Sp: 0 Exp: 5758 JExp: 2075 AttackRange: 10 Attack: [512, 612] Def: 65 Mdef: 25 Stats: { Str: 1 Agi: 12 Vit: 20 Int: 60 Dex: 101 Luk: 5 } 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 MvpExp: 0 Drops: { Ice_Heart: 3000 Ice_Piece: 3000 Elunium: 20 Frozen_Bow: 1 Gazeti_Card: 1 } }, { Id: 1779 SpriteName: "KTULLANUX" Name: "Ktullanux" Lv: 98 Hp: 4417000 Sp: 0 Exp: 2720050 JExp: 1120020 AttackRange: 3 Attack: [1680, 10360] Def: 40 Mdef: 42 Stats: { Str: 85 Agi: 126 Vit: 30 Int: 125 Dex: 177 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: 1360025 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: 57 Hp: 4332 Sp: 0 Exp: 1706 JExp: 1706 AttackRange: 3 Attack: [521, 726] Def: 12 Mdef: 12 Stats: { Str: 1 Agi: 53 Vit: 39 Int: 25 Dex: 92 Luk: 51 } 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 MvpExp: 0 Drops: { Sticky_Poison: 3000 Blossom_Of_Maneater: 3000 Singing_Flower: 2 Root_Of_Maneater: 2000 Stem: 1000 Deadly_Noxious_Herb: 3 Muscipular_Card: 1 } }, { Id: 1781 SpriteName: "DROSERA" Name: "Drosera" Lv: 46 Hp: 7221 Sp: 0 Exp: 2612 JExp: 1022 AttackRange: 7 Attack: [389, 589] Def: 10 Mdef: 13 Stats: { Str: 1 Agi: 30 Vit: 27 Int: 17 Dex: 76 Luk: 41 } 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 MvpExp: 0 Drops: { Sticky_Poison: 3000 Sticky_Mucus: 3000 Blossom_Of_Maneater: 2000 Root_Of_Maneater: 2000 Bitter_Herb: 3 Stem: 1000 Drosera_Card: 1 } }, { Id: 1782 SpriteName: "ROWEEN" Name: "Roween" Lv: 31 Hp: 5716 Sp: 0 Exp: 1669 JExp: 1266 AttackRange: 1 Attack: [298, 377] Def: 0 Mdef: 7 Stats: { Str: 51 Agi: 39 Vit: 48 Int: 18 Dex: 67 Luk: 19 } 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: 412 AttackMotion: 840 DamageMotion: 300 MvpExp: 0 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: 44 Hp: 32240 Sp: 0 Exp: 10020 JExp: 3368 AttackRange: 1 Attack: [336, 441] Def: 11 Mdef: 12 Stats: { Str: 51 Agi: 52 Vit: 59 Int: 25 Dex: 72 Luk: 32 } 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 MvpExp: 0 Drops: { Rotten_Meat: 3000 Animals_Skin: 3000 Rough_Wind: 10 Ulfhedinn: 5 Galion_Card: 1 } }, { Id: 1784 SpriteName: "STAPO" Name: "Stapo" Lv: 23 Hp: 666 Sp: 0 Exp: 332 JExp: 221 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 MvpExp: 0 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: 82 Hp: 1008420 Sp: 0 Exp: 295550 JExp: 118895 AttackRange: 2 Attack: [2526, 3646] Def: 25 Mdef: 25 Stats: { Str: 100 Agi: 87 Vit: 30 Int: 49 Dex: 89 Luk: 72 } 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 MvpExp: 147775 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: 73 Hp: 25620 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [103, 909] Def: 15 Mdef: 35 Stats: { Str: 1 Agi: 32 Vit: 27 Int: 132 Dex: 69 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 ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 300 AttackDelay: 768 AttackMotion: 360 DamageMotion: 360 MvpExp: 0 Drops: { Suspicious_Hat: 1 } }, { Id: 1787 SpriteName: "G_ECHIO" Name: "Echio" Lv: 69 Hp: 36900 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [750, 1500] Def: 33 Mdef: 11 Stats: { Str: 74 Agi: 74 Vit: 52 Int: 35 Dex: 59 Luk: 56 } 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 MvpExp: 0 Drops: { Suspicious_Hat: 1 } }, { Id: 1788 SpriteName: "G_ICE_TITAN" Name: "Ice Titan" Lv: 60 Hp: 32900 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [1090, 1570] Def: 71 Mdef: 15 Stats: { Str: 99 Agi: 34 Vit: 88 Int: 10 Dex: 79 Luk: 29 } 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 MvpExp: 0 Drops: { Ice_Heart: 1 } }, { Id: 1789 SpriteName: "ICEICLE" Name: "Iceicle" Lv: 38 Hp: 10 Sp: 0 Exp: 5 JExp: 5 AttackRange: 3 Attack: [241, 1082] Def: 0 Mdef: 10 Stats: { Str: 1 Agi: 10 Vit: 10 Int: 10 Dex: 172 Luk: 5 } 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 MvpExp: 0 Drops: { Ice_Piece: 1000 Ice_Piece: 1000 Ice_Piece: 1000 Ice_Piece: 500 Ice_Piece: 500 Ice_Piece: 500 Ice_Piece: 500 Ice_Piece: 500 } }, { Id: 1790 SpriteName: "G_RAFFLESIA" Name: "Rafflesia" Lv: 17 Hp: 1333 Sp: 0 Exp: 0 JExp: 0 AttackRange: 3 Attack: [105, 127] Def: 0 Mdef: 2 Stats: { Str: 1 Agi: 18 Vit: 24 Int: 11 Dex: 37 Luk: 10 } 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 MvpExp: 0 Drops: { Golden_Jewel_: 3000 Red_Jewel_: 4000 Blue_Jewel_: 2000 } }, { Id: 1791 SpriteName: "G_GALION" Name: "Galion" Lv: 44 Hp: 32240 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [336, 441] Def: 11 Mdef: 12 Stats: { Str: 51 Agi: 52 Vit: 59 Int: 25 Dex: 72 Luk: 32 } 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 MvpExp: 0 }, { Id: 1792 SpriteName: "SOCCER_BALL" Name: "Soccer Ball" Lv: 1 Hp: 1000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 127 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 MvpExp: 0 }, { Id: 1793 SpriteName: "G_MEGALITH" Name: "Megalith" Lv: 45 Hp: 5300 Sp: 0 Exp: 0 JExp: 0 AttackRange: 9 Attack: [264, 314] Def: 50 Mdef: 25 Stats: { Str: 1 Agi: 45 Vit: 60 Int: 5 Dex: 95 Luk: 5 } 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 MvpExp: 0 }, { Id: 1794 SpriteName: "G_ROWEEN" Name: "Roween" Lv: 31 Hp: 5716 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [298, 377] Def: 0 Mdef: 7 Stats: { Str: 51 Agi: 39 Vit: 48 Int: 18 Dex: 67 Luk: 19 } 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 MvpExp: 0 }, { Id: 1795 SpriteName: "BLOODY_KNIGHT_" Name: "Bloody Knight" Lv: 82 Hp: 800000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 3 Attack: [10000, 30000] Def: 60 Mdef: 60 Stats: { Str: 88 Agi: 121 Vit: 100 Int: 100 Dex: 125 Luk: 55 } 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 MvpExp: 0 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 } }, { Id: 1796 SpriteName: "AUNOE" Name: "Aunoe" Lv: 62 Hp: 21297 Sp: 0 Exp: 7102 JExp: 5102 AttackRange: 1 Attack: [1500, 2144] Def: 11 Mdef: 19 Stats: { Str: 1 Agi: 28 Vit: 12 Int: 91 Dex: 57 Luk: 12 } 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 MvpExp: 0 Drops: { Memorize_Book: 1 Musika: 1 White_Mask: 2500 High_Fashion_Sandals: 1 Bloody_Rune: 1000 Gold_Ring: 10 Ring: 3 } }, { Id: 1797 SpriteName: "FANAT" Name: "Fanat" Lv: 62 Hp: 21297 Sp: 0 Exp: 7102 JExp: 5102 AttackRange: 1 Attack: [1500, 2144] Def: 11 Mdef: 19 Stats: { Str: 1 Agi: 28 Vit: 12 Int: 91 Dex: 57 Luk: 12 } 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 MvpExp: 0 Drops: { Memorize_Book: 1 Kandura: 1 White_Mask: 2500 Royal_Jelly: 10 Bloody_Rune: 1000 Beret: 10 Scalpel: 10 } }, { Id: 1798 SpriteName: "TREASURE_BOX_" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Gem_Of_Ruin: 10000 } }, { Id: 1799 SpriteName: "G_SEYREN_" Name: "Lord Knight Seyren" Lv: 99 Hp: 347590 Sp: 0 Exp: 18000 JExp: 10000 AttackRange: 1 Attack: [4238, 5040] Def: 72 Mdef: 37 Stats: { Str: 120 Agi: 110 Vit: 81 Int: 65 Dex: 130 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 MvpExp: 0 Drops: { Evil_Mind: 300 } }, { Id: 1800 SpriteName: "G_EREMES_" Name: "Assassin Cross Eremes" Lv: 99 Hp: 211230 Sp: 0 Exp: 18000 JExp: 10000 AttackRange: 1 Attack: [3189, 5289] Def: 27 Mdef: 39 Stats: { Str: 90 Agi: 181 Vit: 62 Int: 37 Dex: 122 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: 0 Drops: { Evil_Mind: 300 } }, { Id: 1801 SpriteName: "G_HARWORD_" Name: "Whitesmith Harword" JName: "MasterSmith Howard" Lv: 99 Hp: 310000 Sp: 0 Exp: 18000 JExp: 10000 AttackRange: 1 Attack: [4822, 5033] Def: 66 Mdef: 36 Stats: { Str: 100 Agi: 73 Vit: 112 Int: 35 Dex: 136 Luk: 60 } 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 MvpExp: 0 Drops: { Evil_Mind: 300 } }, { Id: 1802 SpriteName: "G_MAGALETA_" Name: "High Priest Magaleta" JName: "High Priest Margaretha" Lv: 99 Hp: 182910 Sp: 0 Exp: 18000 JExp: 10000 AttackRange: 1 Attack: [1688, 2580] Def: 35 Mdef: 78 Stats: { Str: 1 Agi: 84 Vit: 64 Int: 182 Dex: 92 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: 300 } }, { Id: 1803 SpriteName: "G_SHECIL_" Name: "Sniper Shecil" JName: "Sniper Cecil" Lv: 99 Hp: 209000 Sp: 0 Exp: 18000 JExp: 10000 AttackRange: 14 Attack: [1892, 5113] Def: 22 Mdef: 35 Stats: { Str: 1 Agi: 180 Vit: 39 Int: 67 Dex: 193 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 MvpExp: 0 Drops: { Evil_Mind: 300 } }, { Id: 1804 SpriteName: "G_KATRINN_" Name: "High Wizard Katrinn" JName: "High Wizard Kathryne" Lv: 99 Hp: 189920 Sp: 0 Exp: 18000 JExp: 10000 AttackRange: 1 Attack: [497, 2094] Def: 10 Mdef: 88 Stats: { Str: 1 Agi: 89 Vit: 42 Int: 223 Dex: 128 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: 0 Drops: { Evil_Mind: 300 } }, { Id: 1805 SpriteName: "B_SEYREN_" Name: "Lord Knight Seyren" Lv: 99 Hp: 1647590 Sp: 0 Exp: 4835600 JExp: 1569970 AttackRange: 1 Attack: [7238, 11040] Def: 72 Mdef: 37 Stats: { Str: 120 Agi: 110 Vit: 81 Int: 65 Dex: 130 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 MvpExp: 0 Drops: { Evil_Mind: 10000 } }, { Id: 1806 SpriteName: "B_EREMES_" Name: "Assassin Cross Eremes" Lv: 99 Hp: 1411230 Sp: 0 Exp: 4083400 JExp: 1592380 AttackRange: 1 Attack: [4189, 8289] Def: 37 Mdef: 39 Stats: { Str: 90 Agi: 181 Vit: 62 Int: 37 Dex: 122 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: 0 Drops: { Evil_Mind: 10000 } }, { Id: 1807 SpriteName: "B_HARWORD_" Name: "Whitesmith Harword" JName: "Master Smith Howard" Lv: 99 Hp: 1460000 Sp: 0 Exp: 4002340 JExp: 1421000 AttackRange: 1 Attack: [7822, 8251] Def: 66 Mdef: 36 Stats: { Str: 100 Agi: 73 Vit: 112 Int: 35 Dex: 136 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: 0 Drops: { Evil_Mind: 10000 } }, { Id: 1808 SpriteName: "B_MAGALETA_" Name: "High Priest Magaleta" JName: "High Priest Margaretha" Lv: 99 Hp: 1092910 Sp: 0 Exp: 4257000 JExp: 1318800 AttackRange: 1 Attack: [4688, 5580] Def: 35 Mdef: 78 Stats: { Str: 1 Agi: 84 Vit: 64 Int: 182 Dex: 92 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: 0 Drops: { Evil_Mind: 10000 } }, { Id: 1809 SpriteName: "B_SHECIL_" Name: "Sniper Shecil" JName: "Sniper Cecil" Lv: 99 Hp: 1349000 Sp: 0 Exp: 4093000 JExp: 1526000 AttackRange: 14 Attack: [4892, 9113] Def: 22 Mdef: 35 Stats: { Str: 1 Agi: 180 Vit: 39 Int: 67 Dex: 193 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 ChangeChase: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 100 AttackDelay: 76 AttackMotion: 384 DamageMotion: 288 MvpExp: 0 Drops: { Evil_Mind: 10000 } }, { Id: 1810 SpriteName: "B_KATRINN_" Name: "High Wizard Katrinn" JName: "High Wizard Kathryne" Lv: 99 Hp: 1069920 Sp: 0 Exp: 4008200 JExp: 1636700 AttackRange: 1 Attack: [1197, 4394] Def: 10 Mdef: 88 Stats: { Str: 1 Agi: 89 Vit: 42 Int: 223 Dex: 128 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: 0 Drops: { Evil_Mind: 10000 } }, { Id: 1811 SpriteName: "G_SMOKIE_" Name: "Smokie" JName: "Bandit" Lv: 18 Hp: 641 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [61, 72] 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 MvpExp: 0 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: 99 Hp: 15 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 100 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: { Plant: true } MoveSpeed: 190 AttackDelay: 890 AttackMotion: 960 DamageMotion: 480 MvpExp: 0 Drops: { Pumpkin_Bucket: 5000 Pumpkin_Head: 5000 Pumpkin: 5000 Pumpkin_Mojo: 5000 } }, { Id: 1813 SpriteName: "EVENT_HYDRO" Name: "Hydro" JName: "Hydrolancer" Lv: 99 Hp: 1880000 Sp: 0 Exp: 4000000 JExp: 2000000 AttackRange: 3 Attack: [15000, 47767] Def: 60 Mdef: 55 Stats: { Str: 1 Agi: 142 Vit: 200 Int: 250 Dex: 189 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 MvpExp: 0 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: 30000 JExp: 30000 AttackRange: 1 Attack: [500, 800] Def: 50 Mdef: 50 Stats: { Str: 1 Agi: 35 Vit: 45 Int: 112 Dex: 69 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 MvpExp: 0 }, { Id: 1815 SpriteName: "EVENT_RICECAKE" Name: "Rice Cake" JName: "Hot Ricecake" Lv: 12 Hp: 20 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [1, 2] Def: 100 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: 1320 AttackMotion: 0 DamageMotion: 300 MvpExp: 0 Drops: { Small_Rice_Dough: 10000 Small_Rice_Dough: 10000 Small_Rice_Dough: 10000 Small_Rice_Dough: 10000 Small_Rice_Dough: 10000 Small_Rice_Dough: 5000 Small_Rice_Dough: 4000 Small_Rice_Dough: 3000 } }, { Id: 1816 SpriteName: "EVENT_GOURD" Name: "Gourd" Lv: 12 Hp: 1000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [1, 2] Def: 100 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 MvpExp: 0 Drops: { Apple: 10000 } }, { Id: 1817 SpriteName: "EVENT_DETALE" Name: "Detale" JName: "Detardeurus" Lv: 99 Hp: 8880000 Sp: 0 Exp: 4500000 JExp: 2500000 AttackRange: 3 Attack: [32767, 65534] Def: 65 Mdef: 65 Stats: { Str: 1 Agi: 142 Vit: 200 Int: 250 Dex: 189 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 MvpExp: 0 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, 2] Def: 15 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 MvpExp: 0 Drops: { Piece_Of_Cogwheel: 7000 } }, { Id: 1819 SpriteName: "EVENT_BATHORY" Name: "Bathory" Lv: 44 Hp: 5415 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [198, 398] Def: 0 Mdef: 60 Stats: { Str: 1 Agi: 76 Vit: 24 Int: 85 Dex: 65 Luk: 15 } 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 MvpExp: 0 Drops: { Wooden_Block_: 2000 } }, { Id: 1820 SpriteName: "EVENT_BIGFOOT" Name: "Bigfoot" Lv: 25 Hp: 1619 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [198, 220] Def: 10 Mdef: 0 Stats: { Str: 1 Agi: 25 Vit: 55 Int: 15 Dex: 20 Luk: 25 } 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 MvpExp: 0 Drops: { Wooden_Block_: 2000 } }, { Id: 1821 SpriteName: "EVENT_DESERT_WOLF" Name: "Desert Wolf" Lv: 27 Hp: 1716 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [169, 208] Def: 0 Mdef: 10 Stats: { Str: 56 Agi: 27 Vit: 45 Int: 15 Dex: 56 Luk: 10 } 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 MvpExp: 0 Drops: { Wooden_Block_: 2000 } }, { Id: 1822 SpriteName: "EVENT_DEVIRUCHI" Name: "Deviruchi" Lv: 46 Hp: 6666 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [475, 560] 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 MvpExp: 0 Drops: { Wooden_Block_: 3000 } }, { Id: 1823 SpriteName: "EVENT_FREEZER" Name: "Freezer" Lv: 72 Hp: 8636 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [671, 983] Def: 55 Mdef: 43 Stats: { Str: 69 Agi: 41 Vit: 59 Int: 5 Dex: 67 Luk: 100 } 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 MvpExp: 0 Drops: { Wooden_Block_: 3000 } }, { Id: 1824 SpriteName: "EVENT_GARM_BABY" Name: "Garm Baby" JName: "Baby Hatii" Lv: 61 Hp: 20199 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [680, 1179] Def: 34 Mdef: 13 Stats: { Str: 45 Agi: 30 Vit: 56 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 MvpExp: 0 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, 140] Def: 10 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 MvpExp: 0 Drops: { Wooden_Block_: 5000 } }, { Id: 1826 SpriteName: "EVENT_MYST" Name: "Myst" Lv: 38 Hp: 3745 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [365, 445] Def: 0 Mdef: 40 Stats: { Str: 1 Agi: 38 Vit: 18 Int: 0 Dex: 53 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 MvpExp: 0 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, 280] Def: 5 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 MvpExp: 0 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, 72] Def: 100 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 MvpExp: 0 Drops: { Bag_Of_Rice: 6000 Lucky_Candy: 9000 Lucky_Candy_Cane: 8000 } }, { Id: 1829 SpriteName: "SWORD_GUARDIAN" Name: "Sword Guardian" JName: "Sword Master" Lv: 86 Hp: 152533 Sp: 0 Exp: 155013 JExp: 122604 AttackRange: 2 Attack: [7590, 9140] Def: 60 Mdef: 33 Stats: { Str: 110 Agi: 40 Vit: 54 Int: 65 Dex: 125 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 MvpExp: 0 Drops: { Broken_Armor_Piece: 3000 Doom_Slayer: 30 Claymore: 50 Zweihander: 1 Platinum_Shield: 10 Muscle_Cutter: 50 Sword_Guardian_Card: 1 } }, { Id: 1830 SpriteName: "BOW_GUARDIAN" Name: "Bow Guardian" JName: "Bow Master" Lv: 80 Hp: 80404 Sp: 0 Exp: 50149 JExp: 23006 AttackRange: 12 Attack: [1840, 2520] Def: 40 Mdef: 62 Stats: { Str: 95 Agi: 80 Vit: 33 Int: 90 Dex: 165 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 MvpExp: 0 Drops: { Broken_Armor_Piece: 3000 Luna_Bow: 30 Bow: 50 Sniping_Suit: 20 Orleans_Glove: 4 Bow_Guardian_Card: 1 } }, { Id: 1831 SpriteName: "SALAMANDER" Name: "Salamander" Lv: 91 Hp: 97934 Sp: 0 Exp: 72000 JExp: 55000 AttackRange: 2 Attack: [7590, 10860] Def: 65 Mdef: 50 Stats: { Str: 90 Agi: 55 Vit: 44 Int: 45 Dex: 180 Luk: 25 } 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 MvpExp: 0 Drops: { Burning_Heart: 3000 Flame_Heart: 30 Red_Gemstone: 100 Lesser_Elemental_Ring: 1 Berserk_Guitar: 50 Ring_: 1 Meteo_Plate_Armor: 20 Salamander_Card: 1 } }, { Id: 1832 SpriteName: "IFRIT" Name: "Ifrit" Lv: 99 Hp: 7700000 Sp: 0 Exp: 3154321 JExp: 3114520 AttackRange: 3 Attack: [13530, 17000] Def: 40 Mdef: 50 Stats: { Str: 120 Agi: 180 Vit: 25 Int: 190 Dex: 199 Luk: 50 } 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: 1577160 MvpDrops: { Old_Blue_Box: 5500 Old_Violet_Box: 5000 Old_Card_Album: 2000 } Drops: { Flame_Heart: 10000 Spiritual_Ring: 3000 Ring_Of_Flame_Lord: 200 Ring_Of_Resonance: 200 Hell_Fire: 2000 Fire_Brand: 2000 Flame_Sprits_Armor_: 100 Ifrit_Card: 1 } }, { Id: 1833 SpriteName: "KASA" Name: "Kasa" Lv: 85 Hp: 80375 Sp: 0 Exp: 49000 JExp: 38000 AttackRange: 2 Attack: [3030, 3500] Def: 23 Mdef: 70 Stats: { Str: 45 Agi: 110 Vit: 31 Int: 200 Dex: 140 Luk: 30 } 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 MvpExp: 0 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: 91 Hp: 97934 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [9590, 12860] Def: 65 Mdef: 60 Stats: { Str: 90 Agi: 55 Vit: 44 Int: 45 Dex: 180 Luk: 25 } 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 MvpExp: 0 }, { Id: 1835 SpriteName: "G_KASA" Name: "Kasa" Lv: 85 Hp: 80375 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [3030, 3500] Def: 23 Mdef: 70 Stats: { Str: 45 Agi: 158 Vit: 31 Int: 250 Dex: 160 Luk: 30 } 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 MvpExp: 0 }, { Id: 1836 SpriteName: "MAGMARING" Name: "Magmaring" Lv: 40 Hp: 5300 Sp: 0 Exp: 2110 JExp: 1910 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 MvpExp: 0 Drops: { Burning_Heart: 3000 Elunium_Stone: 34 Magmaring_Card: 1 } }, { Id: 1837 SpriteName: "IMP" Name: "Imp" Lv: 76 Hp: 46430 Sp: 0 Exp: 25200 JExp: 11077 AttackRange: 1 Attack: [1059, 1509] Def: 27 Mdef: 50 Stats: { Str: 37 Agi: 76 Vit: 30 Int: 150 Dex: 99 Luk: 10 } 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 MvpExp: 0 Drops: { Hot_Hair: 3000 Huuma_Blaze: 3 Live_Coal: 2500 Heart_Breaker: 10 Electric_Eel: 25 Flaming_Ice: 20 Imp_Card: 1 } }, { Id: 1838 SpriteName: "KNOCKER" Name: "Knocker" Lv: 50 Hp: 7755 Sp: 0 Exp: 2202 JExp: 4023 AttackRange: 1 Attack: [889, 990] Def: 28 Mdef: 50 Stats: { Str: 25 Agi: 44 Vit: 50 Int: 62 Dex: 65 Luk: 60 } 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 MvpExp: 0 Drops: { Great_Nature: 30 Coal: 150 Elder_Pixies_Beard: 5500 Elven_Ears: 1 Ribbon: 10 Thorny_Buckler: 3 Earth_Bow: 5 Knocker_Card: 1 } }, { Id: 1839 SpriteName: "BYORGUE" Name: "Byorgue" JName: "Byrogue" Lv: 86 Hp: 38133 Sp: 0 Exp: 19000 JExp: 9500 AttackRange: 2 Attack: [1340, 2590] Def: 20 Mdef: 13 Stats: { Str: 25 Agi: 80 Vit: 12 Int: 30 Dex: 70 Luk: 10 } 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 MvpExp: 0 Drops: { Drill_Katar: 50 Assassin_Mask_: 3 Scalpel: 150 Agi_Dish07: 500 Old_Blue_Box: 40 Rider_Insignia_: 1 Vroken_Sword: 4365 Byorgue_Card: 1 } }, { Id: 1840 SpriteName: "GOLDEN_SAVAGE" Name: "Golden Savage" Lv: 99 Hp: 500 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [500, 700] Def: 100 Mdef: 99 Stats: { Str: 0 Agi: 1 Vit: 1 Int: 50 Dex: 120 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 MvpExp: 0 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: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [46, 55] Def: 100 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 MvpExp: 0 Drops: { Gold_Coin_US: 2000 Green_Ale_US: 200 Treasure_Box_: 10 } }, { Id: 1842 SpriteName: "G_ANACONDAQ_" Name: "Snake Lord's Minion" Lv: 23 Hp: 15 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [124, 157] Def: 100 Mdef: 99 Stats: { Str: 1 Agi: 23 Vit: 28 Int: 10 Dex: 36 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 MvpExp: 0 Drops: { Gold_Coin_US: 3500 Green_Ale_US: 400 Treasure_Box_: 20 } }, { Id: 1843 SpriteName: "G_SIDE_WINDER_" Name: "Snake Lord's Minion" Lv: 43 Hp: 18 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [240, 320] Def: 100 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 MvpExp: 0 Drops: { Gold_Coin_US: 7000 Green_Ale_US: 600 Treasure_Box_: 30 } }, { Id: 1844 SpriteName: "G_ISIS_" Name: "Snake Lord's Minion" Lv: 47 Hp: 25 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [423, 507] Def: 100 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 MvpExp: 0 Drops: { Gold_Coin_US: 8000 Green_Ale_US: 800 Treasure_Box_: 50 } }, { Id: 1845 SpriteName: "G_TREASURE_BOX_" Name: "Treasure Box" JName: "Treasure Chest" Lv: 98 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 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: 999 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [1, 2] 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 MvpExp: 0 Drops: { Dragonball_Yellow_: 2000 } }, { Id: 1847 SpriteName: "EVENT_PORING" Name: "Poring" Lv: 98 Hp: 10000000 Sp: 0 Exp: 1000000 JExp: 1000000 AttackRange: 1 Attack: [15000, 20000] Def: 60 Mdef: 60 Stats: { Str: 1 Agi: 60 Vit: 120 Int: 120 Dex: 160 Luk: 30 } ViewRange: 10 ChaseRange: 12 Size: "Size_Medium" 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: 76 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 }, { Id: 1848 SpriteName: "EVENT_BAPHOMET" Name: "Baphomet" Lv: 50 Hp: 45000 Sp: 0 Exp: 1000 JExp: 1000 AttackRange: 2 Attack: [1500, 3000] Def: 10 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 MvpExp: 0 }, { Id: 1849 SpriteName: "EVENT_OSIRIS" Name: "Osiris" Lv: 60 Hp: 125000 Sp: 0 Exp: 2000 JExp: 2000 AttackRange: 1 Attack: [3500, 5000] Def: 20 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 MvpExp: 0 }, { Id: 1850 SpriteName: "EVENT_ORCHERO" Name: "Orc Hero" Lv: 50 Hp: 175000 Sp: 0 Exp: 3000 JExp: 3000 AttackRange: 1 Attack: [4000, 5500] Def: 25 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 MvpExp: 0 }, { Id: 1851 SpriteName: "EVENT_MOBSTER" Name: "Mobster" Lv: 61 Hp: 7991 Sp: 0 Exp: 2 JExp: 2 AttackRange: 1 Attack: [500, 1000] Def: 45 Mdef: 35 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 MvpExp: 0 }, { Id: 1852 SpriteName: "G_EM_ANGELING" Name: "Angeling" Lv: 99 Hp: 120 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [60, 71] Def: 100 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 MvpExp: 0 }, { Id: 1853 SpriteName: "G_EM_DEVILING" Name: "Deviling" Lv: 99 Hp: 120 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [60, 71] Def: 100 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 MvpExp: 0 }, { Id: 1854 SpriteName: "E_MUKA" Name: "Muka" Lv: 17 Hp: 610 Sp: 0 Exp: 273 JExp: 120 AttackRange: 1 Attack: [40, 49] Def: 5 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 MvpExp: 0 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: 186 JExp: 93 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 MvpExp: 0 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: 393 JExp: 248 AttackRange: 1 Attack: [120, 151] Def: 5 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 MvpExp: 0 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: 66 JExp: 44 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 CanAttack: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 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: 23 JExp: 18 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 MvpExp: 0 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: 45 JExp: 32 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 MvpExp: 0 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: 120 JExp: 78 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 MvpExp: 0 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: 1265 JExp: 1265 AttackRange: 1 Attack: [315, 402] Def: 5 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 MvpExp: 0 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: 134 JExp: 86 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 MvpExp: 0 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: 14 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: 511 MvpExp: 0 Drops: { Peeps: 5000 Jelly_Bean: 5000 Marshmallow: 5000 } }, // Cursed Abbey { Id: 1864 SpriteName: "ZOMBIE_SLAUGHTER" Name: "Zombie Slaughter" Lv: 77 Hp: 43000 Sp: 0 Exp: 12000 JExp: 8500 AttackRange: 1 Attack: [1055, 1655] Def: 35 Mdef: 45 Stats: { Str: 1 Agi: 30 Vit: 50 Int: 1 Dex: 75 Luk: 35 } 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 MvpExp: 0 Drops: { Clattering_Skull: 3000 Platinum_Shotel: 10 Mementos: 1500 Broken_Farming_Utensil: 3000 Sticky_Mucus: 3000 Zombie_Slaughter_Card: 1 } }, { Id: 1865 SpriteName: "RAGGED_ZOMBIE" Name: "Ragged Zombie" Lv: 75 Hp: 25000 Sp: 0 Exp: 8500 JExp: 5500 AttackRange: 9 Attack: [1200, 1500] Def: 25 Mdef: 35 Stats: { Str: 1 Agi: 77 Vit: 25 Int: 10 Dex: 101 Luk: 50 } 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 MvpExp: 0 Drops: { Clattering_Skull: 3000 Tidal_Shoes: 15 Mementos: 1500 Skel_Bone: 4500 Expert_Ring: 2 Wasteland_Outlaw: 10 Ragged_Zombie_Card: 1 } }, { Id: 1866 SpriteName: "HELL_POODLE" Name: "Hell Poodle" JName: "Hellhound" Lv: 71 Hp: 9000 Sp: 0 Exp: 4000 JExp: 3000 AttackRange: 1 Attack: [400, 600] Def: 35 Mdef: 20 Stats: { Str: 5 Agi: 26 Vit: 14 Int: 5 Dex: 39 Luk: 10 } 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 MvpExp: 0 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: 81 Hp: 35111 Sp: 0 Exp: 17000 JExp: 12000 AttackRange: 1 Attack: [1666, 2609] Def: 30 Mdef: 55 Stats: { Str: 30 Agi: 74 Vit: 1 Int: 120 Dex: 75 Luk: 1 } 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: 576 AttackMotion: 504 DamageMotion: 504 MvpExp: 0 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: 81 Hp: 35111 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [1666, 2609] Def: 30 Mdef: 55 Stats: { Str: 30 Agi: 74 Vit: 1 Int: 120 Dex: 120 Luk: 1 } 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: 576 AttackMotion: 504 DamageMotion: 504 MvpExp: 0 }, { Id: 1869 SpriteName: "FLAME_SKULL" Name: "Flame Skull" Lv: 60 Hp: 10080 Sp: 0 Exp: 3000 JExp: 2600 AttackRange: 1 Attack: [100, 1200] Def: 20 Mdef: 40 Stats: { Str: 50 Agi: 100 Vit: 30 Int: 40 Dex: 140 Luk: 110 } 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 MvpExp: 0 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: 88 Hp: 98000 Sp: 0 Exp: 45000 JExp: 35000 AttackRange: 1 Attack: [3500, 4000] Def: 0 Mdef: 40 Stats: { Str: 1 Agi: 50 Vit: 1 Int: 190 Dex: 166 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 CastSensorChase: true ChangeChase: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 150 AttackDelay: 1816 AttackMotion: 1320 DamageMotion: 420 MvpExp: 0 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: 80 Hp: 3333333 Sp: 0 Exp: 1111111 JExp: 1111111 AttackRange: 1 Attack: [3220, 5040] Def: 50 Mdef: 0 Stats: { Str: 1 Agi: 80 Vit: 15 Int: 126 Dex: 120 Luk: 20 } 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: 1152 DamageMotion: 360 MvpExp: 555555 MvpDrops: { Yggdrasilberry: 5500 Old_Violet_Box: 5000 Old_Violet_Box: 5000 } Drops: { Holy_Water: 10000 Long_Horn: 1000 Spiritual_Ring: 500 Hunting_Spear: 1000 Elunium: 5432 Blessed_Wand: 2000 Fallen_Bishop_Card: 1 } }, { Id: 1872 SpriteName: "BEELZEBUB_FLY" Name: "Hell Fly" Lv: 66 Hp: 500000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [1200, 2000] Def: 25 Mdef: 15 Stats: { Str: 33 Agi: 105 Vit: 60 Int: 15 Dex: 72 Luk: 30 } 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: 676 AttackMotion: 576 DamageMotion: 480 MvpExp: 0 }, { Id: 1873 SpriteName: "BEELZEBUB" Name: "Beelzebub" Lv: 98 Hp: 6666666 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [4100, 4960] Def: 40 Mdef: 35 Stats: { Str: 6 Agi: 110 Vit: 200 Int: 250 Dex: 120 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 MvpExp: 0 }, { Id: 1874 SpriteName: "BEELZEBUB_" Name: "Beelzebub" Lv: 98 Hp: 6666666 Sp: 0 Exp: 6666666 JExp: 6666666 AttackRange: 2 Attack: [10000, 13410] Def: 40 Mdef: 40 Stats: { Str: 6 Agi: 110 Vit: 200 Int: 250 Dex: 166 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 MvpExp: 3333333 MvpDrops: { Yggdrasilberry: 5500 Old_Violet_Box: 5000 Old_Violet_Box: 5000 } Drops: { Broken_Crown: 9000 Variant_Shoes: 2000 Death_Note: 2000 Destruction_Rod: 2000 Bison_Horn: 2000 Elunium: 5432 Chonchon_Doll: 5500 Berzebub_Card: 1 } }, { Id: 1875 SpriteName: "TRISTAN_3RD" Name: "Tristan III" Lv: 80 Hp: 43000 Sp: 0 Exp: 1 JExp: 1 AttackRange: 2 Attack: [1366, 1626] Def: 25 Mdef: 30 Stats: { Str: 5 Agi: 10 Vit: 10 Int: 69 Dex: 70 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 MvpExp: 0 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: 131343 JExp: 43345 AttackRange: 3 Attack: [3430, 4232] Def: 75 Mdef: 73 Stats: { Str: 120 Agi: 120 Vit: 120 Int: 169 Dex: 150 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: 0 }, { Id: 1877 SpriteName: "CRYSTAL_5" Name: "Crystal" Lv: 1 Hp: 15 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 100 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 MvpExp: 0 Drops: { GOLD_ID4: 10 Gift_Box: 100 } }, { Id: 1878 SpriteName: "E_SHINING_PLANT" Name: "Shining Plant" JName: "Mystic Plant" Lv: 1 Hp: 20 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: 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 MvpExp: 0 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, 26] 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 MvpExp: 0 }, // Moscovia monsters { Id: 1880 SpriteName: "WOOD_GOBLIN" Name: "Wood Goblin" JName: "Leshij" Lv: 42 Hp: 6982 Sp: 0 Exp: 2201 JExp: 1552 AttackRange: 1 Attack: [600, 620] Def: 32 Mdef: 3 Stats: { Str: 1 Agi: 5 Vit: 45 Int: 45 Dex: 55 Luk: 155 } 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 MvpExp: 0 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: 39 Hp: 3080 Sp: 0 Exp: 1521 JExp: 912 AttackRange: 1 Attack: [102, 113] Def: 0 Mdef: 17 Stats: { Str: 1 Agi: 33 Vit: 12 Int: 32 Dex: 52 Luk: 38 } 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 MvpExp: 0 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: 49 Hp: 7444 Sp: 0 Exp: 2583 JExp: 2583 AttackRange: 2 Attack: [255, 387] Def: 4 Mdef: 29 Stats: { Str: 1 Agi: 76 Vit: 24 Int: 88 Dex: 55 Luk: 18 } 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 MvpExp: 0 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: 61 Hp: 13707 Sp: 0 Exp: 4002 JExp: 3003 AttackRange: 1 Attack: [293, 960] Def: 11 Mdef: 34 Stats: { Str: 1 Agi: 33 Vit: 19 Int: 72 Dex: 75 Luk: 77 } 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 MvpExp: 0 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: 63 Hp: 19200 Sp: 0 Exp: 8301 JExp: 6353 AttackRange: 7 Attack: [589, 623] Def: 32 Mdef: 19 Stats: { Str: 1 Agi: 42 Vit: 55 Int: 35 Dex: 89 Luk: 177 } 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 MvpExp: 0 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: 85 Hp: 299321 Sp: 0 Exp: 45250 JExp: 16445 AttackRange: 3 Attack: [1868, 6124] Def: 20 Mdef: 42 Stats: { Str: 50 Agi: 65 Vit: 55 Int: 103 Dex: 152 Luk: 35 } 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 MvpExp: 22625 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: 63 Hp: 19200 Sp: 0 Exp: 0 JExp: 0 AttackRange: 7 Attack: [589, 623] Def: 32 Mdef: 19 Stats: { Str: 1 Agi: 42 Vit: 55 Int: 35 Dex: 89 Luk: 177 } 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 MvpExp: 0 }, // Additional Monsters { Id: 1887 SpriteName: "FREEZER_R" Name: "Freezer" Lv: 72 Hp: 8636 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [671, 983] Def: 55 Mdef: 43 Stats: { Str: 69 Agi: 41 Vit: 59 Int: 5 Dex: 67 Luk: 100 } 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 MvpExp: 0 Drops: { Cyfar: 2000 Ice_Piece: 2000 } }, { Id: 1888 SpriteName: "GARM_BABY_R" Name: "Garm Baby" Lv: 61 Hp: 15199 Sp: 0 Exp: 100 JExp: 100 AttackRange: 1 Attack: [680, 1580] 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 MvpExp: 0 Drops: { Ice_Piece: 2000 } }, { Id: 1889 SpriteName: "GARM_R" Name: "Marozka's Guard" Lv: 73 Hp: 100000 Sp: 0 Exp: 1000 JExp: 1000 AttackRange: 3 Attack: [900, 2200] Def: 20 Mdef: 23 Stats: { Str: 85 Agi: 126 Vit: 10 Int: 50 Dex: 95 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 MvpExp: 0 Drops: { Cyfar: 2000 Ice_Piece: 2000 } }, { Id: 1890 SpriteName: "GOPINICH_R" Name: "The Immortal Koshei" Lv: 85 Hp: 299321 Sp: 0 Exp: 1000 JExp: 1000 AttackRange: 3 Attack: [1868, 6124] Def: 20 Mdef: 42 Stats: { Str: 50 Agi: 65 Vit: 55 Int: 50 Dex: 152 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 MvpExp: 0 }, { Id: 1891 SpriteName: "G_RANDGRIS_" Name: "Valkyrie" Lv: 99 Hp: 1567200 Sp: 0 Exp: 0 JExp: 0 AttackRange: 3 Attack: [5560, 9980] Def: 25 Mdef: 42 Stats: { Str: 100 Agi: 120 Vit: 80 Int: 120 Dex: 220 Luk: 210 } 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: 0 }, { Id: 1892 SpriteName: "G_LOLI_RURI" Name: "Lolo Ruri" Lv: 71 Hp: 23470 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [1476, 2317] Def: 39 Mdef: 44 Stats: { Str: 0 Agi: 66 Vit: 54 Int: 74 Dex: 81 Luk: 43 } 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 MvpExp: 0 }, { Id: 1893 SpriteName: "G_KNIGHT_OF_ABYSS" Name: "Knight of the Abyss" JName: "Abysmal Knight" Lv: 79 Hp: 36140 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [1600, 2150] Def: 55 Mdef: 50 Stats: { Str: 66 Agi: 68 Vit: 64 Int: 25 Dex: 135 Luk: 50 } 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 MvpExp: 0 }, { Id: 1894 SpriteName: "POURING" Name: "Pouring" Lv: 50 Hp: 100000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [550, 1450] Def: 20 Mdef: 50 Stats: { Str: 45 Agi: 30 Vit: 36 Int: 55 Dex: 85 Luk: 30 } ViewRange: 0 ChaseRange: 0 Size: "Size_Small" Race: "RC_Plant" Element: ("Ele_Ghost", 3) Mode: { CanMove: true Looter: true Assist: true Boss: true CanAttack: true Detector: true ChangeTargetMelee: true } MoveSpeed: 300 AttackDelay: 1672 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 Drops: { Cold_Medicine: 8335 } }, { Id: 1895 SpriteName: "EVENT_SEYREN" Name: "Seyren" JName: "Seyren Windsor" Lv: 91 Hp: 88402 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 MvpExp: 0 }, { Id: 1896 SpriteName: "EVENT_KATRINN" Name: "Katrinn" JName: "Kathryne Keyron" Lv: 92 Hp: 47280 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 MvpExp: 0 }, { 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 MvpExp: 0 }, { 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 MvpExp: 0 Drops: { Jade_Plate: 10000 } }, { Id: 1899 SpriteName: "SWORD_GUARDIAN_" Name: "Sword Guardian" Lv: 86 Hp: 152533 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [7590, 9140] Def: 60 Mdef: 33 Stats: { Str: 110 Agi: 40 Vit: 54 Int: 65 Dex: 125 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 MvpExp: 0 }, /*{ Id: 1900 SpriteName: "BOW_GUARDIAN_" Name: "Archer Guardian" Lv: 80 Hp: 80404 Sp: 0 Exp: 0 JExp: 0 AttackRange: 12 Attack: [1840, 2520] Def: 40 Mdef: 62 Stats: { Str: 95 Agi: 80 Vit: 33 Int: 90 Dex: 165 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 MvpExp: 0 },*/ { Id: 1901 SpriteName: "E_CONDOR" Name: "Condor" Lv: 5 Hp: 8000 Sp: 0 Exp: 100 JExp: 100 AttackRange: 1 Attack: [200, 400] Def: 10 Mdef: 15 Stats: { Str: 1 Agi: 13 Vit: 10 Int: 25 Dex: 95 Luk: 10 } ViewRange: 10 ChaseRange: 12 Size: "Size_Small" Race: "RC_Angel" Element: ("Ele_Holy", 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true } MoveSpeed: 150 AttackDelay: 1148 AttackMotion: 648 DamageMotion: 480 MvpExp: 0 Drops: { Heart_Box: 5000 } }, { 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: 999 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 MvpExp: 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: 999 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 MvpExp: 0 Drops: { Silver_Key77: 1000 } }, { Id: 1904 SpriteName: "BOMBPORING" Name: "Bomb Poring" JName: "Bombring" Lv: 28 Hp: 1000000 Sp: 0 Exp: 461 JExp: 284 AttackRange: 1 Attack: [120, 320] Def: 100 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 MvpExp: 0 }, // WoE Second Edition; Battle Fields { Id: 1905 SpriteName: "BARRICADE" Name: "Barricade" Lv: 98 Hp: 600000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 17 Vit: 1 Int: 80 Dex: 126 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 MvpExp: 0 }, { Id: 1906 SpriteName: "BARRICADE_" Name: "Barricade" Lv: 98 Hp: 150 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [0, 0] Def: 100 Mdef: 99 Stats: { Str: 1 Agi: 17 Vit: 1 Int: 80 Dex: 126 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 MvpExp: 0 }, { Id: 1907 SpriteName: "S_EMPEL_1" Name: "Guardian Stone" Lv: 90 Hp: 120000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [1, 2] Def: 40 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 MvpExp: 0 }, { Id: 1908 SpriteName: "S_EMPEL_2" Name: "Guardian Stone" Lv: 90 Hp: 120000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [1, 2] Def: 40 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 MvpExp: 0 }, { Id: 1909 SpriteName: "OBJ_A" Name: "Food Storage" Lv: 90 Hp: 250 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [1, 2] Def: 100 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 MvpExp: 0 }, { Id: 1910 SpriteName: "OBJ_B" Name: "Food Depot" Lv: 90 Hp: 250 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [1, 2] Def: 100 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 MvpExp: 0 }, { Id: 1911 SpriteName: "OBJ_NEUTRAL" Name: "Neutrality Flag" Lv: 90 Hp: 150 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [1, 2] Def: 100 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 MvpExp: 0 }, { Id: 1912 SpriteName: "OBJ_FLAG_A" Name: "Lion Flag" Lv: 90 Hp: 150 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [1, 2] Def: 100 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 MvpExp: 0 }, { Id: 1913 SpriteName: "OBJ_FLAG_B" Name: "Eagle Flag" Lv: 90 Hp: 150 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [1, 2] Def: 100 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 MvpExp: 0 }, { Id: 1914 SpriteName: "OBJ_A2" Name: "Blue Crystal" Lv: 90 Hp: 250 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [1, 2] Def: 100 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 MvpExp: 0 }, { Id: 1915 SpriteName: "OBJ_B2" Name: "Pink Crystal" Lv: 90 Hp: 250 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [1, 2] Def: 100 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 MvpExp: 0 }, // Satan Morroc { Id: 1916 SpriteName: "MOROCC" Name: "Satan Morroc" Lv: 99 Hp: 8388607 Sp: 0 Exp: 6700000 JExp: 4500000 AttackRange: 2 Attack: [32000, 32001] Def: 29 Mdef: 65 Stats: { Str: 140 Agi: 160 Vit: 30 Int: 250 Dex: 180 Luk: 50 } 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: 76 AttackMotion: 540 DamageMotion: 432 MvpExp: 0 }, { Id: 1917 SpriteName: "MOROCC_" Name: "Wounded Morroc" Lv: 99 Hp: 8388607 Sp: 0 Exp: 3600000 JExp: 3000000 AttackRange: 2 Attack: [15000, 18000] Def: 29 Mdef: 65 Stats: { Str: 140 Agi: 160 Vit: 30 Int: 250 Dex: 180 Luk: 40 } 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: 576 AttackMotion: 540 DamageMotion: 432 MvpExp: 3600000 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: 97 Hp: 190000 Sp: 0 Exp: 61000 JExp: 140000 AttackRange: 1 Attack: [7000, 8600] Def: 20 Mdef: 35 Stats: { Str: 150 Agi: 152 Vit: 30 Int: 180 Dex: 186 Luk: 70 } 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: 540 DamageMotion: 432 MvpExp: 0 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: 97 Hp: 190000 Sp: 0 Exp: 65000 JExp: 120000 AttackRange: 1 Attack: [3500, 5100] Def: 20 Mdef: 5 Stats: { Str: 120 Agi: 83 Vit: 20 Int: 10 Dex: 166 Luk: 50 } 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: 540 DamageMotion: 432 MvpExp: 0 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: 96 Hp: 143000 Sp: 0 Exp: 50000 JExp: 80000 AttackRange: 2 Attack: [3400, 5000] Def: 15 Mdef: 37 Stats: { Str: 40 Agi: 200 Vit: 20 Int: 60 Dex: 100 Luk: 37 } 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: 540 DamageMotion: 432 MvpExp: 0 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: 98 Hp: 150000 Sp: 0 Exp: 51000 JExp: 70000 AttackRange: 1 Attack: [3000, 4025] Def: 18 Mdef: 54 Stats: { Str: 60 Agi: 60 Vit: 30 Int: 220 Dex: 125 Luk: 20 } 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: 540 DamageMotion: 432 MvpExp: 0 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: 97 Hp: 1200000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [16000, 16001] Def: 20 Mdef: 35 Stats: { Str: 150 Agi: 152 Vit: 30 Int: 180 Dex: 186 Luk: 70 } 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: 540 DamageMotion: 432 MvpExp: 0 }, { Id: 1923 SpriteName: "G_MOROCC_2" Name: "Incarnation of Morroc" JName: "Shadow of Morroc" Lv: 97 Hp: 1200000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [16000, 16001] Def: 20 Mdef: 5 Stats: { Str: 120 Agi: 83 Vit: 20 Int: 10 Dex: 166 Luk: 50 } 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: 540 DamageMotion: 432 MvpExp: 0 }, { Id: 1924 SpriteName: "G_MOROCC_3" Name: "Incarnation of Morroc" JName: "Shadow of Morroc" Lv: 96 Hp: 1200000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [16000, 16001] Def: 15 Mdef: 37 Stats: { Str: 40 Agi: 200 Vit: 20 Int: 60 Dex: 100 Luk: 37 } 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: 540 DamageMotion: 432 MvpExp: 0 }, { Id: 1925 SpriteName: "G_MOROCC_4" Name: "Incarnation of Morroc" JName: "Shadow of Morroc" Lv: 98 Hp: 1200000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [16000, 16001] Def: 18 Mdef: 54 Stats: { Str: 60 Agi: 60 Vit: 30 Int: 220 Dex: 125 Luk: 20 } 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: 540 DamageMotion: 432 MvpExp: 0 }, // God Item Creation (WoE SE); Catacombs { Id: 1926 SpriteName: "JAKK_H" Name: "Jakk" JName: "Shameless Jakk" Lv: 38 Hp: 300 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [5, 10] Def: 5 Mdef: 30 Stats: { Str: 1 Agi: 38 Vit: 38 Int: 43 Dex: 75 Luk: 45 } 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 MvpExp: 0 Drops: { Pumpkin_Head: 3000 Pumpkin_Head: 3000 Pumpkin: 3000 Pumpkin: 3000 Pumpkin: 3000 } }, { Id: 1927 SpriteName: "WHISPER_H" Name: "Whisper" Lv: 34 Hp: 100 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [5, 10] 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_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 MvpExp: 0 Drops: { Transparent_Cloth: 5000 Transparent_Cloth: 5000 } }, { Id: 1928 SpriteName: "DEVIRUCHI_H" Name: "Deviruchi" Lv: 46 Hp: 500 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [5, 10] 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 MvpExp: 0 Drops: { Petite_DiablOfs_Horn: 3000 Petite_DiablOfs_Wing: 3000 } }, { Id: 1929 SpriteName: "BAPHOMET_I" Name: "Great Demon Baphomet" JName: "Unsealed Baphomet" Lv: 98 Hp: 4520000 Sp: 0 Exp: 4520000 JExp: 2520000 AttackRange: 2 Attack: [16000, 16001] Def: 35 Mdef: 45 Stats: { Str: 1 Agi: 152 Vit: 5 Int: 85 Dex: 200 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 MvpExp: 0 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: 3000000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [15000, 20000] Def: 35 Mdef: 35 Stats: { Str: 1 Agi: 66 Vit: 5 Int: 99 Dex: 120 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 MvpExp: 0 }, { Id: 1931 SpriteName: "WISH_MAIDEN" Name: "Wish Maiden" Lv: 98 Hp: 3567200 Sp: 0 Exp: 0 JExp: 0 AttackRange: 3 Attack: [32000, 32001] Def: 25 Mdef: 42 Stats: { Str: 100 Agi: 120 Vit: 30 Int: 120 Dex: 220 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 MvpExp: 0 }, { Id: 1932 SpriteName: "GARDEN_KEEPER" Name: "Garden Keeper" Lv: 80 Hp: 100 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [1, 2] 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_Earth", 2) Mode: { CanMove: true Boss: true Plant: true CanAttack: true } MoveSpeed: 100 AttackDelay: 768 AttackMotion: 768 DamageMotion: 576 MvpExp: 0 Drops: { Crystal_Key: 9000 } }, { Id: 1933 SpriteName: "GARDEN_WATCHER" Name: "Garden Watcher" Lv: 81 Hp: 300000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [1666, 2609] Def: 55 Mdef: 55 Stats: { Str: 30 Agi: 74 Vit: 56 Int: 126 Dex: 145 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 MvpExp: 0 }, { Id: 1934 SpriteName: "BLUE_FLOWER" Name: "Blue Flower" Lv: 98 Hp: 10000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [1, 2] Def: 100 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 MvpExp: 0 }, { Id: 1935 SpriteName: "RED_FLOWER" Name: "Red Flower" Lv: 98 Hp: 10000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [1, 2] Def: 100 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 MvpExp: 0 }, { Id: 1936 SpriteName: "YELL_FLOWER" Name: "Yellow Flower" Lv: 98 Hp: 10000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [1, 2] Def: 100 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 MvpExp: 0 }, { Id: 1937 SpriteName: "CONSTANT_" Name: "Constant" Lv: 55 Hp: 10000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [460, 580] Def: 12 Mdef: 12 Stats: { Str: 50 Agi: 28 Vit: 26 Int: 47 Dex: 66 Luk: 14 } 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 MvpExp: 0 }, { Id: 1938 SpriteName: "TREASURE_BOX41" Name: "Treasure Chest" Lv: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Goddess_Tear: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree_Box: 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: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Valkyrie_Token: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree_Box: 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: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Brynhild_Armor_Piece: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree_Box: 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: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Hero_Remains: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree_Box: 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: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Andvari_Ring: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree_Box: 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: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Dusk_Glow: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree_Box: 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: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Dawn_Essence: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree_Box: 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: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Cold_Moonlight: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree_Box: 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: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Hazy_Starlight: 80 Union_Of_Tribe: 500 Branch_Of_Dead_Tree_Box: 10000 Oridecon: 4850 Elunium: 7275 Piercing_Staff: 150 Drill_Katar: 150 Mithril_Magic_Cape: 50 } }, { Id: 1947 SpriteName: "PIAMETTE_" Name: "Piamette" Lv: 90 Hp: 500000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [5000, 6000] Def: 35 Mdef: 35 Stats: { Str: 1 Agi: 66 Vit: 5 Int: 99 Dex: 120 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 MvpExp: 0 }, { Id: 1948 SpriteName: "G_YGNIZEM" Name: "Ygnizem" Lv: 58 Hp: 11200 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [823, 1212] Def: 35 Mdef: 8 Stats: { Str: 60 Agi: 35 Vit: 52 Int: 18 Dex: 79 Luk: 20 } 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 MvpExp: 0 }, { Id: 1949 SpriteName: "B_S_GUARDIAN" Name: "Camp Guardian" Lv: 86 Hp: 457599 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [7590, 9140] Def: 60 Mdef: 33 Stats: { Str: 110 Agi: 40 Vit: 5 Int: 65 Dex: 125 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 MvpExp: 0 }, { Id: 1950 SpriteName: "B_B_GUARDIAN" Name: "Camp Guardian" Lv: 80 Hp: 241212 Sp: 0 Exp: 0 JExp: 0 AttackRange: 12 Attack: [1840, 2520] Def: 40 Mdef: 62 Stats: { Str: 95 Agi: 80 Vit: 5 Int: 90 Dex: 165 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 MvpExp: 0 }, // Ravies Sister's 'Valyrie's Gift' monsters. { Id: 1951 SpriteName: "CRYSTAL_6" Name: "Crystal" Lv: 1 Hp: 15 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 100 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 MvpExp: 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: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 100 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 MvpExp: 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: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 100 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 MvpExp: 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: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 100 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 MvpExp: 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: 99 Hp: 0 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 999 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 MvpExp: 0 Drops: { Tresure_Box_WoE: 3000 Soul_Crystal: 4000 } }, // Endless Tower { Id: 1956 SpriteName: "NAGHT_SIEGER" Name: "Naght Sieger" Lv: 99 Hp: 8000000 Sp: 0 Exp: 4000000 JExp: 2000000 AttackRange: 2 Attack: [32000, 64000] Def: 60 Mdef: 40 Stats: { Str: 1 Agi: 50 Vit: 80 Int: 220 Dex: 220 Luk: 30 } 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: 76 AttackMotion: 432 DamageMotion: 504 MvpExp: 0 Drops: { Twin_Edge_B: 9000 Twin_Edge_R: 9000 Flame_Manteau: 9000 Bone_Helm: 9000 Old_Card_Album: 9000 Pauldron: 9000 Turquoise: 9000 } }, { Id: 1957 SpriteName: "ENTWEIHEN" Name: "Entweihen Crothen" Lv: 90 Hp: 5400000 Sp: 0 Exp: 2700000 JExp: 1350000 AttackRange: 12 Attack: [32000, 40000] Def: 44 Mdef: 66 Stats: { Str: 1 Agi: 70 Vit: 40 Int: 250 Dex: 220 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 MvpExp: 0 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: 0 Exp: 0 JExp: 0 AttackRange: 12 Attack: [4040, 4720] Def: 44 Mdef: 66 Stats: { Str: 1 Agi: 35 Vit: 33 Int: 180 Dex: 125 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 MvpExp: 0 }, { Id: 1959 SpriteName: "G_ENTWEIHEN_H" Name: "Thorn of Recovery" Lv: 89 Hp: 350000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 12 Attack: [2040, 2720] Def: 44 Mdef: 66 Stats: { Str: 1 Agi: 35 Vit: 33 Int: 180 Dex: 125 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 MvpExp: 0 }, { Id: 1960 SpriteName: "G_ENTWEIHEN_M" Name: "Thorn of Magic" Lv: 89 Hp: 5400000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 12 Attack: [2040, 2720] Def: 44 Mdef: 66 Stats: { Str: 1 Agi: 35 Vit: 33 Int: 180 Dex: 125 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 MvpExp: 0 }, { Id: 1961 SpriteName: "G_ENTWEIHEN_S" Name: "Thorn of Purification" Lv: 89 Hp: 5400000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 12 Attack: [2040, 2720] Def: 44 Mdef: 66 Stats: { Str: 1 Agi: 35 Vit: 33 Int: 180 Dex: 125 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 MvpExp: 0 }, // Additional Monsters { Id: 1962 SpriteName: "ANTONIO_" Name: "Christmas Thief" Lv: 10 Hp: 15 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [13, 20] Def: 100 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 MvpExp: 0 }, { Id: 1963 SpriteName: "P_CHUNG_E" Name: "New Year Doll" Lv: 49 Hp: 23900 Sp: 0 Exp: 2396 JExp: 993 AttackRange: 1 Attack: [460, 1050] 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 MvpExp: 0 }, { Id: 1964 SpriteName: "NIGHTMARE_T" Name: "Nightmare" Lv: 30 Hp: 2000 Sp: 0 Exp: 512 JExp: 387 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 MvpExp: 0 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, 145] 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 MvpExp: 0 }, { Id: 1966 SpriteName: "M_DOPPELGANGER" Name: "Doppelganger" Lv: 72 Hp: 7800 Sp: 200 Exp: 0 JExp: 0 AttackRange: 1 Attack: [200, 250] Def: 30 Mdef: 20 Stats: { Str: 0 Agi: 38 Vit: 30 Int: 35 Dex: 65 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 MvpExp: 0 }, { Id: 1967 SpriteName: "M_YGNIZEM" Name: "Ygnizem" JName: "Egnigem Cenia" Lv: 79 Hp: 7800 Sp: 200 Exp: 0 JExp: 0 AttackRange: 1 Attack: [200, 250] Def: 30 Mdef: 20 Stats: { Str: 0 Agi: 38 Vit: 30 Int: 35 Dex: 65 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 MvpExp: 0 }, { Id: 1968 SpriteName: "E_STROUF" Name: "Strouf" Lv: 48 Hp: 11990 Sp: 0 Exp: 6160 JExp: 4196 AttackRange: 1 Attack: [200, 1250] Def: 5 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 MvpExp: 0 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: 1976 JExp: 1250 AttackRange: 1 Attack: [220, 280] Def: 5 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 MvpExp: 0 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: 1288 JExp: 814 AttackRange: 1 Attack: [141, 165] 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 MvpExp: 0 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: 1017 Sp: 0 Exp: 270 JExp: 170 AttackRange: 1 Attack: [74, 85] Def: 20 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 MvpExp: 0 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: 436 JExp: 280 AttackRange: 1 Attack: [84, 106] 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 MvpExp: 0 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: 1 Hp: 50 Sp: 0 Exp: 2 JExp: 1 AttackRange: 1 Attack: [7, 10] 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 MvpExp: 0 Drops: { Jellopy: 7000 Sticky_Mucus: 400 Apple: 1000 Empty_Bottle: 1500 Water_Of_Blessing: 3000 } }, // WoE SE Guild Dungeon { Id: 1974 SpriteName: "BANSHEE_MASTER" Name: "Banshee Master" Lv: 84 Hp: 47222 Sp: 0 Exp: 30000 JExp: 24000 AttackRange: 2 Attack: [2666, 3609] Def: 20 Mdef: 40 Stats: { Str: 30 Agi: 74 Vit: 1 Int: 180 Dex: 105 Luk: 1 } 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 MvpExp: 0 Drops: { Brigan: 5335 Old_White_Cloth: 3000 Orleans_Gown: 10 Cursed_Star: 2 Wool_Scarf: 10 Mementos: 1500 Shadow_Guard: 20 Banshee_Master_Card: 1 } }, { Id: 1975 SpriteName: "BEHOLDER_MASTER" Name: "Beholder Master" Lv: 70 Hp: 24150 Sp: 0 Exp: 9000 JExp: 11400 AttackRange: 6 Attack: [1723, 2300] Def: 17 Mdef: 30 Stats: { Str: 60 Agi: 62 Vit: 25 Int: 89 Dex: 85 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 MvpExp: 0 Drops: { Prickly_Fruit: 3000 Anodyne: 100 Rough_Wind: 100 Elunium: 10 Chameleon_Armor: 10 Old_Blue_Box: 2 Linen_Glove: 2 } }, { Id: 1976 SpriteName: "COBALT_MINERAL" Name: "Cobalt Mineral" Lv: 72 Hp: 29665 Sp: 0 Exp: 12332 JExp: 10379 AttackRange: 1 Attack: [1446, 2979] Def: 40 Mdef: 30 Stats: { Str: 60 Agi: 77 Vit: 35 Int: 57 Dex: 77 Luk: 32 } 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 MvpExp: 0 Drops: { Fragment_Of_Crystal: 3000 Golden_Jewel: 500 Elemental_Sword: 5 Oridecon: 80 Emveretarcon: 800 Yellow_Gemstone: 100 Gold: 2 Emperium: 2 } }, { Id: 1977 SpriteName: "HEAVY_METALING" Name: "Heavy Metaling" Lv: 73 Hp: 28433 Sp: 0 Exp: 9320 JExp: 8831 AttackRange: 1 Attack: [1350, 1700] Def: 40 Mdef: 30 Stats: { Str: 30 Agi: 65 Vit: 28 Int: 40 Dex: 77 Luk: 2 } 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 MvpExp: 0 Drops: { Tube: 4000 Iron_Ore: 1000 Iron: 500 Large_Jellopy: 1000 Screw: 200 Dagger_Of_Hunter: 5 Jubilee: 5000 } }, { Id: 1978 SpriteName: "HELL_APOCALIPS" Name: "Hell Apocalips" JName: "Hell Vesper" Lv: 86 Hp: 65433 Sp: 0 Exp: 46666 JExp: 32000 AttackRange: 2 Attack: [5733, 6073] Def: 62 Mdef: 23 Stats: { Str: 1 Agi: 48 Vit: 30 Int: 98 Dex: 110 Luk: 85 } 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 MvpExp: 0 Drops: { Broken_Steel_Piece: 5335 Steel: 2500 Mystery_Piece: 2400 Wheel: 2200 Manteau_: 20 Elunium: 5 Life_Link: 1 Cardo: 1 } }, { Id: 1979 SpriteName: "ZAKUDAM" Name: "Zukadam" JName: "Zakudam" Lv: 82 Hp: 43699 Sp: 0 Exp: 27213 JExp: 16300 AttackRange: 3 Attack: [2000, 3227] Def: 30 Mdef: 30 Stats: { Str: 65 Agi: 65 Vit: 35 Int: 75 Dex: 80 Luk: 15 } 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 MvpExp: 0 Drops: { Screw: 5000 Steel: 500 Oridecon: 200 Elunium: 200 Gate_Keeper: 5 Gate_KeeperDD: 5 Improved_Tights: 10 } }, { Id: 1980 SpriteName: "KUBLIN" Name: "Kubkin" JName: "Kublin" Lv: 85 Hp: 1176000 Sp: 0 Exp: 100000 JExp: 100000 AttackRange: 1 Attack: [1180, 1400] Def: 20 Mdef: 10 Stats: { Str: 1 Agi: 106 Vit: 25 Int: 40 Dex: 72 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: 100000 MvpDrops: { Pickaxe: 10000 } Drops: { Iron: 270 Scell: 9000 Oridecon_Stone: 43 Goblini_Mask: 3 Red_Herb: 1800 } }, // Orc Dungeon Instance { Id: 1981 SpriteName: "I_HIGH_ORC" Name: "Safeguard Chief" JName: "Orc Elite Guard" Lv: 88 Hp: 111111 Sp: 0 Exp: 3618 JExp: 1639 AttackRange: 1 Attack: [428, 533] Def: 15 Mdef: 5 Stats: { Str: 55 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: 150 AttackDelay: 1500 AttackMotion: 500 DamageMotion: 1000 MvpExp: 0 }, { Id: 1982 SpriteName: "I_ORC_ARCHER" Name: "Orc Sniper" JName: "Orc Bowman" Lv: 85 Hp: 62000 Sp: 0 Exp: 1729 JExp: 1787 AttackRange: 9 Attack: [1310, 1390] Def: 10 Mdef: 5 Stats: { Str: 1 Agi: 44 Vit: 25 Int: 20 Dex: 125 Luk: 20 } 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 MvpExp: 0 }, { Id: 1983 SpriteName: "I_ORC_SKELETON" Name: "Depraved Orc Spirit" JName: "Orc Undead" Lv: 87 Hp: 80087 Sp: 0 Exp: 4501 JExp: 67 AttackRange: 1 Attack: [896, 1159] Def: 14 Mdef: 30 Stats: { Str: 1 Agi: 31 Vit: 41 Int: 93 Dex: 67 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 MvpExp: 0 }, { Id: 1984 SpriteName: "I_ORC_LADY" Name: "Shaman Cargalache" JName: "Orc Lady" Lv: 58 Hp: 50058 Sp: 0 Exp: 4870 JExp: 98 AttackRange: 1 Attack: [823, 1212] Def: 35 Mdef: 10 Stats: { Str: 60 Agi: 35 Vit: 52 Int: 18 Dex: 79 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 MvpExp: 0 }, // Another World (13.1) { Id: 1985 SpriteName: "DANDELION" Name: "Dandelion Member" Lv: 37 Hp: 5176 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [305, 360] 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 MvpExp: 0 }, { Id: 1986 SpriteName: "TATACHO" Name: "Tatacho" Lv: 106 Hp: 39500 Sp: 0 Exp: 23700 JExp: 13825 AttackRange: 2 Attack: [10000, 11000] Def: 20 Mdef: 17 Stats: { Str: 106 Agi: 40 Vit: 30 Int: 25 Dex: 115 Luk: 6 } 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: 150 AttackDelay: 1000 AttackMotion: 768 DamageMotion: 360 MvpExp: 0 Drops: { Lunakaligo: 20 Cello: 10 Fur: 4000 Peaked_Hat: 3000 Delicious_Fish: 3100 Sweet_Potato: 3000 Tatacho_Card: 1 } }, { Id: 1987 SpriteName: "CENTIPEDE" Name: "Centipede" Lv: 110 Hp: 45662 Sp: 0 Exp: 27397 JExp: 15982 AttackRange: 2 Attack: [15000, 16000] Def: 40 Mdef: 25 Stats: { Str: 112 Agi: 43 Vit: 30 Int: 5 Dex: 131 Luk: 12 } 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 MvpExp: 0 Drops: { Cold_Heart: 2 Black_Cat: 2 Cursed_Lyre: 10 Short_Leg: 5335 Zargon: 5000 Worm_Peelings: 9000 Solid_Shell: 2500 Centipede_Card: 1 } }, { Id: 1988 SpriteName: "NEPENTHES" Name: "Nepenthes" Lv: 75 Hp: 10350 Sp: 0 Exp: 5175 JExp: 2587 AttackRange: 7 Attack: [415, 565] Def: 25 Mdef: 10 Stats: { Str: 75 Agi: 20 Vit: 30 Int: 5 Dex: 65 Luk: 5 } 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 MvpExp: 0 Drops: { Mandragora_Cap: 1 Stem_Of_Nepenthes: 1 Harp_Of_Nepenthes: 1 Nepenthes_Bow: 1 Strong_Bine: 3000 Yellow_Live: 50 Stem: 9000 } }, { Id: 1989 SpriteName: "HILLSRION" Name: "Hillslion" Lv: 105 Hp: 34600 Sp: 0 Exp: 20760 JExp: 12110 AttackRange: 1 Attack: [5000, 5500] Def: 28 Mdef: 15 Stats: { Str: 105 Agi: 60 Vit: 30 Int: 15 Dex: 115 Luk: 5 } 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 MvpExp: 0 Drops: { Sprint_Shoes: 10 Horn_Of_Hilthrion: 20 Horn_Of_Hilsrion: 3000 Fur: 2000 Wild_Beast_Claw: 10 Soft_Feather: 120 Brigan: 4850 Hilsrion_Card: 1 } }, { Id: 1990 SpriteName: "HARDROCK_MOMMOTH" Name: "Hardrock Mammoth" Lv: 115 Hp: 4137000 Sp: 0 Exp: 827400 JExp: 413700 AttackRange: 2 Attack: [30000, 36000] Def: 50 Mdef: 60 Stats: { Str: 115 Agi: 35 Vit: 1 Int: 30 Dex: 150 Luk: 15 } 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 MvpExp: 0 Drops: { Bone_Head: 100 Tournament_Shield: 200 Ivory_Lance: 500 Ivory_Knife: 400 Hard_Skin: 9000 Snowy_Horn: 20 Elunium: 9000 } }, { Id: 1991 SpriteName: "TENDRILRION" Name: "Tendrillion" Lv: 113 Hp: 3657330 Sp: 0 Exp: 731466 JExp: 365733 AttackRange: 2 Attack: [20000, 24000] Def: 33 Mdef: 30 Stats: { Str: 113 Agi: 60 Vit: 1 Int: 45 Dex: 147 Luk: 13 } 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 MvpExp: 0 Drops: { Leather_Of_Tendrilion: 500 Death_Guidance: 100 Eraser: 100 Horn_Of_Tendrilion: 9000 Fur: 4000 Tough_Vines: 5335 Stiff_Horn: 4850 } }, { Id: 1992 SpriteName: "CORNUS" Name: "Cornus" Lv: 108 Hp: 41220 Sp: 0 Exp: 30854 JExp: 4427 AttackRange: 2 Attack: [12000, 13000] Def: 35 Mdef: 80 Stats: { Str: 110 Agi: 45 Vit: 80 Int: 200 Dex: 105 Luk: 10 } 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 MvpExp: 0 Drops: { Sprint_Mail: 10 Angelic_Ring: 1 Mystic_Horn: 4000 Soft_Feather: 3000 Horseshoe: 6000 Snowy_Horn: 2 Long_Horn: 1 Cornus_Card: 1 } }, { Id: 1993 SpriteName: "NAGA" Name: "Naga" Lv: 111 Hp: 46708 Sp: 0 Exp: 30360 JExp: 16348 AttackRange: 3 Attack: [8000, 8800] Def: 38 Mdef: 15 Stats: { Str: 113 Agi: 42 Vit: 30 Int: 108 Dex: 122 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 MvpExp: 0 Drops: { Armor_Of_Naga: 10 Shield_Of_Naga: 10 Battle_Fork: 10 Scale_Of_Snakes: 5000 Scales_Shell: 3500 Shining_Scales: 2000 Pike_: 20 } }, { Id: 1994 SpriteName: "LUCIOLA_VESPA" Name: "Luciola Vespa" Lv: 104 Hp: 32600 Sp: 0 Exp: 16300 JExp: 11410 AttackRange: 1 Attack: [9000, 9900] Def: 29 Mdef: 5 Stats: { Str: 104 Agi: 56 Vit: 30 Int: 20 Dex: 116 Luk: 4 } 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 MvpExp: 0 Drops: { Sprint_Ring: 2 Worm_Peelings: 9000 Bee_Sting: 9000 Honey: 300 Wind_Of_Verdure: 160 Royal_Jelly: 200 Solid_Shell: 3000 Luciola_Vespa_Card: 1 } }, { Id: 1995 SpriteName: "PINGUICULA" Name: "Pinguicula" Lv: 80 Hp: 13680 Sp: 0 Exp: 6840 JExp: 3420 AttackRange: 1 Attack: [600, 720] Def: 25 Mdef: 5 Stats: { Str: 102 Agi: 23 Vit: 30 Int: 10 Dex: 86 Luk: 2 } 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: 150 AttackDelay: 700 AttackMotion: 600 DamageMotion: 360 MvpExp: 0 Drops: { Pinguicula_Corsage: 1 Whip_Of_Balance: 10 Centimental_Leaf: 10 Sharp_Leaf: 5000 Great_Leaf: 2000 Browny_Root: 3000 Flower: 1000 } }, /*{ Id: 1996 SpriteName: "BACSOJIN_T" Name: "Bacsojin" Lv: 85 Hp: 253221 Sp: 0 Exp: 45250 JExp: 16445 AttackRange: 3 Attack: [1868, 6124] Def: 20 Mdef: 55 Stats: { Str: 52 Agi: 65 Vit: 44 Int: 112 Dex: 152 Luk: 35 } 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 MvpExp: 0 Drops: { White_Snake_Hat: 500 Exorcize_Sachet: 80 Purification_Sachet: 80 } },*/ { Id: 1997 SpriteName: "G_TATACHO" Name: "Tatacho" Lv: 106 Hp: 39500 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [10000, 11000] Def: 20 Mdef: 17 Stats: { Str: 106 Agi: 40 Vit: 30 Int: 25 Dex: 115 Luk: 6 } 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: 150 AttackDelay: 1000 AttackMotion: 768 DamageMotion: 360 MvpExp: 0 }, { Id: 1998 SpriteName: "G_HILLSRION" Name: "Hillslion" Lv: 105 Hp: 34600 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [5000, 5500] Def: 28 Mdef: 15 Stats: { Str: 105 Agi: 60 Vit: 30 Int: 15 Dex: 115 Luk: 5 } 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 MvpExp: 0 }, { Id: 1999 SpriteName: "CENTIPEDE_LARVA" Name: "Centipede Larva" Lv: 80 Hp: 12000 Sp: 0 Exp: 3600 JExp: 4800 AttackRange: 2 Attack: [948, 1115] Def: 20 Mdef: 20 Stats: { Str: 80 Agi: 33 Vit: 15 Int: 3 Dex: 75 Luk: 10 } 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 MvpExp: 0 Drops: { Boots_: 9 Crystal_Jewel__: 50 Short_Leg: 5335 Zargon: 5000 Worm_Peelings: 9000 Solid_Shell: 2500 Centipede_Larva_Card: 1 } }, /*{ Id: 2000 SpriteName: "M_GAMEMASTER" Name: "Male Game Master" Lv: 50 Hp: 7000 Sp: 250 Exp: 0 JExp: 0 AttackRange: 1 Attack: [25, 25] 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: { Boss: true Detector: true } MoveSpeed: 200 AttackDelay: 300 AttackMotion: 384 DamageMotion: 288 MvpExp: 0 }, { Id: 2001 SpriteName: "F_GAMEMASTER" Name: "Female Game Master" Lv: 50 Hp: 7000 Sp: 250 Exp: 0 JExp: 0 AttackRange: 1 Attack: [25, 25] 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: { Boss: true Detector: true } MoveSpeed: 200 AttackDelay: 300 AttackMotion: 384 DamageMotion: 288 MvpExp: 0 }, { Id: 2002 SpriteName: "T_SPRING_RABBIT" Name: "Spring Rabbit" Lv: 50 Hp: 8000 Sp: 0 Exp: 3982 JExp: 1766 AttackRange: 1 Attack: [585, 813] Def: 29 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: { Boss: true Detector: true } MoveSpeed: 160 AttackDelay: 1120 AttackMotion: 552 DamageMotion: 511 MvpExp: 0 Drops: { Moon_Cake: 1000 Plantain: 500 Rabbit_Skin: 1500 } }, { Id: 2003 SpriteName: "T_BACSOJIN" Name: "White Lady" Lv: 72 Hp: 56380 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [560, 1446] Def: 10 Mdef: 15 Stats: { Str: 38 Agi: 65 Vit: 34 Int: 80 Dex: 102 Luk: 35 } 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 MvpExp: 0 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: "Evil Nymph" Lv: 63 Hp: 16029 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [399, 1090] Def: 12 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 MvpExp: 0 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, 700] 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: { Boss: true Detector: true } MoveSpeed: 150 AttackDelay: 608 AttackMotion: 1440 DamageMotion: 576 MvpExp: 0 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, 700] 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: { Boss: true Detector: true } MoveSpeed: 150 AttackDelay: 608 AttackMotion: 1440 DamageMotion: 576 MvpExp: 0 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, 700] 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: { Boss: true Detector: true } MoveSpeed: 150 AttackDelay: 608 AttackMotion: 1440 DamageMotion: 576 MvpExp: 0 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: 100000 JExp: 100000 AttackRange: 3 Attack: [8000, 10000] Def: 40 Mdef: 40 Stats: { Str: 60 Agi: 110 Vit: 200 Int: 250 Dex: 166 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 MvpExp: 0 }, { Id: 2009 SpriteName: "WOOMAWANG_" Name: "Woomawang" Lv: 82 Hp: 2000000 Sp: 0 Exp: 100000 JExp: 100000 AttackRange: 1 Attack: [16000, 20000] Def: 40 Mdef: 40 Stats: { Str: 60 Agi: 110 Vit: 200 Int: 250 Dex: 166 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 MvpExp: 0 Drops: { Cowkings_Nose_Ring: 10000 } }, { Id: 2010 SpriteName: "G_MAJORUROS" Name: "Ox" Lv: 66 Hp: 500000 Sp: 0 Exp: 10 JExp: 10 AttackRange: 1 Attack: [1200, 3200] Def: 25 Mdef: 15 Stats: { Str: 65 Agi: 50 Vit: 20 Int: 20 Dex: 85 Luk: 48 } ViewRange: 10 ChaseRange: 12 Size: "Size_Large" Race: "RC_Demon" Element: ("Ele_Ghost", 1) Mode: { Boss: true Detector: true } MoveSpeed: 250 AttackDelay: 1100 AttackMotion: 960 DamageMotion: 780 MvpExp: 0 }, /*{ Id: 2011 SpriteName: "E_GHOUL" Name: "Ghoul" Lv: 40 Hp: 99999 Sp: 0 Exp: 1088 JExp: 622 AttackRange: 1 Attack: [2100, 2500] Def: 100 Mdef: 20 Stats: { Str: 1 Agi: 20 Vit: 29 Int: 0 Dex: 180 Luk: 20 } ViewRange: 10 ChaseRange: 12 Size: "Size_Medium" Race: "RC_Undead" Element: ("Ele_Undead", 2) Mode: { Boss: true Detector: true } MoveSpeed: 100 AttackDelay: 2456 AttackMotion: 912 DamageMotion: 504 MvpExp: 0 }, { Id: 2012 SpriteName: "E_ZOMBIE" Name: "Zombie" Lv: 15 Hp: 99999 Sp: 0 Exp: 50 JExp: 33 AttackRange: 1 Attack: [335, 395] Def: 100 Mdef: 10 Stats: { Str: 1 Agi: 8 Vit: 7 Int: 0 Dex: 60 Luk: 0 } ViewRange: 10 ChaseRange: 12 Size: "Size_Medium" Race: "RC_Undead" Element: ("Ele_Undead", 1) Mode: { Boss: true Detector: true } MoveSpeed: 150 AttackDelay: 2612 AttackMotion: 912 DamageMotion: 288 MvpExp: 0 },*/ // Another World (13.2) { Id: 2013 SpriteName: "DRACO" Name: "Draco" Lv: 82 Hp: 18300 Sp: 0 Exp: 6100 JExp: 4100 AttackRange: 1 Attack: [410, 710] Def: 10 Mdef: 5 Stats: { Str: 1 Agi: 23 Vit: 30 Int: 34 Dex: 62 Luk: 2 } 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 MvpExp: 0 Drops: { Dragons_Mane: 3000 Dragons_Skin: 100 Dragon_Canine: 100 Dragon_Train: 1000 Dragon_Scale: 1000 Honey: 500 Draco_Card: 1 } }, { Id: 2014 SpriteName: "DRACO_EGG" Name: "Draco Egg" Lv: 67 Hp: 9822 Sp: 0 Exp: 1200 JExp: 1600 AttackRange: 0 Attack: [1, 2] Def: 56 Mdef: 40 Stats: { Str: 1 Agi: 1 Vit: 56 Int: 34 Dex: 1 Luk: 63 } ViewRange: 10 ChaseRange: 12 Size: "Size_Medium" Race: "RC_Dragon" Element: ("Ele_Earth", 4) MoveSpeed: 1000 AttackDelay: 24 AttackMotion: 0 DamageMotion: 0 MvpExp: 0 Drops: { Piece_Of_Egg_Shell: 5000 Egg_Shell: 20 } }, { Id: 2015 SpriteName: "PINGUICULA_D" Name: "Dark Pinguicula" Lv: 83 Hp: 8780 Sp: 0 Exp: 7740 JExp: 5200 AttackRange: 1 Attack: [600, 1450] Def: 15 Mdef: 5 Stats: { Str: 1 Agi: 23 Vit: 22 Int: 12 Dex: 89 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 MvpExp: 0 Drops: { Sharp_Leaf: 5000 Great_Leaf: 2000 Browny_Root: 3000 Karvodailnirol: 10 Withered_Flower: 1000 } }, { Id: 2016 SpriteName: "AQUA_ELEMENTAL" Name: "Aqua Elemental" Lv: 83 Hp: 33220 Sp: 0 Exp: 5430 JExp: 15300 AttackRange: 1 Attack: [400, 1600] Def: 8 Mdef: 12 Stats: { Str: 1 Agi: 23 Vit: 19 Int: 87 Dex: 77 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 MvpExp: 0 Drops: { Crystalized_Teardrop: 1000 Fluorescent_Liquid: 5000 Tiny_Waterbottle: 100 Aqua_Elemental_Card: 1 } }, { Id: 2017 SpriteName: "RATA" Name: "Rata" Lv: 107 Hp: 216600 Sp: 0 Exp: 70012 JExp: 34000 AttackRange: 1 Attack: [8000, 15000] Def: 32 Mdef: 52 Stats: { Str: 1 Agi: 51 Vit: 22 Int: 132 Dex: 99 Luk: 15 } 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 MvpExp: 0 Drops: { Unripe_Acorn: 5000 Acorn: 5000 Piece_Of_Darkness: 500 Veteran_Hammer: 100 } }, { Id: 2018 SpriteName: "DUNEYRR" Name: "Duneyrr" Lv: 107 Hp: 265100 Sp: 0 Exp: 83030 JExp: 52000 AttackRange: 1 Attack: [16000, 19000] Def: 39 Mdef: 35 Stats: { Str: 1 Agi: 60 Vit: 45 Int: 89 Dex: 105 Luk: 15 } 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 MvpExp: 0 Drops: { Carrot: 5000 Fur: 4000 Piece_Of_Darkness: 500 Eyes_Stone_Ring: 1 Veteran_Sword: 10 Veteran_Axe: 100 } }, { Id: 2019 SpriteName: "ANCIENT_TREE" Name: "Ancient Tree" Lv: 102 Hp: 30030 Sp: 0 Exp: 11020 JExp: 8900 AttackRange: 1 Attack: [13200, 17400] Def: 39 Mdef: 43 Stats: { Str: 1 Agi: 30 Vit: 73 Int: 58 Dex: 45 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 MvpExp: 0 Drops: { Tough_Vines: 1000 Great_Leaf: 1000 Log: 5000 Dead_Tree_Cane: 10 Vital_Tree_Shoes: 30 } }, { Id: 2020 SpriteName: "RHYNCHO" Name: "Rhyncho" Lv: 85 Hp: 18900 Sp: 0 Exp: 2040 JExp: 6000 AttackRange: 1 Attack: [350, 2300] Def: 5 Mdef: 19 Stats: { Str: 1 Agi: 56 Vit: 12 Int: 35 Dex: 89 Luk: 10 } 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 MvpExp: 0 Drops: { Fluorescent_Liquid: 5000 Karvodailnirol: 5 Crystal_Of_Soul_01: 500 } }, { Id: 2021 SpriteName: "PHYLLA" Name: "Phylla" Lv: 85 Hp: 23880 Sp: 0 Exp: 3040 JExp: 6600 AttackRange: 10 Attack: [350, 2550] Def: 8 Mdef: 22 Stats: { Str: 1 Agi: 59 Vit: 15 Int: 25 Dex: 99 Luk: 10 } 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 MvpExp: 0 Drops: { Fluorescent_Liquid: 5000 Detrimindexta: 5 Crystal_Of_Soul_02: 500 } }, { Id: 2022 SpriteName: "S_NYDHOG" Name: "Nidhoggr's Shadow" JName: "Nidhoggur's Shadow" Lv: 117 Hp: 3450000 Sp: 0 Exp: 4800000 JExp: 3900000 AttackRange: 2 Attack: [17000, 49000] Def: 60 Mdef: 75 Stats: { Str: 1 Agi: 34 Vit: 62 Int: 236 Dex: 188 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: 2400000 Drops: { Dark_Red_Scale: 5000 Treasure_Box: 5000 Gold_Ring: 5000 Cardo: 500 Katzbalger: 500 Pole_Axe: 500 Piece_Of_Angent_Skin: 2000 } }, { Id: 2023 SpriteName: "DARK_SHADOW" Name: "Dark Shadow" Lv: 114 Hp: 42900 Sp: 0 Exp: 21000 JExp: 14000 AttackRange: 1 Attack: [10000, 15000] Def: 35 Mdef: 44 Stats: { Str: 1 Agi: 23 Vit: 12 Int: 145 Dex: 102 Luk: 60 } 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 MvpExp: 0 Drops: { Piece_Of_Black_Cloth: 5000 Skul_Ring: 1000 Dagger_Of_Hunter: 5 Piece_Of_Darkness: 1000 Eyes_Stone_Ring: 5 Bradium_Stonehammer: 10 Dark_Shadow_Card: 1 } }, { Id: 2024 SpriteName: "BRADIUM_GOLEM" Name: "Bradium Golem" Lv: 101 Hp: 45200 Sp: 0 Exp: 14000 JExp: 18920 AttackRange: 1 Attack: [12000, 13000] Def: 78 Mdef: 22 Stats: { Str: 0 Agi: 10 Vit: 82 Int: 25 Dex: 60 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 MvpExp: 0 Drops: { Stone_Piece: 3000 Stone_Heart: 5000 Purified_Bradium: 500 Bradium_Shield: 10 } }, /*{ Id: 2025 SpriteName: "MYSTCASE_EVENT" Name: "Mystcase" Lv: 10 Hp: 15 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [160, 360] Def: 99 Mdef: 99 Stats: { Str: 65 Agi: 50 Vit: 25 Int: 5 Dex: 48 Luk: 75 } ViewRange: 10 ChaseRange: 12 Size: "Size_Medium" Race: "RC_Formless" Element: ("Ele_Neutral", 1) Mode: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1248 AttackMotion: 1248 DamageMotion: 432 MvpExp: 0 Drops: { Fire_Cracker_Xmas: 5000 Fire_Cracker_Love: 5000 Xmas_Gift: 50 Singing_Crystal_Piece: 2000 Packing_Paper: 2000 Packing_Ribbon: 2000 Candy: 3000 Candy_Striper: 3000 } },*/ { Id: 2026 SpriteName: "DANDELION_" Name: "Runaway Dandelion Member" Lv: 90 Hp: 552000 Sp: 0 Exp: 50000 JExp: 25000 AttackRange: 1 Attack: [3050, 4300] Def: 25 Mdef: 35 Stats: { Str: 1 Agi: 66 Vit: 66 Int: 45 Dex: 88 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 MvpExp: 0 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: 114 Hp: 42900 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [10000, 15000] Def: 35 Mdef: 44 Stats: { Str: 1 Agi: 23 Vit: 12 Int: 145 Dex: 102 Luk: 60 } 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 MvpExp: 0 }, /*{ Id: 2028 SpriteName: "E_MINOROUS" Name: "Minorous" Lv: 1 Hp: 741 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [30, 48] Def: 2 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 MvpExp: 0 Drops: { Coin: 5000 } }, { Id: 2029 SpriteName: "E_MINOROUS_" Name: "Minorous" Lv: 10 Hp: 15 Sp: 0 Exp: 10 JExp: 0 AttackRange: 1 Attack: [100, 150] Def: 100 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 MvpExp: 0 Drops: { Nose_Ring: 10 Fore_Flank_Sirloin: 2000 Fore_Flank_Sirloin: 4000 Fore_Flank_Sirloin: 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: 240000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [1300, 1983] Def: 0 Mdef: 30 Stats: { Str: 1 Agi: 32 Vit: 40 Int: 100 Dex: 82 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 MvpExp: 0 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: [305, 610] Def: 0 Mdef: 10 Stats: { Str: 1 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 Boss: true CanAttack: true Detector: true CastSensorChase: true ChangeChase: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 250 AttackDelay: 1772 AttackMotion: 72 DamageMotion: 384 MvpExp: 0 Drops: { Popes_Cookie: 5000 } }, /*{ Id: 2032 SpriteName: "GUARDIAN_FOREST" Name: "Forest Guardian" Lv: 50 Hp: 8578 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [1000, 1103] Def: 15 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: { Boss: true Detector: true } MoveSpeed: 100 AttackDelay: 868 AttackMotion: 480 DamageMotion: 120 MvpExp: 0 }, { Id: 2033 SpriteName: "GOLDEN_TULIP" Name: "Golden Tulip" Lv: 1 Hp: 299 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_Earth", 1) Mode: { Boss: true Detector: true } MoveSpeed: 2000 AttackDelay: 1 AttackMotion: 1 DamageMotion: 1 MvpExp: 0 Drops: { Token_Bag: 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, 600] 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: { Boss: true Detector: true } MoveSpeed: 100 AttackDelay: 1600 AttackMotion: 900 DamageMotion: 240 MvpExp: 0 }, { Id: 2035 SpriteName: "NIHILITY_ZEM" Name: "Nihility Zem" JName: "Stone of Futility" Lv: 90 Hp: 200000 Sp: 0 Exp: 0 JExp: 0 AttackRange: 0 Attack: [1, 2] 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: { Boss: true Detector: true } MoveSpeed: 1000 AttackDelay: 1001 AttackMotion: 1 DamageMotion: 1 MvpExp: 0 }, { Id: 2036 SpriteName: "VALKYRIE_N" Name: "Valkyrie Randgris" JName: "Valkyrie" Lv: 53 Hp: 11280 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [780, 930] Def: 10 Mdef: 20 Stats: { Str: 1 Agi: 24 Vit: 39 Int: 0 Dex: 72 Luk: 25 } ViewRange: 10 ChaseRange: 12 Size: "Size_Medium" Race: "RC_Undead" Element: ("Ele_Undead", 3) Mode: { Boss: true Detector: true } MoveSpeed: 170 AttackDelay: 576 AttackMotion: 576 DamageMotion: 480 MvpExp: 0 Drops: { Broken_Horn_Pipe: 10000 } }, { Id: 2037 SpriteName: "VALKYRIE_A" Name: "Valkyrie Randgris" Lv: 90 Hp: 5000 Sp: 15 Exp: 0 JExp: 0 AttackRange: 1 Attack: [10, 160] Def: 10 Mdef: 20 Stats: { Str: 1 Agi: 20 Vit: 40 Int: 0 Dex: 20 Luk: 20 } ViewRange: 10 ChaseRange: 12 Size: "Size_Medium" Race: "RC_Angel" Element: ("Ele_Holy", 3) Mode: { Boss: true Detector: true } MoveSpeed: 100 AttackDelay: 576 AttackMotion: 576 DamageMotion: 480 MvpExp: 0 }, { Id: 2038 SpriteName: "VALKYRIE_B" Name: "Valkyrie Randgris" Lv: 90 Hp: 10000 Sp: 15 Exp: 0 JExp: 0 AttackRange: 1 Attack: [300, 450] Def: 10 Mdef: 40 Stats: { Str: 1 Agi: 20 Vit: 80 Int: 0 Dex: 80 Luk: 20 } ViewRange: 10 ChaseRange: 12 Size: "Size_Medium" Race: "RC_Angel" Element: ("Ele_Holy", 3) Mode: { Boss: true Detector: true } MoveSpeed: 100 AttackDelay: 576 AttackMotion: 576 DamageMotion: 480 MvpExp: 0 }, { Id: 2039 SpriteName: "EXECUTIONER_R" Name: "Executioner" Lv: 65 Hp: 28980 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [570, 950] Def: 35 Mdef: 35 Stats: { Str: 64 Agi: 85 Vit: 40 Int: 25 Dex: 88 Luk: 60 } ViewRange: 10 ChaseRange: 12 Size: "Size_Large" Race: "RC_Formless" Element: ("Ele_Dark", 2) Mode: { Boss: true Detector: true } MoveSpeed: 200 AttackDelay: 768 AttackMotion: 500 DamageMotion: 384 MvpExp: 0 }, { Id: 2040 SpriteName: "TIRFING_R" Name: "Tirfing" JName: "Ogretooth" Lv: 71 Hp: 29900 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [950, 1146] Def: 30 Mdef: 35 Stats: { Str: 58 Agi: 87 Vit: 55 Int: 35 Dex: 132 Luk: 65 } ViewRange: 10 ChaseRange: 12 Size: "Size_Medium" Race: "RC_Formless" Element: ("Ele_Dark", 3) Mode: { Boss: true Detector: true } MoveSpeed: 100 AttackDelay: 816 AttackMotion: 500 DamageMotion: 240 MvpExp: 0 }, { Id: 2041 SpriteName: "MYSTELTAINN_R" Name: "Mysteltainn" Lv: 76 Hp: 33350 Sp: 0 Exp: 0 JExp: 0 AttackRange: 2 Attack: [1160, 1440] Def: 30 Mdef: 30 Stats: { Str: 77 Agi: 139 Vit: 80 Int: 35 Dex: 159 Luk: 65 } ViewRange: 10 ChaseRange: 12 Size: "Size_Large" Race: "RC_Formless" Element: ("Ele_Dark", 4) Mode: { Boss: true Detector: true } MoveSpeed: 250 AttackDelay: 1152 AttackMotion: 500 DamageMotion: 240 MvpExp: 0 },*/ // NC Mechanic Summons { Id: 2042 SpriteName: "SILVERSNIPER" Name: "Silver Sniper" Lv: 100 Hp: 4500 Sp: 0 Exp: 0 JExp: 0 AttackRange: 9 Attack: [300, 300] Def: 80 Mdef: 10 Stats: { Str: 10 Agi: 60 Vit: 10 Int: 10 Dex: 100 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 MvpExp: 0 Drops: { Steel: 1000 } }, { Id: 2043 SpriteName: "MAGICDECOY_FIRE" Name: "Magic Decoy" Lv: 100 Hp: 2500 Sp: 0 Exp: 0 JExp: 0 AttackRange: 7 Attack: [150, 150] Def: 16 Mdef: 60 Stats: { Str: 10 Agi: 10 Vit: 10 Int: 100 Dex: 50 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 MvpExp: 0 Drops: { Steel: 1000 } }, { Id: 2044 SpriteName: "MAGICDECOY_WATER" Name: "Magic Decoy" Lv: 100 Hp: 2500 Sp: 0 Exp: 0 JExp: 0 AttackRange: 7 Attack: [150, 150] Def: 16 Mdef: 60 Stats: { Str: 10 Agi: 10 Vit: 10 Int: 100 Dex: 50 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 MvpExp: 0 Drops: { Steel: 1000 } }, { Id: 2045 SpriteName: "MAGICDECOY_EARTH" Name: "Magic Decoy" Lv: 100 Hp: 2500 Sp: 0 Exp: 0 JExp: 0 AttackRange: 7 Attack: [150, 150] Def: 16 Mdef: 60 Stats: { Str: 10 Agi: 10 Vit: 10 Int: 100 Dex: 50 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 MvpExp: 0 Drops: { Steel: 1000 } }, { Id: 2046 SpriteName: "MAGICDECOY_WIND" Name: "Magic Decoy" Lv: 100 Hp: 2500 Sp: 0 Exp: 0 JExp: 0 AttackRange: 7 Attack: [150, 150] Def: 16 Mdef: 60 Stats: { Str: 10 Agi: 10 Vit: 10 Int: 100 Dex: 50 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 MvpExp: 0 Drops: { Steel: 1000 } }, { Id: 2047 SpriteName: "W_NAGA" Name: "Naga" Lv: 99 Hp: 46708 Sp: 0 Exp: 0 JExp: 0 AttackRange: 3 Attack: [492, 605] Def: 61 Mdef: 15 Stats: { Str: 113 Agi: 42 Vit: 30 Int: 18 Dex: 122 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 MvpExp: 0 Drops: { Scale_Of_Snakes: 5000 } }, /*{ Id: 2048 SpriteName: "W_PINGUICULA_D" Name: "Dark Pinguicula" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 },*/ { Id: 2049 SpriteName: "W_BRADIUM_GOLEM" Name: "Bradium Golem" Lv: 99 Hp: 45200 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [720, 886] Def: 125 Mdef: 18 Stats: { Str: 0 Agi: 10 Vit: 82 Int: 2 Dex: 60 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 Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 300 AttackDelay: 1008 AttackMotion: 1200 DamageMotion: 540 MvpExp: 0 Drops: { Purified_Bradium: 500 } }, /*{ Id: 2050 SpriteName: "W_AQUA_ELEMENTAL" Name: "Aqua Elemental" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 }, { Id: 2051 SpriteName: "E_BAPHOMET" Name: "Baphomet" Lv: 1 Hp: 1 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [1, 2] Def: 1 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: { Boss: true Detector: true } MoveSpeed: 100 AttackDelay: 768 AttackMotion: 768 DamageMotion: 576 MvpExp: 0 Drops: { Fools_Day_Box: 5000 Fools_Day_Box2: 5000 } }, { Id: 2052 SpriteName: "E_DARK_LORD" Name: "Dark Lord" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 }, { Id: 2053 SpriteName: "NC_DIMIK" Name: "Dimik" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 }, { Id: 2054 SpriteName: "E_BATHORY" Name: "Bathory" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 }, { Id: 2055 SpriteName: "E_INCUBUS" Name: "Incubus" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 }, { Id: 2056 SpriteName: "E_ZHERLTHSH" Name: "Zherlthsh" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 },*/ { Id: 2057 SpriteName: "E_CRAMP" Name: "Cramp" JName: "Sticky Rat" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 }, /*{ Id: 2058 SpriteName: "M_MIMIC" Name: "Mimic" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 }, { Id: 2059 SpriteName: "M_DISGUISE" Name: "Disguise" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 }, { Id: 2060 SpriteName: "M_ALICE" Name: "Alice" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 }, { Id: 2061 SpriteName: "E_STAPO" Name: "Stapo" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 }, { Id: 2062 SpriteName: "E_POPORING" Name: "Poporing" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 }, { Id: 2063 SpriteName: "E_DROPS" Name: "Drops" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 }, { Id: 2064 SpriteName: "E_MAGMARING" Name: "Magmaring" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 }, { Id: 2065 SpriteName: "E_METALING" Name: "Metaling" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 }, { Id: 2066 SpriteName: "E_ANOPHELES" Name: "Anopheles" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 }, { Id: 2067 SpriteName: "E_ANOPHELES_" Name: "Anopheles" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 },*/ { Id: 2068 SpriteName: "BOITATA" Name: "Boitata" Lv: 93 Hp: 1283990 Sp: 0 Exp: 74288 JExp: 77950 AttackRange: 2 Attack: [1060, 2022] Def: 7 Mdef: 36 Stats: { Str: 140 Agi: 99 Vit: 30 Int: 109 Dex: 100 Luk: 90 } 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: 200 AttackDelay: 1150 AttackMotion: 1150 DamageMotion: 288 MvpExp: 37144 Drops: { Treasure_Box: 5000 Elunium: 1000 Oridecon: 1000 Yggdrasilberry: 500 Hurricane_Fury: 100 Hunting_Spear: 100 Hell_Fire: 100 } }, { Id: 2069 SpriteName: "IARA" Name: "Iara" Lv: 79 Hp: 5890 Sp: 0 Exp: 1070 JExp: 890 AttackRange: 1 Attack: [171, 270] Def: 0 Mdef: 39 Stats: { Str: 69 Agi: 14 Vit: 41 Int: 60 Dex: 69 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: 672 AttackMotion: 380 DamageMotion: 288 MvpExp: 0 Drops: { Heart_Of_Mermaid: 9000 Fin: 500 Crystal_Mirror: 100 Witherless_Rose: 50 Illusion_Flower: 10 Mistic_Frozen: 5 Mage_Coat: 1 } }, { Id: 2070 SpriteName: "PIRANHA" Name: "Piranha" Lv: 75 Hp: 4522 Sp: 0 Exp: 899 JExp: 1023 AttackRange: 1 Attack: [182, 223] Def: 2 Mdef: 10 Stats: { Str: 69 Agi: 45 Vit: 30 Int: 30 Dex: 66 Luk: 35 } ViewRange: 10 ChaseRange: 12 Size: "Size_Medium" 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: 768 DamageMotion: 384 MvpExp: 0 Drops: { Sharp_Scale: 9000 Gill: 600 Tooth_Of_Ancient_Fish: 500 Lip_Of_Ancient_Fish: 500 Mistic_Frozen: 5 Fishermans_Dagger: 5 Scalpel: 1 } }, { Id: 2071 SpriteName: "HEADLESS_MULE" Name: "Headless Mule" Lv: 80 Hp: 6620 Sp: 0 Exp: 1011 JExp: 1120 AttackRange: 1 Attack: [210, 267] Def: 7 Mdef: 27 Stats: { Str: 68 Agi: 51 Vit: 50 Int: 35 Dex: 67 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 MvpExp: 0 Drops: { Burning_Horse_Shoe: 4000 Burning_Heart: 1000 Hot_Hair: 1000 Plate_Armor_: 5 Jamadhar_: 2 Inverse_Scale: 1 Plate_Armor_: 1 } }, { Id: 2072 SpriteName: "JAGUAR" Name: "Jaguar" Lv: 71 Hp: 3914 Sp: 0 Exp: 720 JExp: 512 AttackRange: 1 Attack: [192, 234] Def: 9 Mdef: 12 Stats: { Str: 69 Agi: 30 Vit: 45 Int: 5 Dex: 59 Luk: 5 } ViewRange: 10 ChaseRange: 12 Size: "Size_Medium" Race: "RC_Brute" Element: ("Ele_Earth", 2) Mode: { CanMove: true Aggressive: true CanAttack: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 150 AttackDelay: 1250 AttackMotion: 580 DamageMotion: 360 MvpExp: 0 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: 0 Exp: 659 JExp: 544 AttackRange: 1 Attack: [166, 201] Def: 3 Mdef: 10 Stats: { Str: 54 Agi: 14 Vit: 40 Int: 35 Dex: 44 Luk: 10 } ViewRange: 10 ChaseRange: 12 Size: "Size_Small" Race: "RC_Brute" Element: ("Ele_Wind", 2) Mode: { CanMove: true Aggressive: true CanAttack: true Angry: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 155 AttackDelay: 1450 AttackMotion: 960 DamageMotion: 480 MvpExp: 0 Drops: { Talon: 3000 Cyfar: 1000 Flower_Ring: 200 Yellow_Herb: 100 Blue_Herb: 50 } }, { Id: 2074 SpriteName: "CURUPIRA" Name: "Curupira" Lv: 68 Hp: 3096 Sp: 0 Exp: 622 JExp: 450 AttackRange: 1 Attack: [140, 175] Def: 9 Mdef: 10 Stats: { Str: 32 Agi: 23 Vit: 38 Int: 20 Dex: 45 Luk: 10 } ViewRange: 10 ChaseRange: 12 Size: "Size_Medium" Race: "RC_Demon" Element: ("Ele_Earth", 1) Mode: { CanMove: true Looter: true Assist: true CanAttack: true Detector: true ChangeTargetMelee: true } MoveSpeed: 250 AttackDelay: 530 AttackMotion: 530 DamageMotion: 384 MvpExp: 0 Drops: { Meat: 3000 Tiger_Skin_Panties: 500 Elunium_Stone: 250 Mace_: 100 Emveretarcon: 10 } }, /*{ Id: 2075 SpriteName: "E_VADON_X" Name: "Vadon" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 },*/ { Id: 2076 SpriteName: "S_WIND_GHOST" Name: "Shadow of Deception" Lv: 105 Hp: 190800 Sp: 1 Exp: 0 JExp: 0 AttackRange: 1 Attack: [462, 957] Def: 64 Mdef: 51 Stats: { Str: 62 Agi: 44 Vit: 25 Int: 105 Dex: 85 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 MvpExp: 0 }, { Id: 2077 SpriteName: "S_SKOGUL" Name: "Shadow of Illusion" Lv: 105 Hp: 244400 Sp: 1 Exp: 0 JExp: 0 AttackRange: 1 Attack: [910, 1166] Def: 72 Mdef: 15 Stats: { Str: 100 Agi: 88 Vit: 63 Int: 99 Dex: 95 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 MvpExp: 0 }, { Id: 2078 SpriteName: "S_SUCCUBUS" Name: "Shadow of Pleasure" Lv: 105 Hp: 206660 Sp: 1 Exp: 0 JExp: 0 AttackRange: 1 Attack: [880, 1204] Def: 76 Mdef: 48 Stats: { Str: 100 Agi: 70 Vit: 45 Int: 110 Dex: 102 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 MvpExp: 0 }, /*{ Id: 2079 SpriteName: "CRYSTAL_H" Name: "Crystal" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 0 }, { Id: 2080 SpriteName: "CRYSTAL_L" Name: "Crystal" 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: { Boss: true Detector: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MvpExp: 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, 2] 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 MvpExp: 0 }, { Id: 2082 SpriteName: "G_PIRANHA" Name: "Piranha" Lv: 75 Hp: 4522 Sp: 0 Exp: 0 JExp: 0 AttackRange: 1 Attack: [182, 223] Def: 2 Mdef: 10 Stats: { Str: 69 Agi: 45 Vit: 30 Int: 30 Dex: 66 Luk: 35 } ViewRange: 10 ChaseRange: 12 Size: "Size_Medium" 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: 768 DamageMotion: 384 MvpExp: 0 }, { Id: 2210 SpriteName: "XMAS_LUNATIC" Name: "Xmas Lunatic" 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: 0 Race: 2 Element: (0, 1) Mode: { CanMove: true Looter: true CanAttack: true } MoveSpeed: 200 AttackDelay: 1456 AttackMotion: 456 DamageMotion: 336 MvpExp: 0 }, { 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 MvpExp: 0 }, )