//================= 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: ( // Mobs Database // /****************************************************************************** ************* 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) CriticalDef: critical 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 (int, defaults to 1) Race: race (int, defaults to 0) 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) SurviveWithoutMaster: true/false (bool, defaults to false) } MoveSpeed: move speed (int, defaults to 0) WalkMask: walk mask (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) MutationCount: (unused) (int, defaults to 0) MutationStrength: (unused) (int, defaults to 0) MvpExp: mvp experience (int, defaults to 0) MvpDrops: { AegisName: chance (string: int) ... } Drops: { AegisName: chance (string: int) ... } }, ******************************************************************************/ { Id: 1011 SpriteName: "FireGoblin" Name: "Fire Goblin" Lv: 20 Hp: 220 Sp: 0 Exp: 41 JExp: 4 AttackRange: 1 Attack: [15, 20] Def: 0 Mdef: 5 CriticalDef: 0 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 0 Dex: 6 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (3, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 30 Drops: { MaggotSlime: 800 CactusDrink: 150 BugLeg: 800 CactusPotion: 150 Dagger: 70 SharpKnife: 10 PileOfAsh: 500 SulphurPowder: 250 BromenalDroplet: 20 } }, { Id: 1017 SpriteName: "Bat" Name: "Bat" Lv: 20 Hp: 150 Sp: 0 Exp: 27 JExp: 3 AttackRange: 1 Attack: [5, 25] Def: 0 Mdef: 5 CriticalDef: 0 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 0 Dex: 20 Luk: 25 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 40 Drops: { MaggotSlime: 800 CactusDrink: 150 BugLeg: 400 RoastedMaggot: 150 Dagger: 70 SharpKnife: 1 BatWing: 3000 BatTeeth: 2000 } }, { Id: 1131 SpriteName: "ManaBug" Name: "Mana Bug" Lv: 25 Hp: 300 Sp: 0 Exp: 52 JExp: 5 AttackRange: 2 Attack: [10, 17] Def: 4 Mdef: 6 CriticalDef: 0 Stats: { Str: 1 Agi: 4 Vit: 1 Int: 4 Dex: 5 Luk: 4 } ViewRange: 2 ChaseRange: 10 Size: 1 Race: 4 Element: (2, 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 40 Drops: { MaggotSlime: 1000 BugLeg: 800 RoastedMaggot: 400 } }, { Id: 1018 SpriteName: "Pinkie" Name: "Pinkie" Lv: 30 Hp: 300 Sp: 0 Exp: 60 JExp: 7 AttackRange: 2 Attack: [15, 20] Def: 0 Mdef: 5 CriticalDef: 0 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 0 Dex: 20 Luk: 25 } ViewRange: 2 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 3 MutationStrength: 50 Drops: { PinkAntenna: 1000 PinkieHat: (40, "ODG_BASICSTAT") } }, { Id: 1019 SpriteName: "SpikyMushroom" Name: "Spiky Mushroom" Lv: 30 Hp: 300 Sp: 0 Exp: 54 JExp: 5 AttackRange: 1 Attack: [10, 13] Def: 0 Mdef: 5 CriticalDef: 0 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 0 Dex: 10 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 3 MutationStrength: 40 Drops: { IronPotion: 800 CactusDrink: 150 BugLeg: 50 HardSpike: 400 ShroomHat: (1, "ODG_BASICSTAT") } }, { Id: 1020 SpriteName: "Fluffy" Name: "Fluffy" Lv: 30 Hp: 500 Sp: 0 Exp: 100 JExp: 7 AttackRange: 1 Attack: [6, 10] Def: 1 Mdef: 5 CriticalDef: 0 Stats: { Str: 1 Agi: 2 Vit: 1 Int: 0 Dex: 20 Luk: 25 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1600 AttackMotion: 672 DamageMotion: 480 MutationCount: 3 MutationStrength: 40 Drops: { WhiteFur: 800 Milk: 150 RedApple: 400 FluffyHat: (20, "ODG_BASICSTAT") } }, { Id: 1021 SpriteName: "CaveSnake" Name: "Cave Snake" Lv: 30 Hp: 800 Sp: 0 Exp: 157 JExp: 13 AttackRange: 1 Attack: [20, 15] Def: 1 Mdef: 5 CriticalDef: 0 Stats: { Str: 10 Agi: 1 Vit: 1 Int: 0 Dex: 5 Luk: 20 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 3 MutationStrength: 50 Drops: { CaveSnakeLamp: 1000 JeansShorts: (40, "ODG_BASICSTAT") CaveSnakeTongue: 500 CaveSnakeEgg: 400 CaveSnakeEgg: 400 SnakeSkin: 20 } }, { Id: 1025 SpriteName: "LogHead" Name: "Log Head" Lv: 30 Hp: 500 Sp: 0 Exp: 150 JExp: 5 AttackRange: 1 Attack: [10, 20] Def: 50 Mdef: 5 CriticalDef: 0 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 0 Dex: 20 Luk: 25 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 50 Drops: { RawLog: 2000 Root: 2500 Acorn: 3000 RawLog: 2000 } }, { Id: 1027 SpriteName: "EasterFluffy" Name: "Easter Fluffy" Lv: 30 Hp: 500 Sp: 0 Exp: 100 JExp: 7 AttackRange: 1 Attack: [10, 12] Def: 0 Mdef: 5 CriticalDef: 0 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 0 Dex: 20 Luk: 25 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 40 Drops: { RedEasterEgg: 2000 GreenEasterEgg: 2000 BlueEasterEgg: 2000 YellowEasterEgg: 1000 PinkEasterEgg: 1000 TealEasterEgg: 200 } }, { Id: 1035 SpriteName: "Silkworm" Name: "Silkworm" Lv: 20 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 2 Mdef: 10 CriticalDef: 0 Stats: { Str: 20 Agi: 11 Vit: 10 Int: 10 Dex: 40 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1300 AttackDelay: 1100 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 40 Drops: { SilkCocoon: 5000 } }, { Id: 1041 SpriteName: "Snail" Name: "Snail" Lv: 30 Hp: 900 Sp: 0 Exp: 180 JExp: 18 AttackRange: 1 Attack: [50, 65] Def: 20 Mdef: 15 CriticalDef: 0 Stats: { Str: 10 Agi: 1 Vit: 25 Int: 0 Dex: 20 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1800 AttackDelay: 2500 AttackMotion: 672 DamageMotion: 480 MutationCount: 3 MutationStrength: 40 Drops: { GreenApple: 500 ReedBundle: 400 Pear: 1000 Plum: 1500 Blueberries: 500 Cherry: 2000 } }, { Id: 1049 SpriteName: "Bee" Name: "Bee" Lv: 30 Hp: 600 Sp: 0 Exp: 180 JExp: 32 AttackRange: 1 Attack: [5, 90] Def: 12 Mdef: 4 CriticalDef: 0 Stats: { Str: 15 Agi: 25 Vit: 20 Int: 3 Dex: 40 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (2, 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 380 AttackDelay: 1500 AttackMotion: 300 DamageMotion: 350 MutationCount: 2 MutationStrength: 30 }, { Id: 1055 SpriteName: "Butterfly" Name: "Butterfly" Lv: 25 Hp: 250 Sp: 0 Exp: 85 JExp: 11 AttackRange: 2 Attack: [10, 40] Def: 3 Mdef: 5 CriticalDef: 0 Stats: { Str: 10 Agi: 45 Vit: 10 Int: 15 Dex: 35 Luk: 40 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 2) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 350 AttackDelay: 780 AttackMotion: 300 DamageMotion: 800 MutationCount: 2 MutationStrength: 60 Drops: { SilkCocoon: 1000 } }, { Id: 1057 SpriteName: "AngryScorpion" Name: "Angry Scorpion" Lv: 20 Hp: 200 Sp: 0 Exp: 37 JExp: 5 AttackRange: 1 Attack: [15, 15] Def: 0 Mdef: 5 CriticalDef: 0 Stats: { Str: 5 Agi: 5 Vit: 1 Int: 0 Dex: 15 Luk: 5 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1000 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { AngryScorpionStinger: 700 Candy: 100 ChocolateBar: 50 BugLeg: 700 } }, { Id: 1058 SpriteName: "IceGoblin" Name: "Ice Goblin" Lv: 25 Hp: 330 Sp: 0 Exp: 75 JExp: 10 AttackRange: 1 Attack: [20, 25] Def: 0 Mdef: 5 CriticalDef: 0 Stats: { Str: 5 Agi: 5 Vit: 1 Int: 0 Dex: 6 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (1, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 700 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 30 Drops: { MaggotSlime: 800 CactusDrink: 150 BugLeg: 800 CactusPotion: 150 Dagger: 70 SharpKnife: 10 IceCube: 500 } }, { Id: 1060 SpriteName: "Archant" Name: "Archant" Lv: 30 Hp: 400 Sp: 0 Exp: 88 JExp: 14 AttackRange: 1 Attack: [20, 30] Def: 4 Mdef: 6 CriticalDef: 0 Stats: { Str: 10 Agi: 5 Vit: 1 Int: 0 Dex: 12 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (2, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1000 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 40 Drops: { TreasureKey: 300 RedApple: 100 IronOre: 40 Coal: 20 } }, { Id: 1064 SpriteName: "Bandit" Name: "Bandit" Lv: 20 Hp: 400 Sp: 0 Exp: 92 JExp: 21 AttackRange: 1 Attack: [40, 40] Def: 5 Mdef: 0 CriticalDef: 0 Stats: { Str: 10 Agi: 10 Vit: 10 Int: 10 Dex: 10 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 500 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 900 MutationCount: 2 MutationStrength: 30 Drops: { BanditHood: 800 Dagger: 200 CoinBag: 500 RedApple: 200 } }, { Id: 1083 SpriteName: "HuntsmanSpider" Name: "Huntsman Spider" Lv: 30 Hp: 1500 Sp: 0 Exp: 467 JExp: 363 AttackRange: 1 Attack: [125, 150] Def: 10 Mdef: 45 CriticalDef: 0 Stats: { Str: 20 Agi: 15 Vit: 10 Int: 10 Dex: 45 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (2, 2) Mode: { CanMove: true Looter: true Aggressive: true Assist: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 575 AttackDelay: 1250 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 30 Drops: { InfantryHelmet: (100, "ODG_BASICSTAT") CoinBag: 500 IronOre: 300 BugLeg: 1000 GreenApple: 500 Coal: 150 } }, { Id: 1084 SpriteName: "CrotcherScorpion" Name: "Crotcher Scorpion" Lv: 25 Hp: 1200 Sp: 0 Exp: 430 JExp: 86 AttackRange: 1 Attack: [75, 175] Def: 15 Mdef: 45 CriticalDef: 0 Stats: { Str: 15 Agi: 30 Vit: 10 Int: 10 Dex: 25 Luk: 25 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (2, 2) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 750 AttackDelay: 1350 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 30 Drops: { LeatherShirt: (300, "ODG_BASICSTAT") BugLeg: 1000 ChocolateBar: 300 GingerBreadMan: 300 RedApple: 500 } }, { Id: 1087 SpriteName: "Larvern" Name: "Larvern" Lv: 20 Hp: 550 Sp: 0 Exp: 165 JExp: 26 AttackRange: 1 Attack: [50, 200] Def: 30 Mdef: 65 CriticalDef: 0 Stats: { Str: 35 Agi: 20 Vit: 50 Int: 0 Dex: 70 Luk: 20 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (2, 1) Mode: { CanMove: true Looter: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1500 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 30 Drops: { GrubSlime: 2000 BugLeg: 1000 GrassSeed: 300 ReedBundle: 300 } }, { Id: 1089 SpriteName: "HungryFluffy" Name: "Hungry Fluffy" Lv: 30 Hp: 500 Sp: 0 Exp: 111 JExp: 10 AttackRange: 1 Attack: [6, 10] Def: 1 Mdef: 5 CriticalDef: 0 Stats: { Str: 1 Agi: 2 Vit: 1 Int: 0 Dex: 20 Luk: 25 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1600 AttackMotion: 672 DamageMotion: 480 MutationCount: 3 MutationStrength: 40 Drops: { WhiteFur: 500 Milk: 150 FluffyHat: (20, "ODG_BASICSTAT") } }, { Id: 1093 SpriteName: "WhiteSlime" Name: "White Slime" Lv: 20 Hp: 200 Sp: 0 Exp: 55 JExp: 15 AttackRange: 1 Attack: [80, 120] Def: 10 Mdef: 10 CriticalDef: 0 Stats: { Str: 20 Agi: 30 Vit: 10 Int: 10 Dex: 30 Luk: 20 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 3) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 500 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 20 Drops: { Snowball: 4000 BottleOfWater: 500 IceCube: 200 BookPage: 200 SilverMirror: 20 Diamond: 20 } }, { Id: 1094 SpriteName: "Reinboo" Name: "Reinboo" Lv: 35 Hp: 1100 Sp: 0 Exp: 275 JExp: 29 AttackRange: 2 Attack: [40, 75] Def: 35 Mdef: 5 CriticalDef: 0 Stats: { Str: 15 Agi: 5 Vit: 15 Int: 0 Dex: 40 Luk: 10 } ViewRange: 2 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 600 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 30 Drops: { GingerBreadMan: 1000 WhiteCake: 1200 ChocolateCake: 1200 OrangeCake: 1200 AppleCake: 1200 Antlers: 50 RedNose: 10 } }, { Id: 1099 SpriteName: "SleepingBandit" Name: "Sleeping Bandit" Lv: 20 Hp: 25 Sp: 0 Exp: 3 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 0 Mdef: 0 CriticalDef: 0 Stats: { Str: 10 Agi: 10 Vit: 10 Int: 10 Dex: 10 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) MoveSpeed: 500 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 900 MutationCount: 2 MutationStrength: 30 Drops: { BanditHood: 800 Dagger: 200 CoinBag: 500 RedApple: 200 } }, { Id: 1100 SpriteName: "AzulSlime" Name: "Azul Slime" Lv: 20 Hp: 200 Sp: 0 Exp: 55 JExp: 10 AttackRange: 1 Attack: [80, 120] Def: 10 Mdef: 10 CriticalDef: 0 Stats: { Str: 20 Agi: 30 Vit: 10 Int: 10 Dex: 30 Luk: 20 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 3) Mode: { CanMove: true Looter: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 500 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 20 }, { Id: 1107 SpriteName: "Bluepar" Name: "Bluepar" Lv: 30 Hp: 350 Sp: 0 Exp: 77 JExp: 8 AttackRange: 2 Attack: [7, 15] Def: 0 Mdef: 5 CriticalDef: 0 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 0 Dex: 20 Luk: 25 } ViewRange: 2 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 3 MutationStrength: 50 Drops: { IronPotion: 800 EnlighteningElixir: 800 ConcentrationPotion: 800 Diamond: 50 } }, { Id: 1108 SpriteName: "AngryFireGoblin" Name: "Angry Fire Goblin" Lv: 30 Hp: 320 Sp: 0 Exp: 85 JExp: 12 AttackRange: 1 Attack: [25, 40] Def: 0 Mdef: 10 CriticalDef: 0 Stats: { Str: 3 Agi: 3 Vit: 3 Int: 2 Dex: 10 Luk: 50 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (3, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 30 Drops: { MaggotSlime: 800 CactusDrink: 150 BugLeg: 800 CactusPotion: 150 Dagger: 70 SharpKnife: 10 PileOfAsh: 500 SulphurPowder: 250 BromenalDroplet: 30 } }, { Id: 1113 SpriteName: "Pollett" Name: "Pollett" Lv: 30 Hp: 500 Sp: 0 Exp: 100 JExp: 7 AttackRange: 1 Attack: [6, 10] Def: 1 Mdef: 5 CriticalDef: 0 Stats: { Str: 1 Agi: 2 Vit: 1 Int: 0 Dex: 20 Luk: 25 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1600 AttackMotion: 672 DamageMotion: 480 MutationCount: 3 MutationStrength: 40 Drops: { IceCube: 1000 AnimalBones: 500 Pearl: 300 IcedWater: 100 PollettEgg: 400 PollettEgg: 400 PollettEgg: 400 WhiteFur: 500 Snowball: 3000 } }, { Id: 1009 SpriteName: "BlackScorpion" Name: "Black Scorpion" Lv: 100 Hp: 600 Sp: 0 Exp: 500 JExp: 37 AttackRange: 1 Attack: [60, 100] Def: 4 Mdef: 6 CriticalDef: 0 Stats: { Str: 16 Agi: 30 Vit: 10 Int: 10 Dex: 35 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1000 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 50 Drops: { LeatherShirt: (150, "ODG_BASICSTAT") ChocolateBar: 100 BugLeg: 800 BlackScorpionStinger: 900 } }, { Id: 1010 SpriteName: "Snake" Name: "Snake" Lv: 115 Hp: 850 Sp: 0 Exp: 722 JExp: 56 AttackRange: 1 Attack: [75, 90] Def: 4 Mdef: 6 CriticalDef: 0 Stats: { Str: 20 Agi: 11 Vit: 10 Int: 10 Dex: 35 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 900 AttackDelay: 1300 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 30 Drops: { SnakeSkin: 150 SnakeEgg: 400 SnakeEgg: 400 SnakeTongue: 500 } }, { Id: 1012 SpriteName: "Spider" Name: "Spider" Lv: 125 Hp: 800 Sp: 0 Exp: 690 JExp: 115 AttackRange: 1 Attack: [70, 85] Def: 4 Mdef: 6 CriticalDef: 0 Stats: { Str: 14 Agi: 13 Vit: 10 Int: 10 Dex: 35 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (2, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1000 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 40 Drops: { TreasureKey: 500 RedApple: 100 InfantryHelmet: (20, "ODG_BASICSTAT") CoinBag: 200 } }, { Id: 1013 SpriteName: "EvilMushroom" Name: "Evil Mushroom" Lv: 110 Hp: 650 Sp: 0 Exp: 233 JExp: 35 AttackRange: 1 Attack: [65, 80] Def: 4 Mdef: 6 CriticalDef: 0 Stats: { Str: 16 Agi: 12 Vit: 10 Int: 10 Dex: 35 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 60 Drops: { RedApple: 500 EmptyBottle: 10 OrangeCupcake: 100 CoinBag: 400 SmallMushroom: 1000 SmallMushroom: 1000 MushHat: (1, "ODG_BASICSTAT") } }, { Id: 1014 SpriteName: "PinkFlower" Name: "Pink Flower" Lv: 115 Hp: 700 Sp: 0 Exp: 296 JExp: 40 AttackRange: 2 Attack: [70, 75] Def: 0 Mdef: 5 CriticalDef: 0 Stats: { Str: 16 Agi: 12 Vit: 20 Int: 20 Dex: 20 Luk: 50 } ViewRange: 2 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) Mode: { CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 50 Drops: { RedApple: 100 EmptyBottle: 10 Arrow: 100 CoinBag: 400 PinkPetal: 1000 PinkPetal: 1000 } }, { Id: 1015 SpriteName: "SantaSlime" Name: "Santa Slime" Lv: 120 Hp: 750 Sp: 0 Exp: 298 JExp: 58 AttackRange: 1 Attack: [75, 80] Def: 2 Mdef: 7 CriticalDef: 0 Stats: { Str: 1 Agi: 20 Vit: 1 Int: 0 Dex: 30 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1500 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 10 Drops: { GingerBreadMan: 800 Cake: 700 XmasCandyCane: 600 CherryCake: 500 Milk: 400 GreenPresentBox: 500 } }, { Id: 1022 SpriteName: "JackO" Name: "Jack O" Lv: 175 Hp: 10000 Sp: 0 Exp: 18130 JExp: 1241 AttackRange: 2 Attack: [100, 500] Def: 40 Mdef: 18 CriticalDef: 0 Stats: { Str: 105 Agi: 40 Vit: 85 Int: 75 Dex: 105 Luk: 95 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true Boss: true } MoveSpeed: 250 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 30 Drops: { PirateHat: (300, "ODG_BASICSTAT") Bandana: (400, "ODG_BASICSTAT") VNeckSweater: (400, "ODG_BASICSTAT") Circlet: (400, "ODG_BASICSTAT") PumpkinHelmet: (300, "ODG_BASICSTAT") RangerHat: (400, "ODG_BASICSTAT") Soul: 10000 AxeHat: (600, "ODG_BASICSTAT") } }, { Id: 1023 SpriteName: "FireSkull" Name: "Fire Skull" Lv: 170 Hp: 5000 Sp: 0 Exp: 5808 JExp: 721 AttackRange: 2 Attack: [75, 175] Def: 35 Mdef: 15 CriticalDef: 0 Stats: { Str: 40 Agi: 30 Vit: 30 Int: 30 Dex: 35 Luk: 70 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (3, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 600 AttackDelay: 1600 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 30 Drops: { PileOfAsh: 5000 SulphurPowder: 500 DarkCrystal: 1000 Skull: 500 GoldenTooth: 10 SkullMask: (1, "ODG_BASICSTAT") } }, { Id: 1024 SpriteName: "PoisonSkull" Name: "Poison Skull" Lv: 170 Hp: 5000 Sp: 0 Exp: 5808 JExp: 721 AttackRange: 2 Attack: [75, 175] Def: 35 Mdef: 15 CriticalDef: 0 Stats: { Str: 40 Agi: 30 Vit: 30 Int: 30 Dex: 35 Luk: 70 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 600 AttackDelay: 1600 AttackMotion: 672 DamageMotion: 480 MutationCount: 4 MutationStrength: 20 Drops: { DarkCrystal: 1000 Skull: 500 GoldenTooth: 10 SkullMask: (1, "ODG_BASICSTAT") } }, { Id: 1026 SpriteName: "MountainSnake" Name: "Mountain Snake" Lv: 130 Hp: 900 Sp: 0 Exp: 1024 JExp: 63 AttackRange: 1 Attack: [80, 125] Def: 4 Mdef: 6 CriticalDef: 0 Stats: { Str: 20 Agi: 40 Vit: 10 Int: 10 Dex: 35 Luk: 45 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1000 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 30 Drops: { LeatherGloves: (20, "ODG_BASICSTAT") SnakeSkin: 350 MountainSnakeEgg: 400 MountainSnakeEgg: 400 MountainSnakeTongue: 500 } }, { Id: 1034 SpriteName: "GrassSnake" Name: "Grass Snake" Lv: 140 Hp: 1000 Sp: 0 Exp: 1254 JExp: 103 AttackRange: 1 Attack: [80, 120] Def: 2 Mdef: 10 CriticalDef: 0 Stats: { Str: 20 Agi: 40 Vit: 10 Int: 10 Dex: 40 Luk: 50 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 500 AttackDelay: 1100 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 40 Drops: { GrassSnakeEgg: 400 GrassSnakeEgg: 400 GrassSnakeTongue: 500 Steak: 500 CottonCloth: 1600 SnakeSkin: 500 } }, { Id: 1036 SpriteName: "Zombie" Name: "Zombie" Lv: 110 Hp: 12000 Sp: 0 Exp: 7782 JExp: 1393 AttackRange: 2 Attack: [275, 355] Def: 20 Mdef: 14 CriticalDef: 0 Stats: { Str: 30 Agi: 15 Vit: 30 Int: 3 Dex: 60 Luk: 40 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 480 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 900 MutationCount: 2 MutationStrength: 30 Drops: { DarkCrystal: 1000 RottenRags: 700 DiseasedHeart: 500 UndeadEar: 200 UndeadEye: 150 Soul: 500 GoldenTooth: 10 Tongue: 3 } }, { Id: 1042 SpriteName: "Spectre" Name: "Spectre" Lv: 140 Hp: 6500 Sp: 0 Exp: 3978 JExp: 359 AttackRange: 3 Attack: [160, 220] Def: 40 Mdef: 0 CriticalDef: 0 Stats: { Str: 35 Agi: 70 Vit: 22 Int: 15 Dex: 20 Luk: 70 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 2) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 650 AttackDelay: 1700 AttackMotion: 800 DamageMotion: 500 MutationCount: 2 MutationStrength: 20 Drops: { SpectrePowder: 1000 SulphurPowder: 600 SulphurPowder: 480 } }, { Id: 1045 SpriteName: "Fallen" Name: "Fallen" Lv: 120 Hp: 10000 Sp: 0 Exp: 7812 JExp: 1663 AttackRange: 2 Attack: [180, 430] Def: 5 Mdef: 18 CriticalDef: 0 Stats: { Str: 40 Agi: 3 Vit: 25 Int: 5 Dex: 80 Luk: 45 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 2) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 300 AttackDelay: 1200 AttackMotion: 672 DamageMotion: 300 MutationCount: 4 MutationStrength: 50 Drops: { Bone: 210 Bone: 210 Skull: 300 DarkCrystal: 1000 WarlordHelmet: (3, "ODG_BASICSTAT") WarlordPlate: (2, "ODG_BASICSTAT") LeatherGloves: (35, "ODG_BASICSTAT") DiseasedHeart: 500 Soul: 500 GoldenTooth: 10 } }, { Id: 1062 SpriteName: "Terranite" Name: "Terranite" Lv: 110 Hp: 6000 Sp: 0 Exp: 4851 JExp: 889 AttackRange: 1 Attack: [200, 300] Def: 20 Mdef: 35 CriticalDef: 0 Stats: { Str: 60 Agi: 40 Vit: 40 Int: 30 Dex: 60 Luk: 40 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 400 AttackDelay: 872 AttackMotion: 672 DamageMotion: 900 MutationCount: 2 MutationStrength: 30 Drops: { Coal: 600 Emerald: 20 Sapphire: 20 Amethyst: 20 TerraniteOre: 500 IronOre: 500 } }, { Id: 1067 SpriteName: "Reaper2" Name: "GM Reaper" Lv: 140 Hp: 40000 Sp: 0 Exp: 64128 JExp: 156 AttackRange: 7 Attack: [200, 350] Def: 30 Mdef: 50 CriticalDef: 0 Stats: { Str: 100 Agi: 120 Vit: 70 Int: 120 Dex: 100 Luk: 75 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 4) Mode: { CanMove: true Aggressive: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 500 AttackDelay: 1200 AttackMotion: 800 DamageMotion: 300 Drops: { RottenRags: 1000 Bone: 500 Skull: 100 SkullMask: (10, "ODG_BASICSTAT") } }, { Id: 1068 SpriteName: "Reaper" Name: "Reaper" Lv: 140 Hp: 40000 Sp: 0 Exp: 64128 JExp: 156 AttackRange: 7 Attack: [200, 350] Def: 30 Mdef: 70 CriticalDef: 0 Stats: { Str: 100 Agi: 120 Vit: 70 Int: 120 Dex: 100 Luk: 75 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 4) Mode: { CanMove: true Aggressive: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 500 AttackDelay: 1200 AttackMotion: 800 DamageMotion: 300 Drops: { RottenRags: 1000 Bone: 500 Skull: 100 SkullMask: (10, "ODG_BASICSTAT") } }, { Id: 1071 SpriteName: "IceElement" Name: "Ice Element" Lv: 100 Hp: 5000 Sp: 0 Exp: 2897 JExp: 689 AttackRange: 3 Attack: [60, 200] Def: 5 Mdef: 20 CriticalDef: 0 Stats: { Str: 15 Agi: 25 Vit: 40 Int: 15 Dex: 45 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 2) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 330 AttackDelay: 740 AttackMotion: 672 DamageMotion: 400 MutationCount: 2 MutationStrength: 20 Drops: { IceCube: 900 TreasureKey: 750 ConcentrationPotion: 400 StandardHeadband: (900, "ODG_BASICSTAT") SilkHeadband: (250, "ODG_BASICSTAT") } }, { Id: 1072 SpriteName: "Yeti" Name: "Yeti" Lv: 100 Hp: 8500 Sp: 0 Exp: 9040 JExp: 726 AttackRange: 2 Attack: [100, 400] Def: 60 Mdef: 15 CriticalDef: 0 Stats: { Str: 60 Agi: 5 Vit: 45 Int: 15 Dex: 60 Luk: 32 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 3) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 220 AttackDelay: 1200 AttackMotion: 672 DamageMotion: 900 MutationCount: 2 MutationStrength: 30 Drops: { AnimalBones: 700 FrozenYetiTear: 300 YetiClaw: 400 YetiMask: (142, "ODG_BASICSTAT") YellowPresentBox: 800 WhitePresentBox: 700 } }, { Id: 1075 SpriteName: "Stalker" Name: "Stalker" Lv: 120 Hp: 20000 Sp: 0 Exp: 15628 JExp: 4000 AttackRange: 2 Attack: [220, 500] Def: 23 Mdef: 30 CriticalDef: 0 Stats: { Str: 35 Agi: 15 Vit: 3 Int: 50 Dex: 50 Luk: 50 } ViewRange: 2 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 340 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 950 MutationCount: 4 MutationStrength: 20 Drops: { Bone: 75 Bone: 115 Skull: 135 DarkCrystal: 40 DiseasedHeart: 500 Soul: 500 } }, { Id: 1085 SpriteName: "IceSkull" Name: "Ice Skull" Lv: 170 Hp: 7000 Sp: 0 Exp: 7595 JExp: 757 AttackRange: 2 Attack: [75, 400] Def: 40 Mdef: 15 CriticalDef: 0 Stats: { Str: 40 Agi: 30 Vit: 30 Int: 30 Dex: 35 Luk: 44 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (1, 1) Mode: { CanMove: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 600 AttackDelay: 1600 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 30 Drops: { IceCube: 5000 IcedWater: 800 } }, { Id: 1096 SpriteName: "SoulSnake" Name: "Soul Snake" Lv: 115 Hp: 850 Sp: 0 Exp: 325 JExp: 56 AttackRange: 1 Attack: [75, 90] Def: 4 Mdef: 6 CriticalDef: 0 Stats: { Str: 20 Agi: 11 Vit: 10 Int: 10 Dex: 35 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 900 AttackDelay: 1300 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 30 }, { Id: 1102 SpriteName: "Luvia" Name: "Luvia" Lv: 127 Hp: 48044 Sp: 60 Exp: 315973 JExp: 12172 AttackRange: 5 Attack: [339, 364] Def: 50 Mdef: 92 CriticalDef: 0 Stats: { Str: 1 Agi: 29 Vit: 55 Int: 255 Dex: 255 Luk: 255 } ViewRange: 31 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 3) Mode: { CanMove: true Aggressive: true CastSensorIdle: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 220 AttackDelay: 1200 AttackMotion: 672 DamageMotion: 50 Drops: { AlizarinScroll: 10 CobaltScroll: 10 GambogeScroll: 10 MauveScroll: 10 JoyplimScroll: 10 } }, { Id: 1106 SpriteName: "WickedMushroom" Name: "Wicked Mushroom" Lv: 110 Hp: 550 Sp: 0 Exp: 220 JExp: 30 AttackRange: 1 Attack: [70, 80] Def: 4 Mdef: 4 CriticalDef: 0 Stats: { Str: 16 Agi: 12 Vit: 10 Int: 10 Dex: 35 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 60 Drops: { HardSpike: 600 Amethyst: 50 IronPotion: 100 SmallMushroom: 1000 JoyplimScroll: 40 } }, { Id: 1114 SpriteName: "Nutcracker" Name: "Nutcracker" Lv: 110 Hp: 6000 Sp: 0 Exp: 4226 JExp: 769 AttackRange: 1 Attack: [81, 281] Def: 20 Mdef: 37 CriticalDef: 0 Stats: { Str: 40 Agi: 20 Vit: 10 Int: 5 Dex: 60 Luk: 40 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 400 AttackDelay: 872 AttackMotion: 672 DamageMotion: 900 MutationCount: 2 MutationStrength: 30 Drops: { RawLog: 1000 CottonCloth: 750 Beer: 750 CasinoCoins: 250 IronOre: 200 Emerald: 200 Coal: 600 NutcrackerHat: (1, "ODG_BASICSTAT") } }, { Id: 1119 SpriteName: "Thug" Name: "Thug" Lv: 170 Hp: 5000 Sp: 0 Exp: 5491 JExp: 999 AttackRange: 1 Attack: [125, 250] Def: 30 Mdef: 6 CriticalDef: 0 Stats: { Str: 10 Agi: 10 Vit: 60 Int: 10 Dex: 50 Luk: 70 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 500 AttackDelay: 1200 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 40 Drops: { Beer: 1000 Orange: 1000 SulphurPowder: 1000 PileOfAsh: 500 Pearl: 250 SailorHat: (10, "ODG_BASICSTAT") } }, { Id: 1120 SpriteName: "Swashbuckler" Name: "Swashbuckler" Lv: 170 Hp: 5000 Sp: 0 Exp: 5434 JExp: 999 AttackRange: 1 Attack: [75, 250] Def: 23 Mdef: 25 CriticalDef: 0 Stats: { Str: 20 Agi: 20 Vit: 40 Int: 30 Dex: 90 Luk: 70 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 400 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 40 Drops: { Beer: 1000 Orange: 1000 SulphurPowder: 1000 PileOfAsh: 500 Pearl: 250 Bandana: (500, "ODG_BASICSTAT") } }, { Id: 1121 SpriteName: "Grenadier" Name: "Grenadier" Lv: 170 Hp: 6000 Sp: 0 Exp: 4332 JExp: 999 AttackRange: 6 Attack: [100, 200] Def: 8 Mdef: 50 CriticalDef: 0 Stats: { Str: 12 Agi: 10 Vit: 50 Int: 60 Dex: 90 Luk: 70 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 500 AttackDelay: 2000 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 40 Drops: { Beer: 1000 Orange: 1000 PileOfAsh: 500 IronPowder: 250 Pearl: 250 PirateHat: (100, "ODG_BASICSTAT") CaptainsHat: (1, "ODG_BASICSTAT") } }, { Id: 1122 SpriteName: "DreadPirateMarley" Name: "Dread Pirate Marley" Lv: 180 Hp: 10000 Sp: 0 Exp: 17612 JExp: 20000 AttackRange: 6 Attack: [175, 250] Def: 38 Mdef: 32 CriticalDef: 0 Stats: { Str: 10 Agi: 20 Vit: 40 Int: 20 Dex: 90 Luk: 80 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 400 AttackDelay: 700 AttackMotion: 672 DamageMotion: 480 Drops: { Beer: 1000 Orange: 1000 PileOfAsh: 500 IronPowder: 250 Pearl: 250 Eyepatch: (1, "ODG_BASICSTAT") } }, { Id: 1123 SpriteName: "DreadPirateMarleyClone" Name: "Dread Pirate Marley Clone" Lv: 150 Hp: 2000 Sp: 0 Exp: 1652 JExp: 0 AttackRange: 6 Attack: [175, 250] Def: 18 Mdef: 22 CriticalDef: 0 Stats: { Str: 10 Agi: 40 Vit: 30 Int: 20 Dex: 80 Luk: 40 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 500 AttackDelay: 1200 AttackMotion: 672 DamageMotion: 480 }, { Id: 1126 SpriteName: "PsiBrain" Name: "Psi Brain" Lv: 100 Hp: 10000 Sp: 0 Exp: 7255 JExp: 4000 AttackRange: 2 Attack: [220, 500] Def: 23 Mdef: 30 CriticalDef: 0 Stats: { Str: 35 Agi: 15 Vit: 3 Int: 50 Dex: 50 Luk: 50 } ViewRange: 2 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 340 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 950 MutationCount: 4 MutationStrength: 20 Drops: { Bone: 75 Bone: 115 Skull: 135 DarkCrystal: 40 BrainStem: 700 } }, { Id: 1127 SpriteName: "GeneralKrukan" Name: "General Krukan" Lv: 140 Hp: 40000 Sp: 0 Exp: 27536 JExp: 1663 AttackRange: 2 Attack: [180, 430] Def: 5 Mdef: 20 CriticalDef: 0 Stats: { Str: 40 Agi: 3 Vit: 25 Int: 5 Dex: 80 Luk: 45 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 2) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true Boss: true } MoveSpeed: 300 AttackDelay: 1200 AttackMotion: 672 DamageMotion: 300 MutationCount: 6 MutationStrength: 50 // FIXME: Does this even work? MvpExp MvpExp: 778 Drops: { Bone: 1000 Skull: 1000 DarkCrystal: 1000 DarkHelm: 5 WarlordHelmet: (6, "ODG_BASICSTAT") KnightsHelmet: (25, "ODG_BASICSTAT") InfantryHelmet: (50, "ODG_BASICSTAT") CrusadeHelmet: (8, "ODG_BASICSTAT") DiseasedHeart: 500 Soul: 500 } }, { Id: 1128 SpriteName: "GeneralRazha" Name: "General Razha" Lv: 140 Hp: 40000 Sp: 0 Exp: 27536 JExp: 1663 AttackRange: 2 Attack: [180, 430] Def: 5 Mdef: 20 CriticalDef: 0 Stats: { Str: 40 Agi: 3 Vit: 25 Int: 5 Dex: 80 Luk: 45 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 2) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true Boss: true } MoveSpeed: 300 AttackDelay: 1200 AttackMotion: 672 DamageMotion: 300 MutationCount: 4 MutationStrength: 50 MvpExp: 1198 Drops: { Bone: 210 UnderworldMask: 5 Skull: 300 DarkCrystal: 1000 WarlordHelmet: (3, "ODG_BASICSTAT") WarlordPlate: (2, "ODG_BASICSTAT") LeatherGloves: (35, "ODG_BASICSTAT") DiseasedHeart: 500 Soul: 500 } }, { Id: 1129 SpriteName: "GeneralTerogan" Name: "General Terogan" Lv: 140 Hp: 40000 Sp: 0 Exp: 27536 JExp: 1663 AttackRange: 2 Attack: [180, 430] Def: 5 Mdef: 20 CriticalDef: 0 Stats: { Str: 40 Agi: 3 Vit: 25 Int: 5 Dex: 80 Luk: 45 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 2) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true Boss: true } MoveSpeed: 300 AttackDelay: 1200 AttackMotion: 672 DamageMotion: 300 MutationCount: 4 MutationStrength: 50 MvpExp: 1198 Drops: { Bone: 210 Phylactery: 5 Skull: 300 DarkCrystal: 1000 WarlordHelmet: (3, "ODG_BASICSTAT") WarlordPlate: (2, "ODG_BASICSTAT") LeatherGloves: (35, "ODG_BASICSTAT") DiseasedHeart: 500 Soul: 500 } }, { Id: 1130 SpriteName: "Moonshroom" Name: "Moonshroom" Lv: 110 Hp: 550 Sp: 0 Exp: 224 JExp: 35 AttackRange: 4 Attack: [70, 80] Def: 4 Mdef: 4 CriticalDef: 0 Stats: { Str: 16 Agi: 12 Vit: 10 Int: 10 Dex: 35 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 60 Drops: { SmallMushroom: 500 BugLeg: 500 SulphurPowder: 400 Lifestone: 300 EmptyBottle: 100 JoyplimScroll: 50 MoonshroomHat: (1, "ODG_BASICSTAT") } }, { Id: 1132 SpriteName: "LavaSlime" Name: "Lava Slime" Lv: 135 Hp: 4144 Sp: 0 Exp: 6000 JExp: 1111 AttackRange: 2 Attack: [105, 260] Def: 75 Mdef: 80 CriticalDef: 0 Stats: { Str: 30 Agi: 15 Vit: 35 Int: 10 Dex: 70 Luk: 250 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (3, 2) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 900 AttackDelay: 1300 AttackMotion: 672 DamageMotion: 100 MutationCount: 3 MutationStrength: 40 Drops: { SlingBullet: 10000 SulphurPowder: 5000 SulphurPowder: 5000 IronOre: 1000 PileOfAsh: 1000 Coal: 1000 BromenalDroplet: 200 BromenalDroplet: 100 TinyManaElixir: 500 } }, { Id: 1133 SpriteName: "Anne" Name: "Anne" Lv: 110 Hp: 12000 Sp: 0 Exp: 1100 JExp: 889 AttackRange: 1 Attack: [200, 300] Def: 20 Mdef: 35 CriticalDef: 0 Stats: { Str: 60 Agi: 40 Vit: 40 Int: 30 Dex: 60 Luk: 40 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 380 AttackDelay: 872 AttackMotion: 672 DamageMotion: 900 MutationCount: 2 MutationStrength: 30 Drops: { CranberryLollipop: 6000 GrapeLollipop: 6000 OrangeLollipop: 6000 CaramelApple: 200 LollipopColor1: 500 LollipopColor2: 500 LollipopColor3: 500 ShockSweet: 20 } }, { Id: 1134 SpriteName: "SUSAN" Name: "SUSAN" Lv: 255 Hp: 696969 Sp: 0 Exp: 69000 JExp: 1400 AttackRange: 1 Attack: [0, 0] Def: 69 Mdef: 69 CriticalDef: 0 Stats: { Str: 69 Agi: 69 Vit: 69 Int: 69 Dex: 69 Luk: 69 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1500 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 30 Drops: { CranberryLollipop: 6000 GrapeLollipop: 6000 OrangeLollipop: 6000 CaramelApple: 200 LollipopColor1: 500 LollipopColor2: 500 LollipopColor3: 500 ShockSweet: 20 } }, { Id: 1135 SpriteName: "LovelyMaggot" Name: "Lovely Maggot" Lv: 1 Hp: 50 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [69, 6969] Def: 0 Mdef: 5 CriticalDef: 0 Stats: { Str: 5 Agi: 5 Vit: 1 Int: 0 Dex: 6 Luk: 5 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (1, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 200 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { MaggotSlime: 400 CactusDrink: 70 BugLeg: 200 RoastedMaggot: 75 CactusPotion: 30 } }, { Id: 1136 SpriteName: "LesserGhost" Name: "Lesser Ghost" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 0 Attack: [150, 300] Def: 0 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 2 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Looter: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 340 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 950 MutationCount: 4 MutationStrength: 20 }, { Id: 1137 SpriteName: "Tormenta" Name: "Tormenta" Lv: 200 Hp: 18000 Sp: 60 Exp: 500000 JExp: 5000 AttackRange: 5 Attack: [360, 374] Def: 48 Mdef: 70 CriticalDef: 0 Stats: { Str: 1 Agi: 32 Vit: 60 Int: 255 Dex: 255 Luk: 255 } ViewRange: 31 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 3) Mode: { CanMove: true Aggressive: true CastSensorIdle: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 210 AttackDelay: 1200 AttackMotion: 672 DamageMotion: 50 Drops: { AlizarinScroll: 10 CobaltScroll: 10 GambogeScroll: 10 MauveScroll: 10 JoyplimScroll: 10 } }, { Id: 1138 SpriteName: "ManaGuard" Name: "Mana Guardian" Lv: 180 Hp: 20000 Sp: 280 Exp: 27000 JExp: 5000 AttackRange: 2 Attack: [280, 324] Def: 22 Mdef: 67 CriticalDef: 0 Stats: { Str: 31 Agi: 22 Vit: 90 Int: 127 Dex: 255 Luk: 95 } ViewRange: 31 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 3) Mode: { CanMove: true Aggressive: true CastSensorIdle: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true Boss: true } MoveSpeed: 210 AttackDelay: 1200 AttackMotion: 672 DamageMotion: 50 }, { Id: 1139 SpriteName: "Virus" Name: "Virus" Lv: 170 Hp: 5000 Sp: 0 Exp: 5254 JExp: 721 AttackRange: 6 Attack: [45, 75] Def: 37 Mdef: 12 CriticalDef: 0 Stats: { Str: 30 Agi: 30 Vit: 20 Int: 20 Dex: 25 Luk: 60 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 600 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { Snapple: 500 Acorn: 1100 GumiCandy: 11 } }, { Id: 1140 SpriteName: "Tengu" Name: "Tengu" Lv: 180 Hp: 24000 Sp: 280 Exp: 45000 JExp: 5000 AttackRange: 2 Attack: [180, 224] Def: 67 Mdef: 9 CriticalDef: 0 Stats: { Str: 31 Agi: 22 Vit: 90 Int: 97 Dex: 255 Luk: 95 } ViewRange: 31 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 3) Mode: { CanMove: true Aggressive: true CastSensorIdle: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true Boss: true } MoveSpeed: 310 AttackDelay: 1200 AttackMotion: 672 DamageMotion: 50 Drops: { TinyManaElixir: 500 } }, { Id: 1141 SpriteName: "Sasquatch" Name: "Sasquatch" Lv: 180 Hp: 24000 Sp: 280 Exp: 45000 JExp: 5000 AttackRange: 2 Attack: [420, 444] Def: 12 Mdef: 27 CriticalDef: 0 Stats: { Str: 31 Agi: 22 Vit: 90 Int: 97 Dex: 255 Luk: 95 } ViewRange: 31 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 3) Mode: { CanMove: true Aggressive: true CastSensorIdle: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true Boss: true } MoveSpeed: 310 AttackDelay: 1200 AttackMotion: 672 DamageMotion: 50 Drops: { TinyManaElixir: 500 } }, { Id: 1142 SpriteName: "Kage" Name: "Zax DeKagen" Lv: 200 Hp: 29999 Sp: 280 Exp: 999999 JExp: 99999 AttackRange: 9 Attack: [90, 124] Def: 74 Mdef: 100 CriticalDef: 0 Stats: { Str: 199 Agi: 2 Vit: 199 Int: 197 Dex: 255 Luk: 175 } ViewRange: 31 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 3) Mode: { CanMove: true Aggressive: true CastSensorIdle: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 210 AttackDelay: 672 AttackMotion: 672 DamageMotion: 50 }, { Id: 1143 SpriteName: "ManaSlayer" Name: "Mana Slayer" Lv: 180 Hp: 24000 Sp: 280 Exp: 42000 JExp: 5000 AttackRange: 2 Attack: [260, 274] Def: 22 Mdef: 67 CriticalDef: 0 Stats: { Str: 31 Agi: 22 Vit: 90 Int: 127 Dex: 255 Luk: 95 } ViewRange: 31 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 3) Mode: { CanMove: true Aggressive: true CastSensorIdle: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true Boss: true } MoveSpeed: 210 AttackDelay: 1200 AttackMotion: 672 DamageMotion: 50 Drops: { TinyManaElixir: 500 } }, { Id: 1144 SpriteName: "Dragon" Name: "Great Dragon" Lv: 250 Hp: 29999 Sp: 280 Exp: 1 JExp: 1 AttackRange: 3 Attack: [60, 90] Def: 67 Mdef: 67 CriticalDef: 0 Stats: { Str: 199 Agi: 2 Vit: 199 Int: 197 Dex: 255 Luk: 95 } ViewRange: 31 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 3) Mode: { CanMove: true Aggressive: true CastSensorIdle: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 210 AttackDelay: 1200 AttackMotion: 672 DamageMotion: 50 Drops: { PaladinsHelmet: 1 } }, { Id: 1145 SpriteName: "KageGolem" Name: "Kage Golem" Lv: 180 Hp: 29999 Sp: 280 Exp: 150000 JExp: 15000 AttackRange: 6 Attack: [140, 174] Def: 72 Mdef: 55 CriticalDef: 0 Stats: { Str: 31 Agi: 22 Vit: 90 Int: 127 Dex: 255 Luk: 125 } ViewRange: 31 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 3) Mode: { CanMove: true Aggressive: true CastSensorIdle: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 410 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 50 Drops: { Tomato: 10000 } }, { Id: 1146 SpriteName: "Flashmob" Name: "Flashmob" Lv: 181 Hp: 27000 Sp: 280 Exp: 72000 JExp: 5000 AttackRange: 3 Attack: [40, 60] Def: 57 Mdef: 57 CriticalDef: 0 Stats: { Str: 31 Agi: 22 Vit: 90 Int: 127 Dex: 255 Luk: 95 } ViewRange: 31 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 3) Mode: { CanMove: true Aggressive: true CastSensorIdle: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true Boss: true } MoveSpeed: 160 AttackDelay: 600 AttackMotion: 672 DamageMotion: 50 Drops: { TinyManaElixir: 500 } }, { Id: 1147 SpriteName: "Koyntety" Name: "Koyntety" Lv: 181 Hp: 27000 Sp: 280 Exp: 72000 JExp: 5000 AttackRange: 4 Attack: [220, 240] Def: 52 Mdef: 52 CriticalDef: 0 Stats: { Str: 31 Agi: 22 Vit: 90 Int: 127 Dex: 255 Luk: 105 } ViewRange: 31 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 3) Mode: { CanMove: true Aggressive: true CastSensorIdle: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true Boss: true } MoveSpeed: 240 AttackDelay: 1400 AttackMotion: 672 DamageMotion: 50 Drops: { TinyManaElixir: 500 } }, { Id: 1148 SpriteName: "DoomGolem" Name: "Doom Golem" Lv: 180 Hp: 22000 Sp: 280 Exp: 65000 JExp: 2000 AttackRange: 3 Attack: [160, 180] Def: 60 Mdef: 30 CriticalDef: 0 Stats: { Str: 31 Agi: 22 Vit: 90 Int: 127 Dex: 255 Luk: 105 } ViewRange: 31 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 3) Mode: { CanMove: true Aggressive: true CastSensorIdle: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true Boss: true } MoveSpeed: 320 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 50 MutationCount: 1 MutationStrength: 10 Drops: { TreasureKey: 800 UndeadEar: 150 UndeadEye: 150 RottenRags: 70 Soul: 50 BlackRose: 30 MageRing: 4 BlinkingHocus: 1 } }, { Id: 1149 SpriteName: "Enchanter" Name: "Enchanter" Lv: 181 Hp: 19000 Sp: 280 Exp: 55000 JExp: 2000 AttackRange: 8 Attack: [140, 180] Def: 30 Mdef: 60 CriticalDef: 0 Stats: { Str: 31 Agi: 22 Vit: 90 Int: 127 Dex: 255 Luk: 105 } ViewRange: 31 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 3) Mode: { CanMove: true Aggressive: true CastSensorIdle: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true Boss: true } MoveSpeed: 240 AttackDelay: 800 AttackMotion: 672 DamageMotion: 50 MutationCount: 1 MutationStrength: 10 Drops: { TreasureKey: 800 UndeadEar: 90 UndeadEye: 80 RottenRags: 70 Soul: 50 BlackRose: 30 EnchantersAmulet: 2 } }, { Id: 1150 SpriteName: "ManaTyrant" Name: "Mana Tyrant" Lv: 180 Hp: 24000 Sp: 280 Exp: 27000 JExp: 5000 AttackRange: 2 Attack: [300, 325] Def: 42 Mdef: 67 CriticalDef: 0 Stats: { Str: 31 Agi: 22 Vit: 90 Int: 127 Dex: 255 Luk: 95 } ViewRange: 31 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 3) Mode: { CanMove: true Aggressive: true CastSensorIdle: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true Boss: true } MoveSpeed: 180 AttackDelay: 1050 AttackMotion: 672 DamageMotion: 50 Drops: { PaladinsHelmet: 1 CaramelCandy: 20 GoldenDeliciousApple: 5 SilkRobe: (100, "ODG_BASICSTAT") TinyManaElixir: 500 SilkGloves: (20, "ODG_BASICSTAT") SilkPants: (15, "ODG_BASICSTAT") } }, { Id: 1151 SpriteName: "VoidFlower" Name: "Void Flower" Lv: 115 Hp: 7000 Sp: 0 Exp: 1068 JExp: 40 AttackRange: 12 Attack: [400, 420] Def: 0 Mdef: 5 CriticalDef: 0 Stats: { Str: 16 Agi: 12 Vit: 20 Int: 20 Dex: 255 Luk: 50 } ViewRange: 12 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) Mode: { CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 2000 AttackMotion: 672 DamageMotion: 180 Drops: { RedApple: 100 EmptyBottle: 10 Arrow: 100 CoinBag: 400 PinkPetal: 1000 PinkPetal: 1000 } }, { Id: 1152 SpriteName: "VoidArchant" Name: "Void Archant" Lv: 130 Hp: 6000 Sp: 0 Exp: 1598 JExp: 14 AttackRange: 1 Attack: [140, 180] Def: 36 Mdef: 6 CriticalDef: 0 Stats: { Str: 10 Agi: 5 Vit: 1 Int: 0 Dex: 12 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (2, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 200 MutationCount: 2 MutationStrength: 40 Drops: { TreasureKey: 300 RedApple: 100 IronOre: 40 Coal: 20 } }, { Id: 1153 SpriteName: "VoidSlime" Name: "Void Slime" Lv: 135 Hp: 4144 Sp: 0 Exp: 6000 JExp: 70 AttackRange: 2 Attack: [105, 160] Def: 75 Mdef: 40 CriticalDef: 0 Stats: { Str: 30 Agi: 15 Vit: 35 Int: 10 Dex: 70 Luk: 250 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (3, 2) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1100 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 200 Drops: { SlingBullet: 10000 SulphurPowder: 5000 SulphurPowder: 5000 IronOre: 1000 PileOfAsh: 1000 Coal: 1000 TinyManaElixir: 500 } }, { Id: 1154 SpriteName: "VoidSnake" Name: "Void Snake" Lv: 130 Hp: 2000 Sp: 0 Exp: 541 JExp: 63 AttackRange: 1 Attack: [80, 120] Def: 4 Mdef: 6 CriticalDef: 0 Stats: { Str: 20 Agi: 40 Vit: 10 Int: 10 Dex: 35 Luk: 45 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 320 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 200 MutationCount: 1 MutationStrength: 30 Drops: { LeatherGloves: (20, "ODG_BASICSTAT") SnakeSkin: 350 MountainSnakeEgg: 400 MountainSnakeEgg: 400 MountainSnakeTongue: 500 } }, { Id: 1155 SpriteName: "VoidBat" Name: "Void Bat" Lv: 100 Hp: 400 Sp: 0 Exp: 81 JExp: 3 AttackRange: 1 Attack: [10, 25] Def: 0 Mdef: 5 CriticalDef: 0 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 0 Dex: 20 Luk: 25 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 200 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 40 Drops: { MaggotSlime: 800 CactusDrink: 150 BugLeg: 400 RoastedMaggot: 150 Dagger: 70 SharpKnife: 1 BatWing: 3000 BatTeeth: 2000 } }, { Id: 1156 SpriteName: "VoidMaggot" Name: "Void Maggot" Lv: 100 Hp: 400 Sp: 0 Exp: 74 JExp: 1 AttackRange: 1 Attack: [10, 25] Def: 0 Mdef: 5 CriticalDef: 0 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 0 Dex: 20 Luk: 25 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (1, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { MaggotSlime: 800 CactusDrink: 150 BugLeg: 400 RoastedMaggot: 150 CactusPotion: 70 SharpKnife: 10 } }, { Id: 1157 SpriteName: "VoidSoldier" Name: "Void Soldier" Lv: 120 Hp: 8000 Sp: 0 Exp: 1957 JExp: 663 AttackRange: 7 Attack: [20, 30] Def: 5 Mdef: 20 CriticalDef: 0 Stats: { Str: 40 Agi: 3 Vit: 25 Int: 5 Dex: 80 Luk: 45 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 2) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 500 AttackDelay: 1600 AttackMotion: 672 DamageMotion: 300 MutationCount: 4 MutationStrength: 40 Drops: { UndeadEar: 210 UndeadEye: 210 PurpleDye: 200 DarkCrystal: 1000 WarlordHelmet: (3, "ODG_BASICSTAT") WarlordPlate: (2, "ODG_BASICSTAT") LeatherGloves: (35, "ODG_BASICSTAT") DiseasedHeart: 500 Soul: 500 } }, { Id: 1158 SpriteName: "VoidMouboo" Name: "Void Mouboo" Lv: 100 Hp: 5000 Sp: 0 Exp: 1338 JExp: 16 AttackRange: 2 Attack: [50, 65] Def: 60 Mdef: 5 CriticalDef: 0 Stats: { Str: 15 Agi: 5 Vit: 15 Int: 0 Dex: 40 Luk: 10 } ViewRange: 2 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 600 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 30 Drops: { CottonCloth: 1000 CottonCloth: 500 BottleOfWater: 750 CottonCloth: 50 ReedBundle: 500 } }, { Id: 1159 SpriteName: "VoidScorpion" Name: "Void Scorpion" Lv: 110 Hp: 6000 Sp: 0 Exp: 1327 JExp: 37 AttackRange: 1 Attack: [60, 90] Def: 4 Mdef: 6 CriticalDef: 0 Stats: { Str: 16 Agi: 30 Vit: 10 Int: 10 Dex: 35 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 700 AttackDelay: 1700 AttackMotion: 672 DamageMotion: 480 Drops: { LeatherShirt: (150, "ODG_BASICSTAT") ChocolateBar: 100 BugLeg: 800 BlackScorpionStinger: 800 } }, { Id: 1160 SpriteName: "VoidShroom" Name: "Void Shroom" Lv: 110 Hp: 5500 Sp: 0 Exp: 1223 JExp: 30 AttackRange: 3 Attack: [70, 80] Def: 4 Mdef: 4 CriticalDef: 0 Stats: { Str: 16 Agi: 12 Vit: 10 Int: 10 Dex: 35 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 550 AttackDelay: 1700 AttackMotion: 672 DamageMotion: 480 Drops: { HardSpike: 600 Amethyst: 50 IronPotion: 100 SmallMushroom: 1000 } }, { Id: 1161 SpriteName: "Xakelbael" Name: "Xakelbael" Lv: 200 Hp: 29999 Sp: 280 Exp: 999999 JExp: 99999 AttackRange: 9 Attack: [90, 124] Def: 74 Mdef: 100 CriticalDef: 0 Stats: { Str: 199 Agi: 2 Vit: 199 Int: 197 Dex: 255 Luk: 175 } ViewRange: 31 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 3) Mode: { CanMove: true Aggressive: true CastSensorIdle: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 210 AttackDelay: 672 AttackMotion: 672 DamageMotion: 50 }, { Id: 1004 SpriteName: "RedScorpion" Name: "Red Scorpion" Lv: 90 Hp: 550 Sp: 0 Exp: 168 JExp: 16 AttackRange: 1 Attack: [50, 55] Def: 4 Mdef: 6 CriticalDef: 0 Stats: { Str: 8 Agi: 8 Vit: 10 Int: 10 Dex: 30 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1000 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 50 Drops: { RedScorpionStinger: 2000 ChocolateBar: 100 BugLeg: 500 Bow: 10 Arrow: 760 Knife: 540 FancyHat: (25, "ODG_BASICSTAT") } }, { Id: 1006 SpriteName: "GiantMaggot" Name: "Giant Maggot" Lv: 80 Hp: 500 Sp: 0 Exp: 136 JExp: 14 AttackRange: 2 Attack: [45, 75] Def: 2 Mdef: 7 CriticalDef: 0 Stats: { Str: 8 Agi: 6 Vit: 2 Int: 1 Dex: 22 Luk: 1 } ViewRange: 2 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 2) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 2000 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 25 Drops: { Arrow: 900 CherryCake: 100 BugLeg: 750 CactusDrink: 5000 CactusPotion: 3000 CasinoCoins: 11 CoinBag: 200 } }, { Id: 1028 SpriteName: "Mouboo" Name: "Mouboo" Lv: 85 Hp: 1200 Sp: 0 Exp: 497 JExp: 16 AttackRange: 2 Attack: [30, 75] Def: 65 Mdef: 5 CriticalDef: 0 Stats: { Str: 15 Agi: 5 Vit: 15 Int: 0 Dex: 40 Luk: 10 } ViewRange: 2 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 600 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 30 Drops: { CottonCloth: 1000 CottonCloth: 500 BottleOfWater: 750 CottonCloth: 50 ReedBundle: 500 MoubooHead: (1, "ODG_BASICSTAT") } }, { Id: 1043 SpriteName: "Skeleton" Name: "Skeleton" Lv: 90 Hp: 6800 Sp: 0 Exp: 3940 JExp: 1467 AttackRange: 1 Attack: [51, 284] Def: 12 Mdef: 10 CriticalDef: 0 Stats: { Str: 35 Agi: 18 Vit: 3 Int: 8 Dex: 71 Luk: 65 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 340 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 950 MutationCount: 2 MutationStrength: 30 Drops: { Bone: 200 Bone: 280 Skull: 300 DarkCrystal: 1000 DiseasedHeart: 250 GoldenTooth: 10 } }, { Id: 1044 SpriteName: "LadySkeleton" Name: "Lady Skeleton" Lv: 90 Hp: 5500 Sp: 0 Exp: 4120 JExp: 957 AttackRange: 1 Attack: [73, 146] Def: 31 Mdef: 8 CriticalDef: 0 Stats: { Str: 20 Agi: 25 Vit: 15 Int: 8 Dex: 43 Luk: 48 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 650 AttackDelay: 750 AttackMotion: 672 DamageMotion: 700 MutationCount: 2 MutationStrength: 30 Drops: { Bone: 200 Bone: 280 Skull: 300 DarkCrystal: 1000 DiseasedHeart: 250 GoldenTooth: 10 } }, { Id: 1047 SpriteName: "Poltergeist" Name: "Poltergeist" Lv: 90 Hp: 9000 Sp: 0 Exp: 4230 JExp: 1306 AttackRange: 3 Attack: [110, 150] Def: 0 Mdef: 15 CriticalDef: 0 Stats: { Str: 35 Agi: 0 Vit: 15 Int: 15 Dex: 75 Luk: 50 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (7, 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 330 AttackDelay: 740 AttackMotion: 672 DamageMotion: 400 MutationCount: 2 MutationStrength: 20 Drops: { PoltergeistPowder: 1000 SulphurPowder: 600 SulphurPowder: 480 } }, { Id: 1059 SpriteName: "GCMaggot" Name: "Giant Cave Maggot" Lv: 90 Hp: 2000 Sp: 0 Exp: 685 JExp: 102 AttackRange: 2 Attack: [60, 80] Def: 2 Mdef: 7 CriticalDef: 0 Stats: { Str: 10 Agi: 10 Vit: 2 Int: 1 Dex: 22 Luk: 1 } ViewRange: 2 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 2) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1000 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 25 Drops: { Iten: 10000 } }, { Id: 1066 SpriteName: "VampireBat" Name: "Vampire Bat" Lv: 80 Hp: 800 Sp: 0 Exp: 245 JExp: 9 AttackRange: 1 Attack: [55, 150] Def: 10 Mdef: 8 CriticalDef: 0 Stats: { Str: 8 Agi: 8 Vit: 1 Int: 4 Dex: 20 Luk: 4 } ViewRange: 6 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 30 Drops: { CactusDrink: 150 BugLeg: 400 RoastedMaggot: 150 Dagger: 70 SharpKnife: 1 VampireBatWing: 3000 BatTeeth: 2000 } }, { Id: 1069 SpriteName: "FlyingScythe" Name: "Flying Scythe" Lv: 80 Hp: 3000 Sp: 0 Exp: 7042 JExp: 617 AttackRange: 1 Attack: [200, 350] Def: 30 Mdef: 10 CriticalDef: 0 Stats: { Str: 100 Agi: 250 Vit: 1 Int: 1 Dex: 150 Luk: 90 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 2) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 220 AttackDelay: 700 AttackMotion: 672 DamageMotion: 500 }, { Id: 1070 SpriteName: "BallLightning" Name: "Ball Lightning" Lv: 80 Hp: 300 Sp: 0 Exp: 201 JExp: 1 AttackRange: 1 Attack: [5, 10] Def: 40 Mdef: 50 CriticalDef: 0 Stats: { Str: 1 Agi: 200 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (7, 2) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 110 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 0 }, { Id: 1073 SpriteName: "TheLost" Name: "The Lost" Lv: 83 Hp: 5000 Sp: 0 Exp: 8750 JExp: 2840 AttackRange: 5 Attack: [125, 150] Def: 10 Mdef: 60 CriticalDef: 0 Stats: { Str: 5 Agi: 40 Vit: 10 Int: 70 Dex: 70 Luk: 40 } ViewRange: 4 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 3) Mode: { CanMove: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true Boss: true } MoveSpeed: 500 AttackDelay: 2000 AttackMotion: 672 DamageMotion: 300 Drops: { Bloodstone: 500 Bloodstone: 500 DarkCrystal: 500 SmallMushroom: 500 DiseasedHeart: 800 } }, { Id: 1074 SpriteName: "RedBone" Name: "Red Bone" Lv: 90 Hp: 8000 Sp: 0 Exp: 9750 JExp: 3434 AttackRange: 2 Attack: [100, 330] Def: 24 Mdef: 30 CriticalDef: 0 Stats: { Str: 35 Agi: 25 Vit: 3 Int: 50 Dex: 80 Luk: 75 } ViewRange: 2 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true Boss: true } MoveSpeed: 340 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 950 MutationCount: 4 MutationStrength: 20 Drops: { Bone: 75 Bone: 115 Skull: 135 DarkCrystal: 4 DiseasedHeart: 250 GoldenTooth: 10 } }, { Id: 1077 SpriteName: "DrunkenSkeleton" Name: "Drunken Skeleton" Lv: 90 Hp: 7200 Sp: 0 Exp: 4825 JExp: 530 AttackRange: 1 Attack: [55, 284] Def: 30 Mdef: 10 CriticalDef: 0 Stats: { Str: 35 Agi: 10 Vit: 3 Int: 8 Dex: 71 Luk: 65 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 350 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 950 MutationCount: 2 MutationStrength: 30 Drops: { BloodWine: 300 GutBuster: 280 JarofBlood: 100 JackOLantern: 50 JellySkull: 250 TonoriDelight: 400 DiseasedHeart: 250 GoldenTooth: 40 TopHat: (1, "ODG_BASICSTAT") } }, { Id: 1078 SpriteName: "TipsySkeleton" Name: "Tipsy Skeleton" Lv: 90 Hp: 7000 Sp: 0 Exp: 4950 JExp: 493 AttackRange: 1 Attack: [60, 284] Def: 33 Mdef: 10 CriticalDef: 0 Stats: { Str: 35 Agi: 10 Vit: 3 Int: 8 Dex: 71 Luk: 65 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 350 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 950 MutationCount: 2 MutationStrength: 30 Drops: { Snapple: 300 BeetleJuice: 280 RealisticBrain: 100 JackOLantern: 50 Marshmallow: 400 CandyPumpkin: 250 DiseasedHeart: 250 GoldenTooth: 40 BowlerHat: (1, "ODG_BASICSTAT") } }, { Id: 1079 SpriteName: "DrunkenLadySkeleton" Name: "Drunken Lady Skeleton" Lv: 90 Hp: 6000 Sp: 0 Exp: 4565 JExp: 389 AttackRange: 1 Attack: [75, 146] Def: 40 Mdef: 8 CriticalDef: 0 Stats: { Str: 20 Agi: 20 Vit: 15 Int: 8 Dex: 51 Luk: 48 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 660 AttackDelay: 750 AttackMotion: 672 DamageMotion: 700 MutationCount: 2 MutationStrength: 30 Drops: { LadyFingers: 300 JellAhh: 280 RubberBat: 100 JackOLantern: 50 CandyPumpkin: 250 JellySkull: 250 DiseasedHeart: 250 GoldenTooth: 40 HeartGlasses: (1, "ODG_BASICSTAT") } }, { Id: 1097 SpriteName: "SoulEater" Name: "Soul Eater" Lv: 90 Hp: 6800 Sp: 0 Exp: 4150 JExp: 1746 AttackRange: 1 Attack: [129, 354] Def: 12 Mdef: 10 CriticalDef: 0 Stats: { Str: 35 Agi: 18 Vit: 3 Int: 8 Dex: 71 Luk: 65 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 340 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 950 MutationCount: 2 MutationStrength: 30 Drops: { DiseasedHeart: 250 } }, { Id: 1103 SpriteName: "WitchGuard" Name: "Witch Guard" Lv: 84 Hp: 9742 Sp: 0 Exp: 9525 JExp: 1060 AttackRange: 2 Attack: [200, 220] Def: 25 Mdef: 30 CriticalDef: 0 Stats: { Str: 90 Agi: 65 Vit: 45 Int: 5 Dex: 120 Luk: 69 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 4) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 290 AttackDelay: 1200 AttackMotion: 672 DamageMotion: 30 MutationCount: 1 MutationStrength: 40 Drops: { DarkCrystal: 2000 DarkCrystal: 500 DiseasedHeart: 250 AlizarinScroll: 50 CobaltScroll: 50 GambogeScroll: 50 MauveScroll: 50 } }, { Id: 1104 SpriteName: "DemonicMouboo" Name: "Demonic Mouboo" Lv: 85 Hp: 800 Sp: 0 Exp: 290 JExp: 32 AttackRange: 2 Attack: [40, 70] Def: 35 Mdef: 15 CriticalDef: 0 Stats: { Str: 15 Agi: 5 Vit: 15 Int: 0 Dex: 40 Luk: 10 } ViewRange: 2 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 600 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 30 Drops: { SulphurPowder: 3000 CottonCloth: 1000 CottonCloth: 500 Emerald: 50 ReedBundle: 500 } }, { Id: 1109 SpriteName: "AngrySeaSlime" Name: "Angry Sea Slime" Lv: 80 Hp: 1200 Sp: 0 Exp: 505 JExp: 42 AttackRange: 1 Attack: [40, 70] Def: 13 Mdef: 17 CriticalDef: 0 Stats: { Str: 3 Agi: 30 Vit: 3 Int: 0 Dex: 35 Luk: 35 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 2) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1500 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { RedApple: 800 Orange: 800 BugLeg: 500 Candy: 1000 Pearl: 100 Arrow: 5000 ConcentrationPotion: 100 BottleOfWater: 50 } }, { Id: 1115 SpriteName: "SeaSlimeMother" Name: "Sea Slime Mother" Lv: 90 Hp: 8000 Sp: 0 Exp: 3131 JExp: 900 AttackRange: 5 Attack: [100, 150] Def: 10 Mdef: 20 CriticalDef: 0 Stats: { Str: 1 Agi: 15 Vit: 10 Int: 10 Dex: 10 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (2, 2) Mode: { CanMove: true Looter: true Aggressive: true Assist: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1500 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 30 Drops: { RedApple: 800 Orange: 800 BugLeg: 500 Candy: 1000 Pearl: 100 Arrow: 5000 ConcentrationPotion: 100 BottleOfWater: 50 } }, { Id: 1116 SpriteName: "UndeadWitch" Name: "Undead Witch" Lv: 80 Hp: 4200 Sp: 0 Exp: 1875 JExp: 722 AttackRange: 3 Attack: [50, 110] Def: 8 Mdef: 31 CriticalDef: 0 Stats: { Str: 15 Agi: 20 Vit: 10 Int: 25 Dex: 50 Luk: 40 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 550 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 700 MutationCount: 2 MutationStrength: 30 Drops: { DarkCrystal: 1000 Bone: 400 Skull: 300 DiseasedHeart: 250 IronPowder: 100 SulphurPowder: 50 EnlighteningElixir: 1200 GoldenTooth: 20 WitchHat: (1, "ODG_BASICSTAT") } }, { Id: 1118 SpriteName: "GreenSlimeMother" Name: "Green Slime Mother" Lv: 90 Hp: 8000 Sp: 0 Exp: 3550 JExp: 900 AttackRange: 5 Attack: [100, 150] Def: 15 Mdef: 20 CriticalDef: 0 Stats: { Str: 20 Agi: 25 Vit: 20 Int: 30 Dex: 20 Luk: 20 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 30 Drops: { CactusPotion: 200 Emerald: 20 CactusDrink: 100 Dagger: 250 SharpKnife: 200 CoinBag: 500 CasinoCoins: 500 GreenApple: 750 } }, { Id: 1124 SpriteName: "Wight" Name: "Wight" Lv: 90 Hp: 8000 Sp: 0 Exp: 9000 JExp: 1900 AttackRange: 2 Attack: [56, 294] Def: 32 Mdef: 15 CriticalDef: 0 Stats: { Str: 28 Agi: 25 Vit: 15 Int: 15 Dex: 50 Luk: 65 } ViewRange: 3 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 340 AttackDelay: 1400 AttackMotion: 672 DamageMotion: 950 MutationCount: 4 MutationStrength: 20 Drops: { Bone: 100 Bone: 140 Skull: 150 DarkCrystal: 50 DarkCrystal: 500 DiseasedHeart: 250 GoldenTooth: 10 } }, { Id: 1125 SpriteName: "ManaGhost" Name: "Mana Ghost" Lv: 82 Hp: 8000 Sp: 0 Exp: 7500 JExp: 2400 AttackRange: 3 Attack: [150, 300] Def: 23 Mdef: 30 CriticalDef: 0 Stats: { Str: 35 Agi: 15 Vit: 3 Int: 50 Dex: 50 Luk: 40 } ViewRange: 2 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Looter: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 340 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 950 MutationCount: 4 MutationStrength: 20 Drops: { Bone: 75 Bone: 115 Skull: 135 DarkCrystal: 40 Bloodstone: 700 DarkCrystal: 800 EnlighteningElixir: 1600 ManaDust: 10000 } }, { Id: 1007 SpriteName: "YellowSlime" Name: "Yellow Slime" Lv: 60 Hp: 400 Sp: 0 Exp: 94 JExp: 9 AttackRange: 1 Attack: [35, 40] Def: 2 Mdef: 7 CriticalDef: 0 Stats: { Str: 9 Agi: 6 Vit: 2 Int: 1 Dex: 34 Luk: 1 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 1) Mode: { CanMove: true Looter: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1400 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 20 Drops: { YellowApple: 750 OrangeCupcake: 200 CherryCake: 100 CactusDrink: 350 CactusPotion: 250 SharpKnife: 10 IronOre: 450 Topaz: 20 Coal: 450 } }, { Id: 1008 SpriteName: "RedSlime" Name: "Red Slime" Lv: 70 Hp: 450 Sp: 0 Exp: 130 JExp: 17 AttackRange: 1 Attack: [40, 45] Def: 2 Mdef: 7 CriticalDef: 0 Stats: { Str: 12 Agi: 8 Vit: 2 Int: 1 Dex: 25 Luk: 1 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 1) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1300 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 20 Drops: { Knife: 300 ChocolateBar: 110 Dagger: 200 Ruby: 20 MinersHat: (80, "ODG_BASICSTAT") RedApple: 750 Boots: (250, "ODG_BASICSTAT") MinerGloves: (150, "ODG_BASICSTAT") } }, { Id: 1033 SpriteName: "SeaSlime" Name: "Sea Slime" Lv: 70 Hp: 600 Sp: 0 Exp: 187 JExp: 13 AttackRange: 1 Attack: [30, 50] Def: 3 Mdef: 7 CriticalDef: 0 Stats: { Str: 1 Agi: 25 Vit: 1 Int: 0 Dex: 30 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 2) Mode: { CanMove: true Looter: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1500 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { RedApple: 800 Orange: 800 BugLeg: 500 Candy: 1000 Pearl: 100 Arrow: 5000 ConcentrationPotion: 100 BottleOfWater: 50 } }, { Id: 1040 SpriteName: "Wisp" Name: "Wisp" Lv: 70 Hp: 9300 Sp: 0 Exp: 3725 JExp: 1210 AttackRange: 2 Attack: [215, 350] Def: 0 Mdef: 20 CriticalDef: 0 Stats: { Str: 45 Agi: 12 Vit: 13 Int: 15 Dex: 0 Luk: 45 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (7, 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 380 AttackDelay: 2000 AttackMotion: 672 DamageMotion: 1500 MutationCount: 2 MutationStrength: 20 Drops: { WispPowder: 1000 SulphurPowder: 600 SulphurPowder: 480 } }, { Id: 1054 SpriteName: "Troll" Name: "Troll" Lv: 65 Hp: 2000 Sp: 0 Exp: 850 JExp: 129 AttackRange: 3 Attack: [70, 100] Def: 20 Mdef: 10 CriticalDef: 0 Stats: { Str: 50 Agi: 40 Vit: 10 Int: 10 Dex: 30 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 600 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 40 Drops: { Arrow: 2000 IronArrow: 500 Beer: 300 CoinBag: 250 GingerBreadMan: 200 KidBook: 10 } }, { Id: 1061 SpriteName: "Moggun" Name: "Moggun" Lv: 60 Hp: 800 Sp: 0 Exp: 280 JExp: 52 AttackRange: 1 Attack: [70, 90] Def: 20 Mdef: 10 CriticalDef: 0 Stats: { Str: 50 Agi: 40 Vit: 10 Int: 10 Dex: 10 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (2, 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 600 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 40 Drops: { WhiteFur: 600 Coal: 1000 Diamond: 20 } }, { Id: 1101 SpriteName: "DemonicSpirit" Name: "Demonic Spirit" Lv: 72 Hp: 1505 Sp: 0 Exp: 860 JExp: 270 AttackRange: 1 Attack: [125, 175] Def: 4 Mdef: 6 CriticalDef: 0 Stats: { Str: 20 Agi: 40 Vit: 10 Int: 10 Dex: 110 Luk: 45 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 4) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 230 AttackDelay: 900 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 30 Drops: { DarkCrystal: 1000 } }, { Id: 1110 SpriteName: "AngryGreenSlime" Name: "Angry Green Slime" Lv: 60 Hp: 1000 Sp: 0 Exp: 435 JExp: 135 AttackRange: 1 Attack: [100, 160] Def: 20 Mdef: 30 CriticalDef: 0 Stats: { Str: 20 Agi: 30 Vit: 10 Int: 10 Dex: 30 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1200 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 20 Drops: { CactusPotion: 200 Emerald: 20 CactusDrink: 100 Dagger: 250 SharpKnife: 200 CoinBag: 500 CasinoCoins: 500 GreenApple: 750 } }, { Id: 1117 SpriteName: "UndeadTroll" Name: "Undead Troll" Lv: 75 Hp: 3100 Sp: 0 Exp: 1770 JExp: 179 AttackRange: 3 Attack: [60, 140] Def: 20 Mdef: 10 CriticalDef: 0 Stats: { Str: 50 Agi: 40 Vit: 20 Int: 10 Dex: 40 Luk: 49 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 650 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 40 Drops: { Arrow: 2000 DarkCrystal: 1000 IronArrow: 500 Beer: 300 CoinBag: 250 AnimalBones: 200 KidBook: 20 } }, { Id: 1002 SpriteName: "Maggot" Name: "Maggot" Lv: 5 Hp: 50 Sp: 0 Exp: 6 JExp: 1 AttackRange: 1 Attack: [5, 10] Def: 0 Mdef: 0 CriticalDef: 0 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 0 Dex: 6 Luk: 5 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (1, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { MaggotSlime: 800 CactusDrink: 150 BugLeg: 400 RoastedMaggot: 150 CactusPotion: 70 SharpKnife: 10 } }, { Id: 1046 SpriteName: "TameScorpion" Name: "Tame Scorpion" Lv: 5 Hp: 50 Sp: 0 Exp: 6 JExp: 2 AttackRange: 1 Attack: [7, 10] Def: 0 Mdef: 1 CriticalDef: 0 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 0 Dex: 15 Luk: 5 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 2000 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { ScorpionStinger: 700 Candy: 100 ChocolateBar: 50 BugLeg: 700 } }, { Id: 1050 SpriteName: "HouseMaggot" Name: "House Maggot" Lv: 5 Hp: 50 Sp: 0 Exp: 7 JExp: 3 AttackRange: 1 Attack: [5, 7] Def: 0 Mdef: 3 CriticalDef: 0 Stats: { Str: 5 Agi: 5 Vit: 1 Int: 0 Dex: 6 Luk: 5 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (1, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 700 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { MaggotSlime: 800 CactusDrink: 150 BugLeg: 400 RoastedMaggot: 150 CactusPotion: 70 SharpKnife: 10 } }, { Id: 1003 SpriteName: "Scorpion" Name: "Scorpion" Lv: 10 Hp: 100 Sp: 0 Exp: 13 JExp: 2 AttackRange: 1 Attack: [10, 15] Def: 0 Mdef: 3 CriticalDef: 0 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 0 Dex: 15 Luk: 5 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 2000 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { ScorpionStinger: 700 Candy: 100 ChocolateBar: 50 BugLeg: 700 } }, { Id: 1029 SpriteName: "MauvePlant" Name: "Mauve Plant" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { MauveHerb: 3000 MauveHerb: 3000 MauveHerb: 3000 } }, { Id: 1030 SpriteName: "CobaltPlant" Name: "Cobalt Plant" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { CobaltHerb: 3000 CobaltHerb: 3000 CobaltHerb: 3000 } }, { Id: 1031 SpriteName: "GambogePlant" Name: "Gamboge Plant" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { GambogeHerb: 3000 GambogeHerb: 3000 GambogeHerb: 3000 } }, { Id: 1032 SpriteName: "AlizarinPlant" Name: "Alizarin Plant" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { AlizarinHerb: 3000 AlizarinHerb: 3000 AlizarinHerb: 3000 } }, { Id: 1037 SpriteName: "CloverPatch" Name: "Clover Patch" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 0 Mdef: 5 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { FourLeafClover: 5 } }, { Id: 1038 SpriteName: "Squirrel" Name: "Squirrel" Lv: 15 Hp: 160 Sp: 1 Exp: 32 JExp: 5 AttackRange: 1 Attack: [10, 20] Def: 1 Mdef: 6 CriticalDef: 0 Stats: { Str: 1 Agi: 3 Vit: 1 Int: 0 Dex: 15 Luk: 40 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 15 Drops: { Acorn: 7000 MauveHerb: 1000 CobaltHerb: 1000 GambogeHerb: 1000 AlizarinHerb: 1000 GrassSeed: 800 SquirrelPelt: 550 } }, { Id: 1056 SpriteName: "CaveMaggot" Name: "Cave Maggot" Lv: 10 Hp: 100 Sp: 0 Exp: 16 JExp: 3 AttackRange: 1 Attack: [10, 10] Def: 0 Mdef: 5 CriticalDef: 0 Stats: { Str: 5 Agi: 5 Vit: 1 Int: 0 Dex: 6 Luk: 5 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (1, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 700 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { MaggotSlime: 800 CactusDrink: 150 BugLeg: 400 RoastedMaggot: 150 CactusPotion: 70 SharpKnife: 10 } }, { Id: 1063 SpriteName: "Pumpkin" Name: "Pumpkin" Lv: 1 Hp: 200 Sp: 0 Exp: 17 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 0 Mdef: 5 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { JackOLantern: 100 RubberBat: 20 RealisticBrain: 10 JarofBlood: 15 PumpkinSeeds: 500 TonoriDelight: 1500 Marshmallow: 2000 CandyPumpkin: 2500 } }, { Id: 1082 SpriteName: "Serqet" Name: "Serqet" Lv: 10 Hp: 100 Sp: 0 Exp: 12 JExp: 2 AttackRange: 1 Attack: [10, 15] Def: 0 Mdef: 5 CriticalDef: 0 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 0 Dex: 15 Luk: 5 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 2000 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 }, { Id: 1092 SpriteName: "SlimeBlast" Name: "Slime Blast" Lv: 10 Hp: 100 Sp: 0 Exp: 20 JExp: 8 AttackRange: 1 Attack: [10, 10] Def: 10 Mdef: 10 CriticalDef: 0 Stats: { Str: 10 Agi: 10 Vit: 10 Int: 10 Dex: 10 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 3) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 250 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 20 }, { Id: 1095 SpriteName: "WhiteBell" Name: "White Bell" Lv: 10 Hp: 100 Sp: 0 Exp: 25 JExp: 40 AttackRange: 2 Attack: [70, 75] Def: 0 Mdef: 5 CriticalDef: 0 Stats: { Str: 16 Agi: 12 Vit: 20 Int: 20 Dex: 20 Luk: 50 } ViewRange: 2 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) Mode: { CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 50 Drops: { RedApple: 100 EmptyBottle: 10 CoinBag: 400 Snowball: 600 WhiteBellTuber: 5000 } }, { Id: 1105 SpriteName: "ViciousSquirrel" Name: "Vicious Squirrel" Lv: 15 Hp: 140 Sp: 1 Exp: 35 JExp: 7 AttackRange: 1 Attack: [20, 25] Def: 1 Mdef: 6 CriticalDef: 0 Stats: { Str: 3 Agi: 3 Vit: 1 Int: 0 Dex: 15 Luk: 40 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 15 Drops: { IronPowder: 7000 MauveHerb: 1000 CobaltHerb: 1000 GambogeHerb: 1000 AlizarinHerb: 1000 GrassSeed: 800 Sapphire: 50 } }, { Id: 1162 SpriteName: "Grinchboo" Name: "Grinchboo" Lv: 5 Hp: 50 Sp: 0 Exp: 6 JExp: 1 AttackRange: 1 Attack: [5, 10] Def: 0 Mdef: 5 CriticalDef: 0 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 0 Dex: 6 Luk: 5 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (1, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { MaggotSlime: 800 CactusDrink: 150 BugLeg: 400 Milk: 50 Milk: 30 } }, { Id: 1005 SpriteName: "GreenSlime" Name: "Green Slime" Lv: 40 Hp: 800 Sp: 0 Exp: 302 JExp: 96 AttackRange: 1 Attack: [80, 120] Def: 20 Mdef: 30 CriticalDef: 0 Stats: { Str: 20 Agi: 30 Vit: 10 Int: 10 Dex: 30 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1200 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 20 Drops: { CactusPotion: 200 Emerald: 20 CactusDrink: 100 Dagger: 250 SharpKnife: 200 CoinBag: 500 CasinoCoins: 500 GreenApple: 750 } }, { Id: 1016 SpriteName: "RudolphSlime" Name: "Rudolph Slime" Lv: 50 Hp: 350 Sp: 0 Exp: 101 JExp: 8 AttackRange: 1 Attack: [30, 35] Def: 10 Mdef: 7 CriticalDef: 0 Stats: { Str: 1 Agi: 20 Vit: 1 Int: 0 Dex: 30 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 1) Mode: { CanMove: true Looter: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1000 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 30 Drops: { DecorCandy: 800 CandyCane: 500 XmasCake: 200 ChocolateBar: 300 Candy: 600 PurplePresentBox: 800 BluePresentBox: 500 } }, { Id: 1065 SpriteName: "BanditLord" Name: "Bandit Lord" Lv: 40 Hp: 2000 Sp: 0 Exp: 635 JExp: 103 AttackRange: 5 Attack: [50, 50] Def: 15 Mdef: 15 CriticalDef: 0 Stats: { Str: 15 Agi: 15 Vit: 15 Int: 15 Dex: 15 Luk: 15 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 400 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 900 MutationCount: 2 MutationStrength: 30 }, { Id: 1080 SpriteName: "BlueSpark" Name: "Blue Spark" Lv: 40 Hp: 10000 Sp: 0 Exp: 3647 JExp: 392 AttackRange: 2 Attack: [40, 40] Def: 20 Mdef: 30 CriticalDef: 0 Stats: { Str: 30 Agi: 30 Vit: 30 Int: 30 Dex: 30 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 190 AttackDelay: 1500 AttackMotion: 800 DamageMotion: 800 MutationCount: 2 MutationStrength: 30 }, { Id: 1081 SpriteName: "RedSpark" Name: "Red Spark" Lv: 40 Hp: 10000 Sp: 0 Exp: 3647 JExp: 392 AttackRange: 2 Attack: [40, 40] Def: 20 Mdef: 30 CriticalDef: 0 Stats: { Str: 30 Agi: 30 Vit: 30 Int: 30 Dex: 30 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 190 AttackDelay: 1500 AttackMotion: 800 DamageMotion: 800 MutationCount: 2 MutationStrength: 30 }, { Id: 1086 SpriteName: "FeyElement" Name: "Fey Element" Lv: 50 Hp: 5000 Sp: 0 Exp: 12500 JExp: 901 AttackRange: 5 Attack: [50, 125] Def: 25 Mdef: 50 CriticalDef: 0 Stats: { Str: 20 Agi: 70 Vit: 10 Int: 20 Dex: 80 Luk: 1 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (2, 4) Mode: { CanMove: true Aggressive: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 330 AttackDelay: 740 AttackMotion: 672 DamageMotion: 400 MutationCount: 4 MutationStrength: 50 Drops: { BrokenDoll: 5000 MauveScroll: 3000 CobaltScroll: 3000 GambogeScroll: 3000 AlizarinScroll: 3000 MauveHerb: 1000 CobaltHerb: 1000 GambogeHerb: 1000 AlizarinHerb: 1000 } }, { Id: 1088 SpriteName: "Hyvern" Name: "Hyvern" Lv: 40 Hp: 2250 Sp: 0 Exp: 990 JExp: 346 AttackRange: 1 Attack: [50, 125] Def: 0 Mdef: 10 CriticalDef: 0 Stats: { Str: 10 Agi: 45 Vit: 5 Int: 0 Dex: 35 Luk: 35 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (2, 4) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 250 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 30 Drops: { HyvernStinger: 2000 BugLeg: 1000 Orange: 600 IronArrow: 3000 } }, { Id: 1090 SpriteName: "Wolvern" Name: "Wolvern" Lv: 40 Hp: 900 Sp: 0 Exp: 280 JExp: 86 AttackRange: 1 Attack: [50, 80] Def: 5 Mdef: 5 CriticalDef: 0 Stats: { Str: 15 Agi: 10 Vit: 5 Int: 0 Dex: 20 Luk: 10 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 425 AttackDelay: 770 AttackMotion: 500 DamageMotion: 200 MutationCount: 3 MutationStrength: 40 Drops: { WolvernTooth: 1000 WolvernPelt: 400 AnimalBones: 200 Steak: 1300 } }, { Id: 1091 SpriteName: "BlueSlime" Name: "Blue Slime" Lv: 40 Hp: 2000 Sp: 0 Exp: 760 JExp: 77 AttackRange: 1 Attack: [100, 150] Def: 20 Mdef: 40 CriticalDef: 0 Stats: { Str: 40 Agi: 30 Vit: 50 Int: 10 Dex: 50 Luk: 40 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 3) Mode: { CanMove: true Looter: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1200 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 20 Drops: { IceCube: 200 Sapphire: 20 CactusDrink: 500 IcedWater: 700 SilverMirror: 50 BookPage: 500 } }, { Id: 1098 SpriteName: "CopperSlime" Name: "Copper Slime" Lv: 40 Hp: 600 Sp: 0 Exp: 200 JExp: 18 AttackRange: 1 Attack: [60, 90] Def: 20 Mdef: 30 CriticalDef: 0 Stats: { Str: 20 Agi: 30 Vit: 10 Int: 10 Dex: 30 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 1) Mode: { CanMove: true Looter: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1200 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 20 Drops: { TreasureKey: 1000 Coal: 200 IronOre: 200 CopperOre: 400 CopperOre: 200 SilverOre: 30 BromenalOre: 20 GoldOre: 10 } }, { Id: 1111 SpriteName: "CandiedSlime" Name: "Candied Slime" Lv: 50 Hp: 800 Sp: 0 Exp: 800 JExp: 66 AttackRange: 3 Attack: [50, 50] Def: 20 Mdef: 30 CriticalDef: 0 Stats: { Str: 20 Agi: 30 Vit: 10 Int: 10 Dex: 30 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1200 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 20 Drops: { Candy: 1000 ChocolateBar: 1000 PurplePresentBox: 200 BluePresentBox: 200 GreenPresentBox: 200 GingerBreadMan: 200 XmasCake: 500 XmasCandyCane: 750 } }, { Id: 1112 SpriteName: "Santaboo" Name: "Santaboo" Lv: 50 Hp: 2200 Sp: 0 Exp: 1040 JExp: 59 AttackRange: 2 Attack: [80, 125] Def: 50 Mdef: 10 CriticalDef: 0 Stats: { Str: 25 Agi: 10 Vit: 25 Int: 0 Dex: 60 Luk: 30 } ViewRange: 2 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 600 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 30 Drops: { GingerBreadMan: 1000 WhiteCake: 1200 ChocolateCake: 1200 OrangeCake: 1200 AppleCake: 1200 SantaHat: 50 RedNose: 10 } }, { Id: 1163 SpriteName: "FridayCat" Name: "Friday" Lv: 70 Hp: 450 Sp: 0 Exp: 130 JExp: 17 AttackRange: 1 Attack: [40, 45] Def: 2 Mdef: 7 CriticalDef: 0 Stats: { Str: 12 Agi: 8 Vit: 2 Int: 1 Dex: 25 Luk: 1 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 1) Mode: { CanMove: true Looter: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1300 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 20 Drops: { RubberBat: 10 RealisticBrain: 5 JarofBlood: 9 PumpkinSeeds: 250 TonoriDelight: 750 Marshmallow: 1000 CandyPumpkin: 1250 } }, { Id: 1164 SpriteName: "ChristmasTree" Name: "Christmas Tree" Lv: 40 Hp: 12000 Sp: 0 Exp: 3647 JExp: 392 AttackRange: 2 Attack: [40, 40] Def: 20 Mdef: 40 CriticalDef: 0 Stats: { Str: 30 Agi: 30 Vit: 30 Int: 30 Dex: 30 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (0, 1) Mode: { CanMove: false CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 190 AttackDelay: 1500 AttackMotion: 800 DamageMotion: 800 }, { Id: 1165 SpriteName: "ChristmasGift" Name: "Christmas Gift" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 0 Mdef: 5 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { FourLeafClover: 5 } }, { Id: 1166 SpriteName: "Snowman" Name: "Snowman" Lv: 100 Hp: 4200 Sp: 0 Exp: 2897 JExp: 689 AttackRange: 1 Attack: [60, 80] Def: 5 Mdef: 20 CriticalDef: 0 Stats: { Str: 15 Agi: 25 Vit: 40 Int: 15 Dex: 75 Luk: 30 } ViewRange: 8 ChaseRange: 10 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { IronPotion: 800 EnlighteningElixir: 800 ConcentrationPotion: 800 Diamond: 50 } }, { Id: 1167 SpriteName: "SnowmanBoss" Name: "Der Schneemann" Lv: 100 Hp: 35000 Sp: 0 Exp: 88970 JExp: 2689 AttackRange: 4 Attack: [220, 240] Def: 77 Mdef: 50 CriticalDef: 0 Stats: { Str: 45 Agi: 20 Vit: 110 Int: 150 Dex: 255 Luk: 110 } ViewRange: 14 ChaseRange: 16 Size: 1 Race: 3 Element: (0, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true Boss: true } MoveSpeed: 700 AttackDelay: 1672 AttackMotion: 672 DamageMotion: 480 Drops: { IronPotion: 1600 EnlighteningElixir: 1600 ConcentrationPotion: 1600 Diamond: 100 } }, { Id: 1168 SpriteName: "Floyd" Name: "Floyd" Lv: 40 Hp: 1500 Sp: 0 Exp: 555 JExp: 150 AttackRange: 3 Attack: [25, 50] Def: 60 Mdef: 5 CriticalDef: 30 Stats: { Str: 10 Agi: 23 Vit: 30 Int: 20 Dex: 40 Luk: 50 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1975 AttackMotion: 672 DamageMotion: 480 MutationCount: 3 MutationStrength: 40 Drops: { BentNeedle: 10 Dagger: 70 FlawedLens: 5 IronArrow: 150 IronArrow: 800 IronIngot: 20 IronPowder: 500 IronPowder: 1000 SilverArrow: 150 } }, { Id: 1169 SpriteName: "CrystalSpider" Name: "Crystal Spider" Lv: 140 Hp: 1000 Sp: 0 Exp: 800 JExp: 200 AttackRange: 1 Attack: [80, 95] Def: 8 Mdef: 12 CriticalDef: 0 Stats: { Str: 20 Agi: 15 Vit: 20 Int: 11 Dex: 45 Luk: 30 } ViewRange: 1 ChaseRange: 1 Size: 1 Race: 0 Element: (2, 2) Mode: { CanMove: true Looter: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1000 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 40 Drops: { TreasureKey: 500 RedApple: 100 InfantryHelmet: 20 CoinBag: 200 Diamond: 20 Ruby: 20 Emerald: 20 Sapphire: 20 Topaz: 20 Amethyst: 20 } }, { Id: 1170 SpriteName: "CrystalGolem" Name: "Crystal Golem" Lv: 180 Hp: 25000 Sp: 280 Exp: 68000 JExp: 2200 AttackRange: 3 Attack: [170, 190] Def: 75 Mdef: 40 CriticalDef: 0 Stats: { Str: 35 Agi: 26 Vit: 99 Int: 127 Dex: 255 Luk: 105 } ViewRange: 31 ChaseRange: 30 Size: 1 Race: 0 Element: (6, 4) Mode: { CanMove: true Looter: true Assist: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 320 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 50 MutationCount: 0 MutationStrength: 0 Drops: { Diamond: 50 Ruby: 50 Emerald: 50 Sapphire: 50 Topaz: 50 Amethyst: 50 } }, { Id: 1171 SpriteName: "BlackCrystalGolem" Name: "Black Crystal Golem" Lv: 180 Hp: 25000 Sp: 280 Exp: 68000 JExp: 2200 AttackRange: 3 Attack: [170, 190] Def: 75 Mdef: 40 CriticalDef: 0 Stats: { Str: 35 Agi: 26 Vit: 99 Int: 127 Dex: 255 Luk: 105 } ViewRange: 31 ChaseRange: 30 Size: 1 Race: 0 Element: (6, 4) Mode: { CanMove: true Aggressive: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 320 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 50 MutationCount: 0 MutationStrength: 0 Drops: { DarkCrystal: 10000 } }, { Id: 1173 SpriteName: "MontBlanc" Name: "Mont Blanc" Lv: 110 Hp: 30000 Sp: 0 Exp: 100300 JExp: 500 AttackRange: 12 Attack: [777, 1000] Def: 70 Mdef: 90 CriticalDef: 90 Stats: { Str: 30 Agi: 1 Vit: 100 Int: 1 Dex: 120 Luk: 120 } Mode: { Aggressive: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } ViewRange: 12 ChaseRange: 12 Size: 1 Race: 3 Element: (2, 1) AttackDelay: 4000 AttackMotion: 672 DamageMotion: 480 }, { Id: 1174 SpriteName: "Emo" Name: "Emo" Lv: 129 Hp: 50150 Sp: 80 Exp: 150000 JExp: 1000 AttackRange: 2 Attack: [250, 450] Def: 30 Mdef: 60 CriticalDef: 60 Stats: { Str: 80 Agi: 60 Vit: 100 Int: 60 Dex: 110 Luk: 110 } ViewRange: 40 ChaseRange: 30 Size: 1 Race: 1 Element: (1, 2) Mode: { Aggressive: true Boss: true CanAttack: true CanMove: true CastSensorIdle: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true Looter: true } MoveSpeed: 250 AttackDelay: 450 AttackMotion: 672 DamageMotion: 50 Drops: { Boots: 5000 LeatherGloves: 200 CrazyRum: 500 } }, { Id: 1175 SpriteName: "MegaManaBug" Name: "Mega Mana Bug" Lv: 111 Hp: 675 Sp: 0 Exp: 275 JExp: 40 AttackRange: 1 Attack: [60, 85] Def: 3 Mdef: 8 CriticalDef: 0 Stats: { Str: 16 Agi: 14 Vit: 15 Int: 20 Dex: 30 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 4 Element: (2, 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 800 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 60 Drops: { MaggotSlime: 1000 BugLeg: 800 RoastedMaggot: 400 EmptyBottle: 10 CoinBag: 400 ManaDust: 1000 ManaDust: 1000 } }, { Id: 1176 SpriteName: "Rotter" Name: "Rotter" Lv: 130 Hp: 6000 Sp: 0 Exp: 5533 JExp: 733 AttackRange: 4 Attack: [333, 555] Def: 20 Mdef: 25 CriticalDef: 50 Stats: { Str: 30 Agi: 15 Vit: 30 Int: 1 Dex: 130 Luk: 130 } ViewRange: 7 ChaseRange: 11 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Aggressive: true Assist: true CanAttack: true ChangeChase: true ChangeTargetMelee: true ChangeTargetChase: true Detector: true } MoveSpeed: 1200 AttackDelay: 2222 AttackMotion: 672 DamageMotion: 900 MutationCount: 2 MutationStrength: 30 Drops: { DarkCrystal: 1000 RottenRags: 800 DiseasedHeart: 200 UndeadEar: 500 Soul: 500 GoldenTooth: 10 Tongue: 1 } }, { Id: 1177 SpriteName: "Rot" Name: "Rot" Lv: 100 Hp: 13 Sp: 0 Exp: 11 JExp: 1 AttackRange: 1 Attack: [111, 333] Def: 0 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 255 Luk: 33 } ViewRange: 1 ChaseRange: 1 Size: 1 Race: 0 Element: (1, 1) Mode: { Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } AttackDelay: 500 AttackMotion: 672 DamageMotion: 480 }, { Id: 1178 SpriteName: "SpiderQueen" Name: "Spider Queen" Lv: 145 Hp: 7000 Sp: 0 Exp: 1200 JExp: 400 AttackRange: 3 Attack: [250, 300] Def: 60 Mdef: 60 Stats: { Str: 40 Agi: 30 Vit: 50 Int: 15 Dex: 65 Luk: 40 } ViewRange: 8 ChaseRange: 15 Size: 0 Race: 2 Element: (5, 1) Mode: { CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true Boss: true Angry: true Aggressive: true } MoveSpeed: 210 AttackDelay: 1200 AttackMotion: 550 DamageMotion: 450 MutationCount: 3 MutationStrength: 30 Drops: { BugLeg: 2500 MaggotSlime: 2000 IronOre: 600 Coal: 800 SilverOre: 100 TreasureKey: 800 } }, { Id: 1179 SpriteName: "CrystalSpiderQueen" Name: "Crystal Spider Queen" Lv: 150 Hp: 9000 Sp: 0 Exp: 1600 JExp: 450 AttackRange: 3 Attack: [250, 300] Def: 70 Mdef: 80 Stats: { Str: 45 Agi: 35 Vit: 60 Int: 30 Dex: 70 Luk: 50 } ViewRange: 8 ChaseRange: 15 Size: 0 Race: 2 Element: (5, 1) Mode: { CanMove: true Looter: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true ChangeChase: true Boss: true } MoveSpeed: 1000 AttackDelay: 1500 AttackMotion: 750 DamageMotion: 550 MutationCount: 4 MutationStrength: 30 Drops: { TreasureKey: 800 RedApple: 200 InfantryHelmet: 35 CoinBag: 400 Diamond: 35 Ruby: 35 Emerald: 35 Sapphire: 35 Topaz: 35 Amethyst: 35 } }, { Id: 1048 SpriteName: "Duck" Name: "Duck" Lv: 14 Hp: 1282 Sp: 0 Exp: 16 JExp: 1 AttackRange: 1 Attack: [60, 63] Def: 17 Mdef: 20 WalkMask: "WALK_WATER" Stats: { Str: 9 Agi: 18 Vit: 17 Int: 1 Dex: 16 Luk: 11 } ViewRange: 6 ChaseRange: 12 Race: 2 Element: (1, 1) Mode: { CanMove: true Looter: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 240 AttackDelay: 580 AttackMotion: 472 DamageMotion: 200 MutationCount: 2 MutationStrength: 30 Drops: { CherryCake: 770 BugLeg: 350 ChickenLeg: 1000 } }, { Id: 1180 SpriteName: "MisterPrickel" Name: "Mister Prickel" Lv: 40 Hp: 4822 Sp: 0 Exp: 672 JExp: 111 AttackRange: 1 Attack: [250, 275] Def: 23 Mdef: 33 Stats: { Str: 20 Agi: 40 Vit: 55 Int: 1 Dex: 20 Luk: 30 } ChaseRange: 12 Race: 3 Element: (0, 2) Mode: { CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 452 DamaeMotion: 480 MutationCount: 2 MutationStrength: 40 Drops: { CactusDrink: 300 CactusPotion: 200 HardSpike: 800 HardSpike: 400 RawLog: 700 } }, { Id: 1181 SpriteName: "SmallFrog" Name: "Small Frog" Lv: 9 Hp: 100 Sp: 0 Exp: 100 JExp: 10 AttackRange: 1 Attack: [10, 20] Def: 19 Mdef: 3 Stats: { Str: 10 Agi: 25 Vit: 25 Int: 1 Dex: 15 Luk: 20 } ViewRange: 5 ChaseRange: 10 Size: 0 Race: 2 Element: (5, 1) Mode: { CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 600 AttackDelay: 1976 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 30 Drops: { MaggotSlime: 600 BugLeg: 200 } }, { Id: 1182 SpriteName: "BigFrog" Name: "Big Frog" Lv: 10 Hp: 200 Sp: 0 Exp: 150 JExp: 15 AttackRange: 1 Attack: [20, 30] Def: 24 Mdef: 3 Stats: { Str: 20 Agi: 15 Vit: 35 Int: 1 Dex: 15 Luk: 20 } ViewRange: 5 ChaseRange: 10 Size: 0 Race: 2 Element: (5, 1) Mode: { CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 500 AttackDelay: 1976 AttackMotion: 672 DamageMotion: 480 MutationCount: 2 MutationStrength: 30 Drops: { MaggotSlime: 700 BugLeg: 300 } }, { Id: 1183 SpriteName: "MobMoubootaur" Name: "The Moubootaur" Lv: 220 Hp: 99999 Sp: 9999 Exp: 999999 JExp: 99999 AttackRange: 1 Attack: [400, 500] Def: 99 Mdef: 99 Stats: { Str: 99 Agi: 60 Vit: 99 Int: 30 Dex: 255 Luk: 255 } ViewRange: 18 ChaseRange: 18 Race: 6 Element: (7, 4) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true Aggressive: true CastSensorChase: true Boss: true } MoveSpeed: 240 AttackDelay: 872 AttackMotion: 272 DamageMotion: 100 }, { Id: 1184 SpriteName: "BoneQuadceratops" Name: "Bone Quadceratops" Lv: 120 Hp: 22000 Sp: 0 Exp: 12120 JExp: 1888 AttackRange: 1 Attack: [100, 200] Def: 66 Mdef: 55 CriticalDef: 0 Stats: { Str: 60 Agi: 20 Vit: 60 Int: 1 Dex: 43 Luk: 70 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true Boss: true } MoveSpeed: 750 AttackDelay: 800 AttackMotion: 692 DamageMotion: 720 MutationCount: 4 MutationStrength: 30 Drops: { AnimalBones: 10000 AnimalBones: 5000 AnimalBones: 2500 } }, { Id: 1185 SpriteName: "EntAbomination" Name: "Ent Abomination" Lv: 130 Hp: 45000 Sp: 280 Exp: 58000 JExp: 1600 AttackRange: 2 Attack: [200, 250] Def: 80 Mdef: 60 CriticalDef: 0 Stats: { Str: 40 Agi: 12 Vit: 120 Int: 127 Dex: 60 Luk: 88 } ViewRange: 31 ChaseRange: 30 Size: 1 Race: 3 Element: (2, 1) Mode: { CanMove: true Assist: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1500 AttackDelay: 900 AttackMotion: 772 DamageMotion: 740 MutationCount: 4 MutationStrength: 20 Drops: { RawLog: 2000 RawLog: 2000 ReedBundle: 250 ReedBundle: 500 Root: 500 Root: 1000 } }, { Id: 1186 SpriteName: "MananaTree" Name: "Manana Tree" Lv: 5 Hp: 2500 Sp: 0 Exp: 2 AttackRange: 1 Attack: [10, 10] Def: 25 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 10 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 3 Element: (2, 1) MoveSpeed: 1000 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 80 Drops: { RawLog: 1000 RawLog: 2000 ReedBundle: 500 Root: 500 } }, { Id: 1187 SpriteName: "EliteDuck" Name: "Elite Duck" Lv: 75 Hp: 14000 Sp: 0 Exp: 8800 JExp: 860 AttackRange: 2 Attack: [170, 195] Def: 50 Mdef: 80 WalkMask: "WALK_WATER" Stats: { Str: 70 Agi: 120 Vit: 10 Int: 42 Dex: 48 Luk: 95 } ViewRange: 5 ChaseRange: 12 Race: 2 Element: (3, 1) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true CastSensorChase: true ChangeChase: true Boss: true } MoveSpeed: 225 AttackDelay: 500 AttackMotion: 472 DamageMotion: 200 MutationCount: 2 MutationStrength: 40 Drops: { CherryCake: 1005 BugLeg: 400 ChickenLeg: 2000 } }, { Id: 1188 SpriteName: "Junglefowl" Name: "Jungle Fowl" Lv: 125 Hp: 25500 Exp: 15000 JExp: 2125 AttackRange: 1 Attack: [175, 250] Def: 45 Mdef: 47 Race: 2 Element: (4, 1) Stats: { Str: 70 Agi: 99 Vit: 80 Int: 22 Dex: 99 Luk: 70 } Mode: { CanMove: true Assist: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true Boss: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { ChickenLeg: 2520 ChickenLeg: 1520 AnimalBones: 500 } }, { Id: 1189 SpriteName: "ShadowPlant" Name: "Shadow Plant" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { ShadowHerb: 3000 ShadowHerb: 3000 ShadowHerb: 3000 } }, { Id: 1190 SpriteName: "BeeHive" Name: "Bee Hive" Lv: 39 Hp: 3333 Sp: 1 Exp: 1000 JExp: 200 AttackRange: 14 Attack: [5, 90] Def: 12 Mdef: 4 CriticalDef: 0 Stats: { Str: 15 Agi: 25 Vit: 20 Int: 3 Dex: 40 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 4 Element: (2, 1) Mode: { CanMove: false CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 380 AttackDelay: 1500 AttackMotion: 300 DamageMotion: 350 MutationCount: 2 MutationStrength: 100 Drops: { Honey: 1000 Honey: 750 Honey: 500 } }, { Id: 1191 SpriteName: "Tortuga" Name: "Tortuga" Lv: 19 Hp: 535 Sp: 0 Exp: 350 JExp: 38 AttackRange: 1 Attack: [33, 44] Def: 30 Mdef: 50 WalkMask: "WALK_WATER" Stats: { Str: 18 Agi: 12 Vit: 1 Int: 8 Dex: 80 Luk: 25 } ChaseRange: 12 Race: 2 Element: (1, 1) Mode: { CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 700 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 WeaponAttacks: { Bows: 5000 } }, { Id: 1192 SpriteName: "Ratto" Name: "Ratto" Lv: 15 Hp: 250 Sp: 0 Exp: 200 JExp: 30 AttackRange: 1 Attack: [25, 35] Def: 13 Mdef: 6 Stats: { Str: 5 Agi: 10 Vit: 13 Int: 1 Dex: 11 Luk: 6 } ViewRange: 3 ChaseRange: 12 Race: 2 Element: (0, 1) Mode: { CanMove: true Looter: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 120 AttackDelay: 1572 AttackMotion: 672 DamageMotion: 480 }, { Id: 1193 SpriteName: "Croc" Name: "Croc" Lv: 17 Hp: 350 Sp: 0 Exp: 300 JExp: 35 AttackRange: 1 Attack: [124, 129] Def: 54 Mdef: 6 Stats: { Str: 6 Agi: 10 Vit: 13 Int: 1 Dex: 11 Luk: 6 } ChaseRange: 12 Race: 2 Element: (1, 1) Mode: { CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 600 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 200 }, { Id: 1194 SpriteName: "Birb" Name: "King Chonky Birb" Lv: 101 Hp: 57000 Sp: 0 Exp: 44000 JExp: 2000 AttackRange: 1 Attack: [320, 370] Def: 45 Mdef: 70 Stats: { Str: 12 Agi: 63 Vit: 88 Int: 110 Dex: 141 Luk: 77 } ViewRange: 9 ChaseRange: 12 Race: 2 Element: (7, 1) Mode: { CanMove: true CanAttack: true Aggressive: false Angry: false ChangeTargetMelee: true ChangeChase: true CastSensorChase: true Boss: true } MoveSpeed: 320 AttackDelay: 2100 AttackMotion: 672 DamageMotion: 200 }, { Id: 1195 SpriteName: "Brainblow" Name: "Brainblow" Lv: 77 Hp: 200 Sp: 0 Exp: 100 JExp: 50 AttackRange: 1 Attack: [10, 10] Def: 0 Mdef: 0 CriticalDef: 0 Stats: { Str: 1 Agi: 7 Vit: 1 Int: 1 Dex: 123 Luk: 123 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (7, 2) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 77 AttackDelay: 500 AttackMotion: 672 DamageMotion: 200 }, { Id: 1196 SpriteName: "RickLime" Name: "Rick Lime" Lv: 120 Hp: 54321 Sp: 0 Exp: 100001 JExp: 777 AttackRange: 7 Attack: [123, 321] Def: 33 Mdef: 55 CriticalDef: 44 Stats: { Str: 30 Agi: 99 Vit: 80 Int: 33 Dex: 123 Luk: 123 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 3) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 120 AttackDelay: 800 AttackMotion: 672 DamageMotion: 200 Drops: { CoinBag: 500 CoinBag: 500 CoinBag: 1000 CoinBag: 2000 FourLeafClover: 5 FourLeafClover: 5 LeprechaunHat: 10 LeprechaunHead: 5 Rainerang: 5 GoldenTooth: 10000 } }, { Id: 1197 SpriteName: "Blanc1" Name: "Blanc 1" Lv: 150 Hp: 55055 Sp: 0 Exp: 300000 JExp: 3000 AttackRange: 10 Attack: [600, 800] Def: 50 Mdef: 70 CriticalDef: 60 Stats: { Str: 30 Agi: 99 Vit: 80 Int: 33 Dex: 133 Luk: 133 } ViewRange: 10 ChaseRange: 10 Size: 1 Race: 1 Element: (7, 3) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true Looter: true } MoveSpeed: 200 AttackDelay: 500 AttackMotion: 672 DamageMotion: 200 Drops: { CoinBag: 10000 CoinBag: 500 CoinBag: 500 CrazyRum: 750 CrazyRum: 750 CasinoCoins: 250 CasinoCoins: 250 HMCPirateHat: 3 } }, { Id: 1198 SpriteName: "Blanc2" Name: "Blanc 2" Lv: 150 Hp: 33033 Sp: 0 Exp: 200000 JExp: 2000 AttackRange: 2 Attack: [250, 350] Def: 50 Mdef: 70 CriticalDef: 60 Stats: { Str: 30 Agi: 99 Vit: 80 Int: 33 Dex: 133 Luk: 133 } ViewRange: 6 ChaseRange: 6 Size: 1 Race: 1 Element: (7, 3) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true Looter: true } MoveSpeed: 200 AttackDelay: 300 AttackMotion: 672 DamageMotion: 200 Drops: { CoinBag: 10000 CoinBag: 500 CoinBag: 500 CrazyRum: 750 CrazyRum: 750 CasinoCoins: 250 CasinoCoins: 250 HMCPirateHat: 2 } }, { Id: 1199 SpriteName: "SilverSlime" Name: "Silver Slime" Lv: 40 Hp: 600 Sp: 0 Exp: 200 JExp: 18 AttackRange: 1 Attack: [60, 90] Def: 20 Mdef: 30 CriticalDef: 0 Stats: { Str: 20 Agi: 30 Vit: 10 Int: 10 Dex: 30 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 1) Mode: { CanMove: true Looter: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1200 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 20 Drops: { SilverArrow: 1000 SilverArrow: 1000 SilverBell: 1 Coal: 200 IronOre: 200 CopperOre: 40 SilverOre: 300 SilverOre: 150 BromenalOre: 20 GoldOre: 10 } }, { Id: 1200 SpriteName: "BromenalSlime" Name: "Bromenal Slime" Lv: 40 Hp: 600 Sp: 0 Exp: 200 JExp: 18 AttackRange: 1 Attack: [60, 90] Def: 20 Mdef: 30 CriticalDef: 0 Stats: { Str: 20 Agi: 30 Vit: 10 Int: 10 Dex: 30 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 1) Mode: { CanMove: true Looter: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1200 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 20 Drops: { BromenalBoots: (10, "ODG_BASICSTAT") BromenalGloves: (10, "ODG_BASICSTAT") BromenalLegs: (10, "ODG_BASICSTAT") Coal: 200 IronOre: 200 CopperOre: 40 SilverOre: 30 BromenalOre: 200 BromenalOre: 100 GoldOre: 10 } }, { Id: 1201 SpriteName: "GoldSlime" Name: "Gold Slime" Lv: 40 Hp: 600 Sp: 0 Exp: 200 JExp: 18 AttackRange: 1 Attack: [60, 90] Def: 20 Mdef: 30 CriticalDef: 0 Stats: { Str: 20 Agi: 30 Vit: 10 Int: 10 Dex: 30 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 1) Mode: { CanMove: true Looter: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1200 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 20 Drops: { GoldenDeliciousApple: 11 Coal: 200 IronOre: 200 CopperOre: 40 SilverOre: 30 BromenalOre: 20 GoldOre: 100 GoldOre: 50 } }, { Id: 1202 SpriteName: "IronSlime" Name: "Iron Slime" Lv: 40 Hp: 600 Sp: 0 Exp: 200 JExp: 18 AttackRange: 1 Attack: [60, 90] Def: 20 Mdef: 30 CriticalDef: 0 Stats: { Str: 20 Agi: 30 Vit: 10 Int: 10 Dex: 30 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 1) Mode: { CanMove: true Looter: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1200 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 20 Drops: { IronArrow: 5000 IronArrow: 2500 IronShovel: 1 Coal: 200 IronOre: 2000 IronOre: 1000 CopperOre: 40 SilverOre: 30 BromenalOre: 20 GoldOre: 10 } }, { Id: 1203 SpriteName: "CoalSlime" Name: "Coal Slime" Lv: 40 Hp: 600 Sp: 0 Exp: 200 JExp: 18 AttackRange: 1 Attack: [60, 90] Def: 20 Mdef: 30 CriticalDef: 0 Stats: { Str: 20 Agi: 30 Vit: 10 Int: 10 Dex: 30 Luk: 30 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 0 Element: (1, 1) Mode: { CanMove: true Looter: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 1200 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 MutationCount: 1 MutationStrength: 20 Drops: { Charcoal: 1000 Charcoal: 500 Charcoal: 250 Coal: 2000 Coal: 1000 IronOre: 200 CopperOre: 40 SilverOre: 30 BromenalOre: 20 GoldOre: 10 } }, { Id: 1172 SpriteName: "Bif" Name: "Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { IronPowder: 1200 IronOre: 800 Coal: 1000 CopperOre: 200 SilverOre: 150 BromenalOre: 100 GoldOre: 50 } }, { Id: 1204 SpriteName: "BigBif" Name: "Big Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { IronPowder: 2400 IronOre: 1600 Coal: 2000 CopperOre: 400 SilverOre: 300 BromenalOre: 200 GoldOre: 100 } }, { Id: 1205 SpriteName: "SmallBif" Name: "Small Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { IronPowder: 600 IronOre: 400 Coal: 500 CopperOre: 100 SilverOre: 75 BromenalOre: 50 GoldOre: 25 } }, { Id: 1206 SpriteName: "AmethystBif" Name: "Amethyst Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Amethyst: 20 AmethystPowder: 1200 AmethystPowder: 1200 DiamondPowder: 600 EmeraldPowder: 600 RubyPowder: 600 SapphirePowder: 600 TopazPowder: 600 Coal: 250 } }, { Id: 1207 SpriteName: "DiamondBif" Name: "Diamond Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Diamond: 20 AmethystPowder: 600 DiamondPowder: 1200 DiamondPowder: 1200 EmeraldPowder: 600 RubyPowder: 600 SapphirePowder: 600 TopazPowder: 600 Coal: 250 } }, { Id: 1208 SpriteName: "EmeraldBif" Name: "Emerald Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Emerald: 20 AmethystPowder: 600 DiamondPowder: 600 EmeraldPowder: 1200 EmeraldPowder: 1200 RubyPowder: 600 SapphirePowder: 600 TopazPowder: 600 Coal: 250 } }, { Id: 1209 SpriteName: "RubyBif" Name: "Ruby Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Ruby: 20 AmethystPowder: 600 DiamondPowder: 600 EmeraldPowder: 600 RubyPowder: 1200 RubyPowder: 1200 SapphirePowder: 600 TopazPowder: 600 Coal: 250 } }, { Id: 1210 SpriteName: "SapphireBif" Name: "Sapphire Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Sapphire: 20 AmethystPowder: 600 DiamondPowder: 600 EmeraldPowder: 600 RubyPowder: 600 SapphirePowder: 1200 SapphirePowder: 1200 TopazPowder: 600 Coal: 250 } }, { Id: 1211 SpriteName: "TopazBif" Name: "Topaz Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Topaz: 20 AmethystPowder: 600 DiamondPowder: 600 EmeraldPowder: 600 RubyPowder: 600 SapphirePowder: 600 TopazPowder: 1200 TopazPowder: 1200 Coal: 250 } }, { Id: 1212 SpriteName: "BigAmethystBif" Name: "Big Amethyst Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Amethyst: 30 AmethystPowder: 1200 AmethystPowder: 1200 AmethystPowder: 1200 DiamondPowder: 600 EmeraldPowder: 600 RubyPowder: 600 SapphirePowder: 600 TopazPowder: 600 Coal: 300 } }, { Id: 1213 SpriteName: "BigDiamondBif" Name: "Big Diamond Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Diamond: 30 AmethystPowder: 600 DiamondPowder: 1200 DiamondPowder: 1200 DiamondPowder: 1200 EmeraldPowder: 600 RubyPowder: 600 SapphirePowder: 600 TopazPowder: 600 Coal: 300 } }, { Id: 1214 SpriteName: "BigEmeraldBif" Name: "Big Emerald Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Emerald: 30 AmethystPowder: 600 DiamondPowder: 600 EmeraldPowder: 1200 EmeraldPowder: 1200 EmeraldPowder: 1200 RubyPowder: 600 SapphirePowder: 600 TopazPowder: 600 Coal: 300 } }, { Id: 1215 SpriteName: "BigRubyBif" Name: "Big Ruby Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Ruby: 30 AmethystPowder: 600 DiamondPowder: 600 EmeraldPowder: 600 RubyPowder: 1200 RubyPowder: 1200 RubyPowder: 1200 SapphirePowder: 600 TopazPowder: 600 Coal: 300 } }, { Id: 1216 SpriteName: "BigSapphireBif" Name: "Big Sapphire Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Sapphire: 30 AmethystPowder: 600 DiamondPowder: 600 EmeraldPowder: 600 RubyPowder: 600 SapphirePowder: 1200 SapphirePowder: 1200 SapphirePowder: 1200 TopazPowder: 600 Coal: 300 } }, { Id: 1217 SpriteName: "BigTopazBif" Name: "Big Topaz Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Topaz: 30 AmethystPowder: 600 DiamondPowder: 600 EmeraldPowder: 600 RubyPowder: 600 SapphirePowder: 600 TopazPowder: 1200 TopazPowder: 1200 TopazPowder: 1200 Coal: 300 } }, { Id: 1218 SpriteName: "SmallAmethystBif" Name: "Small Amethyst Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Amethyst: 10 AmethystPowder: 1200 DiamondPowder: 600 EmeraldPowder: 600 RubyPowder: 600 SapphirePowder: 600 TopazPowder: 600 Coal: 200 } }, { Id: 1219 SpriteName: "SmallDiamondBif" Name: "Small Diamond Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Diamond: 10 AmethystPowder: 600 DiamondPowder: 1200 EmeraldPowder: 600 RubyPowder: 600 SapphirePowder: 600 TopazPowder: 600 Coal: 200 } }, { Id: 1220 SpriteName: "SmallEmeraldBif" Name: "Small Emerald Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Emerald: 10 AmethystPowder: 600 DiamondPowder: 600 EmeraldPowder: 1200 RubyPowder: 600 SapphirePowder: 600 TopazPowder: 600 Coal: 200 } }, { Id: 1221 SpriteName: "SmallRubyBif" Name: "Small Ruby Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Ruby: 10 AmethystPowder: 600 DiamondPowder: 600 EmeraldPowder: 600 RubyPowder: 1200 SapphirePowder: 600 TopazPowder: 600 Coal: 200 } }, { Id: 1222 SpriteName: "SmallSapphireBif" Name: "Small Sapphire Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Sapphire: 10 AmethystPowder: 600 DiamondPowder: 600 EmeraldPowder: 600 RubyPowder: 600 SapphirePowder: 1200 TopazPowder: 600 Coal: 200 } }, { Id: 1223 SpriteName: "SmallTopazBif" Name: "Small Topaz Bif" Lv: 1 Hp: 1 Sp: 0 Exp: 1 JExp: 1 AttackRange: 1 Attack: [0, 0] Def: 1 Mdef: 0 CriticalDef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 9 ChaseRange: 10 Size: 1 Race: 3 Element: (2, 1) MoveSpeed: 800 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Topaz: 10 AmethystPowder: 600 DiamondPowder: 600 EmeraldPowder: 600 RubyPowder: 600 SapphirePowder: 600 TopazPowder: 1200 Coal: 200 } }, { Id: 1224 SpriteName: "CoalGolem" Name: "Coal Golem" Lv: 180 Hp: 25000 Sp: 280 Exp: 68000 JExp: 2200 AttackRange: 3 Attack: [170, 190] Def: 75 Mdef: 40 CriticalDef: 0 Stats: { Str: 35 Agi: 26 Vit: 99 Int: 127 Dex: 255 Luk: 105 } ViewRange: 31 ChaseRange: 30 Size: 1 Race: 0 Element: (6, 4) Mode: { CanMove: true Looter: true Assist: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 320 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 50 MutationCount: 0 MutationStrength: 0 Drops: { Charcoal: 1000 Charcoal: 500 Charcoal: 250 Coal: 5000 Coal: 2500 Coal: 1250 IronOre: 500 IronPowder: 1200 } }, )