//================= 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) 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) // SpawnCollision - Support dropped (tmw2 dd7d9ed) //SpawnCollisionSize: collision size (int, defaults to -1) //SpawnCollisionMask: collision mask (int, defaults to 1) MvpExp: mvp experience (int, defaults to 0) MvpDrops: { AegisName: chance (string: int) } Drops: { AegisName: chance (string: int) or AegisName: (chance, "Option Drop Group") } DamageTakenRate: damage taken rate (int, defaults to 100) } WeaponAttacks: { WeaponType: 10000 } EleResist: { ElementalName: 10000 } }, ******************************************************************************/ { Id: 1002 SpriteName: "Piou" Name: "Piou" Lv: 1 Hp: 120 Sp: 0 Exp: 2 AttackRange: 1 Attack: [23, 23] Def: 7 Mdef: 3 WalkMask: "WALK_AIR" Stats: { Str: 2 Agi: 5 Vit: 7 Int: 1 Dex: 6 Luk: 3 } ViewRange: 6 ChaseRange: 80 Race: 2 Element: (4, 1) Mode: { CanMove: true CanAttack: true SurviveWithoutMaster: true } MoveSpeed: 200 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 200 Drops: { PiouFeathers: 2000 PiouLegs: 1400 PolishedTopaz: 1 } }, { Id: 1003 SpriteName: "Piousse" Name: "Piousse" Lv: 2 Hp: 400 Sp: 0 Exp: 4 AttackRange: 1 Attack: [24, 24] Def: 5 Mdef: 1 Stats: { Str: 5 Agi: 1 Vit: 5 Int: 0 Dex: 10 Luk: 1 } ViewRange: 6 ChaseRange: 80 Race: 2 Element: (4, 1) Mode: { CanMove: true Assist: true CanAttack: true SurviveWithoutMaster: true } MoveSpeed: 150 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { HalfEggshell: 4000 PiouLegs: 3000 PiouFeathers: 3000 PolishedTopaz: 1 } }, { Id: 1004 SpriteName: "Tortuga" Name: "Tortuga" Lv: 300 Hp: 135000 Sp: 0 Exp: 27000 JExp: 300 AttackRange: 1 Attack: [6644, 8821] Def: 271 Mdef: 71 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: 2872 AttackMotion: 672 DamageMotion: 480 Drops: { ChocolateBiscuit: 10000 Moss: 2500 LettuceLeaf: 1800 TortugaShellFragment: 1780 TortugaTongue: 1000 Fungus: 800 Aquada: 600 SeaDrops: 500 TortugaShell: 400 LegendaryTortuga: 100 } WeaponAttacks: { Bows: 5000 } }, { Id: 1005 SpriteName: "Ratto" Name: "Ratto" Lv: 7 Hp: 500 Sp: 0 Exp: 9 JExp: 1 AttackRange: 1 Attack: [81, 83] 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 Drops: { Cheese: 1800 RattoTeeth: 900 RattoTail: 600 Piberries: 600 Moss: 600 } }, { Id: 1006 SpriteName: "Croc" Name: "Croc" Lv: 9 Hp: 1900 Sp: 0 Exp: 20 JExp: 1 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 Drops: { CrocClaw: 1000 Aquada: 420 SeaDrops: 300 Coral: 600 BlueCoral: 60 MysteriousBottle: 13 } }, { Id: 1007 SpriteName: "LittleBlub" Name: "Little Blub" Lv: 6 Hp: 800 Sp: 0 Exp: 10 AttackRange: 1 Attack: [44, 45] Def: 10 Mdef: 6 WalkMask: "WALK_WATER" Stats: { Str: 5 Agi: 10 Vit: 5 Int: 1 Dex: 11 Luk: 6 } ViewRange: 8 ChaseRange: 12 Race: 2 Element: (1, 1) Mode: { CanMove: true Looter: true Assist: true CanAttack: true SurviveWithoutMaster: true ChangeChase: true } MoveSpeed: 300 AttackDelay: 1100 AttackMotion: 672 DamageMotion: 480 Drops: { SmallTentacles: 1400 PinkBlobime: 700 SeaDrops: 500 Aquada: 350 Coral: 25 Pearl: 11 MysteriousBottle: 3 } }, { Id: 1008 SpriteName: "Blub" Name: "Blub" Lv: 14 Hp: 2801 Sp: 0 Exp: 28 JExp: 3 AttackRange: 1 Attack: [159, 165] Def: 16 Mdef: 4 WalkMask: "WALK_WATER" Stats: { Str: 8 Agi: 10 Vit: 13 Int: 1 Dex: 11 Luk: 6 } ChaseRange: 12 Race: 2 Element: (1, 2) Mode: { CanMove: true Looter: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 500 AttackDelay: 2150 AttackMotion: 672 DamageMotion: 480 Drops: { Coral: 3000 SmallTentacles: 2400 PinkBlobime: 2000 Tentacles: 1800 SeaDrops: 1600 Aquada: 1500 Pearl: 71 MysteriousBottle: 9 } }, { Id: 1009 SpriteName: "ToppyBlub" Name: "Toppy Blub" Lv: 24 Hp: 5043 Sp: 0 Exp: 46 JExp: 8 AttackRange: 1 Attack: [288, 305] Def: 18 Mdef: 11 WalkMask: "WALK_WATER" Stats: { Str: 9 Agi: 18 Vit: 17 Int: 1 Dex: 14 Luk: 11 } ChaseRange: 12 Race: 2 Element: (1, 3) Mode: { CanMove: true Looter: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 400 AttackDelay: 2150 AttackMotion: 672 DamageMotion: 480 Drops: { Tentacles: 2300 PurpleBlobime: 1800 Aquada: 1200 SeaDrops: 4000 BlueCoral: 2200 Pearl: 100 MysteriousBottle: 11 } }, { Id: 1010 SpriteName: "CrocoTree" Name: "Croconut 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 //SpawnCollisionSize: 0 //SpawnCollisionMask: 5 Drops: { Croconut: 3700 Croconut: 2100 Croconut: 600 RawLog: 350 } WeaponAttacks: { Bows: 8000 } }, { Id: 1011 SpriteName: "PlushroomField" Name: "Plushroom Field" Lv: 1 Hp: 50 Sp: 0 Exp: 0 AttackRange: 1 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 3 Element: (2, 1) MoveSpeed: 1000 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Plushroom: 5000 MushroomSpores: 400 Moss: 300 } }, { Id: 1012 SpriteName: "IceMaggot" Name: "Ice Maggot" Lv: 25 Hp: 3004 Sp: 0 Exp: 34 JExp: 2 AttackRange: 1 Attack: [222, 272] Def: 6 Mdef: 2 Stats: { Str: 9 Agi: 18 Vit: 17 Int: 1 Dex: 14 Luk: 11 } ViewRange: 7 ChaseRange: 12 Race: 2 Element: (1, 1) Mode: { Aggressive: true CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 700 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 200 Drops: { MaggotSlime: 800 BugLeg: 400 Coal: 15 IceCube: 11 CrystallizedMaggot: 1 } }, // 1013 is free // mob ids which is free: 1013 (pikpik) // is free: 1046, 1048 (dragons?) // is free: 1057, 1059 (small/big mineral bif) { Id: 1014 SpriteName: "EntAbomination" Name: "Ent Abomination" Lv: 1 Hp: 10000 Exp: 1 Def: 1 Mdef: 1 Race: 3 Element: (2, 1) AttackRange: 1 Attack: [22, 42] Stats: { Luk: 32767 } ViewRange: 9 ChaseRange: 12 Mode: { CanMove: true CanAttack: true Boss: true } MoveSpeed: 900 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 200 }, // Chests/Mimics: 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, { Id: 1015 SpriteName: "Tipiu" Name: "Tipiu" Lv: 70 Hp: 16000 Sp: 0 Exp: 1922 JExp: 110 AttackRange: 1 Attack: [496, 660] Def: 60 Mdef: 29 WalkMask: "WALK_AIR" Stats: { Str: 33 Agi: 50 Vit: 60 Int: 1 Dex: 61 Luk: 29 } ViewRange: 5 ChaseRange: 11 Race: 2 Element: (4, 2) Mode: { CanMove: true Aggressive: true Assist: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 210 AttackDelay: 1120 AttackMotion: 1672 DamageMotion: 100 Drops: { PiouLegs: 10000 PiouFeathers: 8700 EasterEgg: 3000 BronzeBossGift: 1000 GoldenApple: 10 } }, { Id: 1016 SpriteName: "Tipiou" Name: "Tipiou" Lv: 45 Hp: 10238 Sp: 0 Exp: 222 JExp: 45 AttackRange: 1 Attack: [356, 524] Def: 46 Mdef: 27 WalkMask: "WALK_AIR" Stats: { Str: 22 Agi: 33 Vit: 46 Int: 1 Dex: 41 Luk: 27 } ViewRange: 3 ChaseRange: 12 Race: 2 Element: (4, 2) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 250 AttackDelay: 1120 AttackMotion: 1672 DamageMotion: 100 Drops: { PiouFeathers: 3300 PiouLegs: 3700 EasterEgg: 3000 PolishedTopaz: 1 } }, { Id: 1017 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 Drops: { Manana: 2500 Manana: 1000 RawLog: 100 } }, { Id: 1018 SpriteName: "Crafty" Name: "Crafty" Lv: 70 Hp: 10105 Sp: 0 Exp: 952 JExp: 30 AttackRange: 1 Attack: [345, 394] Def: 29 Mdef: 60 WalkMask: "WALK_AIR" Stats: { Str: 33 Agi: 50 Vit: 60 Int: 1 Dex: 61 Luk: 29 } ChaseRange: 12 Race: 2 Element: (4, 2) Mode: { CanMove: true Looter: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 300 AttackDelay: 650 AttackMotion: 672 DamageMotion: 270 Drops: { BatTeeth: 1800 LeftCraftyWing: 1300 RightCraftyWing: 1300 DarkCrystal: 80 } }, { Id: 1019 SpriteName: "MagentaSpark" Name: "Magenta Spark" Lv: 1 Hp: 14 Sp: 0 Exp: 4 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 60 Vit: 1 Int: 1 Dex: 1 Luk: 65535 } ChaseRange: 12 Race: 3 Element: (2, 1) Mode: { Plant: true CanMove: true } MoveSpeed: 400 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 }, { Id: 1020 SpriteName: "YellowSpark" Name: "Yellow Spark" Lv: 1 Hp: 14 Sp: 0 Exp: 4 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 60 Vit: 1 Int: 1 Dex: 1 Luk: 65535 } ChaseRange: 12 Race: 3 Element: (2, 1) Mode: { Plant: true CanMove: true } MoveSpeed: 400 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 }, { Id: 1021 SpriteName: "Dummy" Name: "Dummy" Lv: 1 Hp: 15 Sp: 0 Exp: 4 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 3 Element: (2, 1) Mode: { Plant: true } MoveSpeed: 1000 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 }, { Id: 1022 SpriteName: "Fluffy" Name: "Common Fluffy" Lv: 16 Hp: 2820 Sp: 0 Exp: 27 JExp: 4 AttackRange: 1 Attack: [210, 250] Def: 8 Mdef: 0 Stats: { Str: 9 Agi: 18 Vit: 17 Int: 1 Dex: 14 Luk: 6 } ViewRange: 6 ChaseRange: 12 Race: 2 Element: (1, 1) Mode: { CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 400 AttackDelay: 2072 AttackMotion: 672 DamageMotion: 480 Drops: { WhiteFur: 2200 LettuceLeaf: 1600 Moss: 800 FluffyHat: 1 } }, { Id: 1023 SpriteName: "Mouboo" Name: "Common Mouboo" Lv: 35 Hp: 4000 Sp: 0 Exp: 106 JExp: 10 AttackRange: 1 Attack: [204, 222] Def: 33 Mdef: 19 Stats: { Str: 17 Agi: 28 Vit: 33 Int: 1 Dex: 33 Luk: 19 } ViewRange: 4 ChaseRange: 12 Race: 2 Element: (1, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true Assist: true SurviveWithoutMaster: true } MoveSpeed: 620 AttackDelay: 872 AttackMotion: 672 DamageMotion: 200 Drops: { Milk: 400 RedApple: 350 MoubooSteak: 300 ChocolateBar: 290 CasinoCoins: 250 ReedBundle: 200 ChocolateMouboo: 100 MoubooHat: 1 } }, { Id: 1024 SpriteName: "Bandit" Name: "Bandit" Lv: 26 Hp: 4211 Sp: 0 Exp: 44 JExp: 8 AttackRange: 1 Attack: [168, 180] Def: 45 Mdef: 20 Stats: { Str: 11 Agi: 20 Vit: 24 Int: 10 Dex: 33 Luk: 11 } ViewRange: 9 ChaseRange: 12 Race: 2 Element: (7, 1) Mode: { Aggressive: true CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 440 AttackDelay: 1260 AttackMotion: 672 DamageMotion: 900 Drops: { BanditHood: 800 CoinBag: 500 RedApple: 300 LeatherPatch: 200 Dagger: 90 Lockpicks: 70 GoldPieces: 3 BanditPants: 1 } }, { Id: 1025 SpriteName: "RedButterfly" Name: "Red Butterfly" Lv: 5 Hp: 460 Sp: 0 Exp: 8 JExp: 2 AttackRange: 1 Attack: [100, 200] Def: 30 Mdef: 350 WalkMask: "WALK_AIR" Stats: { Str: 10 Agi: 115 Vit: 10 Int: 15 Dex: 100 Luk: 40 } ViewRange: 5 ChaseRange: 12 Race: 2 Element: (4, 1) Mode: { CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 320 AttackDelay: 390 AttackMotion: 300 DamageMotion: 800 Drops: { SilkCocoon: 945 Butterfly: 1 } }, { Id: 1026 SpriteName: "Archant" Name: "Archant" Lv: 65 Hp: 8740 Sp: 0 Exp: 992 JExp: 35 AttackRange: 1 Attack: [716, 813] Def: 12 Mdef: 6 Stats: { Str: 28 Agi: 40 Vit: 53 Int: 1 Dex: 51 Luk: 26 } ViewRange: 7 ChaseRange: 12 Race: 2 Element: (2, 1) Mode: { Aggressive: true CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 620 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 200 Drops: { MaggotSlime: 800 BugLeg: 400 TreasureKey: 200 Coal: 75 } }, { Id: 1027 SpriteName: "CaveMaggot" Name: "Cave Maggot" Lv: 15 Hp: 1050 Sp: 0 Exp: 18 JExp: 1 AttackRange: 1 Attack: [100, 130] Def: 12 Mdef: 2 Stats: { Str: 9 Agi: 18 Vit: 17 Int: 1 Dex: 14 Luk: 11 } ViewRange: 7 ChaseRange: 12 Race: 2 Element: (2, 1) Mode: { Aggressive: true CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 700 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 200 Drops: { MaggotSlime: 800 BugLeg: 400 RoastedMaggot: 150 CactusDrink: 100 CactusPotion: 51 Coal: 15 SharpKnife: 11 CrystallizedMaggot: 1 } }, { Id: 1028 SpriteName: "CloverPatch" Name: "Clover Patch" Lv: 1 Hp: 1 Sp: 1 Exp: 1 AttackRange: 1 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 0 ChaseRange: 12 Race: 2 Element: (2, 1) Mode: { CanMove: false CanAttack:false } Drops: { ReedBundle: 400 FourLeafClover: 2 } }, { Id: 1029 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 Drops: { CherryCake: 770 BugLeg: 350 Moss: 320 DuckFeather: 56 CommonCarp: 23 GrassCarp: 3 } }, { Id: 1030 SpriteName: "Maggot" Name: "Common Maggot" Lv: 5 Hp: 400 Sp: 0 Exp: 6 JExp: 1 AttackRange: 1 Attack: [59, 70] Def: 5 Mdef: 3 Stats: { Str: 7 Agi: 5 Vit: 2 Int: 1 Dex: 5 Luk: 3 } ViewRange: 6 ChaseRange: 12 Race: 2 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 200 Drops: { MaggotSlime: 800 BugLeg: 400 RoastedMaggot: 150 CactusDrink: 81 CactusPotion: 61 SharpKnife: 11 CrystallizedMaggot: 1 } }, { Id: 1031 SpriteName: "GiantMaggot" Name: "Giant Maggot" Lv: 40 Hp: 4813 Sp: 0 Exp: 127 JExp: 9 AttackRange: 1 Attack: [600, 894] Def: 33 Mdef: 19 Stats: { Str: 17 Agi: 28 Vit: 33 Int: 1 Dex: 33 Luk: 19 } ChaseRange: 12 Race: 2 Element: (0, 2) Mode: { CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 1900 AttackDelay: 2700 AttackMotion: 672 DamageMotion: 480 Drops: { CactusDrink: 4000 CactusPotion: 3000 MaggotSlime: 900 BugLeg: 800 TolchiAmmoBox: 700 CherryCake: 350 CoinBag: 200 EmptyBox: 125 CasinoCoins: 100 DesertTablet: 2 } }, { Id: 1032 SpriteName: "Squirrel" Name: "Squirrel" Lv: 3 Hp: 750 Exp: 3 Def: 3 Mdef: 300 ViewRange: 18 ChaseRange: 18 Race: 2 Element: (2, 1) MoveSpeed: 116 Mode: { CanMove: true Looter: true CanAttack: false } Drops: { Acorn: 1700 ArtichokeHerb: 1600 MauveHerb: 900 GambogeHerb: 600 Acorn: 600 CobaltHerb: 300 SquirrelPelt: 175 AlizarinHerb: 100 ShadowHerb: 15 Emerald: 2 } }, { Id: 1033 SpriteName: "SpringSquirrel" Name: "Spring Squirrel" Lv: 3 Hp: 750 Exp: 3 Def: 3 Mdef: 300 ViewRange: 18 ChaseRange: 18 Race: 2 Element: (2, 1) MoveSpeed: 128 Mode: { CanMove: true Looter: true CanAttack: false } Drops: { MauveHerb: 1600 Acorn: 1500 ArtichokeHerb: 900 GambogeHerb: 600 Acorn: 550 CobaltHerb: 300 SquirrelPelt: 180 AlizarinHerb: 100 ShadowHerb: 10 Emerald: 2 } }, { Id: 1034 SpriteName: "SilkWorm" Name: "Silk Worm" Lv: 1 Hp: 120 Sp: 0 Exp: 2 JExp: 1 AttackRange: 1 Attack: [20, 20] Def: 8 Mdef: 0 Stats: { Str: 5 Agi: 15 Vit: 5 Int: 1 Dex: 25 Luk: 15 } ChaseRange: 12 Race: 2 Element: (0, 1) Mode: { CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 1200 AttackDelay: 2872 AttackMotion: 672 DamageMotion: 480 Drops: { SilkCocoon: 5000 } }, { Id: 1035 SpriteName: "CaveSnake" Name: "Cave Snake" Lv: 30 Hp: 3607 Sp: 0 Exp: 54 JExp: 8 AttackRange: 1 Attack: [320, 455] Def: 24 Mdef: 13 Stats: { Str: 11 Agi: 20 Vit: 24 Int: 1 Dex: 29 Luk: 13 } ViewRange: 8 ChaseRange: 12 Race: 2 Element: (2, 2) Mode: { CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 200 Drops: { CaveSnakeLamp: 900 CaveSnakeTongue: 500 CaveSnakeEgg: 400 CaveSnakeEgg: 100 CaveSnakeSkin: 41 JeansShorts: 32 Coal: 25 CaveSnakeHat: 1 } }, { Id: 1036 SpriteName: "EvilScythe" Name: "Evil Scythe" Lv: 90 Hp: 37142 Sp: 0 Exp: 6400 JExp: 212 AttackRange: 1 Attack: [213, 350] Def: 0 Mdef: 0 WalkMask: "WALK_AIR" Stats: { Agi: 250 Vit: 1 Int: 1 Dex: 150 Luk: 90 } ViewRange: 9 ChaseRange: 14 Race: 2 Element: (7, 1) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true Boss: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 200 AttackDelay: 620 AttackMotion: 472 DamageMotion: 200 Drops: { SpectralOrb: 200 PlatinumOre: 125 CursedSkull: 100 BlackPearl: 3 Emperium: 1 } }, { Id: 1037 SpriteName: "Wolvern" Name: "Wolvern" Lv: 46 Hp: 5699 Sp: 0 Exp: 295 JExp: 16 AttackRange: 1 Attack: [615, 682] Def: 46 Mdef: 27 Stats: { Str: 22 Agi: 33 Vit: 46 Int: 2 Dex: 41 Luk: 27 } ViewRange: 6 ChaseRange: 12 Race: 2 Element: (0, 2) Mode: { Aggressive: true CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 400 AttackDelay: 2272 AttackMotion: 672 DamageMotion: 480 Drops: { WhiteFur: 2500 WolvernPelt: 450 WolvernTooth: 150 WolvernTooth: 150 WolvernTeethNecklace: 1 } }, { Id: 1038 SpriteName: "Moubi" Name: "Moubi" Lv: 135 Hp: 29700 Sp: 0 Exp: 16200 JExp: 35 AttackRange: 3 Attack: [530, 550] Def: 322 Mdef: 49 Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } ViewRange: 7 ChaseRange: 12 Race: 2 Element: (6, 2) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true Assist: true SurviveWithoutMaster: true } MoveSpeed: 420 AttackDelay: 872 AttackMotion: 672 DamageMotion: 200 Drops: { Milk: 2000 RedApple: 1750 MoubooSteak: 1500 ChocolateBar: 1450 ReedBundle: 1000 ChocolateMouboo: 500 PurificationPotion: 60 HeartNecklace: 1 MoubiHat: 1 } }, { Id: 1039 SpriteName: "Bat" Name: "Cave Bat" Lv: 14 Hp: 1682 Sp: 0 Exp: 17 JExp: 2 AttackRange: 1 Attack: [96, 101] Def: 15 Mdef: 60 WalkMask: "WALK_AIR" Stats: { Str: 7 Agi: 14 Vit: 15 Int: 1 Dex: 24 Luk: 9 } ViewRange: 1 ChaseRange: 16 Race: 2 Element: (4, 1) Mode: { CanMove: true Looter: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 750 AttackDelay: 930 AttackMotion: 672 DamageMotion: 480 Drops: { BatTeeth: 1750 BatWing: 1400 BatWing: 1200 BugLeg: 200 MaggotSlime: 90 Dagger: 66 Bloodstone: 1 } }, { Id: 1040 SpriteName: "YetiKing" Name: "The Yeti King" Lv: 120 Hp: 64612 Sp: 0 Exp: 26103 JExp: 400 AttackRange: 3 Attack: [977, 1082] Def: 120 Mdef: 80 Stats: { Str: 60 Agi: 78 Vit: 93 Int: 40 Dex: 88 Luk: 56 } ViewRange: 5 ChaseRange: 8 Race: 2 Element: (6, 3) Mode: { Aggressive: true CanMove: true Boss: true Looter: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 450 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 270 Drops: { FrozenYetiTear: 10000 AnimalBones: 1500 BronzeBossGift: 1000 SilverBossGift: 500 ArcmageBoxset: 135 YetiMask: 50 LightRing: 1 } }, { Id: 1041 SpriteName: "IcedFluffy" Name: "Iced Fluffy" Lv: 40 Hp: 6200 Sp: 0 Exp: 151 JExp: 14 AttackRange: 1 Attack: [500, 700] Def: 66 Mdef: 19 Stats: { Str: 17 Agi: 28 Vit: 33 Int: 1 Dex: 33 Luk: 19 } ChaseRange: 12 Race: 2 Element: (1, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { WhiteFur: 800 WhiteFur: 300 SharpKnife: 11 FluffyHat: 1 } }, { Id: 1042 SpriteName: "RedMushroom" Name: "Red Mushroom" Lv: 33 Hp: 4200 Sp: 0 Exp: 98 JExp: 10 AttackRange: 1 Attack: [361, 393] Def: 26 Mdef: 15 Stats: { Str: 12 Agi: 22 Vit: 26 Int: 5 Dex: 30 Luk: 15 } ViewRange: 7 ChaseRange: 12 Race: 2 Element: (3, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true Aggressive: true Angry: true } MoveSpeed: 780 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { Chagashroom: 800 MushroomSpores: 800 SmallMushroom: 600 Plushroom: 400 Chagashroom: 100 Orange: 50 MushHat: 1 } }, { Id: 1043 SpriteName: "PoisonSpikyMushroom" Name: "Poison Spiky Mushroom" Lv: 22 Hp: 2643 Sp: 0 Exp: 25 JExp: 6 AttackRange: 1 Attack: [258, 275] Def: 19 Mdef: 11 Stats: { Str: 9 Agi: 18 Vit: 17 Int: 1 Dex: 18 Luk: 11 } ChaseRange: 12 Race: 2 Element: (6, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 800 AttackDelay: 1572 AttackMotion: 672 DamageMotion: 480 Drops: { Plushroom: 700 MushroomSpores: 750 HardSpike: 400 SmallMushroom: 400 Plushroom: 400 HardSpike: 200 ShroomHat: 1 } }, { Id: 1044 SpriteName: "GiantMutatedBat" Name: "Giant Mutated Bat" Lv: 80 Hp: 43310 Sp: 0 Exp: 13540 JExp: 115 AttackRange: 2 Attack: [536, 721] Def: 22 Mdef: 0 WalkMask: "WALK_AIR" Stats: { Str: 41 Agi: 55 Vit: 72 Int: 80 Dex: 66 Luk: 33 } ViewRange: 6 ChaseRange: 12 Race: 2 Element: (4, 1) Mode: { Aggressive: true Boss: true Angry: true CanMove: true CanAttack: true ChangeChase: true ChangeTargetMelee: true CastSensorChase: true } MoveSpeed: 515 AttackDelay: 1880 AttackMotion: 672 DamageMotion: 480 Drops: { BugLeg: 3000 BronzeBossGift: 1000 LeatherPatch: 750 CactusPotion: 500 CactusDrink: 400 GoldOre: 200 SharpKnife: 100 AnimalBones: 80 } }, { Id: 1045 SpriteName: "Scar" Name: "Scar" Lv: 65 Hp: 8772 Sp: 0 Exp: 992 JExp: 30 AttackRange: 2 Attack: [530, 550] Def: 27 Mdef: 22 Stats: { Str: 33 Agi: 50 Vit: 60 Int: 1 Dex: 61 Luk: 29 } ViewRange: 7 ChaseRange: 12 Race: 2 Element: (7, 1) Mode: { Aggressive: true CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 600 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 200 Drops: { DarkCrystal: 85 Coal: 65 SkullBloodyMug: 20 DarkCrystal: 15 Diamond: 10 Topaz: 3 Amethyst: 2 } }, // 1046 is free { Id: 1047 SpriteName: "BeeHive" Name: "Bee Hive" Lv: 1 Hp: 30 Sp: 1 Exp: 1 AttackRange: 1 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 0 ChaseRange: 12 Race: 2 Element: (2, 1) Mode: { CanMove: false CanAttack:false } Drops: { BeeStinger: 700 Honey: 400 Honey: 200 Honey: 100 } }, // 1048 is free { Id: 1049 SpriteName: "BhopFluffy" Name: "Bhop Fluffy" Lv: 18 Hp: 1200 Sp: 0 Exp: 18 JExp: 3 AttackRange: 1 Attack: [50, 250] Def: 10 Mdef: 0 Stats: { Str: 14 Agi: 1 Vit: 10 Int: 1 Dex: 30 Luk: 5 } ViewRange: 6 ChaseRange: 12 Race: 2 Element: (1, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { SilverEasteregg: 1000 GoldenEasteregg: 200 CactusDrink: 200 CactusPotion: 100 Carrot: 51 BunnyEars: 7 DarkEggshellHat: 1 FluffyHat: 1 } }, { Id: 1050 SpriteName: "LoveFluffy" Name: "Lovely Fluffy" Lv: 18 Hp: 1200 Sp: 0 Exp: 18 JExp: 3 AttackRange: 1 Attack: [60, 250] Def: 10 Mdef: 0 Stats: { Str: 14 Agi: 1 Vit: 10 Int: 1 Dex: 30 Luk: 5 } ChaseRange: 12 Race: 2 Element: (1, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 600 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { BoxOfChocolates: 1000 LoveLetter: 100 Carrot: 51 EverburnPowder: 6 FluffyHat: 1 } }, { Id: 1051 SpriteName: "DarkLizard" Name: "Dark Lizard" Lv: 47 Hp: 5850 Sp: 0 Exp: 326 JExp: 15 AttackRange: 1 Attack: [407, 452] Def: 46 Mdef: 200 Stats: { Str: 22 Agi: 33 Vit: 46 Int: 1 Dex: 41 Luk: 37 } ViewRange: 6 ChaseRange: 12 Race: 2 Element: (7, 2) Mode: { Aggressive: true CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 600 AttackDelay: 1622 AttackMotion: 672 DamageMotion: 480 Drops: { CasinoCoins: 550 PileOfAsh: 320 GingerBreadMan: 240 SulfurPowder: 215 } }, { Id: 1052 SpriteName: "MagicGoblin" Name: "Magic Goblin" Lv: 16 Hp: 900 Sp: 0 Exp: 15 JExp: 5 AttackRange: 6 Attack: [120, 190] Def: 17 Mdef: 26 Stats: { Str: 10 Agi: 18 Vit: 17 Int: 32 Dex: 40 Luk: 16 } ViewRange: 8 ChaseRange: 12 Race: 2 Element: (7, 1) Mode: { Aggressive: true CanMove: true CanAttack: true CastSensorChase: true } MoveSpeed: 800 AttackDelay: 1472 AttackMotion: 672 DamageMotion: 480 Drops: { PileOfAsh: 220 PileOfAsh: 80 SulfurPowder: 75 CactusDrink: 45 SharpKnife: 11 } }, { Id: 1053 SpriteName: "LofSquirrel" Name: "Lof Squirrel" Lv: 3 Hp: 750 Exp: 3 Def: 3 Mdef: 300 ViewRange: 18 ChaseRange: 18 Race: 2 Element: (2, 1) MoveSpeed: 112 Mode: { CanMove: true Looter: true CanAttack: false } Drops: { AlizarinHerb: 1600 Acorn: 1550 ArtichokeHerb: 900 MauveHerb: 600 Acorn: 500 GambogeHerb: 300 SquirrelPelt: 145 CobaltHerb: 100 ShadowHerb: 45 Ruby: 2 } }, { Id: 1054 SpriteName: "FrozenSquirrel" Name: "Frozen Squirrel" Lv: 3 Hp: 750 Exp: 3 Def: 20 Mdef: 300 ViewRange: 18 ChaseRange: 18 Race: 2 Element: (2, 1) MoveSpeed: 120 Mode: { CanMove: true Looter: true CanAttack: false } Drops: { CobaltHerb: 1600 ArtichokeHerb: 900 Acorn: 750 MauveHerb: 600 GambogeHerb: 300 Acorn: 100 SquirrelPelt: 190 AlizarinHerb: 100 ShadowHerb: 35 Sapphire: 2 } }, { Id: 1055 SpriteName: "FairysSquirrel" Name: "Fairy's Squirrel" Lv: 3 Hp: 750 Exp: 3 Def: 20 Mdef: 300 ViewRange: 18 ChaseRange: 18 Race: 2 Element: (2, 1) MoveSpeed: 108 Mode: { CanMove: true Looter: true CanAttack: false } Drops: { Acorn: 1800 GambogeHerb: 1600 Acorn: 1000 ArtichokeHerb: 900 MauveHerb: 600 CobaltHerb: 300 SquirrelPelt: 160 AlizarinHerb: 100 ShadowHerb: 25 Topaz: 2 } }, { Id: 1056 SpriteName: "AlphaMouboo" Name: "Alpha Mouboo" Lv: 45 Hp: 7768 Sp: 0 Exp: 640 JExp: 20 AttackRange: 1 Attack: [585, 757] Def: 46 Mdef: 41 Stats: { Str: 22 Agi: 38 Vit: 46 Int: 16 Dex: 41 Luk: 45 } ViewRange: 3 ChaseRange: 14 Race: 2 Element: (0, 2) Mode: { CanMove: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 400 AttackDelay: 2072 AttackMotion: 672 DamageMotion: 200 Drops: { CasinoCoins: 1100 RedApple: 400 MoubooSteak: 375 ChocolateBar: 300 ChocolateMouboo: 200 ChocolateBar: 15 AntlersHat: 1 AlphaMoubooHat: 1 } }, // 1057 is free { Id: 1058 SpriteName: "Bif" Name: "Mineral Bif" Lv: 1 Hp: 5 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 65535 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 550 IronOre: 400 CopperOre: 200 SilverOre: 100 GoldOre: 80 TinOre: 60 LeadOre: 50 TitaniumOre: 35 IridiumOre: 10 PlatinumOre: 5 } }, // 1059 is free { Id: 1060 SpriteName: "ForestMushroom" Name: "Forest Mushroom" Lv: 54 Hp: 6439 Sp: 0 Exp: 406 JExp: 20 AttackRange: 1 Attack: [764, 856] Def: 49 Mdef: 36 Stats: { Str: 24 Agi: 35 Vit: 49 Int: 9 Dex: 45 Luk: 24 } ViewRange: 7 ChaseRange: 12 Race: 2 Element: (6, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 760 AttackDelay: 2372 AttackMotion: 672 DamageMotion: 480 Drops: { MushroomSpores: 850 Plushroom: 800 SmallMushroom: 500 HardSpike: 400 Chagashroom: 350 HardSpike: 200 ArtichokeHerb: 150 Emerald: 3 ForestShroomHat: 1 } }, { Id: 1061 SpriteName: "Forain" Name: "Forain" Lv: 75 Hp: 9501 Sp: 0 Exp: 1896 JExp: 32 AttackRange: 2 Attack: [364, 417] Def: 65 Mdef: 34 Stats: { Str: 82 Agi: 45 Vit: 66 Int: 16 Dex: 57 Luk: 34 } ViewRange: 8 ChaseRange: 10 Race: 2 Element: (0, 3) Mode: { Aggressive: true CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 205 AttackDelay: 1620 AttackMotion: 672 DamageMotion: 200 Drops: { ChocolateBiscuit: 800 Coal: 500 LeadOre: 400 AnimalBones: 270 DarkCrystal: 17 } }, { Id: 1062 SpriteName: "Assassin" Name: "Assassin" Lv: 27 Hp: 4211 Sp: 0 Exp: 45 JExp: 8 AttackRange: 1 Attack: [198, 214] Def: 45 Mdef: 20 Stats: { Str: 11 Agi: 20 Vit: 24 Int: 10 Dex: 33 Luk: 11 } ViewRange: 9 ChaseRange: 12 Race: 2 Element: (7, 1) Mode: { Aggressive: true CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 440 AttackDelay: 1260 AttackMotion: 672 DamageMotion: 900 Drops: { RedApple: 400 LeatherPatch: 240 CoinBag: 125 Lockpicks: 100 Dagger: 20 GoldPieces: 3 } }, { Id: 1063 SpriteName: "VampireBat" Name: "Vampire Bat" Lv: 25 Hp: 3000 Sp: 0 Exp: 35 JExp: 1 AttackRange: 1 Attack: [272, 292] Def: 17 Mdef: 11 WalkMask: "WALK_AIR" Stats: { Str: 9 Agi: 18 Vit: 17 Int: 1 Dex: 14 Luk: 11 } ChaseRange: 12 Race: 2 Element: (4, 1) Mode: { Aggressive: true CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { BugLeg: 300 VampireBatWing: 150 VampireBatWing: 100 Bloodstone: 1 } }, { Id: 1064 SpriteName: "Yeti" Name: "Yeti" Lv: 60 Hp: 7128 Sp: 0 Exp: 872 JExp: 25 AttackRange: 2 Attack: [244, 281] Def: 85 Mdef: 32 Stats: { Str: 60 Agi: 40 Vit: 55 Int: 15 Dex: 51 Luk: 32 } ViewRange: 7 ChaseRange: 12 Race: 2 Element: (6, 2) Mode: { Aggressive: true CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 220 AttackDelay: 1200 AttackMotion: 672 DamageMotion: 200 Drops: { WhiteFur: 3000 WhiteFur: 1800 WhiteFur: 700 AnimalBones: 400 FrozenYetiTear: 300 SilverOre: 200 YetiMask: 4 } }, { Id: 1065 SpriteName: "Bee" Name: "Bee" Lv: 5 Hp: 600 Sp: 0 Exp: 7 JExp: 1 AttackRange: 1 Attack: [69, 70] Def: 10 Mdef: 4 WalkMask: "WALK_AIR" Stats: { Str: 7 Agi: 6 Vit: 2 Int: 1 Dex: 60 Luk: 5 } ViewRange: 14 ChaseRange: 14 Race: 2 Element: (4, 1) Mode: { Assist: true CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { BugLeg: 500 BeeStinger: 300 Honey: 15 Topaz: 1 } }, { Id: 1066 SpriteName: "LogHead" Name: "Log Head" Lv: 35 Hp: 4204 Sp: 300 Exp: 112 JExp: 10 AttackRange: 1 Attack: [487, 532] Def: 61 Mdef: 5 Stats: { Str: 40 Agi: 24 Vit: 14 Int: 1 Dex: 28 Luk: 22 } ViewRange: 16 ChaseRange: 17 Race: 2 Element: (2, 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeChase: true ChangeTargetMelee: true CastSensorChase: true } MoveSpeed: 900 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { Acorn: 3000 Root: 2400 RawLog: 2000 RawLog: 2000 ReedBundle: 150 } }, { Id: 1067 SpriteName: "FireGoblin" Name: "Fire Goblin" Lv: 17 Hp: 2042 Sp: 0 Exp: 21 JExp: 4 AttackRange: 1 Attack: [96, 99] Def: 13 Mdef: 5 Stats: { Str: 5 Agi: 10 Vit: 13 Int: 1 Dex: 11 Luk: 6 } ChaseRange: 12 Race: 2 Element: (3, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { BugLeg: 400 Piberries: 200 PileOfAsh: 150 Coal: 140 CactusDrink: 100 PileOfAsh: 75 CactusPotion: 51 EmptyBottle: 41 CherryCake: 36 SharpKnife: 5 } }, { Id: 1068 SpriteName: "ManaGhost" Name: "Mana Ghost" Lv: 15 Hp: 802 Sp: 0 Exp: 13 JExp: 10 AttackRange: 1 Attack: [242, 254] Def: 30 Mdef: 80 WalkMask: "WALK_AIR" Stats: { Str: 8 Agi: 16 Vit: 15 Int: 46 Dex: 120 Luk: 5 } ViewRange: 6 ChaseRange: 12 Race: 2 Element: (8, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 800 AttackDelay: 2172 AttackMotion: 672 DamageMotion: 480 Drops: { CactusDrink: 700 SulfurPowder: 500 CactusPotion: 300 SharpKnife: 21 BlueManaPearl: 1 ArcmageBoxset: 1 } }, { Id: 1069 SpriteName: "Moonshroom" Name: "Moonshroom" Lv: 80 Hp: 11346 Sp: 200 Exp: 1976 JExp: 39 AttackRange: 4 Attack: [285, 329] Def: 64 Mdef: 72 Stats: { Str: 41 Agi: 55 Vit: 72 Int: 50 Dex: 66 Luk: 33 } ViewRange: 7 ChaseRange: 11 Race: 2 Element: (6, 3) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 200 Drops: { MushroomSpores: 1150 Plushroom: 600 SmallMushroom: 600 ChocolateBiscuit: 350 Chagashroom: 300 SulfurPowder: 270 FluoPowder: 50 SapphirePowder: 15 Sapphire: 5 MoonshroomHat: 2 } }, { Id: 1070 SpriteName: "Moggun" Name: "Moggun" Lv: 32 Hp: 5000 Sp: 0 Exp: 63 JExp: 10 AttackRange: 1 Attack: [350, 375] Def: 24 Mdef: 13 Stats: { Str: 11 Agi: 20 Vit: 24 Int: 1 Dex: 29 Luk: 13 } ViewRange: 6 ChaseRange: 12 Race: 2 Element: (6, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { WhiteFur: 2700 WhiteFur: 450 WhiteFur: 200 Diamond: 11 IceGladius: 2 } }, { Id: 1071 SpriteName: "Scorpion" Name: "Common Scorpion" Lv: 10 Hp: 1201 Sp: 0 Exp: 13 JExp: 2 AttackRange: 1 Attack: [138, 144] Def: 13 Mdef: 6 Stats: { Str: 5 Agi: 10 Vit: 13 Int: 1 Dex: 11 Luk: 6 } ChaseRange: 12 Race: 2 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { ScorpionStinger: 700 BugLeg: 650 ScorpionClaw: 180 ScorpionClaw: 120 Candy: 100 CherryCake: 80 ChocolateBar: 51 } }, { Id: 1072 SpriteName: "RedScorpion" Name: "Red Scorpion" Lv: 19 Hp: 2283 Sp: 500 Exp: 30 JExp: 5 AttackRange: 1 Attack: [236, 250] Def: 17 Mdef: 11 Stats: { Str: 9 Agi: 18 Vit: 17 Int: 10 Dex: 14 Luk: 11 } ViewRange: 7 ChaseRange: 10 Race: 2 Element: (3, 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeChase: true ChangeTargetMelee: true CastSensorChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { RedScorpionStinger: 1350 Arrow: 1000 SmallKnife: 550 BugLeg: 480 RedScorpionClaw: 220 RedScorpionClaw: 170 IronPowder: 50 FancyHat: 26 Root: 22 } }, { Id: 1073 SpriteName: "CandorScorpion" Name: "Candor Scorpion" Lv: 5 Hp: 600 Sp: 0 Exp: 8 JExp: 1 AttackRange: 1 Attack: [75, 112] Def: 6 Mdef: 2 Stats: { Str: 7 Agi: 6 Vit: 2 Int: 1 Dex: 7 Luk: 3 } ChaseRange: 12 Race: 2 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 800 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { BugLeg: 720 ScorpionStinger: 550 TolchiAmmoBox: 400 Piberries: 200 Candy: 100 ScorpionClaw: 90 ScorpionClaw: 70 } }, { Id: 1074 SpriteName: "BlackScorpion" Name: "Black Scorpion" Lv: 50 Hp: 6309 Sp: 0 Exp: 404 JExp: 14 AttackRange: 1 Attack: [618, 689] Def: 46 Mdef: 27 Stats: { Str: 22 Agi: 33 Vit: 46 Int: 10 Dex: 41 Luk: 27 } ViewRange: 9 ChaseRange: 12 Race: 2 Element: (7, 1) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 800 AttackDelay: 2100 AttackMotion: 672 DamageMotion: 200 Drops: { BlackScorpionStinger: 800 BugLeg: 750 BlackScorpionClaw: 310 BlackScorpionClaw: 210 CherryCake: 160 IronOre: 150 ChocolateBar: 100 Coal: 55 BlackPearl: 1 } }, { Id: 1075 SpriteName: "ManaBug" Name: "Mana Bug" Lv: 15 Hp: 2704 Sp: 500 Exp: 26 JExp: 4 AttackRange: 2 Attack: [70, 160] Def: 20 Mdef: 60 WalkMask: "WALK_AIR" Stats: { Str: 10 Agi: 19 Vit: 20 Int: 30 Dex: 50 Luk: 12 } ChaseRange: 12 Race: 2 Element: (4, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 660 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { BugLeg: 750 Piberries: 600 CactusDrink: 400 CactusPotion: 300 Plushroom: 100 Chagashroom: 100 TolchiAmmoBox: 80 CottonCloth: 37 BlueManaPearl: 1 } }, { Id: 1076 SpriteName: "SaxsoGhost" Name: "Saxso Ghost" Lv: 26 Hp: 4776 Sp: 0 Exp: 84 JExp: 21 AttackRange: 1 Attack: [142, 183] Def: 35 Mdef: 1 WalkMask: "WALK_AIR" Stats: { Str: 11 Agi: 20 Vit: 24 Int: 100 Dex: 29 Luk: 13 } ViewRange: 9 ChaseRange: 14 Race: 2 Element: (8, 1) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true Looter: true Boss: true ChangeChase: true CastSensorChase: true } MoveSpeed: 300 AttackDelay: 670 AttackMotion: 672 DamageMotion: 200 Drops: { SaxsoKey: 1000 SulfurPowder: 600 PileOfAsh: 50 BronzeBossGift: 20 CasinoCoins: 10 } }, { Id: 1077 SpriteName: "NightScorpion" Name: "Night Scorpion" Lv: 45 Hp: 14992 Sp: 0 Exp: 1790 JExp: 240 AttackRange: 2 Attack: [247, 263] Def: 80 Mdef: 43 Stats: { Str: 20 Agi: 30 Vit: 40 Int: 1 Dex: 40 Luk: 33 } ChaseRange: 12 Race: 2 Element: (7, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true ChangeTargetMelee: true CastSensorChase: true Boss: true } MoveSpeed: 300 AttackDelay: 872 AttackMotion: 672 DamageMotion: 480 Drops: { CactusDrink: 6000 BugLeg: 4000 CactusPotion: 2000 LeadOre: 400 Pearl: 100 BronzeBossGift: 35 ArcmageBoxset: 20 BlackPearl: 3 } }, { Id: 1078 SpriteName: "GoldenScorpion" Name: "Golden Scorpion" Lv: 56 Hp: 6536 Sp: 0 Exp: 389 JExp: 24 AttackRange: 3 Attack: [179, 201] Def: 56 Mdef: 25 Stats: { Str: 28 Agi: 40 Vit: 53 Int: 25 Dex: 51 Luk: 26 } ChaseRange: 12 Race: 2 Element: (6, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 750 AttackDelay: 1272 AttackMotion: 672 DamageMotion: 200 Drops: { CactusDrink: 1300 BugLeg: 800 CactusPotion: 450 GoldenScorpionClaw: 330 EmptyBottle: 300 GoldenScorpionClaw: 225 CasinoCoins: 100 Topaz: 8 GoldenApple: 4 DesertTablet: 2 } }, { Id: 1079 SpriteName: "FallenKing1" Name: "Fallen King" Lv: 120 Hp: 20284 Sp: 0 Exp: 26103 JExp: 350 AttackRange: 2 Attack: [518, 721] Def: 93 Mdef: 56 Stats: { Str: 60 Agi: 78 Vit: 93 Int: 40 Dex: 88 Luk: 56 } ViewRange: 5 ChaseRange: 12 Race: 2 Element: (0, 3) Mode: { CanMove: true Boss: true Looter: true CanAttack: true ChangeTargetMelee: true CastSensorChase: true Aggressive: true ChangeChase: true } MoveSpeed: 220 AttackDelay: 1200 AttackMotion: 672 DamageMotion: 480 Drops: { BronzeBossGift: 1000 ChocolateBiscuit: 650 SilverBossGift: 300 Skull: 250 Bone: 110 Bone: 100 //BronzeSword: 10 SilverIngot: 3 TitaniumIngot: 1 } }, { Id: 1080 SpriteName: "FallenKing2" Name: "Fallen King" Lv: 120 Hp: 20284 Sp: 0 Exp: 26103 JExp: 350 AttackRange: 2 Attack: [518, 721] Def: 93 Mdef: 56 Stats: { Str: 60 Agi: 78 Vit: 93 Int: 40 Dex: 88 Luk: 56 } ViewRange: 5 ChaseRange: 12 Race: 2 Element: (0, 3) Mode: { CanMove: true Boss: true Looter: true CanAttack: true ChangeTargetMelee: true CastSensorChase: true Aggressive: true ChangeChase: true } MoveSpeed: 220 AttackDelay: 1200 AttackMotion: 672 DamageMotion: 480 Drops: { BronzeBossGift: 1000 ChocolateBiscuit: 650 SilverBossGift: 300 Skull: 250 Bone: 110 Bone: 100 //BronzeSword: 10 SilverIngot: 3 TitaniumIngot: 1 } }, { Id: 1081 SpriteName: "FallenGuard1" Name: "Frostia Guard" Lv: 60 Hp: 3915 Sp: 0 Exp: 401 JExp: 18 AttackRange: 1 Attack: [177, 200] Def: 53 Mdef: 26 Stats: { Str: 28 Agi: 40 Vit: 53 Int: 10 Dex: 51 Luk: 26 } ViewRange: 10 ChaseRange: 12 Race: 2 Element: (0, 2) Mode: { CanMove: true CanAttack: true Aggressive: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 250 AttackDelay: 500 AttackMotion: 672 DamageMotion: 480 Drops: { Beer: 400 BottleOfTonoriWater: 300 CottonCloth: 200 LeatherPatch: 150 ChocolateBar: 100 CasinoCoins: 100 CottonShirt: 60 SnakeSkin: 5 IronIngot: 2 BlackPearl: 1 } }, { Id: 1082 SpriteName: "FallenGuard2" Name: "Halin Guard" Lv: 60 Hp: 3915 Sp: 0 Exp: 401 JExp: 18 AttackRange: 1 Attack: [177, 200] Def: 53 Mdef: 26 Stats: { Str: 28 Agi: 40 Vit: 53 Int: 10 Dex: 51 Luk: 26 } ViewRange: 10 ChaseRange: 12 Race: 2 Element: (0, 2) Mode: { CanMove: true CanAttack: true Aggressive: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 250 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Beer: 400 BottleOfTonoriWater: 300 CottonCloth: 200 LeatherPatch: 150 ChocolateBar: 100 CasinoCoins: 100 CottonShirt: 60 SnakeSkin: 5 IronIngot: 2 BlackPearl: 1 } }, { Id: 1083 SpriteName: "DesertMaggot" Name: "Desert Maggot" Lv: 14 Hp: 682 Sp: 0 Exp: 9 JExp: 1 AttackRange: 1 Attack: [173, 181] Def: 15 Mdef: 12 Stats: { Str: 6 Agi: 12 Vit: 15 Int: 1 Dex: 14 Luk: 12 } ViewRange: 8 ChaseRange: 12 Race: 2 Element: (2, 1) Mode: { CanMove: true CanAttack: true Assist: true ChangeChase: true CastSensorChase: true } MoveSpeed: 850 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { MaggotSlime: 800 RoastedMaggot: 450 BugLeg: 120 CactusDrink: 100 CactusPotion: 71 PileOfAsh: 33 SharpKnife: 11 CasinoCoins: 8 DesertTablet: 1 } }, { Id: 1084 SpriteName: "HouseMaggot" Name: "House Maggot" Lv: 6 Hp: 480 Sp: 0 Exp: 7 JExp: 1 AttackRange: 1 Attack: [30, 110] Def: 3 Mdef: 2 Stats: { Str: 7 Agi: 6 Vit: 3 Int: 1 Dex: 5 Luk: 2 } ViewRange: 6 ChaseRange: 12 Race: 2 Element: (0, 1) Mode: { Aggressive: true CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 700 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 200 Drops: { MaggotSlime: 800 BugLeg: 400 RoastedMaggot: 150 CactusDrink: 100 CactusPotion: 51 SharpKnife: 11 CrystallizedMaggot: 1 } }, { Id: 1085 SpriteName: "GreenSlime" Name: "Green Slime" Lv: 30 Hp: 823 Sp: 0 Exp: 14 JExp: 3 AttackRange: 1 Attack: [87, 94] Def: 20 Mdef: 30 Stats: { Str: 11 Agi: 20 Vit: 24 Int: 10 Dex: 180 Luk: 13 } ViewRange: 7 ChaseRange: 11 Race: 0 Element: (0, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeChase: true CastSensorIdle: true } MoveSpeed: 1200 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { CoinBag: 390 CasinoCoins: 280 SharpKnife: 140 CactusDrink: 100 Dagger: 90 TreasureKey: 40 Emerald: 18 } WeaponAttacks: { All: 7500 Bows: 4000 } }, { Id: 1086 SpriteName: "RudolphSlime" Name: "Rudolph Slime" Lv: 7 Hp: 860 Sp: 0 Exp: 12 JExp: 0 AttackRange: 1 Attack: [30, 350] Def: 12 Mdef: 7 Stats: { Str: 21 Agi: 30 Vit: 34 Int: 0 Dex: 89 Luk: 33 } ViewRange: 6 ChaseRange: 10 Race: 0 Element: (1, 1) Mode: { CanMove: true Looter: true Assist: true CanAttack: true ChangeChase: true } MoveSpeed: 400 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { Candy: 600 CandyCane: 500 ChocolateBar: 300 XmasCake: 200 PresentBox: 25 AntlersHat: 1 } WeaponAttacks: { All: 7500 Bows: 4000 } }, { Id: 1087 SpriteName: "BlueSlime" Name: "Blue Slime" Lv: 30 Hp: 2032 Sp: 0 Exp: 90 JExp: 9 AttackRange: 1 Attack: [80, 96] Def: 20 Mdef: 40 Stats: { Str: 17 Agi: 28 Vit: 33 Int: 10 Dex: 80 Luk: 19 } ViewRange: 2 ChaseRange: 10 Race: 0 Element: (1, 2) Mode: { CanMove: true Aggressive: true Assist: true Looter: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 1200 AttackDelay: 372 AttackMotion: 372 DamageMotion: 480 Drops: { CactusDrink: 500 Sapphire: 21 SilverMirror: 10 } WeaponAttacks: { All: 7500 Bows: 4000 } }, { Id: 1088 SpriteName: "CopperSlime" Name: "Copper Slime" Lv: 30 Hp: 820 Sp: 0 Exp: 14 JExp: 4 AttackRange: 1 Attack: [174, 196] Def: 11 Mdef: 30 Stats: { Str: 30 Agi: 12 Vit: 25 Int: 10 Dex: 33 Luk: 25 } ViewRange: 4 ChaseRange: 10 Race: 0 Element: (2, 1) Mode: { CanMove: true Looter: true CanAttack: true ChangeChase: true } MoveSpeed: 1200 AttackDelay: 672 AttackMotion: 672 DamageMotion: 480 Drops: { CopperOre: 800 TreasureKey: 400 TinOre: 200 Coal: 180 IronOre: 150 TitaniumOre: 20 CopperKey: 10 IridiumOre: 5 } WeaponAttacks: { All: 7500 Bows: 4000 } }, { Id: 1089 SpriteName: "CandiedSlime" Name: "Candied Slime" Lv: 35 Hp: 3600 Sp: 0 Exp: 110 JExp: 2 AttackRange: 3 Attack: [200, 400] Def: 20 Mdef: 30 Stats: { Str: 20 Agi: 20 Vit: 10 Int: 10 Dex: 15 Luk: 30 } ViewRange: 6 ChaseRange: 10 Race: 0 Element: (7, 1) Mode: { CanMove: true Looter: true Aggressive: true Assist: true ChangeChase: true CanAttack: true } MoveSpeed: 1200 AttackDelay: 1472 AttackMotion: 672 DamageMotion: 480 Drops: { Candy: 1000 ChocolateBar: 1000 XmasCandyCane: 750 XmasCake: 500 GingerBreadMan: 200 } WeaponAttacks: { All: 7500 Bows: 4000 } }, { Id: 1090 SpriteName: "SlimeBlast" Name: "Slime Blast" Lv: 6 Hp: 265 Sp: 0 Exp: 2 JExp: 1 AttackRange: 1 Attack: [10, 10] Def: 3 Mdef: 1 Stats: { Str: 10 Agi: 10 Vit: 10 Int: 10 Dex: 10 Luk: 10 } ViewRange: 8 ChaseRange: 10 Race: 0 Element: (0, 3) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true SurviveWithoutMaster: true } MoveSpeed: 235 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 WeaponAttacks: { All: 7500 Bows: 4000 } }, { Id: 1091 SpriteName: "YellowSlime" Name: "Yellow Slime" Lv: 30 Hp: 1000 Sp: 0 Exp: 17 JExp: 2 AttackRange: 1 Attack: [35, 50] Def: 2 Mdef: 70 Stats: { Str: 9 Agi: 26 Vit: 2 Int: 1 Dex: 44 Luk: 1 } ChaseRange: 10 Race: 0 Element: (2, 1) Mode: { CanMove: true Looter: true CanAttack: true ChangeChase: true } MoveSpeed: 1400 AttackDelay: 280 AttackMotion: 172 DamageMotion: 180 Drops: { Coal: 370 IronOre: 270 CactusDrink: 350 CactusPotion: 250 TreasureKey: 250 OrangeCupcake: 200 GoldOre: 100 CherryCake: 75 SharpKnife: 21 Topaz: 11 } WeaponAttacks: { All: 6000 Bows: 3000 } }, { Id: 1092 SpriteName: "RedSlime" Name: "Red Slime" Lv: 21 Hp: 620 Sp: 0 Exp: 12 JExp: 3 AttackRange: 1 Attack: [120, 140] Def: 2 Mdef: 7 Stats: { Str: 15 Agi: 8 Vit: 2 Int: 1 Dex: 40 Luk: 1 } ViewRange: 9 ChaseRange: 10 Race: 0 Element: (3, 1) Mode: { CanMove: true Looter: true Aggressive: true ChangeChase: true CanAttack: true } MoveSpeed: 1300 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 480 Drops: { RedApple: 245 Knife: 175 Dagger: 86 TreasureKey: 55 MinerGloves: 36 Coal: 26 Boots: 24 Ruby: 5 } WeaponAttacks: { All: 7500 Bows: 4000 } }, { Id: 1093 SpriteName: "SeaSlime" Name: "Sea Slime" Lv: 32 Hp: 1800 Sp: 0 Exp: 28 JExp: 2 AttackRange: 1 Attack: [130, 150] Def: 23 Mdef: 87 Stats: { Str: 1 Agi: 65 Vit: 1 Int: 0 Dex: 30 Luk: 30 } ChaseRange: 10 Race: 0 Element: (1, 2) Mode: { CanMove: true Looter: true CanAttack: true ChangeChase: true } MoveSpeed: 1500 AttackDelay: 1272 AttackMotion: 672 DamageMotion: 480 Drops: { Arrow: 3500 IronArrow: 1000 SeaDrops: 190 BlueCoral: 140 Aquada: 110 Candy: 100 Orange: 80 Pearl: 70 BugLeg: 50 MysteriousBottle: 12 } WeaponAttacks: { All: 7000 Bows: 3500 } }, { Id: 1094 SpriteName: "WhiteSlime" Name: "White Slime" Lv: 20 Hp: 700 Sp: 0 Exp: 15 JExp: 1 AttackRange: 1 Attack: [28, 120] Def: 10 Mdef: 10 Stats: { Str: 20 Agi: 30 Vit: 10 Int: 10 Dex: 60 Luk: 20 } ViewRange: 8 ChaseRange: 10 Race: 0 Element: (4, 3) Mode: { CanMove: true Assist: true Looter: true CanAttack: true } MoveSpeed: 300 AttackDelay: 1072 AttackMotion: 672 DamageMotion: 200 Drops: { PresentBox: 1000 TinOre: 75 SilverOre: 60 TitaniumOre: 30 Diamond: 11 SilverMirror: 3 } WeaponAttacks: { All: 7500 Bows: 4000 } }, { Id: 1095 SpriteName: "AzulSlime" Name: "Azul Slime" Lv: 20 Hp: 400 Sp: 0 Exp: 12 JExp: 2 AttackRange: 1 Attack: [80, 120] Def: 10 Mdef: 10 Stats: { Str: 20 Agi: 35 Vit: 10 Int: 10 Dex: 90 Luk: 20 } ViewRange: 6 ChaseRange: 10 Race: 0 Element: (1, 3) Mode: { CanMove: true Looter: true CanAttack: true ChangeChase: true } MoveSpeed: 500 AttackDelay: 1002 AttackMotion: 672 DamageMotion: 480 Drops: { IceCube: 200 IcedBottle: 11 Dagger: 6 IceGladius: 1 } WeaponAttacks: { All: 7500 Bows: 4000 } }, { Id: 1096 SpriteName: "SantaSlime" Name: "Santa Slime" Lv: 30 Hp: 1250 Sp: 0 Exp: 40 JExp: 2 AttackRange: 1 Attack: [75, 80] Def: 5 Mdef: 7 Stats: { Str: 10 Agi: 30 Vit: 8 Int: 0 Dex: 50 Luk: 30 } ChaseRange: 10 Race: 0 Element: (1, 1) Mode: { CanMove: true Looter: true CanAttack: true } MoveSpeed: 500 AttackDelay: 672 AttackMotion: 672 DamageMotion: 200 Drops: { PresentBox: 5000 GingerBreadMan: 800 XmasCandyCane: 600 Milk: 400 CherryCake: 200 SantaBeardHat: 1 } WeaponAttacks: { All: 7500 Bows: 4000 } }, { Id: 1097 SpriteName: "LavaSlime" Name: "Lava Slime" Lv: 30 Hp: 4144 Sp: 0 Exp: 55 JExp: 10 AttackRange: 2 Attack: [165, 244] Def: 70 Mdef: 80 Stats: { Str: 40 Agi: 15 Vit: 35 Int: 10 Dex: 270 Luk: 250 } ViewRange: 5 ChaseRange: 10 Race: 0 Element: (3, 2) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeChase: true } MoveSpeed: 900 AttackDelay: 1300 AttackMotion: 672 DamageMotion: 200 Drops: { Coal: 450 CasinoCoins: 444 IronOre: 300 CasinoCoins: 222 MinerHat: 18 LavaManaPearl: 1 } WeaponAttacks: { All: 7500 Bows: 4000 } }, { Id: 1098 SpriteName: "SmallRubyBif" Name: "Small Ruby Bif" Lv: 1 Hp: 4 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 65535 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 360 IronOre: 280 Ruby: 35 Topaz: 23 Emerald: 14 Diamond: 7 Amethyst: 4 Sapphire: 2 LightGreenDiamond: 1 } }, { Id: 1099 SpriteName: "RubyBif" Name: "Ruby Bif" Lv: 1 Hp: 8 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 5 Vit: 1 Int: 1 Dex: 1 Luk: 65535 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 520 IronOre: 400 Ruby: 55 Topaz: 40 Emerald: 24 Diamond: 12 Amethyst: 6 GoldOre: 5 Sapphire: 3 LightGreenDiamond: 1 } }, { Id: 1100 SpriteName: "BigRubyBif" Name: "Big Ruby Bif" Lv: 1 Hp: 15 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 10 Vit: 1 Int: 1 Dex: 1 Luk: 65535 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 840 IronOre: 500 Ruby: 65 Topaz: 50 Emerald: 32 Diamond: 16 GoldOre: 10 Amethyst: 8 Sapphire: 4 LightGreenDiamond: 1 } }, { Id: 1101 SpriteName: "SmallTopazBif" Name: "Small Topaz Bif" Lv: 1 Hp: 4 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 65535 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 360 IronOre: 280 Topaz: 35 Ruby: 23 Emerald: 14 Diamond: 7 Amethyst: 4 Sapphire: 2 LightGreenDiamond: 1 } }, { Id: 1102 SpriteName: "TopazBif" Name: "Topaz Bif" Lv: 1 Hp: 8 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 5 Vit: 1 Int: 1 Dex: 1 Luk: 65535 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 520 IronOre: 400 Topaz: 55 Ruby: 40 Emerald: 24 Diamond: 12 Amethyst: 6 GoldOre: 5 Sapphire: 3 LightGreenDiamond: 1 } }, { Id: 1103 SpriteName: "BigTopazBif" Name: "Big Topaz Bif" Lv: 1 Hp: 15 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 10 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 840 IronOre: 500 Topaz: 65 Ruby: 50 Emerald: 32 Diamond: 16 GoldOre: 10 Amethyst: 8 Sapphire: 4 LightGreenDiamond: 1 } }, { Id: 1104 SpriteName: "SmallEmeraldBif" Name: "Small Emerald Bif" Lv: 1 Hp: 4 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 360 IronOre: 280 Emerald: 35 Ruby: 23 Topaz: 14 Diamond: 7 Amethyst: 4 Sapphire: 2 LightGreenDiamond: 1 } }, { Id: 1105 SpriteName: "EmeraldBif" Name: "Emeald Bif" Lv: 1 Hp: 8 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 5 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 520 IronOre: 400 Emerald: 55 Ruby: 40 Topaz: 24 Diamond: 12 Amethyst: 6 GoldOre: 5 Sapphire: 3 LightGreenDiamond: 1 } }, { Id: 1106 SpriteName: "BigEmeraldBif" Name: "Big Emerald Bif" Lv: 1 Hp: 15 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 10 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 840 IronOre: 500 Emerald: 65 Ruby: 50 Topaz: 32 Diamond: 16 GoldOre: 10 Amethyst: 8 Sapphire: 4 LightGreenDiamond: 1 } }, { Id: 1107 SpriteName: "SmallDiamondBif" Name: "Small Diamond Bif" Lv: 1 Hp: 4 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 360 IronOre: 280 Diamond: 35 Ruby: 23 Topaz: 14 Diamond: 7 Amethyst: 4 Sapphire: 2 LightGreenDiamond: 1 } }, { Id: 1108 SpriteName: "DiamondBif" Name: "Diamond Bif" Lv: 1 Hp: 8 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 5 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 520 IronOre: 400 Diamond: 55 Ruby: 40 Topaz: 24 Emerald: 12 Amethyst: 6 GoldOre: 5 Sapphire: 3 LightGreenDiamond: 1 } }, { Id: 1109 SpriteName: "BigDiamondBif" Name: "Big Diamond Bif" Lv: 1 Hp: 15 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 10 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 840 IronOre: 500 Diamond: 65 Ruby: 50 Topaz: 32 Emerald: 16 GoldOre: 10 Amethyst: 8 Sapphire: 4 LightGreenDiamond: 1 } }, { Id: 1110 SpriteName: "SmallAmethystBif" Name: "Small Amethyst Bif" Lv: 1 Hp: 4 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 360 IronOre: 280 Amethyst: 35 Ruby: 23 Topaz: 14 Emerald: 7 Diamond: 4 Sapphire: 2 LightGreenDiamond: 1 } }, { Id: 1111 SpriteName: "AmethystBif" Name: "Amethyst Bif" Lv: 1 Hp: 8 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 5 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 520 IronOre: 400 Amethyst: 55 Ruby: 40 Topaz: 24 Emerald: 12 Diamond: 6 GoldOre: 5 Sapphire: 3 LightGreenDiamond: 1 } }, { Id: 1112 SpriteName: "BigAmethystBif" Name: "Big Amethyst Bif" Lv: 1 Hp: 15 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 10 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 840 IronOre: 500 Amethyst: 65 Ruby: 50 Topaz: 32 Emerald: 16 GoldOre: 10 Diamond: 8 Sapphire: 4 LightGreenDiamond: 1 } }, { Id: 1113 SpriteName: "SmallSapphireBif" Name: "Small Sapphire Bif" Lv: 1 Hp: 4 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 360 IronOre: 280 Sapphire: 35 Ruby: 23 Topaz: 14 Emerald: 7 Diamond: 4 Amethyst: 2 LightGreenDiamond: 1 } }, { Id: 1114 SpriteName: "SapphireBif" Name: "Sapphire Bif" Lv: 1 Hp: 8 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 5 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 520 IronOre: 400 Sapphire: 55 Ruby: 40 Topaz: 24 Emerald: 12 Diamond: 6 GoldOre: 5 Amethyst: 3 LightGreenDiamond: 1 } }, { Id: 1115 SpriteName: "BigSapphireBif" Name: "Big Sapphire Bif" Lv: 1 Hp: 15 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 10 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 840 IronOre: 500 Sapphire: 65 Ruby: 50 Topaz: 32 Emerald: 16 GoldOre: 10 Diamond: 8 Amethyst: 4 LightGreenDiamond: 1 } }, { Id: 1116 SpriteName: "SmallMagicBif" Name: "Small Magic Bif" Lv: 1 Hp: 5 Sp: 0 Exp: 2 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Stats: { Str: 1 Agi: 5 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 720 IronOre: 400 Ruby: 70 Topaz: 46 Emerald: 28 Diamond: 14 Amethyst: 8 GoldOre: 5 Sapphire: 4 LightGreenDiamond: 2 } }, { Id: 1117 SpriteName: "MagicBif" Name: "Magic Bif" Lv: 1 Hp: 9 Sp: 0 Exp: 2 AttackRange: 1 Attack: [10, 10] Def: 110 Mdef: 1 Stats: { Str: 1 Agi: 10 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 990 IronOre: 800 Ruby: 110 Topaz: 80 Emerald: 48 Diamond: 24 Amethyst: 12 GoldOre: 10 Sapphire: 6 LightGreenDiamond: 2 } }, { Id: 1118 SpriteName: "BigMagicBif" Name: "Big Magic Bif" Lv: 1 Hp: 17 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 125 Mdef: 1 Stats: { Str: 1 Agi: 20 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 5 Element: (2, 1) Mode: { Plant: true } Drops: { Coal: 1600 IronOre: 1000 Ruby: 130 Topaz: 100 Emerald: 64 Diamond: 32 Amethyst: 16 GoldOre: 15 Sapphire: 8 LightGreenDiamond: 3 } }, { Id: 1119 SpriteName: "BloodyMouboo" Name: "Bloody Mouboo" Lv: 85 Hp: 12426 Sp: 0 Exp: 3300 JExp: 16 AttackRange: 1 Attack: [635, 703] Def: 40 Mdef: 41 Stats: { Str: 41 Agi: 55 Vit: 72 Int: 16 Dex: 66 Luk: 33 } ViewRange: 12 ChaseRange: 12 Race: 2 Element: (7, 2) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true Aggressive: true } MoveSpeed: 700 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 200 Drops: { RedApple: 400 MoubooSteak: 215 BloodyMoubooHat: 1 } }, { Id: 1120 SpriteName: "JackO" Name: "Jack'O" Lv: 81 Hp: 11687 Sp: 0 Exp: 2853 JExp: 40 AttackRange: 1 Attack: [522, 372] Def: 62 Mdef: 30 WalkMask: "WALK_AIR" Stats: { Str: 41 Agi: 75 Vit: 72 Int: 25 Dex: 65 Luk: 30 } ViewRange: 9 ChaseRange: 10 Race: 1 Element: (7, 2) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 270 AttackDelay: 770 AttackMotion: 472 DamageMotion: 200 Drops: { CottonCloth: 2000 SulfurPowder: 480 DarkCrystal: 350 CottonCloth: 51 PumpkinHat: 1 } }, { Id: 1121 SpriteName: "EasterMouboo" Name: "Easter Mouboo" Lv: 40 Hp: 4000 Sp: 0 Exp: 61 JExp: 14 AttackRange: 1 Attack: [120, 630] Def: 33 Mdef: 18 Stats: { Str: 17 Agi: 28 Vit: 33 Int: 10 Dex: 33 Luk: 19 } ChaseRange: 12 Race: 2 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 900 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 Drops: { SilverEasteregg: 1500 RedApple: 360 MoubooSteak: 200 GoldenEasteregg: 250 Milk: 100 BunnyEars: 9 DarkEggshellHat: 1 MoubooHat: 1 } }, { Id: 1122 SpriteName: "Snake" Name: "Snake" Lv: 40 Hp: 4813 Sp: 0 Exp: 214 JExp: 14 AttackRange: 1 Attack: [305, 335] Def: 33 Mdef: 19 Stats: { Str: 17 Agi: 28 Vit: 33 Int: 10 Dex: 33 Luk: 19 } ViewRange: 9 ChaseRange: 10 Race: 2 Element: (6, 1) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 340 AttackDelay: 1400 AttackMotion: 672 DamageMotion: 200 Drops: { SnakeTongue: 450 SnakeEgg: 300 SnakeEgg: 100 SnakeSkin: 91 DivineApple: 1 } }, { Id: 1123 SpriteName: "MountainSnake" Name: "Mountain Snake" Lv: 51 Hp: 6468 Sp: 100 Exp: 534 JExp: 21 AttackRange: 1 Attack: [367, 398] Def: 54 Mdef: 27 Stats: { Str: 28 Agi: 45 Vit: 53 Int: 10 Dex: 75 Luk: 26 } ViewRange: 9 ChaseRange: 10 Race: 2 Element: (6, 2) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 325 AttackDelay: 890 AttackMotion: 672 DamageMotion: 200 Drops: { MountainSnakeTongue: 455 MountainSnakeEgg: 315 MountainSnakeEgg: 115 MountainSnakeSkin: 98 LeatherPatch: 4 DivineApple: 1 } }, { Id: 1124 SpriteName: "DesertBandit" Name: "Desert Bandit" Lv: 22 Hp: 2643 Sp: 330 Exp: 27 JExp: 8 AttackRange: 1 Attack: [192, 205] Def: 20 Mdef: 18 Stats: { Str: 10 Agi: 20 Vit: 15 Int: 10 Dex: 15 Luk: 12 } ViewRange: 6 ChaseRange: 12 Race: 2 Element: (2, 1) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true Looter: true ChangeChase: true CastSensorChase: true } MoveSpeed: 390 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 900 Drops: { CoinBag: 500 Piberries: 200 LeatherPatch: 200 Dagger: 120 EmptyBottle: 100 CasinoCoins: 100 LeatherShield: 41 WoodenLog: 10 GoldPieces: 3 DesertThiefCard: 1 } }, { Id: 1125 SpriteName: "Sarracenus" Name: "Sarracenus" Lv: 24 Hp: 2883 Sp: 330 Exp: 34 JExp: 8 AttackRange: 1 Attack: [209, 224] Def: 50 Mdef: 20 Stats: { Str: 10 Agi: 20 Vit: 15 Int: 10 Dex: 15 Luk: 12 } ViewRange: 6 ChaseRange: 12 Race: 2 Element: (0, 1) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true Looter: true ChangeChase: true CastSensorChase: true } MoveSpeed: 300 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 900 Drops: { CoinBag: 500 LeatherPatch: 320 Piberries: 200 Dagger: 80 PileOfAsh: 65 CasinoCoins: 50 LeatherShield: 41 WoodenLog: 22 GoldPieces: 3 DesertThiefCard: 1 } }, { Id: 1126 SpriteName: "MagicRatto" Name: "Magic Ratto" Lv: 1 Hp: 280 Sp: 0 Exp: 3 AttackRange: 1 Attack: [40, 60] Def: 4 Mdef: 3 Stats: { Str: 5 Agi: 15 Vit: 6 Int: 1 Dex: 8 Luk: 5 } ViewRange: 8 ChaseRange: 12 Race: 2 Element: (0, 1) Mode: { CanMove: true Looter: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 100 AttackDelay: 1572 AttackMotion: 672 DamageMotion: 480 Drops: { Cheese: 1700 RattoTeeth: 800 RattoTail: 500 Piberries: 500 Moss: 50 CasinoCoins: 10 } }, { Id: 1127 SpriteName: "DesertLogHead" Name: "Desert Log Head" Lv: 20 Hp: 2401 Sp: 300 Exp: 25 JExp: 11 AttackRange: 1 Attack: [279, 297] Def: 40 Mdef: 14 Stats: { Str: 17 Agi: 18 Vit: 9 Int: 1 Dex: 14 Luk: 11 } ChaseRange: 12 Race: 2 Element: (2, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 900 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { Acorn: 2200 Acorn: 1000 Root: 850 RawLog: 900 RawLog: 500 RawLog: 151 } }, { Id: 1128 SpriteName: "ChagashroomField" Name: "Chagashroom Field" Lv: 1 Hp: 99 Sp: 0 Exp: 0 AttackRange: 1 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 3 Element: (2, 1) MoveSpeed: 1000 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Chagashroom: 4000 MushroomSpores: 400 Moss: 300 } }, { Id: 1129 SpriteName: "MurdererScorpion" Name: "Murderer Scorpion" Lv: 38 Hp: 3832 Sp: 500 Exp: 140 JExp: 40 AttackRange: 1 Attack: [360, 410] Def: 14 Mdef: 8 Stats: { Str: 15 Agi: 1 Vit: 5 Int: 10 Dex: 25 Luk: 20 } ViewRange: 5 ChaseRange: 8 Race: 2 Element: (6, 1) Mode: { CanMove: true CanAttack: true Aggressive: true Boss: true Angry: true ChangeTargetMelee: true Looter: true ChangeChase: true CastSensorChase: true } MoveSpeed: 900 AttackDelay: 2200 AttackMotion: 672 DamageMotion: 480 Drops: { CasinoCoins: 8000 IronArrow: 5500 RedScorpionStinger: 2500 Piberries: 1800 BugLeg: 1200 RedScorpionClaw: 410 RedScorpionClaw: 250 Dagger: 200 Skull: 150 EarthPowder: 50 } }, { Id: 1130 SpriteName: "AngryRedScorpion" Name: "Angry Red Scorpion" Lv: 21 Hp: 2496 Sp: 0 Exp: 29 JExp: 8 AttackRange: 1 Attack: [236, 250] Def: 17 Mdef: 11 Stats: { Str: 9 Agi: 18 Vit: 17 Int: 10 Dex: 14 Luk: 11 } ViewRange: 9 ChaseRange: 12 Race: 2 Element: (3, 1) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 720 AttackDelay: 1750 AttackMotion: 672 DamageMotion: 200 Drops: { RedScorpionStinger: 1500 Arrow: 1200 Arrow: 900 SmallKnife: 500 BugLeg: 420 ChocolateBar: 90 FancyHat: 26 Root: 22 } }, { Id: 1131 SpriteName: "AngryScorpion" Name: "Angry Scorpion" Lv: 11 Hp: 950 Sp: 0 Exp: 14 JExp: 2 AttackRange: 1 Attack: [190, 255] Def: 13 Mdef: 6 Stats: { Str: 5 Agi: 10 Vit: 13 Int: 1 Dex: 11 Luk: 6 } ViewRange: 7 ChaseRange: 11 Race: 2 Element: (0, 1) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 700 AttackDelay: 1472 AttackMotion: 672 DamageMotion: 480 Drops: { ScorpionStinger: 600 BugLeg: 550 Candy: 900 BugLeg: 100 ChocolateBar: 50 } }, { Id: 1132 SpriteName: "Pinkie" Name: "Pinkie" Lv: 26 Hp: 3026 Sp: 0 Exp: 29 JExp: 9 AttackRange: 1 Attack: [210, 255] Def: 23 Mdef: 12 Stats: { Str: 11 Agi: 20 Vit: 24 Int: 8 Dex: 29 Luk: 13 } ViewRange: 7 ChaseRange: 11 Race: 2 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 780 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 480 Drops: { PinkAntenna: 440 CherryCake: 200 PinkieLeg: 160 PinkieLeg: 110 CasinoCoins: 10 PinkieHat: 1 } }, { Id: 1133 SpriteName: "OceanCroc" Name: "Ocean Croc" Lv: 23 Hp: 1850 Sp: 0 Exp: 30 JExp: 9 AttackRange: 1 Attack: [244, 500] Def: 58 Mdef: 11 Stats: { Str: 11 Agi: 20 Vit: 24 Int: 1 Dex: 29 Luk: 13 } ChaseRange: 12 Race: 2 Element: (1, 2) Mode: { CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 600 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 200 Drops: { OceanCrocClaw: 1000 BlueCoral: 1400 Aquada: 750 SeaDrops: 300 Coral: 40 MysteriousBottle: 24 PirateTreasureMap: 1 } }, { Id: 1134 SpriteName: "GambogePlant" Name: "Gamboge Plant" Lv: 1 Hp: 1 Sp: 1 Exp: 1 AttackRange: 1 Attack: [0, 0] Def: 0 Mdef: 0 Race: 3 Element: (2, 1) Mode: { Plant: true } Drops: { GambogeHerb: 4200 GambogeHerb: 3100 } }, { Id: 1135 SpriteName: "MauvePlant" Name: "Mauve Plant" Lv: 1 Hp: 1 Sp: 1 Exp: 1 AttackRange: 1 Attack: [0, 0] Def: 0 Mdef: 0 Race: 3 Element: (2, 1) Mode: { Plant: true } Drops: { MauveHerb: 4200 MauveHerb: 3100 } }, { Id: 1136 SpriteName: "CobaltPlant" Name: "Cobalt Plant" Lv: 1 Hp: 1 Sp: 1 Exp: 1 AttackRange: 1 Attack: [0, 0] Def: 0 Mdef: 0 Race: 3 Element: (2, 1) Mode: { Plant: true } Drops: { CobaltHerb: 4200 CobaltHerb: 3100 } }, { Id: 1137 SpriteName: "Skeleton" Name: "Skeleton" Lv: 28 Hp: 3366 Sp: 0 Exp: 49 JExp: 9 AttackRange: 1 Attack: [294, 317] Def: 20 Mdef: 8 Stats: { Str: 11 Agi: 20 Vit: 24 Int: 8 Dex: 29 Luk: 13 } ViewRange: 8 ChaseRange: 11 Race: 1 Element: (7, 1) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 340 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 200 Drops: { IronArrow: 3500 Skull: 850 Bone: 750 Bone: 450 Bone: 150 DarkCrystal: 220 SkullBloodyMug: 90 PileOfAsh: 75 CursedSkull: 1 } }, { Id: 1138 SpriteName: "OceanPirate" Name: "Ocean Pirate" Lv: 25 Hp: 3005 Sp: 0 Exp: 125 JExp: 21 AttackRange: 1 Attack: [123, 133] Def: 18 Mdef: 9 Stats: { Str: 11 Agi: 20 Vit: 22 Int: 1 Dex: 24 Luk: 15 } ViewRange: 9 ChaseRange: 14 Race: 2 Element: (1, 1) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true Looter: true ChangeChase: true CastSensorChase: true } MoveSpeed: 760 AttackDelay: 850 AttackMotion: 672 DamageMotion: 200 Drops: { TreasureKey: 700 SeaDrops: 300 BottleOfSeaWater: 150 EmptyBottle: 110 CoinBag: 90 BlueCoral: 70 CasinoCoins: 60 PirateShorts: 45 MysteriousBottle: 28 PirateTreasureMap: 1 } }, { Id: 1139 SpriteName: "Centaur" Name: "Centaur" Lv: 85 Hp: 10217 Sp: 0 Exp: 3000 JExp: 45 AttackRange: 3 Attack: [249, 288] Def: 75 Mdef: 40 Stats: { Str: 50 Agi: 66 Vit: 76 Int: 27 Dex: 70 Luk: 41 } ViewRange: 9 ChaseRange: 14 Race: 2 Element: (0, 3) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 300 AttackDelay: 1150 AttackMotion: 672 DamageMotion: 200 Drops: { CottonCloth: 700 Piberries: 660 AnimalBones: 330 LeatherPatch: 300 EmptyBottle: 110 CoinBag: 95 CentaurSpear: 4 } }, { Id: 1140 SpriteName: "BronzeChest" Name: "Bronze Chest" Lv: 1 Hp: 1 Sp: 0 Exp: 100 AttackRange: 9 Attack: [10, 10] Def: 10 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 1 Race: 3 Element: (2, 1) Mode: { Plant: true } MoveSpeed: 1000 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 }, { Id: 1141 SpriteName: "SilverChest" Name: "Silver Chest" Lv: 20 Hp: 1 Sp: 0 Exp: 500 AttackRange: 9 Attack: [10, 10] Def: 20 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 1 Race: 3 Element: (2, 1) Mode: { Plant: true } MoveSpeed: 1000 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 }, { Id: 1142 SpriteName: "GoldenChest" Name: "Golden Chest" Lv: 40 Hp: 1 Sp: 0 Exp: 1000 AttackRange: 9 Attack: [10, 10] Def: 40 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 1 Race: 3 Element: (2, 1) Mode: { Plant: true } AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 }, { Id: 1143 SpriteName: "PrismChest" Name: "Prism Chest" Lv: 60 Hp: 1 Sp: 0 Exp: 10000 AttackRange: 9 Attack: [10, 10] Def: 25 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 1 Race: 3 Element: (2, 1) Mode: { Plant: true } AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 }, { Id: 1144 SpriteName: "SupremeChest" Name: "Supreme Chest" Lv: 80 Hp: 1 Sp: 0 Exp: 50000 AttackRange: 9 Attack: [10, 10] Def: 30 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 1 Race: 3 Element: (2, 1) Mode: { Plant: true } AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 }, { Id: 1145 SpriteName: "WildxChest" Name: "Wildx Chest" Lv: 1 Hp: 1 Sp: 0 Exp: 10 AttackRange: 1 Attack: [10, 10] Def: 3 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 1 Race: 3 Element: (2, 1) Mode: { Plant: true } AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 // This chest must give back 70% hp recovery to killer. }, { Id: 1146 SpriteName: "ManaChest" Name: "Mana Chest" Lv: 5 Hp: 1 Sp: 800 Exp: 250 AttackRange: 1 Attack: [10, 10] Def: 5 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 1 Race: 3 Element: (2, 1) Mode: { Plant: true } AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 // This chest must give back 90% hp recovery + 75% SP recovery to killer. }, { Id: 1147 SpriteName: "ThornChest" Name: "Thorn Chest" Lv: 10 Hp: 1 Sp: 0 Exp: 350 AttackRange: 1 Attack: [10, 10] Def: 5 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 1 Race: 3 Element: (2, 1) Mode: { Plant: true } AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 // Effect when die: Poison plus stun (lock by thorn) this chest may drop thorn items too :b }, { Id: 1148 SpriteName: "ViciousChest" Name: "Vicious Chest" Lv: 15 Hp: 1 Sp: 0 Exp: 500 JExp: 50 AttackRange: 1 Attack: [10, 10] Def: 5 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 1 Race: 3 Element: (2, 1) Mode: { Plant: true } AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 // Chest way spawm some vicious maggots /squirel }, { Id: 1149 SpriteName: "EvilChest" Name: "Evil Chest" Lv: 20 Hp: 1 Sp: 0 Exp: 1000 JExp: 60 AttackRange: 1 Attack: [10, 10] Def: 15 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 1 Race: 3 Element: (2, 1) Mode: { Plant: true } AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 // Chest way spawm some angry monsters }, { Id: 1150 SpriteName: "MalignChest" Name: "Malign Chest" Lv: 25 Hp: 1 Sp: 0 Exp: 15 JExp: 100 AttackRange: 1 Attack: [10, 10] Def: 15 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 1 Race: 3 Element: (2, 1) Mode: { Plant: true } AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 // NEVER OPEN THIS !!! }, { Id: 1151 SpriteName: "SnowBinny" Name: "Snow Binny (NYI)" Lv: 220 Hp: 1950 Sp: 0 Exp: 19 JExp: 3 AttackRange: 1 Attack: [140, 250] Def: 9 Mdef: 0 Stats: { Str: 14 Agi: 1 Vit: 10 Int: 1 Dex: 35 Luk: 15 } ChaseRange: 12 Race: 2 Element: (1, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 550 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { Carrot: 150 Carrot: 51 BunnyEars: 5 } }, { Id: 1152 SpriteName: "SleepingBandit" Name: "Sleeping Bandit" Lv: 1 Hp: 350 Sp: 0 Exp: 3 AttackRange: 1 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 3 Element: (0, 1) MoveSpeed: 1000 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { BanditHood: 700 CoinBag: 300 CasinoCoins: 220 RedApple: 200 Dagger: 20 CasinoCoins: 15 GoldPieces: 2 BanditPants: 1 } }, { Id: 1153 SpriteName: "RobinBandit" Name: "Robin Bandit" Lv: 35 Hp: 3788 Sp: 0 Exp: 129 JExp: 12 AttackRange: 5 Attack: [149, 152] Def: 28 Mdef: 22 Stats: { Str: 15 Agi: 25 Vit: 28 Int: 21 Dex: 38 Luk: 24 } ViewRange: 8 ChaseRange: 12 Race: 2 Element: (7, 1) Mode: { Aggressive: true CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 420 AttackDelay: 920 AttackMotion: 672 DamageMotion: 900 Drops: { BanditHood: 800 CoinBag: 500 RedApple: 300 Lockpicks: 80 WoodenLog: 12 GoldPieces: 4 BanditPants: 1 } }, { Id: 1154 SpriteName: "BanditLord" Name: "Bandit Lord" Lv: 55 Hp: 12900 Sp: 0 Exp: 250 JExp: 60 AttackRange: 5 Attack: [710, 880] Def: 25 Mdef: 20 Stats: { Str: 28 Agi: 40 Vit: 53 Int: 31 Dex: 55 Luk: 28 } ViewRange: 12 ChaseRange: 16 Race: 2 Element: (7, 1) Mode: { Aggressive: true CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true Boss: true Angry: true } MoveSpeed: 640 AttackDelay: 2400 AttackMotion: 672 DamageMotion: 900 Drops: { Lockpicks: 900 LeatherPatch: 850 CasinoCoins: 820 BanditHood: 800 CasinoCoins: 550 CoinBag: 500 RedApple: 300 WoodenLog: 120 GoldPieces: 4 BanditPants: 4 } }, { Id: 1155 SpriteName: "ManaPiou" Name: "Mana Piou" Lv: 3 Hp: 360 Sp: 0 Exp: 4 AttackRange: 1 Attack: [150, 160] Def: 2 Mdef: 50 WalkMask: "WALK_AIR" Stats: { Str: 4 Agi: 3 Vit: 2 Int: 0 Dex: 6 Luk: 5 } ViewRange: 4 ChaseRange: 100 Race: 2 Element: (6, 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeChase: true ChangeTargetMelee: true } MoveSpeed: 195 AttackDelay: 1572 AttackMotion: 672 DamageMotion: 200 Drops: { ManaPiouFeathers: 1800 PiouLegs: 1100 ManaPiouFeathers: 400 BlueManaPearl: 1 } }, { Id: 1156 SpriteName: "BronzeMimic" Name: "Bronze Chest" Lv: 1 Hp: 6 Sp: 0 Exp: 100 AttackRange: 9 Attack: [600, 1000] Def: 10 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 100 Luk: 1 } ChaseRange: 1 Race: 3 Element: (2, 1) Mode: { CanAttack: true Plant: true Looter: true } AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 }, { Id: 1157 SpriteName: "SilverMimic" Name: "Silver Chest" Lv: 1 Hp: 6 Sp: 0 Exp: 500 AttackRange: 9 Attack: [900, 1200] Def: 10 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 100 Luk: 1 } ChaseRange: 1 Race: 3 Element: (2, 1) Mode: { CanAttack: true Plant: true Looter: true } AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 }, { Id: 1158 SpriteName: "GoldenMimic" Name: "Golden Chest" Lv: 1 Hp: 6 Sp: 0 Exp: 1000 AttackRange: 9 Attack: [1200, 1400] Def: 10 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 100 Luk: 1 } ChaseRange: 1 Race: 3 Element: (2, 1) Mode: { CanAttack: true Plant: true Looter: true } AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 }, // 1159 to 1166 RESERVED FOR MIMICS, DO NOT USE { Id: 1167 SpriteName: "Terranite" Name: "Terranite" Lv: 80 Hp: 9660 Sp: 0 Exp: 2763 JExp: 50 AttackRange: 1 Attack: [605, 697] Def: 60 Mdef: 90 Stats: { Str: 50 Agi: 66 Vit: 76 Int: 30 Dex: 70 Luk: 41 } ViewRange: 9 ChaseRange: 14 Race: 2 Element: (2, 3) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true Looter: true ChangeChase: true CastSensorChase: true } MoveSpeed: 300 AttackDelay: 1270 AttackMotion: 672 DamageMotion: 200 Drops: { Coal: 350 TerraniteOre: 300 SulfurPowder: 140 IronOre: 75 LeadOre: 50 CasinoCoins: 50 Emerald: 15 Amethyst: 10 TerraniteBlueprint: 7 TerraniteMask: 1 } }, { Id: 1168 SpriteName: "FallenGuard3" Name: "Tulimshar Guard" Lv: 41 Hp: 3935 Sp: 0 Exp: 40 JExp: 6 AttackRange: 1 Attack: [209, 231] Def: 75 Mdef: 20 Stats: { Str: 16 Agi: 26 Vit: 37 Int: 10 Dex: 41 Luk: 18 } ViewRange: 10 ChaseRange: 12 Race: 2 Element: (0, 1) Mode: { CanMove: true CanAttack: true Aggressive: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 250 AttackDelay: 872 AttackMotion: 672 DamageMotion: 480 Drops: { Beer: 200 BottleOfTonoriWater: 150 CottonCloth: 100 CasinoCoins: 50 } }, { Id: 1169 SpriteName: "GrassSnake" Name: "Grass Snake" Lv: 36 Hp: 4328 Sp: 0 Exp: 137 JExp: 10 AttackRange: 1 Attack: [231, 253] Def: 24 Mdef: 60 Stats: { Str: 11 Agi: 20 Vit: 24 Int: 10 Dex: 29 Luk: 15 } ViewRange: 7 ChaseRange: 10 Race: 0 Element: (6, 1) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 500 AttackDelay: 1100 AttackMotion: 672 DamageMotion: 480 Drops: { GrassSeeds: 300 SnakeTongue: 250 SnakeEgg: 200 ReedBundle: 160 EmptyBottle: 70 SnakeSkin: 61 DivineApple: 1 } }, { Id: 1170 SpriteName: "GMGiftBox" Name: "GM Gift Box" Lv: 1 Hp: 1 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 10 Mdef: 1 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 1 Race: 3 Element: (2, 1) Mode: { Plant: true } MoveSpeed: 1000 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { StrangeCoin: 10000 StrangeCoin: 8000 StrangeCoin: 6000 StrangeCoin: 4000 StrangeCoin: 2000 } }, { Id: 1171 SpriteName: "Troll" Name: "Troll" Lv: 76 Hp: 9572 Sp: 0 Exp: 1325 JExp: 32 AttackRange: 4 Attack: [122, 135] Def: 92 Mdef: 98 Stats: { Str: 41 Agi: 55 Vit: 72 Int: 15 Dex: 66 Luk: 33 } ViewRange: 10 ChaseRange: 16 Race: 0 Element: (2, 3) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 280 AttackDelay: 800 AttackMotion: 472 DamageMotion: 380 Drops: { AnimalBones: 200 Pearl: 120 Ruby: 100 Topaz: 80 Emerald: 60 Diamond: 40 TitaniumOre: 30 Amethyst: 20 Sapphire: 10 Kanabo: 1 } }, { Id: 1172 SpriteName: "CyanButterfly" Name: "Cyan Butterfly" Lv: 8 Hp: 660 Sp: 0 Exp: 12 JExp: 1 AttackRange: 1 Attack: [140, 300] Def: 30 Mdef: 350 WalkMask: "WALK_AIR" Stats: { Str: 10 Agi: 115 Vit: 10 Int: 15 Dex: 100 Luk: 40 } ViewRange: 5 ChaseRange: 12 Race: 2 Element: (4, 2) Mode: { CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true ChangeTargetMelee: true } MoveSpeed: 320 AttackDelay: 390 AttackMotion: 300 DamageMotion: 800 Drops: { SilkCocoon: 945 Mashmallow: 100 Butterfly: 1 } }, { Id: 1173 SpriteName: "ElectroWorm" Name: "Electro Worm" Lv: 50 Hp: 4023 Exp: 245 JExp: 10 AttackRange: 1 Attack: [900, 1209] Def: 44 Mdef: 25 Stats: { Str: 22 Agi: 33 Vit: 46 Int: 1 Dex: 41 Luk: 27 } ChaseRange: 12 Race: 2 Element: (0, 1) Mode: { CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true ChangeTargetMelee: true } MoveSpeed: 500 AttackDelay: 2872 AttackMotion: 672 DamageMotion: 480 Drops: { Bullet: 5500 ExplosiveArrow: 5500 SilkCocoon: 1500 Coal: 1000 IronOre: 500 Mashmallow: 40 } }, // Once set a target, it'll follow it to earthdepths (would be too hard to kill otherwise) { Id: 1174 SpriteName: "BlackMamba" Name: "Black Mamba" Lv: 82 Hp: 10899 Sp: 0 Exp: 3118 JExp: 42 AttackRange: 1 Attack: [536, 619] Def: 75 Mdef: 35 Stats: { Str: 41 Agi: 55 Vit: 72 Int: 15 Dex: 66 Luk: 33 } ViewRange: 10 ChaseRange: 16 Race: 0 Element: (7, 1) Mode: { CanMove: true Aggressive: true CanAttack: true } MoveSpeed: 260 AttackDelay: 1100 AttackMotion: 672 DamageMotion: 480 Drops: { BlackMambaEgg: 1200 BlackMambaEgg: 600 BlackMambaTongue: 430 Coal: 350 BlackMambaSkin: 101 Pearl: 22 LeadOre: 20 Kanabo: 2 BlackPearl: 1 } }, { Id: 1175 SpriteName: "Lavern" Name: "Lavern" Lv: 12 Hp: 815 Sp: 0 Exp: 12 AttackRange: 1 Attack: [150, 160] Def: 13 Mdef: 6 Stats: { Str: 5 Agi: 10 Vit: 13 Int: 0 Dex: 11 Luk: 6 } ViewRange: 11 ChaseRange: 18 Race: 2 Element: (8, 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeChase: true ChangeTargetMelee: true Looter: true } MoveSpeed: 1950 AttackDelay: 1272 AttackMotion: 672 DamageMotion: 200 Drops: { MaggotSlime: 800 BugLeg: 400 GrassSeeds: 100 LOFCoin: 8 FourLeafClover: 3 BlueManaPearl: 2 } }, { Id: 1176 SpriteName: "WickedMushroom" Name: "Wicked Mushroom" Lv: 62 Hp: 8587 Sp: 0 Exp: 852 JExp: 30 AttackRange: 1 Attack: [458, 518] Def: 55 Mdef: 40 Stats: { Str: 32 Agi: 40 Vit: 53 Int: 15 Dex: 51 Luk: 27 } ViewRange: 12 ChaseRange: 12 Race: 2 Element: (7, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true Aggressive: true Angry: true } MoveSpeed: 740 AttackDelay: 1172 AttackMotion: 472 DamageMotion: 280 Drops: { Plushroom: 2200 Chagashroom: 1400 MushroomSpores: 950 Chagashroom: 800 IronPowder: 700 Coal: 600 SmallMushroom: 550 HardSpike: 550 Amethyst: 11 WickedShroomHat: 2 } }, { Id: 1177 SpriteName: "Bluepar" Name: "Bluepar" Lv: 30 Hp: 3246 Sp: 0 Exp: 75 JExp: 9 AttackRange: 2 Attack: [118, 126] Def: 0 Mdef: 5 WalkMask: "WALK_WATER" Stats: { Str: 11 Agi: 20 Vit: 24 Int: 0 Dex: 29 Luk: 13 } ViewRange: 6 ChaseRange: 10 Race: 2 Element: (1, 2) Mode: { CanMove: true Aggressive: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 800 AttackDelay: 1072 AttackMotion: 672 DamageMotion: 380 Drops: { StrengthPotion: 800 HastePotion: 800 LOFCoin: 6 BlueManaPearl: 1 } }, { Id: 1178 SpriteName: "BlackSlime" Name: "Black Slime" Lv: 40 Hp: 2887 Sp: 0 Exp: 167 JExp: 16 AttackRange: 1 Attack: [240, 315] Def: 20 Mdef: 30 Stats: { Str: 17 Agi: 28 Vit: 33 Int: 10 Dex: 80 Luk: 50 } ViewRange: 10 ChaseRange: 15 Race: 0 Element: (7, 2) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 1000 AttackDelay: 1672 AttackMotion: 672 DamageMotion: 280 Drops: { Coal: 220 Coal: 110 LeadOre: 8 LOFCoin: 5 BlackPearl: 1 } WeaponAttacks: { All: 7500 Bows: 4000 } }, { Id: 1179 SpriteName: "FafiDragon" Name: "Fafi Dragon" Lv: 75 Hp: 28000 Sp: 3248 Exp: 7015 JExp: 150 AttackRange: 6 Attack: [550, 600] Def: 50 Mdef: 75 WalkMask: "WALK_AIR" Stats: { Str: 50 Agi: 30 Vit: 50 Int: 0 Dex: 100 Luk: 40 } ViewRange: 10 ChaseRange: 15 Race: 9 Element: (3, 2) Mode: { CanMove: true Looter: true Aggressive: true Assist: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 500 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 480 Drops: { Dragonfruit: 3000 HastePotion: 2500 StrengthPotion: 2500 DragonScales: 1800 BronzeBossGift: 60 LOFCoin: 30 DragonStar: 2 TitaniumIngot: 1 } WeaponAttacks: { All: 8000 } }, { Id: 1180 SpriteName: "ChocolateSlime" Name: "Chocolate Slime" Lv: 13 Hp: 1600 Sp: 0 Exp: 18 JExp: 2 AttackRange: 1 Attack: [250, 300] Def: 20 Mdef: 30 Stats: { Str: 20 Agi: 70 Vit: 10 Int: 10 Dex: 30 Luk: 30 } ViewRange: 8 ChaseRange: 10 Race: 0 Element: (0, 2) Mode: { CanMove: true Looter: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 1200 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 480 Drops: { ChocolateBar: 3000 ChocolateBar: 1800 ChocolateBar: 500 ChocolateBiscuit: 400 ChocolateMouboo: 20 LOFCoin: 6 ChocolateDye: 4 } WeaponAttacks: { All: 7500 Bows: 4000 } }, { Id: 1181 SpriteName: "LivingPotato" Name: "Living Potato" Lv: 26 Hp: 3126 Sp: 0 Exp: 36 JExp: 9 AttackRange: 1 Attack: [82, 88] Def: 175 Mdef: 10 Stats: { Str: 25 Agi: 22 Vit: 25 Int: 1 Dex: 95 Luk: 20 } ViewRange: 3 ChaseRange: 10 Race: 0 Element: (6, 1) Mode: { CanMove: true Looter: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 600 AttackDelay: 492 AttackMotion: 472 DamageMotion: 280 Drops: { Potatoz: 1300 Moss: 500 GrassSeeds: 300 TinOre: 140 Carrot: 11 LOFCoin: 6 Emerald: 2 } }, { Id: 1182 SpriteName: "EarthFairy" Name: "Earth Fairy" Lv: 50 Hp: 6310 Sp: 0 Exp: 373 JExp: 20 AttackRange: 1 Attack: [537, 599] Def: 55 Mdef: 25 WalkMask: "WALK_AIR" Stats: { Str: 22 Agi: 33 Vit: 46 Int: 20 Dex: 41 Luk: 27 } ViewRange: 10 ChaseRange: 10 Race: 2 Element: (2, 2) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 600 AttackDelay: 1600 AttackMotion: 672 DamageMotion: 480 Drops: { FluoPowder: 200 Coal: 150 LightGreenDiamond: 2 } }, { Id: 1183 SpriteName: "FireFairy" Name: "Fire Fairy" Lv: 50 Hp: 6310 Sp: 0 Exp: 373 JExp: 20 AttackRange: 1 Attack: [537, 599] Def: 55 Mdef: 25 WalkMask: "WALK_AIR" Stats: { Str: 22 Agi: 33 Vit: 46 Int: 20 Dex: 41 Luk: 27 } ViewRange: 10 ChaseRange: 10 Race: 2 Element: (3, 2) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 600 AttackDelay: 1600 AttackMotion: 672 DamageMotion: 480 Drops: { FluoPowder: 200 Coal: 150 LightGreenDiamond: 2 } }, { Id: 1184 SpriteName: "WaterFairy" Name: "Water Fairy" Lv: 50 Hp: 6310 Sp: 0 Exp: 373 JExp: 20 AttackRange: 1 Attack: [537, 599] Def: 55 Mdef: 25 WalkMask: "WALK_AIR" Stats: { Str: 22 Agi: 33 Vit: 46 Int: 20 Dex: 41 Luk: 27 } ViewRange: 10 ChaseRange: 10 Race: 2 Element: (1, 2) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 600 AttackDelay: 1600 AttackMotion: 672 DamageMotion: 480 Drops: { FluoPowder: 200 Curshroom: 150 LightGreenDiamond: 2 } }, { Id: 1185 SpriteName: "WindFairy" Name: "Wind Fairy" Lv: 50 Hp: 6310 Sp: 0 Exp: 373 JExp: 20 AttackRange: 1 Attack: [537, 599] Def: 55 Mdef: 25 WalkMask: "WALK_AIR" Stats: { Str: 22 Agi: 33 Vit: 46 Int: 20 Dex: 41 Luk: 27 } ViewRange: 10 ChaseRange: 10 Race: 2 Element: (4, 2) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 600 AttackDelay: 1600 AttackMotion: 672 DamageMotion: 480 Drops: { FluoPowder: 200 Curshroom: 150 LightGreenDiamond: 2 } }, { Id: 1186 SpriteName: "PoisonFairy" Name: "Nature Fairy" Lv: 50 Hp: 6310 Sp: 0 Exp: 373 JExp: 20 AttackRange: 1 Attack: [537, 599] Def: 55 Mdef: 25 WalkMask: "WALK_AIR" Stats: { Str: 22 Agi: 33 Vit: 46 Int: 20 Dex: 41 Luk: 27 } ViewRange: 10 ChaseRange: 10 Race: 2 Element: (6, 2) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 600 AttackDelay: 1600 AttackMotion: 672 DamageMotion: 480 Drops: { FluoPowder: 200 Curshroom: 150 LightGreenDiamond: 2 } }, { Id: 1187 SpriteName: "ViciousSquirrel" Name: "Vicious Squirrel" Lv: 18 Hp: 2163 Sp: 1 Exp: 24 AttackRange: 1 Attack: [43, 66] Def: 9 Mdef: 300 Stats: { Str: 9 Agi: 24 Vit: 17 Int: 2 Dex: 16 Luk: 11 } ViewRange: 18 ChaseRange: 18 Race: 2 Element: (2, 1) Mode: { CanMove: true Assist: true Looter: true CanAttack: true Aggressive: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 104 AttackDelay: 472 AttackMotion: 572 DamageMotion: 200 Drops: { Acorn: 600 ShadowHerb: 600 AlizarinHerb: 400 CobaltHerb: 300 GambogeHerb: 200 SquirrelPelt: 130 MauveHerb: 100 IronPowder: 100 ArtichokeHerb: 50 Amethyst: 2 } }, { Id: 1188 SpriteName: "AlizarinPlant" Name: "Alizarin Plant" Lv: 1 Hp: 1 Sp: 1 Exp: 1 AttackRange: 1 Attack: [0, 0] Def: 0 Mdef: 0 Race: 3 Element: (2, 1) Mode: { Plant: true } Drops: { AlizarinHerb: 4200 AlizarinHerb: 4200 } }, { Id: 1189 SpriteName: "ShadowPlant" Name: "Shadow Plant" Lv: 1 Hp: 1 Sp: 1 Exp: 1 AttackRange: 1 Attack: [0, 0] Def: 0 Mdef: 0 Race: 3 Element: (2, 1) Mode: { Plant: true } Drops: { ShadowHerb: 4200 ShadowHerb: 4200 } }, { Id: 1190 SpriteName: "Toto" Name: "Toto" Lv: 5 Hp: 600 Sp: 0 Exp: 8 JExp: 1 AttackRange: 1 Attack: [230, 235] Def: 180 Mdef: 10 Stats: { Str: 25 Agi: 20 Vit: 25 Int: 1 Dex: 95 Luk: 20 } ViewRange: 8 ChaseRange: 10 Race: 0 Element: (0, 4) Mode: { CanMove: true Looter: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 800 AttackDelay: 672 AttackMotion: 472 DamageMotion: 280 }, { Id: 1191 SpriteName: "WhiteCat" Name: "WhiteCat" Lv: 5 Hp: 600 Sp: 0 Exp: 8 JExp: 1 AttackRange: 1 Attack: [230, 235] Def: 180 Mdef: 10 Stats: { Str: 25 Agi: 20 Vit: 25 Int: 1 Dex: 95 Luk: 20 } ViewRange: 8 ChaseRange: 10 Race: 0 Element: (0, 4) Mode: { CanMove: true Looter: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 800 AttackDelay: 672 AttackMotion: 472 DamageMotion: 280 }, { Id: 1192 SpriteName: "BlackCat" Name: "BlackCat" Lv: 5 Hp: 600 Sp: 0 Exp: 8 JExp: 1 AttackRange: 1 Attack: [230, 235] Def: 180 Mdef: 10 Stats: { Str: 25 Agi: 20 Vit: 25 Int: 1 Dex: 95 Luk: 200 } ViewRange: 8 ChaseRange: 10 Race: 0 Element: (0, 4) Mode: { Aggressive: true CanMove: true Looter: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 800 AttackDelay: 672 AttackMotion: 472 DamageMotion: 280 }, { Id: 1193 SpriteName: "FireSkull" Name: "Fire Skull" Lv: 46 Hp: 5700 Sp: 0 Exp: 295 JExp: 2 AttackRange: 1 Attack: [181, 201] Def: 35 Mdef: 0 WalkMask: "WALK_AIR" Stats: { Str: 22 Agi: 33 Vit: 46 Int: 100 Dex: 41 Luk: 27 } ViewRange: 10 ChaseRange: 14 Race: 1 Element: (7, 2) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true Looter: true ChangeChase: true CastSensorChase: true } MoveSpeed: 400 AttackDelay: 670 AttackMotion: 672 DamageMotion: 280 Drops: { SulfurPowder: 850 PileOfAsh: 500 Coal: 450 DarkCrystal: 180 Skull: 55 CasinoCoins: 10 CursedSkull: 1 } }, { Id: 1194 SpriteName: "AngryBat" Name: "Angry Bat" Lv: 20 Hp: 1900 Sp: 0 Exp: 18 JExp: 5 AttackRange: 1 Attack: [180, 150] Def: 4 Mdef: 60 WalkMask: "WALK_AIR" Stats: { Str: 9 Agi: 18 Vit: 17 Int: 2 Dex: 14 Luk: 11 } ViewRange: 6 ChaseRange: 8 Race: 2 Element: (4, 1) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true Looter: true ChangeChase: true CastSensorChase: true } MoveSpeed: 700 AttackDelay: 730 AttackMotion: 672 DamageMotion: 480 Drops: { BatTeeth: 1850 BatWing: 1450 BatWing: 1250 BugLeg: 250 Dagger: 66 Bloodstone: 1 } }, { Id: 1195 SpriteName: "GreenDragon" Name: "Green Dragon" Lv: 75 Hp: 12408 Sp: 1248 Exp: 1681 JExp: 102 AttackRange: 6 Attack: [550, 600] Def: 50 Mdef: 75 WalkMask: "WALK_AIR" Stats: { Str: 41 Agi: 55 Vit: 72 Int: 0 Dex: 66 Luk: 33 } ViewRange: 10 ChaseRange: 15 Race: 9 Element: (3, 2) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 500 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 480 Drops: { DragonScales: 1800 Dragonfruit: 700 HastePotion: 500 StrengthPotion: 500 GoldOre: 200 DragonStar: 2 } WeaponAttacks: { All: 8000 } }, { Id: 1196 SpriteName: "Reaper" Name: "Reaper" Lv: 100 Hp: 12872 Sp: 100 Exp: 7531 JExp: 45 AttackRange: 3 Attack: [350, 411] Def: 1 Mdef: 20 WalkMask: "WALK_AIR" Stats: { Str: 56 Agi: 70 Vit: 81 Int: 110 Dex: 80 Luk: 46 } ViewRange: 10 ChaseRange: 12 Race: 2 Element: (4, 1) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 500 AttackDelay: 1760 AttackMotion: 672 DamageMotion: 480 Drops: { SulfurPowder: 1000 SulfurPowder: 900 Skull: 500 Bone: 300 Bone: 100 SkullMask: 8 CursedScythe: 1 } }, { Id: 1197 SpriteName: "GiantCaveMaggot" Name: "Giant Cave Maggot" Lv: 90 Hp: 12868 Sp: 0 Exp: 3322 JExp: 49 AttackRange: 1 Attack: [1686, 1962] Def: 300 Mdef: 0 Stats: { Str: 50 Agi: 66 Vit: 76 Int: 1 Dex: 70 Luk: 41 } ViewRange: 20 ChaseRange: 20 Race: 2 Element: (2, 2) Mode: { CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 1080 AttackDelay: 2450 AttackMotion: 672 DamageMotion: 480 Drops: { CasinoCoins: 9500 Coal: 7000 CactusDrink: 6000 CactusPotion: 5000 CoinBag: 4000 Coal: 3000 IronOre: 1000 Ruby: 100 MinerHat: 12 } }, // ok { Id: 1198 SpriteName: "AngryYellowSlime" Name: "Angry Yellow Slime" Lv: 35 Hp: 1315 Sp: 0 Exp: 21 JExp: 2 AttackRange: 1 Attack: [45, 80] Def: 3 Mdef: 70 Stats: { Str: 11 Agi: 29 Vit: 3 Int: 1 Dex: 46 Luk: 13 } ViewRange: 5 ChaseRange: 10 Race: 0 Element: (2, 1) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true Looter: true } MoveSpeed: 1400 AttackDelay: 280 AttackMotion: 172 DamageMotion: 180 Drops: { IronOre: 370 Coal: 275 TreasureKey: 255 OrangeCupcake: 205 IronOre: 120 GoldOre: 102 CherryCake: 92 Topaz: 18 } WeaponAttacks: { All: 6000 Bows: 3000 } }, { Id: 1199 SpriteName: "OldSnake" Name: "Old Snake" Lv: 35 Hp: 4208 Sp: 0 Exp: 129 JExp: 11 AttackRange: 1 Attack: [286, 313] Def: 24 Mdef: 11 Stats: { Str: 11 Agi: 20 Vit: 24 Int: 10 Dex: 29 Luk: 13 } ViewRange: 7 ChaseRange: 8 Race: 2 Element: (6, 1) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 500 AttackDelay: 1400 AttackMotion: 672 DamageMotion: 200 Drops: { SnakeTongue: 400 SnakeEgg: 290 SnakeEgg: 95 SnakeSkin: 90 DivineApple: 1 } }, { Id: 1200 SpriteName: "MonsterKing" Name: "The Monster King" Lv: 150 Hp: 108713 Sp: 1665 Exp: 65000 JExp: 2100 AttackRange: 1 Attack: [195, 700] Def: 768 Mdef: 53 Stats: { Str: 110 Agi: 110 Vit: 110 Int: 110 Dex: 110 Luk: 110 } ViewRange: 27 ChaseRange: 28 Race: 11 Element: (7, 4) Mode: { CanMove: true CanAttack: true Boss: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true Detector: true NoKnockback: true Looter: true } MoveSpeed: 150 AttackDelay: 690 AttackMotion: 672 DamageMotion: 200 Drops: { BronzeBossGift: 1500 SilverBossGift: 1000 DivineApple: 500 GoldenBossGift: 180 StrangeCoin: 60 } }, { Id: 1201 SpriteName: "MoubooSlime" Name: "Mouboo Slime" Lv: 7 Hp: 800 Sp: 0 Exp: 10 JExp: 1 AttackRange: 1 Attack: [50, 120] Def: 8 Mdef: 9 Stats: { Str: 15 Agi: 2 Vit: 5 Int: 10 Dex: 35 Luk: 19 } ViewRange: 6 ChaseRange: 12 Race: 2 Element: (6, 1) Mode: { CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true Assist: true SurviveWithoutMaster: true } MoveSpeed: 620 AttackDelay: 872 AttackMotion: 672 DamageMotion: 200 Drops: { Milk: 200 RedApple: 70 ChocolateBar: 58 CasinoCoins: 50 ChocolateMouboo: 20 } }, { Id: 1202 SpriteName: "ForestPiou" Name: "Forest Piou" Lv: 3 Hp: 410 Sp: 0 Exp: 3 AttackRange: 1 Attack: [75, 100] Def: 4 Mdef: 10 WalkMask: "WALK_AIR" Stats: { Str: 10 Agi: 5 Vit: 1 Int: 0 Dex: 5 Luk: 10 } ViewRange: 4 ChaseRange: 30 Race: 2 Element: (4, 1) Mode: { CanMove: true Assist: true CanAttack: true ChangeChase: true ChangeTargetMelee: true } MoveSpeed: 205 AttackDelay: 1472 AttackMotion: 672 DamageMotion: 200 Drops: { ForestPiouFeathers: 1200 PiouLegs: 1000 ArtichokeHerb: 500 PiouFeathers: 300 ShadowHerb: 20 Emerald: 1 } }, { Id: 1203 SpriteName: "Michel" Name: "Michel" Lv: 75 Hp: 10670 Sp: 0 Exp: 1912 JExp: 7 AttackRange: 1 Attack: [320, 367] Def: 52 Mdef: 22 Stats: { Str: 33 Agi: 50 Vit: 60 Int: 20 Dex: 60 Luk: 32 } ViewRange: 9 ChaseRange: 10 Race: 1 Element: (7, 3) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 320 AttackDelay: 720 AttackMotion: 472 DamageMotion: 200 Drops: { CottonCloth: 2000 MichelSoul: 865 SulfurPowder: 480 DarkCrystal: 320 CottonCloth: 51 } }, { Id: 1204 SpriteName: "Pumpkandy" Name: "Pumpkandy" Lv: 5 Hp: 800 Sp: 0 Exp: 5 AttackRange: 1 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 1 Agi: 10 Vit: 1 Int: 1 Dex: 1 Luk: 1 } ChaseRange: 12 Race: 3 Element: (2, 1) MoveSpeed: 1000 AttackDelay: 800 AttackMotion: 672 DamageMotion: 480 Drops: { Lawncandy: 800 Saulcandy: 800 Poocandy: 800 Mashmallow: 250 Candy: 50 PumpkinHat: 2 } }, { Id: 1205 SpriteName: "AndreiSakar" Name: "Andrei Sakar" Lv: 100 Hp: 688 Sp: 133 Exp: 3500 JExp: 100 AttackRange: 1 Attack: [413, 413] Def: 36 Mdef: 26 Stats: { Str: 4 Agi: 67 Vit: 10 Int: 26 Dex: 100 Luk: 70 } ViewRange: 27 ChaseRange: 28 Race: 11 Element: (6, 4) Mode: { CanMove: true CanAttack: true Boss: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true Detector: true NoKnockback: true Looter: true } MoveSpeed: 123 AttackDelay: 124 AttackMotion: 124 DamageMotion: 200 Drops: { GoldenApple: 100 Emperium: 1 } }, { Id: 1206 SpriteName: "DustGatling" Name: "Shotgun Shooter" Lv: 50 Hp: 2600 Sp: 0 Exp: 437 JExp: 18 AttackRange: 9 Attack: [80, 90] Def: 80 Mdef: 40 WalkMask: "WALK_WATER" Stats: { Str: 22 Agi: 33 Vit: 46 Int: 21 Dex: 81 Luk: 27 } ViewRange: 28 ChaseRange: 32 Race: 2 Element: (0, 2) Mode: { Aggressive: true CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 420 AttackDelay: 1200 AttackMotion: 472 DamageMotion: 900 Drops: { Bullet: 2000 CoinBag: 500 RedApple: 300 Lockpicks: 50 } }, { Id: 1207 SpriteName: "DustRifle" Name: "Rifle Shooter" Lv: 50 Hp: 2600 Sp: 0 Exp: 437 JExp: 18 AttackRange: 15 Attack: [250, 300] Def: 80 Mdef: 40 WalkMask: "WALK_WATER" Stats: { Str: 22 Agi: 33 Vit: 46 Int: 21 Dex: 61 Luk: 27 } ViewRange: 28 ChaseRange: 32 Race: 2 Element: (0, 2) Mode: { Aggressive: true CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 420 AttackDelay: 2500 AttackMotion: 272 DamageMotion: 900 Drops: { Bullet: 2000 CoinBag: 500 RedApple: 300 Lockpicks: 50 } }, { Id: 1208 SpriteName: "DustRevolver" Name: "Revolver Shooter" Lv: 50 Hp: 2600 Sp: 0 Exp: 437 JExp: 18 AttackRange: 9 Attack: [100, 200] Def: 80 Mdef: 40 WalkMask: "WALK_WATER" Stats: { Str: 22 Agi: 33 Vit: 46 Int: 21 Dex: 41 Luk: 27 } ViewRange: 28 ChaseRange: 32 Race: 2 Element: (0, 2) Mode: { Aggressive: true CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 420 AttackDelay: 1020 AttackMotion: 272 DamageMotion: 900 Drops: { Bullet: 2000 CoinBag: 500 RedApple: 300 Lockpicks: 50 } }, { Id: 1209 SpriteName: "DustBoss" Name: "Boss Of The Dusty People" Lv: 50 Hp: 12500 Sp: 0 Exp: 7500 JExp: 60 AttackRange: 9 Attack: [220, 220] Def: 82 Mdef: 50 Stats: { Str: 33 Agi: 50 Vit: 60 Int: 21 Dex: 61 Luk: 29 } ViewRange: 28 ChaseRange: 32 Race: 2 Element: (0, 3) Mode: { Aggressive: true CanMove: true Boss: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 380 AttackDelay: 2700 AttackMotion: 272 DamageMotion: 900 Drops: { Bullet: 8000 CoinBag: 500 RedApple: 300 Lockpicks: 50 ArcmageBoxset: 35 } }, { Id: 1210 SpriteName: "StPatricksClover" Name: "St Patrick's Clover" Lv: 1 Hp: 1 Sp: 1 Exp: 3 AttackRange: 1 Attack: [0, 0] Def: 0 Mdef: 0 Stats: { Str: 0 Agi: 0 Vit: 0 Int: 0 Dex: 0 Luk: 0 } ViewRange: 0 ChaseRange: 12 Race: 2 Element: (2, 1) Mode: { CanMove: false CanAttack:false } Drops: { FourLeafClover: 1 FourLeafClover: 1 FourLeafClover: 1 FourLeafClover: 1 FourLeafClover: 1 FourLeafClover: 1 FourLeafClover: 1 FourLeafClover: 1 FourLeafClover: 1 FourLeafClover: 1 } }, { Id: 1211 SpriteName: "Yetifly" Name: "Yetifly" Lv: 100 Hp: 45510 Sp: 0 Exp: 20850 JExp: 200 AttackRange: 2 Attack: [646, 885] Def: 120 Mdef: 180 WalkMask: "WALK_AIR" Stats: { Str: 60 Agi: 78 Vit: 93 Int: 40 Dex: 98 Luk: 76 } ViewRange: 18 ChaseRange: 12 Race: 2 Element: (6, 2) Mode: { Aggressive: true CanMove: true Boss: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 150 AttackDelay: 2000 AttackMotion: 672 DamageMotion: 270 Drops: { FrozenYetiTear: 10000 AnimalBones: 8000 HeroCoin: 3000 BronzeBossGift: 2000 SilverBossGift: 1000 MercBoxA: 100 ArcmageBoxset: 80 YetiMask: 50 } }, { Id: 1212 SpriteName: "TerraniteProtector" Name: "Terranite Protector" Lv: 90 Hp: 13255 Sp: 0 Exp: 5500 JExp: 50 AttackRange: 1 Attack: [681, 793] Def: 80 Mdef: 90 Stats: { Str: 50 Agi: 66 Vit: 76 Int: 30 Dex: 70 Luk: 41 } ViewRange: 9 ChaseRange: 14 Race: 2 Element: (2, 3) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true Looter: true ChangeChase: true CastSensorChase: true } MoveSpeed: 300 AttackDelay: 1270 AttackMotion: 672 DamageMotion: 200 Drops: { Coal: 700 TerraniteOre: 600 SulfurPowder: 280 IronOre: 150 LeadOre: 100 CasinoCoins: 100 Emerald: 30 Amethyst: 20 TerraniteBlueprint: 12 TerraniteMask: 1 } }, { Id: 1213 SpriteName: "TerraniteKing" Name: "Terranite King" Lv: 135 Hp: 22823 Sp: 800 Exp: 35132 JExp: 175 AttackRange: 1 Attack: [1233, 1737] Def: 140 Mdef: 190 Stats: { Str: 63 Agi: 80 Vit: 95 Int: 30 Dex: 91 Luk: 61 } ViewRange: 9 ChaseRange: 14 Race: 2 Element: (2, 3) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true Looter: true ChangeChase: true CastSensorChase: true Boss: true } MoveSpeed: 300 AttackDelay: 1270 AttackMotion: 672 DamageMotion: 200 Drops: { Coal: 2400 TerraniteOre: 2200 BronzeBossGift: 2000 SulfurPowder: 560 LeadOre: 200 CasinoCoins: 200 Emerald: 60 Amethyst: 40 TerraniteBlueprint: 30 TerraniteMask: 2 } }, { Id: 1214 SpriteName: "GoboBear" Name: "Gobo Bear" Lv: 85 Hp: 12464 Sp: 0 Exp: 3875 JExp: 44 AttackRange: 1 Attack: [947, 1097] Def: 80 Mdef: 70 Stats: { Str: 46 Agi: 62 Vit: 74 Int: 30 Dex: 68 Luk: 37 } ViewRange: 9 ChaseRange: 12 Race: 2 Element: (2, 2) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 300 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 200 Drops: { Coal: 700 AnimalBones: 420 } }, { Id: 1215 SpriteName: "VanityPixie" Name: "Vanity Pixie" Lv: 94 Hp: 14275 Sp: 0 Exp: 5400 JExp: 54 AttackRange: 1 Attack: [1200, 1293] Def: 30 Mdef: 160 Stats: { Str: 55 Agi: 70 Vit: 80 Int: 36 Dex: 75 Luk: 49 } ViewRange: 9 ChaseRange: 16 Race: 2 Element: (8, 3) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 100 AttackDelay: 1772 AttackMotion: 672 DamageMotion: 200 Drops: { FluoPowder: 700 ChickenLeg: 340 FluoPowder: 40 DodgePotion: 1 } }, { Id: 1216 SpriteName: "HolyPixie" Name: "Holy Pixie" Lv: 94 Hp: 14275 Sp: 0 Exp: 5400 JExp: 54 AttackRange: 1 Attack: [1200, 1293] Def: 30 Mdef: 160 Stats: { Str: 55 Agi: 70 Vit: 80 Int: 36 Dex: 75 Luk: 49 } ViewRange: 9 ChaseRange: 16 Race: 2 Element: (6, 3) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 100 AttackDelay: 1772 AttackMotion: 672 DamageMotion: 200 Drops: { FluoPowder: 500 ChickenLeg: 320 FluoPowder: 40 LightRing: 1 } }, { Id: 1217 SpriteName: "ShadowPixie" Name: "Shadow Pixie" Lv: 94 Hp: 14275 Sp: 0 Exp: 5400 JExp: 54 AttackRange: 1 Attack: [1200, 1293] Def: 30 Mdef: 160 Stats: { Str: 55 Agi: 70 Vit: 80 Int: 36 Dex: 75 Luk: 49 } ViewRange: 9 ChaseRange: 16 Race: 2 Element: (7, 3) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 100 AttackDelay: 1772 AttackMotion: 672 DamageMotion: 200 Drops: { FluoPowder: 500 ChickenLeg: 320 FluoPowder: 40 ThetaRing: 1 } }, { Id: 1218 SpriteName: "NulityPixie" Name: "Nulity Pixie" Lv: 94 Hp: 14275 Sp: 0 Exp: 5400 JExp: 54 AttackRange: 1 Attack: [1200, 1293] Def: 80 Mdef: 160 Stats: { Str: 55 Agi: 70 Vit: 80 Int: 36 Dex: 75 Luk: 49 } ViewRange: 9 ChaseRange: 16 Race: 2 Element: (0, 3) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 100 AttackDelay: 1772 AttackMotion: 672 DamageMotion: 200 Drops: { FluoPowder: 570 ChickenLeg: 320 FluoPowder: 40 LightRing: 1 } }, { Id: 1219 SpriteName: "Pollet" Name: "Pollet" Lv: 45 Hp: 5500 Sp: 0 Exp: 225 JExp: 20 AttackRange: 1 Attack: [500, 593] Def: 20 Mdef: 30 Stats: { Str: 22 Agi: 30 Vit: 46 Int: 30 Dex: 40 Luk: 25 } ViewRange: 6 ChaseRange: 14 Race: 2 Element: (1, 2) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 320 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 200 Drops: { IceCube: 500 IceCube: 210 IcedBottle: 55 IceGladius: 1 } }, { Id: 1220 SpriteName: "EnergyBall" Name: "Energy Ball" Lv: 1 Hp: 2032 Sp: 0 Exp: 45 JExp: 8 AttackRange: 1 Attack: [81, 93] Def: 80 Mdef: 90 Stats: { Str: 50 Agi: 66 Vit: 76 Int: 30 Dex: 80 Luk: 41 } ViewRange: 16 ChaseRange: 17 Race: 2 Element: (4, 2) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true Aggressive: true ChangeChase: true CastSensorChase: true } MoveSpeed: 250 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 200 Drops: { SulfurPowder: 10 } }, { Id: 1221 SpriteName: "PsiConscience" Name: "Psi Conscience" Lv: 120 Hp: 58016 Sp: 0 Exp: 70132 JExp: 200 AttackRange: 4 Attack: [81, 93] Def: 80 Mdef: 90 Stats: { Str: 50 Agi: 65 Vit: 76 Int: 30 Dex: 99 Luk: 99 } ViewRange: 14 ChaseRange: 14 Race: 2 Element: (0, 1) Mode: { CanMove: true CanAttack: true Aggressive: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true Boss: true } MoveSpeed: 5000 AttackDelay: 3072 AttackMotion: 672 DamageMotion: 200 Drops: { TitaniumOre: 2500 Brainstem: 1700 StrangeCoin: 2000 Brain: 1000 BronzeBossGift: 500 SilverBossGift: 100 GoldenBossGift: 20 SacredManaPotion: 5 } }, { Id: 1222 SpriteName: "HoodedAssassin" Name: "Hooded Assassin" Lv: 52 Hp: 18235 Exp: 1572 JExp: 52 AttackRange: 1 Attack: [1123, 1466] Def: 45 Mdef: 80 ViewRange: 16 ChaseRange: 18 Race: 2 Element: (7, 2) Stats: { Str: 32 Agi: 40 Vit: 23 Int: 31 Dex: 75 Luk: 38 } Mode: { CanMove: true CanAttack: true Aggressive: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true Boss: true } MoveSpeed: 200 AttackDelay: 2772 AttackMotion: 672 DamageMotion: 200 Drops: { TreasureKey: 10000 MoveSpeedPotion: 4000 CoinBag: 2000 Beer: 2000 CursedAmmoBox: 1500 ClothoLiquor: 1500 BronzeBossGift: 1000 ArcmageBoxset: 150 GoldenApple: 5 } }, { Id: 1223 SpriteName: "HoodedNinja" Name: "Hooded Ninja" Lv: 52 Hp: 6400 Exp: 480 JExp: 18 AttackRange: 1 Attack: [636, 737] Def: 45 Mdef: 80 ViewRange: 16 ChaseRange: 18 Race: 2 Element: (7, 1) Stats: { Str: 28 Agi: 30 Vit: 23 Int: 31 Dex: 75 Luk: 32 } Mode: { CanMove: true CanAttack: true Aggressive: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 200 AttackDelay: 2172 AttackMotion: 672 DamageMotion: 200 Drops: { TreasureKey: 400 CoinBag: 200 Beer: 200 ClothoLiquor: 50 } }, { Id: 1224 SpriteName: "Sagratha" Name: "Sagratha" Lv: 50 Hp: 21400 Sp: 0 Exp: 404 JExp: 14 AttackRange: 1 Attack: [620, 670] Def: 5 Mdef: 127 Stats: { Str: 12 Agi: 33 Vit: 46 Int: 90 Dex: 41 Luk: 27 } ViewRange: 9 ChaseRange: 12 Race: 2 Element: (6, 1) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 370 AttackDelay: 2100 AttackMotion: 672 DamageMotion: 200 Drops: { CherryCake: 60 } }, { Id: 1225 SpriteName: "Isbamuth" Name: "Isbamuth" Lv: 120 Hp: 28562 Sp: 0 Exp: 131035 JExp: 700 AttackRange: 9 Attack: [250, 279] Def: 105 Mdef: 127 Stats: { Str: 42 Agi: 72 Vit: 96 Int: 90 Dex: 71 Luk: 47 } ViewRange: 12 ChaseRange: 14 Race: 2 Element: (7, 3) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true Boss: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 370 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 200 Drops: { BronzeBossGift: 1000 CherryCake: 60 ThetaRing: 2 } }, { Id: 1226 SpriteName: "SmallEleniumBif" Name: "Small Elenium Bif" Lv: 1 Hp: 5 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Race: 5 Element: (2, 1) Stats: { Luk: 65535 } Mode: { Plant: true } Drops: { Coal: 160 CopperOre: 90 Wurtzite: 100 LeadOre: 35 Graphene: 25 LightGreenDiamond: 1 } }, { Id: 1227 SpriteName: "EleniumBif" Name: "Elenium Bif" Lv: 1 Hp: 9 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Race: 5 Element: (2, 1) Stats: { Luk: 65535 } Mode: { Plant: true } Drops: { Coal: 270 CopperOre: 180 Wurtzite: 200 LeadOre: 70 Graphene: 35 LightGreenDiamond: 2 } }, { Id: 1228 SpriteName: "BigEleniumBif" Name: "Big Elenium Bif" Lv: 1 Hp: 14 Sp: 0 Exp: 1 AttackRange: 1 Attack: [10, 10] Def: 100 Mdef: 1 Race: 5 Element: (2, 1) Stats: { Luk: 65535 } Mode: { Plant: true } Drops: { Coal: 440 CopperOre: 270 Wurtzite: 290 LeadOre: 105 Graphene: 45 LightGreenDiamond: 3 } }, { Id: 1229 SpriteName: "NightDragon" Name: "Night Dragon" Lv: 75 Hp: 37000 Sp: 3248 Exp: 7015 JExp: 150 AttackRange: 3 Attack: [700, 800] Def: 80 Mdef: 105 WalkMask: "WALK_AIR" Stats: { Str: 80 Agi: 30 Vit: 80 Int: 120 Dex: 215 Luk: 90 } ViewRange: 15 ChaseRange: 15 Race: 9 Element: (7, 4) Mode: { CanMove: true Aggressive: true Boss: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 440 AttackDelay: 1772 AttackMotion: 472 DamageMotion: 380 Drops: { Wurtzite: 10000 DragonScales: 8000 Dragonfruit: 3000 HastePotion: 2500 StrengthPotion: 2500 BronzeBossGift: 2000 SilverBossGift: 1000 DragonStar: 2 TitaniumIngot: 2 } // Good defense against all type of weapons WeaponAttacks: { All: 7000 } // Most powerful attack skills are almost entirely nullified EleResist: { Ele_All: 5000 } }, { Id: 1230 SpriteName: "NightmareDragon" Name: "Nightmare Dragon" Lv: 105 Hp: 15000 Sp: 1248 Exp: 12500 JExp: 80 AttackRange: 6 Attack: [500, 600] Def: 180 Mdef: 325 WalkMask: "WALK_AIR" Stats: { Str: 60 Agi: 76 Vit: 86 Int: 70 Dex: 86 Luk: 50 } ViewRange: 10 ChaseRange: 15 Race: 9 Element: (7, 3) Mode: { CanMove: true Looter: true Aggressive: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 420 AttackDelay: 1600 AttackMotion: 472 DamageMotion: 380 Drops: { DragonScales: 2000 Dragonfruit: 1000 HastePotion: 500 StrengthPotion: 500 GoldOre: 200 DragonStar: 2 } WeaponAttacks: { All: 8000 } }, // Death cats are a special monster { Id: 1231 SpriteName: "DeathCat" Name: "Death Cat" Lv: 30 Hp: 4000 Sp: 0 Exp: 70 JExp: 11 AttackRange: 1 Attack: [60, 80] Def: 80 Mdef: 90 Stats: { Str: 50 Agi: 66 Vit: 76 Int: 80 Dex: 200 Luk: 41 } ViewRange: 16 ChaseRange: 17 Race: 2 Element: (7, 4) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true Aggressive: true ChangeChase: true CastSensorChase: true } MoveSpeed: 250 AttackDelay: 1072 AttackMotion: 472 DamageMotion: 200 Drops: { ShadowHerb: 140 Mashmallow: 60 SulfurPowder: 20 Milk: 10 GrassCarp: 3 BlackPearl: 1 } WeaponAttacks: { All: 4000 } EleResist: { Ele_Neutral: 12000 } }, { Id: 1232 SpriteName: "WhirlyBird" Name: "Whirly Bird" Lv: 110 Hp: 20000 Sp: 1248 Exp: 11100 JExp: 80 AttackRange: 1 Attack: [925, 1000] Def: 295 Mdef: 45 WalkMask: "WALK_AIR" Stats: { Str: 60 Agi: 76 Vit: 86 Int: 70 Dex: 86 Luk: 50 } ViewRange: 14 ChaseRange: 16 Race: 2 Element: (6, 2) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 520 AttackDelay: 1600 AttackMotion: 472 DamageMotion: 180 Drops: { AtroposMixture: 200 SilverMirror: 40 MysteriousBottle: 30 Grenade: 20 Quill: 12 GoldenApple: 10 IridiumOre: 6 TinIngot: 3 PlatinumOre: 2 } }, { Id: 1233 SpriteName: "LittleYellowSlime" Name: "Little Yellow Slime" Lv: 6 Hp: 400 Sp: 0 Exp: 8 JExp: 1 AttackRange: 1 Attack: [15, 25] Def: 10 Mdef: 70 Stats: { Str: 9 Agi: 6 Vit: 2 Int: 1 Dex: 44 Luk: 1 } ChaseRange: 10 Race: 0 Element: (2, 1) Mode: { CanMove: true Looter: true CanAttack: true ChangeChase: true } MoveSpeed: 1300 AttackDelay: 480 AttackMotion: 172 DamageMotion: 180 Drops: { Coal: 200 IronOre: 140 CactusDrink: 150 CactusPotion: 100 TreasureKey: 50 CherryCake: 40 SharpKnife: 11 Topaz: 5 } WeaponAttacks: { All: 6000 Bows: 3000 } }, { Id: 1234 SpriteName: "LittleRedSlime" Name: "Little Red Slime" Lv: 12 Hp: 600 Sp: 0 Exp: 14 JExp: 1 AttackRange: 1 Attack: [25, 40] Def: 24 Mdef: 70 Stats: { Str: 15 Agi: 8 Vit: 2 Int: 1 Dex: 40 Luk: 1 } ViewRange: 9 ChaseRange: 10 Race: 0 Element: (3, 1) Mode: { CanMove: true Looter: true Aggressive: true ChangeChase: true CanAttack: true } MoveSpeed: 1400 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 480 Drops: { Coal: 200 IronOre: 140 RedApple: 125 Knife: 95 Dagger: 43 TreasureKey: 30 Ruby: 2 } WeaponAttacks: { All: 7500 Bows: 4000 } }, { Id: 1235 SpriteName: "SiegeTower" Name: "Siege Tower" Lv: 150 Hp: 30000 Sp: 800 Exp: 1 JExp: 1 AttackRange: 11 Attack: [80, 80] Def: 767 Mdef: 767 Stats: { Str: 1 Agi: 1 Vit: 1 Int: 1 Dex: 32767 Luk: 65535 } ViewRange: 12 ChaseRange: 18 Race: 8 Element: (0, 1) Mode: { CanMove: false Aggressive: true Angry: true ChangeChase: true CanAttack: true ChangeTargetMelee: true CastSensorChase: true } AttackDelay: 500 AttackMotion: 472 DamageMotion: 80 WeaponAttacks: { All: 5000 } EleResist: { Ele_Fire: 15000 } Drops: { Coal: 9000 IronIngot: 100 } }, { Id: 1236 SpriteName: "GreenSlimeMother" Name: "Green Slime Mother" Lv: 60 Hp: 5270 Sp: 0 Exp: 700 JExp: 10 AttackRange: 6 Attack: [87, 94] Def: 70 Mdef: 80 Stats: { Str: 40 Agi: 15 Vit: 35 Int: 10 Dex: 270 Luk: 250 } ViewRange: 10 ChaseRange: 12 Race: 0 Element: (0, 2) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeChase: true } MoveSpeed: 900 AttackDelay: 1300 AttackMotion: 672 DamageMotion: 200 Drops: { CoinBag: 780 CasinoCoins: 560 SharpKnife: 280 CactusDrink: 200 Dagger: 180 TreasureKey: 80 Emerald: 36 } WeaponAttacks: { All: 4000 Bows: 3000 } }, { Id: 1237 SpriteName: "BlueSlimeMother" Name: "Blue Slime Mother" Lv: 61 Hp: 5270 Sp: 0 Exp: 720 JExp: 10 AttackRange: 6 Attack: [87, 94] Def: 70 Mdef: 80 Stats: { Str: 40 Agi: 15 Vit: 35 Int: 10 Dex: 270 Luk: 250 } ViewRange: 10 ChaseRange: 12 Race: 0 Element: (1, 2) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeChase: true } MoveSpeed: 900 AttackDelay: 1300 AttackMotion: 672 DamageMotion: 200 Drops: { CactusDrink: 1000 HastePotion: 220 Sapphire: 42 SilverMirror: 20 } WeaponAttacks: { All: 4000 Bows: 3000 } }, { Id: 1238 SpriteName: "CopperSlimeMother" Name: "Copper Slime Mother" Lv: 62 Hp: 5320 Sp: 0 Exp: 750 JExp: 10 AttackRange: 6 Attack: [174, 196] Def: 70 Mdef: 80 Stats: { Str: 40 Agi: 15 Vit: 35 Int: 10 Dex: 270 Luk: 250 } ViewRange: 10 ChaseRange: 12 Race: 0 Element: (2, 2) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeChase: true } MoveSpeed: 900 AttackDelay: 1300 AttackMotion: 672 DamageMotion: 200 Drops: { CopperOre: 1200 TreasureKey: 800 TinOre: 400 Coal: 360 IronOre: 300 TitaniumOre: 40 CopperKey: 20 IridiumOre: 10 } WeaponAttacks: { All: 4000 Bows: 3000 } }, { Id: 1239 SpriteName: "YellowSlimeMother" Name: "Yellow Slime Mother" Lv: 63 Hp: 5370 Sp: 0 Exp: 775 JExp: 10 AttackRange: 6 Attack: [174, 196] Def: 72 Mdef: 84 Stats: { Str: 40 Agi: 15 Vit: 35 Int: 10 Dex: 270 Luk: 250 } ViewRange: 10 ChaseRange: 12 Race: 0 Element: (2, 2) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeChase: true } MoveSpeed: 900 AttackDelay: 1300 AttackMotion: 672 DamageMotion: 200 Drops: { Coal: 740 IronOre: 540 CactusDrink: 700 CactusPotion: 500 TreasureKey: 500 OrangeCupcake: 400 GoldOre: 200 CherryCake: 150 SharpKnife: 42 Topaz: 22 } WeaponAttacks: { All: 4000 Bows: 3000 } }, { Id: 1240 SpriteName: "RedSlimeMother" Name: "Red Slime Mother" Lv: 64 Hp: 5420 Sp: 0 Exp: 800 JExp: 10 AttackRange: 6 Attack: [175, 200] Def: 72 Mdef: 85 Stats: { Str: 40 Agi: 15 Vit: 35 Int: 10 Dex: 270 Luk: 250 } ViewRange: 10 ChaseRange: 12 Race: 0 Element: (3, 2) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeChase: true } MoveSpeed: 900 AttackDelay: 1300 AttackMotion: 672 DamageMotion: 200 Drops: { RedApple: 490 Knife: 350 Dagger: 172 TreasureKey: 110 MinerGloves: 72 Coal: 52 Boots: 48 Ruby: 10 } WeaponAttacks: { All: 4000 Bows: 3000 } }, { Id: 1241 SpriteName: "ChocolateSlimeMother" Name: "Chocolate Slime Mother" Lv: 65 Hp: 5500 Sp: 0 Exp: 850 JExp: 10 AttackRange: 6 Attack: [180, 200] Def: 75 Mdef: 90 Stats: { Str: 40 Agi: 15 Vit: 35 Int: 10 Dex: 270 Luk: 250 } ViewRange: 10 ChaseRange: 12 Race: 0 Element: (0, 2) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeChase: true } MoveSpeed: 900 AttackDelay: 1300 AttackMotion: 672 DamageMotion: 200 Drops: { ChocolateBar: 6000 ChocolateBar: 3600 ChocolateBar: 1000 ChocolateBiscuit: 800 ChocolateMouboo: 40 LOFCoin: 10 ChocolateDye: 8 } WeaponAttacks: { All: 4000 Bows: 3000 } }, { Id: 1242 SpriteName: "WhiteSlimeMother" Name: "White Slime Mother" Lv: 66 Hp: 6000 Sp: 0 Exp: 875 JExp: 15 AttackRange: 6 Attack: [185, 205] Def: 77 Mdef: 92 Stats: { Str: 40 Agi: 25 Vit: 35 Int: 10 Dex: 300 Luk: 275 } ViewRange: 10 ChaseRange: 12 Race: 0 Element: (6, 2) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeChase: true } MoveSpeed: 880 AttackDelay: 1300 AttackMotion: 672 DamageMotion: 200 Drops: { PresentBox: 2000 TinOre: 180 SilverOre: 120 TitaniumOre: 60 Diamond: 22 SilverMirror: 6 } WeaponAttacks: { All: 4000 Bows: 3000 } EleResist: { Ele_System: 1000 } }, { Id: 1243 SpriteName: "AzulSlimeMother" Name: "Azul Slime Mother" Lv: 67 Hp: 6250 Sp: 0 Exp: 900 JExp: 15 AttackRange: 6 Attack: [200, 225] Def: 80 Mdef: 95 Stats: { Str: 40 Agi: 30 Vit: 35 Int: 10 Dex: 300 Luk: 275 } ViewRange: 10 ChaseRange: 12 Race: 0 Element: (1, 3) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeChase: true } MoveSpeed: 860 AttackDelay: 1300 AttackMotion: 672 DamageMotion: 200 Drops: { IceCube: 400 IcedBottle: 22 Dagger: 12 IceGladius: 3 } WeaponAttacks: { All: 3800 Bows: 2900 } }, { Id: 1244 SpriteName: "SeaSlimeMother" Name: "Sea Slime Mother" Lv: 68 Hp: 6750 Sp: 0 Exp: 950 JExp: 20 AttackRange: 6 Attack: [225, 250] Def: 82 Mdef: 97 Stats: { Str: 40 Agi: 35 Vit: 35 Int: 10 Dex: 300 Luk: 275 } ViewRange: 10 ChaseRange: 12 Race: 0 Element: (1, 3) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeChase: true } MoveSpeed: 840 AttackDelay: 1300 AttackMotion: 672 DamageMotion: 200 Drops: { Arrow: 7000 IronArrow: 2000 SeaDrops: 380 BlueCoral: 280 Aquada: 220 Candy: 200 Orange: 160 Pearl: 140 BugLeg: 100 MysteriousBottle: 24 } WeaponAttacks: { All: 3600 Bows: 2800 } }, { Id: 1245 SpriteName: "LavaSlimeMother" Name: "Lava Slime Mother" Lv: 69 Hp: 7500 Sp: 0 Exp: 1100 JExp: 30 AttackRange: 6 Attack: [250, 275] Def: 85 Mdef: 100 Stats: { Str: 40 Agi: 40 Vit: 35 Int: 10 Dex: 300 Luk: 275 } ViewRange: 10 ChaseRange: 12 Race: 0 Element: (3, 3) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeChase: true } MoveSpeed: 820 AttackDelay: 1300 AttackMotion: 672 DamageMotion: 200 Drops: { Coal: 900 CasinoCoins: 888 IronOre: 600 CasinoCoins: 444 MinerHat: 36 LavaManaPearl: 2 } WeaponAttacks: { All: 3400 Bows: 2700 } }, { Id: 1246 SpriteName: "BlackSlimeMother" Name: "Black Slime Mother" Lv: 72 Hp: 8000 Sp: 0 Exp: 1400 JExp: 40 AttackRange: 6 Attack: [275, 300] Def: 90 Mdef: 105 Stats: { Str: 40 Agi: 50 Vit: 35 Int: 10 Dex: 300 Luk: 275 } ViewRange: 10 ChaseRange: 12 Race: 0 Element: (7, 3) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeChase: true } MoveSpeed: 800 AttackDelay: 1300 AttackMotion: 672 DamageMotion: 200 Drops: { Coal: 660 Coal: 440 Coal: 220 LeadOre: 16 LOFCoin: 12 BlackPearl: 2 } WeaponAttacks: { All: 3200 Bows: 2500 } }, { Id: 1247 SpriteName: "GreatMoubooSlime" Name: "Great Mouboo Slime" Lv: 75 Hp: 9000 Sp: 0 Exp: 1800 JExp: 50 AttackRange: 7 Attack: [300, 350] Def: 100 Mdef: 110 Stats: { Str: 40 Agi: 67 Vit: 35 Int: 10 Dex: 300 Luk: 275 } ViewRange: 11 ChaseRange: 13 Race: 0 Element: (6, 3) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true ChangeChase: true } MoveSpeed: 750 AttackDelay: 1290 AttackMotion: 672 DamageMotion: 200 Drops: { Milk: 400 RedApple: 140 ChocolateBar: 116 CasinoCoins: 100 ChocolateMouboo: 40 MoubooFigurine: 20 } WeaponAttacks: { All: 3000 Bows: 2000 } }, { Id: 1248 SpriteName: "EliteDuck" Name: "Elite Duck" Lv: 75 Hp: 10000 Sp: 0 Exp: 1800 JExp: 60 AttackRange: 2 Attack: [170, 195] Def: 50 Mdef: 180 WalkMask: "WALK_WATER" Stats: { Str: 200 Agi: 250 Vit: 10 Int: 42 Dex: 48 Luk: 200 } ViewRange: 5 ChaseRange: 12 Race: 2 Element: (3, 1) Mode: { CanMove: true Looter: true Aggressive: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 225 AttackDelay: 500 AttackMotion: 472 DamageMotion: 200 Drops: { CherryCake: 1005 BugLeg: 400 Moss: 375 DuckFeather: 100 CommonCarp: 52 GrassCarp: 11 Lightsaber: 1 PowerfulLightsaber: 1 } }, { Id: 1249 SpriteName: "PinkieMaximus" Name: "Pinkie Maximus" Lv: 120 Hp: 20000 Exp: 14000 JExp: 120 AttackRange: 1 Attack: [575, 600] Def: 306 Mdef: 47 Race: 2 Element: (0, 3) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true CanAttack: true Angry: true } MoveSpeed: 400 AttackDelay: 1100 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { PinkAntenna: 880 CherryCake: 400 PinkieLeg: 500 PurificationPotion: 70 CasinoCoins: 25 PinkieHat: 2 } }, // WARNING: ID 1250~1400 PERMANENTLY RESERVED - USE PROHIBTED // Reserved { Id: 1400 SpriteName: "FortressGate" Name: "Fortress Gate" Lv: 100 Hp: 200000 Exp: 10000 Def: 100 Mdef: 100 Race: 3 Element: (2, 1) Stats: { Luk: 127 } Mode: { CanMove: false CanAttack: false Boss: true } WeaponAttacks: { All: 6000 } }, { Id: 1401 SpriteName: "FortressStatue" Name: "Fortress Statue" Lv: 100 Hp: 100000 Exp: 10000 Def: 100 Mdef: 100 Race: 3 Element: (2, 1) Stats: { Luk: 127 } Mode: { CanMove: false CanAttack: false Boss: true } WeaponAttacks: { All: 6000 } }, { Id: 1402 SpriteName: "AzulSkullSlime" Name: "Azul Skull Slime" Lv: 70 Hp: 5700 Sp: 0 Exp: 1200 JExp: 30 AttackRange: 1 Attack: [154, 175] Def: 2 Mdef: 36 Stats: { Str: 40 Agi: 30 Vit: 35 Int: 10 Dex: 300 Luk: 275 } ViewRange: 9 ChaseRange: 10 Race: 0 Element: (1, 1) Mode: { CanMove: true Looter: true Aggressive: true ChangeChase: true CanAttack: true } MoveSpeed: 450 AttackDelay: 1002 AttackMotion: 672 DamageMotion: 480 Drops: { IceCube: 200 IcedBottle: 11 Dagger: 6 IceGladius: 1 } WeaponAttacks: { All: 2000 } }, { Id: 1403 SpriteName: "YellowSkullSlime" Name: "Yellow Skull Slime" Lv: 74 Hp: 6000 Sp: 0 Exp: 1500 JExp: 40 AttackRange: 1 Attack: [160, 190] Def: 2 Mdef: 38 Stats: { Str: 40 Agi: 15 Vit: 35 Int: 10 Dex: 270 Luk: 250 } ViewRange: 9 ChaseRange: 10 Race: 0 Element: (2, 1) Mode: { CanMove: true Looter: true Aggressive: true ChangeChase: true CanAttack: true } MoveSpeed: 1100 AttackDelay: 800 AttackMotion: 172 DamageMotion: 180 Drops: { Coal: 370 IronOre: 270 CactusDrink: 350 CactusPotion: 250 TreasureKey: 250 OrangeCupcake: 200 GoldOre: 100 CherryCake: 75 SharpKnife: 21 Topaz: 11 } WeaponAttacks: { All: 2000 } }, { Id: 1404 SpriteName: "RedSkullSlime" Name: "Red Skull Slime" Lv: 78 Hp: 6400 Sp: 0 Exp: 1900 JExp: 35 AttackRange: 1 Attack: [170, 200] Def: 2 Mdef: 40 Stats: { Str: 40 Agi: 15 Vit: 35 Int: 10 Dex: 270 Luk: 250 } ViewRange: 9 ChaseRange: 10 Race: 0 Element: (3, 1) Mode: { CanMove: true Looter: true Aggressive: true ChangeChase: true CanAttack: true } MoveSpeed: 900 AttackDelay: 1300 AttackMotion: 672 DamageMotion: 300 Drops: { RedApple: 245 Knife: 175 Dagger: 86 TreasureKey: 55 MinerGloves: 36 Coal: 26 Boots: 24 Ruby: 5 } WeaponAttacks: { All: 2000 } }, { Id: 1405 SpriteName: "GreenSkullSlime" Name: "Green Skull Slime" Lv: 82 Hp: 6100 Sp: 0 Exp: 2600 JExp: 42 AttackRange: 6 Attack: [90, 100] Def: 2 Mdef: 42 Stats: { Str: 40 Agi: 15 Vit: 35 Int: 10 Dex: 270 Luk: 250 } ViewRange: 9 ChaseRange: 10 Race: 0 Element: (0, 1) Mode: { CanMove: true Looter: true Aggressive: true ChangeChase: true CanAttack: true } MoveSpeed: 900 AttackDelay: 1300 AttackMotion: 672 DamageMotion: 200 Drops: { CoinBag: 390 CasinoCoins: 280 SharpKnife: 140 CactusDrink: 100 Dagger: 90 TreasureKey: 40 Emerald: 18 } WeaponAttacks: { All: 2000 } }, { Id: 1406 SpriteName: "CopperSkullSlime" Name: "Copper Skull Slime" Lv: 86 Hp: 7500 Sp: 0 Exp: 3400 JExp: 3 AttackRange: 1 Attack: [190, 220] Def: 2 Mdef: 44 Stats: { Str: 40 Agi: 15 Vit: 35 Int: 10 Dex: 270 Luk: 250 } ViewRange: 9 ChaseRange: 10 Race: 0 Element: (2, 1) Mode: { CanMove: true Looter: true Aggressive: true ChangeChase: true CanAttack: true } MoveSpeed: 800 AttackDelay: 1300 AttackMotion: 672 DamageMotion: 200 Drops: { CopperOre: 800 TreasureKey: 400 TinOre: 200 Coal: 180 IronOre: 150 TitaniumOre: 20 CopperKey: 10 IridiumOre: 5 } WeaponAttacks: { All: 2000 } }, { Id: 1407 SpriteName: "LavaSkullSlime" Name: "Lava Skull Slime" Lv: 90 Hp: 8000 Sp: 0 Exp: 4600 JExp: 50 AttackRange: 1 Attack: [200, 240] Def: 2 Mdef: 47 Stats: { Str: 40 Agi: 40 Vit: 35 Int: 10 Dex: 300 Luk: 275 } ViewRange: 9 ChaseRange: 10 Race: 0 Element: (3, 1) Mode: { CanMove: true Looter: true Aggressive: true ChangeChase: true CanAttack: true } MoveSpeed: 750 AttackDelay: 1300 AttackMotion: 672 DamageMotion: 200 Drops: { Coal: 450 CasinoCoins: 444 IronOre: 300 CasinoCoins: 222 MinerHat: 18 LavaManaPearl: 1 } WeaponAttacks: { All: 2000 } }, { Id: 1408 SpriteName: "BlackSkullSlime" Name: "Black Skull Slime" Lv: 94 Hp: 8500 Sp: 0 Exp: 5200 JExp: 54 AttackRange: 2 Attack: [200, 240] Def: 2 Mdef: 49 Stats: { Str: 40 Agi: 50 Vit: 35 Int: 10 Dex: 300 Luk: 275 } ViewRange: 9 ChaseRange: 10 Race: 0 Element: (7, 1) Mode: { CanMove: true Looter: true Aggressive: true ChangeChase: true CanAttack: true } MoveSpeed: 750 AttackDelay: 1300 AttackMotion: 672 DamageMotion: 200 Drops: { Coal: 220 Coal: 110 LeadOre: 8 LOFCoin: 5 BlackPearl: 1 } WeaponAttacks: { All: 2000 } }, { Id: 1409 SpriteName: "Tengu" Name: "Tengu" Lv: 130 Hp: 27700 Exp: 15700 JExp: 130 AttackRange: 2 Attack: [482, 500] Def: 316 Mdef: 48 Race: 2 Element: (0, 1) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { WhiteFur: 3700 WhiteFur: 2400 AnimalBones: 800 SilverOre: 240 SilverOre: 200 TitaniumOre: 90 } }, { Id: 1410 SpriteName: "Golem" Name: "Golem" Lv: 150 Hp: 37000 Exp: 18000 JExp: 150 AttackRange: 2 Attack: [500, 590] Def: 338 Mdef: 51 Race: 2 Element: (0, 1) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { Coal: 320 Pearl: 240 Ruby: 200 Topaz: 160 Emerald: 120 Diamond: 80 TitaniumOre: 60 Amethyst: 40 Sapphire: 20 EarthPowder: 1 } }, { Id: 1411 SpriteName: "FireElement" Name: "Fire Element" Lv: 160 Hp: 42000 Exp: 18200 JExp: 160 AttackRange: 2 Attack: [500, 600] Def: 349 Mdef: 57 Race: 2 Element: (3, 4) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { FluoPowder: 900 FluoPowder: 50 } }, { Id: 1412 SpriteName: "WaterElement" Name: "Water Element" Lv: 160 Hp: 42000 Exp: 18200 JExp: 160 AttackRange: 2 Attack: [500, 600] Def: 349 Mdef: 57 Race: 2 Element: (1, 4) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { FluoPowder: 900 FluoPowder: 50 } }, { Id: 1413 SpriteName: "EarthElement" Name: "Earth Element" Lv: 160 Hp: 42000 Exp: 18200 JExp: 160 AttackRange: 2 Attack: [500, 600] Def: 349 Mdef: 57 Race: 2 Element: (2, 4) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { FluoPowder: 900 FluoPowder: 50 } }, { Id: 1414 SpriteName: "WindElement" Name: "Wind Element" Lv: 160 Hp: 42000 Exp: 18200 JExp: 160 AttackRange: 2 Attack: [500, 600] Def: 349 Mdef: 57 Race: 2 Element: (4, 4) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { FluoPowder: 900 FluoPowder: 50 } }, { Id: 1415 SpriteName: "SacredWisp" Name: "Sacred Wisp" Lv: 175 Hp: 50000 Exp: 18700 JExp: 175 AttackRange: 2 Attack: [535, 600] Def: 366 Mdef: 54 Race: 2 Element: (6, 4) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { FluoPowder: 900 FluoPowder: 100 LightRing: 3 } }, { Id: 1416 SpriteName: "EvilWisp" Name: "Evil Wisp" Lv: 175 Hp: 50000 Exp: 18700 JExp: 175 AttackRange: 2 Attack: [535, 600] Def: 366 Mdef: 54 Race: 2 Element: (7, 4) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { FluoPowder: 900 FluoPowder: 100 ThetaRing: 1 } }, { Id: 1417 SpriteName: "PanthomWisp" Name: "Panthom Wisp" Lv: 175 Hp: 50000 Exp: 18700 JExp: 175 AttackRange: 2 Attack: [535, 600] Def: 366 Mdef: 54 Race: 2 Element: (8, 4) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { FluoPowder: 900 FluoPowder: 100 ThetaRing: 1 } }, { Id: 1418 SpriteName: "EpiphanyWisp" Name: "Epiphany Wisp" Lv: 175 Hp: 50000 Exp: 18700 JExp: 175 AttackRange: 2 Attack: [535, 600] Def: 366 Mdef: 54 Race: 2 Element: (0, 4) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { FluoPowder: 900 FluoPowder: 100 LightRing: 2 } }, { Id: 1419 SpriteName: "PinkieSuseran" Name: "Pinkie Suseran" Lv: 110 Hp: 18000 Exp: 10000 JExp: 120 AttackRange: 2 Attack: [493, 500] Def: 295 Mdef: 45 Race: 2 Element: (0, 3) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true } MoveSpeed: 400 AttackDelay: 1072 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { PinkAntenna: 800 CherryCake: 400 PinkieLeg: 500 PurificationPotion: 70 CasinoCoins: 20 PinkieHat: 1 } }, { Id: 1420 SpriteName: "PinkieEmperor" Name: "Pinkie Emperor" Lv: 150 Hp: 50000 Exp: 47000 JExp: 800 AttackRange: 2 Attack: [700, 800] Def: 340 Mdef: 102 Race: 2 Element: (0, 4) Stats: { Str: 199 Agi: 199 Vit: 199 Int: 199 Dex: 199 Luk: 199 } Mode: { CanMove: true CanAttack: true Boss: true Assist: true Detector: true ChangeChase: true CastSensorChase: true ChangeTargetMelee: true ChangeTargetChase: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { PinkAntenna: 900 CherryCake: 1200 PinkieLeg: 700 PurificationPotion: 250 PinkieCrystal: 1 } }, { Id: 1421 SpriteName: "Jhon" Name: "Jhon Longnose" Lv: 115 Hp: 21350 Exp: 12600 JExp: 125 AttackRange: 5 Attack: [310, 350] Def: 150 Mdef: 40 Race: 2 Element: (4, 1) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { Fungus: 200 } }, { Id: 1422 SpriteName: "Junglefowl" Name: "Junglefowl" Lv: 125 Hp: 25500 Exp: 15000 JExp: 125 AttackRange: 2 Attack: [475, 500] Def: 311 Mdef: 47 Race: 2 Element: (4, 1) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { ChickenLeg: 520 Fungus: 220 } }, { Id: 1423 SpriteName: "Mandragora" Name: "Mandragora" Lv: 115 Hp: 21350 Exp: 12600 JExp: 125 AttackRange: 2 Attack: [470, 500] Def: 300 Mdef: 46 Race: 2 Element: (0, 1) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { Fungus: 180 Sapphire: 30 } }, { Id: 1424 SpriteName: "SuperiorShroom" Name: "Superior Shroom" Lv: 135 Hp: 30000 Exp: 16000 JExp: 135 AttackRange: 2 Attack: [490, 540] Def: 322 Mdef: 49 Race: 2 Element: (0, 1) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { MushroomSpores: 1200 SmallMushroom: 900 Curshroom: 180 Fungus: 80 } }, { Id: 1425 SpriteName: "Nutcracker" Name: "Nutcracker" Lv: 140 Hp: 32200 Exp: 17000 JExp: 140 AttackRange: 2 Attack: [500, 570] Def: 327 Mdef: 49 Race: 2 Element: (0, 1) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { Acorn: 4000 Acorn: 3000 Acorn: 2000 Acorn: 1000 } }, { Id: 1426 SpriteName: "Snail" Name: "Snail" Lv: 107 Hp: 18200 Exp: 8700 JExp: 107 AttackRange: 2 Attack: [460, 500] Def: 292 Mdef: 45 Race: 2 Element: (2, 1) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true } MoveSpeed: 1200 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { ArtichokeHerb: 2800 Fungus: 40 } }, { Id: 1427 SpriteName: "SnowFlower" Name: "Snow Flower" Lv: 60 Hp: 200000 Exp: 10000 JExp: 100 AttackRange: 2 Attack: [100, 200] Def: 100 Mdef: 100 Race: 2 Element: (1, 1) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true } AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 }, { Id: 1428 SpriteName: "GreenhornAbomination" Name: "Greenhorn Abomination" Lv: 150 Hp: 37000 Exp: 18500 JExp: 150 AttackRange: 2 Attack: [500, 600] Def: 300 Mdef: 50 Race: 2 Element: (8, 1) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 127 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { LettuceLeaf: 800 FluoPowder: 240 Emerald: 40 Fungus: 10 } }, { Id: 1429 SpriteName: "ShadowTortuga" Name: "Shadow Tortuga" Lv: 150 Hp: 37200 Exp: 18500 JExp: 150 AttackRange: 2 Attack: [510, 600] Def: 300 Mdef: 69 Race: 2 Element: (7, 3) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 7 ChaseRange: 11 Drops: { ShadowHerb: 8000 Coal: 180 Amethyst: 20 DeathPotion: 10 } }, { Id: 1430 SpriteName: "PanthomLord" Name: "Panthom Lord" Lv: 150 Hp: 52000 Exp: 45000 JExp: 600 AttackRange: 2 Attack: [600, 800] Def: 330 Mdef: 100 Race: 2 Element: (8, 4) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: 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: { DeathPotion: 1000 ThetaRing: 3 } }, { Id: 1431 SpriteName: "DemureFirstForm" Name: "Demure First Form" Lv: 101 Hp: 68800 Sp: 133 Exp: 3500 JExp: 100 AttackRange: 1 Attack: [180, 220] Def: 36 Mdef: 26 WalkMask: "WALK_AIR" Stats: { Str: 4 Agi: 67 Vit: 10 Int: 26 Dex: 100 Luk: 70 } ViewRange: 27 ChaseRange: 28 Race: 11 Element: (6, 4) Mode: { CanMove: true CanAttack: true Boss: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true Detector: true NoKnockback: true Aggressive: true } MoveSpeed: 123 AttackDelay: 124 AttackMotion: 124 DamageMotion: 200 Drops: { DragonScales: 1800 Dragonfruit: 700 GoldenApple: 100 DragonStar: 2 } // Better defense against all type of weapons WeaponAttacks: { All: 8500 } }, { Id: 1432 SpriteName: "DemureSecondForm" Name: "Demure Second Form" Lv: 115 Hp: 128000 Sp: 3248 Exp: 7015 JExp: 150 AttackRange: 3 Attack: [500, 600] Def: 80 Mdef: 105 WalkMask: "WALK_AIR" Stats: { Str: 80 Agi: 30 Vit: 80 Int: 120 Dex: 200 Luk: 90 } ViewRange: 15 ChaseRange: 15 Race: 9 Element: (7, 4) Mode: { CanMove: true CanAttack: true Boss: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true Detector: true NoKnockback: true Aggressive: true } MoveSpeed: 420 AttackDelay: 1600 AttackMotion: 472 DamageMotion: 380 Drops: { Wurtzite: 10000 DragonScales: 8000 Dragonfruit: 3000 BronzeBossGift: 2000 SilverBossGift: 1000 DragonStar: 2 TitaniumIngot: 1 } // Good defense against all type of weapons WeaponAttacks: { All: 2500 } // Most powerful attack skills are almost entirely nullified EleResist: { Ele_All: 5000 } }, { Id: 1433 SpriteName: "ArmoredSkeleton" Name: "Armored Skeleton" Lv: 48 Hp: 5775 Sp: 0 Exp: 305 JExp: 2 AttackRange: 1 Attack: [294, 317] Def: 47 Mdef: 8 Stats: { Str: 17 Agi: 28 Vit: 33 Int: 11 Dex: 33 Luk: 19 } ViewRange: 8 ChaseRange: 11 Race: 1 Element: (7, 1) Mode: { CanMove: true CanAttack: true Aggressive: true Angry: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true } MoveSpeed: 340 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 200 Drops: { IronArrow: 3500 Skull: 900 Bone: 800 Bone: 450 Bone: 200 DarkCrystal: 250 SkullBloodyMug: 100 PileOfAsh: 95 CursedSkull: 1 } }, { Id: 1434 SpriteName: "PiouKnight" Name: "Piou Knight" Lv: 45 Hp: 10238 Sp: 0 Exp: 222 JExp: 45 AttackRange: 1 Attack: [356, 524] Def: 46 Mdef: 27 Stats: { Str: 22 Agi: 33 Vit: 46 Int: 1 Dex: 41 Luk: 27 } ViewRange: 3 ChaseRange: 12 Race: 2 Element: (4, 2) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 200 AttackDelay: 1120 AttackMotion: 1672 DamageMotion: 100 Drops: { PiouFeathers: 3300 PiouLegs: 3700 } }, { Id: 1435 SpriteName: "Shrewboo" Name: "Shrewboo" Lv: 45 Hp: 5420 Sp: 0 Exp: 370 JExp: 20 AttackRange: 1 Attack: [400, 445] Def: 46 Mdef: 41 Stats: { Str: 22 Agi: 38 Vit: 46 Int: 16 Dex: 41 Luk: 45 } ViewRange: 3 ChaseRange: 14 Race: 2 Element: (0, 2) Mode: { CanMove: true Assist: true CanAttack: true ChangeTargetMelee: true ChangeChase: true } MoveSpeed: 400 AttackDelay: 2072 AttackMotion: 672 DamageMotion: 200 Drops: { CasinoCoins: 1100 RedApple: 400 MoubooSteak: 375 ChocolateBar: 300 ChocolateMouboo: 200 ChocolateBar: 15 } }, { Id: 1436 SpriteName: "MisterPrickel" Name: "Mister Prickel" Lv: 40 Hp: 4822 Sp: 0 Exp: 172 JExp: 11 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: 2 Element: (0, 2) Mode: { CanMove: true CanAttack: true CastSensorChase: true ChangeChase: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 452 DamaeMotion: 480 Drops: { HardSpike: 800 RawLog: 700 BugLeg: 600 DarkDesertMushroom: 1 } }, { Id: 1437 SpriteName: "SmallFrog" Name: "Small Frog" Lv: 9 Hp: 1100 Sp: 0 Exp: 9 JExp: 0 AttackRange: 1 Attack: [90, 100] Def: 19 Mdef: 3 Stats: { Str: 10 Agi: 15 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 Drops: { MaggotSlime: 600 BugLeg: 200 Moss: 200 } }, { Id: 1438 SpriteName: "BigFrog" Name: "Big Frog" Lv: 10 Hp: 1200 Sp: 0 Exp: 10 JExp: 0 AttackRange: 1 Attack: [90, 100] Def: 19 Mdef: 3 Stats: { Str: 10 Agi: 15 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: 500 AttackDelay: 1976 AttackMotion: 672 DamageMotion: 480 Drops: { MaggotSlime: 700 BugLeg: 300 Moss: 300 } }, { Id: 1439 SpriteName: "SpiderQueen" Name: "Spider Queen" Lv: 45 Hp: 7000 Sp: 0 Exp: 120 JExp: 125 AttackRange: 3 Attack: [250, 300] Def: 120 Mdef: 80 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 Drops: { BugLeg: 2500 MaggotSlime: 2000 IronOre: 600 Coal: 500 CopperOre: 150 SilverOre: 100 BronzeBossGift: 10 } }, { Id: 1440 SpriteName: "Snowman" Name: "Snowman" Lv: 45 Hp: 5500 Sp: 0 Exp: 225 JExp: 20 AttackRange: 1 Attack: [500, 593] Def: 20 Mdef: 30 Stats: { Str: 22 Agi: 30 Vit: 46 Int: 30 Dex: 40 Luk: 25 } ViewRange: 12 ChaseRange: 16 Race: 8 Element: (1, 2) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true Aggressive: true } MoveSpeed: 320 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 200 Drops: { IceCube: 500 IceCube: 210 IcedBottle: 55 IceGladius: 1 } }, { Id: 1441 SpriteName: "SnowmanBoss" Name: "Der Schneemann" Lv: 160 Hp: 42000 Exp: 18200 JExp: 160 AttackRange: 4 Attack: [500, 600] Def: 349 Mdef: 57 Race: 8 Element: (8, 1) Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true Boss: true } MoveSpeed: 400 AttackDelay: 1000 AttackMotion: 672 DamageMotion: 200 ViewRange: 14 ChaseRange: 18 Drops: { FluoPowder: 900 FluoPowder: 50 } WeaponAttacks: { All: 4000 Bows: 2000 } EleResist: { Ele_Neutral: 5000 Ele_Water: 2500 Ele_Fire: 10000 Ele_Wind: 10000 Ele_Earth: 7500 Ele_Holy: 7500 Ele_Dark: 7500 Ele_Ghost: 7500 } }, { Id: 1442 SpriteName: "Thug" Name: "Thug" Lv: 45 Hp: 5420 Sp: 0 Exp: 272 JExp: 20 AttackRange: 1 Attack: [365, 404] Def: 64 Mdef: 22 Stats: { Str: 22 Agi: 30 Vit: 46 Int: 30 Dex: 50 Luk: 70 } ViewRange: 12 ChaseRange: 16 Race: 2 Element: (7, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true Aggressive: true Angry: true Looter: true } MoveSpeed: 440 AttackDelay: 1672 AttackMotion: 672 DamageMotion: 480 Drops: { Beer: 500 CoinBag: 400 CasinoCoins: 200 TreasureKey: 100 Lockpicks: 40 GoldPieces: 3 } }, { Id: 1443 SpriteName: "Swashbuckler" Name: "Swashbuckler" Lv: 45 Hp: 5420 Sp: 0 Exp: 272 JExp: 20 AttackRange: 1 Attack: [277, 307] Def: 64 Mdef: 22 Stats: { Str: 22 Agi: 30 Vit: 46 Int: 30 Dex: 90 Luk: 60 } ViewRange: 12 ChaseRange: 16 Race: 2 Element: (7, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true Aggressive: true Angry: true Looter: true } MoveSpeed: 375 AttackDelay: 1272 AttackMotion: 672 DamageMotion: 480 Drops: { Beer: 500 CoinBag: 400 CasinoCoins: 200 TreasureKey: 100 Lockpicks: 40 GoldPieces: 3 } }, { Id: 1444 SpriteName: "Grenadier" Name: "Grenadier" Lv: 47 Hp: 5200 Sp: 0 Exp: 295 JExp: 22 AttackRange: 6 Attack: [259, 288] Def: 33 Mdef: 23 Stats: { Str: 22 Agi: 10 Vit: 46 Int: 60 Dex: 110 Luk: 75 } ViewRange: 12 ChaseRange: 16 Race: 2 Element: (7, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true Aggressive: true Angry: true Looter: true } MoveSpeed: 470 AttackDelay: 2272 AttackMotion: 672 DamageMotion: 480 Drops: { Beer: 500 CoinBag: 400 CasinoCoins: 200 TreasureKey: 100 Lockpicks: 40 GoldPieces: 3 } }, { Id: 1445 SpriteName: "Marley" Name: "Dreaded Pirate Marley" Lv: 72 Hp: 12000 Exp: 1250 JExp: 100 AttackRange: 4 Attack: [210, 280] Def: 57 Mdef: 74 Stats: { Str: 99 Agi: 49 Vit: 99 Int: 99 Dex: 150 Luk: 120 } ViewRange: 14 ChaseRange: 18 Race: 2 Element: (7, 2) Mode: { CanMove: true Aggressive: true ChangeChase: true ChangeTargetChase: true ChangeTargetMelee: true CanAttack: true CastSensorChase: true Angry: true Boss: true } MoveSpeed: 400 AttackDelay: 700 AttackMotion: 672 DamageMotion: 480 Drops: { CoinBag: 2000 TreasureMap: 1400 TreasureKey: 900 BronzeBossGift: 400 GoldPieces: 200 Lockpicks: 100 Beer: 50 } WeaponAttacks: { All: 7000 } }, { Id: 1446 SpriteName: "Brainic" Name: "Brainic" Lv: 88 Hp: 13000 Sp: 0 Exp: 4800 JExp: 88 AttackRange: 1 Attack: [810, 840] Def: 136 Mdef: 22 Stats: { Str: 50 Agi: 70 Vit: 50 Int: 30 Dex: 70 Luk: 41 } ViewRange: 12 ChaseRange: 16 Race: 0 Element: (8, 2) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true Aggressive: true Angry: true TargetWeak: true Assist: true } MoveSpeed: 360 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 200 Drops: { Brainstem: 450 } }, { Id: 1447 SpriteName: "Luvia" Name: "Luvia" Lv: 110 Hp: 54000 Sp: 0 Exp: 17000 JExp: 100 AttackRange: 8 Attack: [620, 670] Def: 45 Mdef: 127 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: true Angry: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true Boss: true } MoveSpeed: 320 AttackDelay: 2100 AttackMotion: 672 DamageMotion: 200 Drops: { CoinBag: 4000 BronzeBossGift: 1000 SilverBossGift: 200 GoldenBossGift: 25 } }, { Id: 1448 SpriteName: "RedFollowerF" Name: "Red Follower (F)" Lv: 65 Hp: 8772 Sp: 0 Exp: 992 JExp: 30 AttackRange: 2 Attack: [530, 550] Def: 27 Mdef: 22 Stats: { Str: 33 Agi: 50 Vit: 60 Int: 1 Dex: 61 Luk: 29 } ViewRange: 7 ChaseRange: 12 Race: 2 Element: (7, 1) Mode: { Aggressive: true CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 600 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 200 Drops: { CoinBag: 500 DarkCrystal: 24 Pearl: 20 Ruby: 15 } }, { Id: 1449 SpriteName: "RedFollower" Name: "Red Follower (M)" Lv: 65 Hp: 8772 Sp: 0 Exp: 992 JExp: 30 AttackRange: 2 Attack: [530, 550] Def: 27 Mdef: 22 Stats: { Str: 33 Agi: 50 Vit: 60 Int: 1 Dex: 61 Luk: 29 } ViewRange: 7 ChaseRange: 12 Race: 2 Element: (7, 1) Mode: { Aggressive: true CanMove: true CanAttack: true ChangeChase: true CastSensorChase: true } MoveSpeed: 600 AttackDelay: 1872 AttackMotion: 672 DamageMotion: 200 Drops: { CoinBag: 500 DarkCrystal: 24 Pearl: 20 Ruby: 15 } }, { Id: 1450 SpriteName: "RedQueen" Name: "Platinum Red Queen" Lv: 101 Hp: 57000 Sp: 0 Exp: 14000 JExp: 100 AttackRange: 8 Attack: [620, 670] Def: 45 Mdef: 127 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: true Angry: true ChangeTargetMelee: true ChangeChase: true CastSensorChase: true Boss: true } MoveSpeed: 320 AttackDelay: 2100 AttackMotion: 672 DamageMotion: 200 Drops: { CoinBag: 3500 BronzeBossGift: 800 SilverBossGift: 150 GoldenBossGift: 20 Bloodstone: 1 } }, // System { Id: 1491 SpriteName: "WanderingShadow" Name: "Wandering Shadow" Lv: 60 Hp: 9987 Sp: 1248 Exp: 1674 JExp: 168 AttackRange: 2 Attack: [380, 460] Def: 75 Mdef: 75 WalkMask: "WALK_AIR" Stats: { Str: 30 Agi: 60 Vit: 62 Int: 0 Dex: 60 Luk: 33 } ViewRange: 9 ChaseRange: 14 Race: 9 Element: (8, 2) Mode: { CanMove: true Aggressive: true Angry: true CanAttack: true ChangeTargetMelee: true ChangeChase: true Boss: true } MoveSpeed: 480 AttackDelay: 1600 AttackMotion: 672 DamageMotion: 480 Drops: { HastePotion: 500 StrengthPotion: 500 } }, { Id: 1492 SpriteName: "Gladiator" Name: "Gladiator" Lv: 85 Hp: 13255 Sp: 0 Exp: 57 JExp: 10 AttackRange: 1 Attack: [81, 93] Def: 80 Mdef: 90 Stats: { Str: 50 Agi: 66 Vit: 76 Int: 30 Dex: 70 Luk: 41 } ViewRange: 9 ChaseRange: 14 Race: 2 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true Aggressive: true CastSensorChase: true } MoveSpeed: 152 AttackDelay: 872 AttackMotion: 172 DamageMotion: 100 Drops: { StrangeCoin: 1 } }, { Id: 1493 SpriteName: "GameMaster" Name: "Game Master" Lv: 150 Hp: 12000000 Def: 32767 Mdef: 32767 WalkMask: "WALK_AIR" Race: 10 Element: (6, 4) Mode: { CanMove: true CanAttack: false SurviveWithoutMaster: true } MoveSpeed: 150 WeaponAttacks: { All: 0 } }, { Id: 1494 SpriteName: "GameMistress" Name: "Game Mistress" Lv: 150 Hp: 12000000 Def: 32767 Mdef: 32767 WalkMask: "WALK_AIR" Race: 10 Element: (6, 4) Mode: { CanMove: true CanAttack: false SurviveWithoutMaster: true } MoveSpeed: 150 WeaponAttacks: { All: 0 } }, { Id: 1495 SpriteName: "MonsterSergeant" Name: "Monster Sergeant" Lv: 20 Hp: 3000 Sp: 1248 Exp: 54 JExp: 6 AttackRange: 2 Attack: [125, 150] Def: 25 Mdef: 25 WalkMask: "WALK_AIR" Stats: { Str: 30 Agi: 20 Vit: 22 Int: 0 Dex: 20 Luk: 33 } ViewRange: 9 ChaseRange: 14 Race: 9 Element: (7, 3) Mode: { CanMove: true Aggressive: true Angry: true CanAttack: true ChangeTargetMelee: true ChangeChase: true Boss: true } MoveSpeed: 500 AttackDelay: 1800 AttackMotion: 672 DamageMotion: 480 Drops: { HastePotion: 500 StrengthPotion: 500 ArcmageBoxset: 200 } WeaponAttacks: { All: 8000 } }, { Id: 1496 SpriteName: "MonsterLieutenant" Name: "Monster Lieutenant" Lv: 40 Hp: 6070 Sp: 1248 Exp: 412 JExp: 42 AttackRange: 2 Attack: [255, 300] Def: 50 Mdef: 50 WalkMask: "WALK_AIR" Stats: { Str: 30 Agi: 40 Vit: 42 Int: 0 Dex: 40 Luk: 33 } ViewRange: 9 ChaseRange: 14 Race: 9 Element: (7, 3) Mode: { CanMove: true Aggressive: true Angry: true CanAttack: true ChangeTargetMelee: true ChangeChase: true Boss: true } MoveSpeed: 490 AttackDelay: 1700 AttackMotion: 672 DamageMotion: 480 Drops: { ArcmageBoxset: 1000 HastePotion: 500 StrengthPotion: 500 } WeaponAttacks: { All: 8000 } }, { Id: 1497 SpriteName: "MonsterCaptain" Name: "Monster Captain" Lv: 60 Hp: 9987 Sp: 1248 Exp: 1674 JExp: 168 AttackRange: 2 Attack: [380, 460] Def: 75 Mdef: 75 WalkMask: "WALK_AIR" Stats: { Str: 30 Agi: 60 Vit: 62 Int: 0 Dex: 60 Luk: 33 } ViewRange: 9 ChaseRange: 14 Race: 9 Element: (7, 3) Mode: { CanMove: true Aggressive: true Angry: true CanAttack: true ChangeTargetMelee: true ChangeChase: true Boss: true } MoveSpeed: 480 AttackDelay: 1600 AttackMotion: 672 DamageMotion: 480 Drops: { ArcmageBoxset: 2000 HastePotion: 500 StrengthPotion: 500 } WeaponAttacks: { All: 8000 } }, { Id: 1498 SpriteName: "MonsterColonel" Name: "Monster Colonel" Lv: 80 Hp: 14340 Sp: 1248 Exp: 5290 JExp: 530 AttackRange: 2 Attack: [512, 592] Def: 100 Mdef: 100 WalkMask: "WALK_AIR" Stats: { Str: 30 Agi: 80 Vit: 62 Int: 0 Dex: 80 Luk: 33 } ViewRange: 9 ChaseRange: 14 Race: 9 Element: (7, 3) Mode: { CanMove: true Aggressive: true Angry: true CanAttack: true ChangeTargetMelee: true ChangeChase: true Boss: true } MoveSpeed: 470 AttackDelay: 1500 AttackMotion: 672 DamageMotion: 480 Drops: { ArcmageBoxset: 3500 BronzeBossGift: 500 HastePotion: 500 StrengthPotion: 500 } WeaponAttacks: { All: 8000 } }, { Id: 1499 SpriteName: "MonsterGeneral" Name: "Monster General" Lv: 100 Hp: 19555 Sp: 1248 Exp: 15062 JExp: 1500 AttackRange: 2 Attack: [645, 720] Def: 150 Mdef: 150 WalkMask: "WALK_AIR" Stats: { Str: 30 Agi: 99 Vit: 72 Int: 0 Dex: 99 Luk: 33 } ViewRange: 9 ChaseRange: 14 Race: 9 Element: (7, 3) Mode: { CanMove: true Aggressive: true Angry: true CanAttack: true ChangeTargetMelee: true ChangeChase: true Boss: true } MoveSpeed: 450 AttackDelay: 1400 AttackMotion: 672 DamageMotion: 480 Drops: { ArcmageBoxset: 4500 BronzeBossGift: 1000 HastePotion: 500 StrengthPotion: 500 } WeaponAttacks: { All: 8000 } }, { Id: 1500 SpriteName: "MobMoubootaur" Name: "The Moubootaur" Lv: 999 Hp: 9999999 Sp: 999999 Exp: 999999 JExp: 9999 AttackRange: 1 Attack: [999, 1200] Def: 99 Mdef: 99 Stats: { Str: 99 Agi: 99 Vit: 99 Int: 99 Dex: 99 Luk: 99 } ViewRange: 18 ChaseRange: 18 Race: 8 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 Drops: { LegendaryMouboo: 1 } }, { Id: 1501 SpriteName: "CursedSoldier" Name: "Cursed Foot Soldier" Lv: 85 Hp: 13255 Sp: 0 Exp: 57 JExp: 10 AttackRange: 1 Attack: [81, 93] Def: 80 Mdef: 90 Stats: { Str: 50 Agi: 66 Vit: 76 Int: 30 Dex: 70 Luk: 41 } ViewRange: 9 ChaseRange: 14 Race: 2 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true Aggressive: true CastSensorChase: true } MoveSpeed: 162 AttackDelay: 872 AttackMotion: 172 DamageMotion: 100 Drops: { GuildCoin: 10 CottonCloth: 10 StrangeCoin: 1 } }, { Id: 1502 SpriteName: "CursedArcher" Name: "Cursed Archer Soldier" Lv: 85 Hp: 13255 Sp: 0 Exp: 57 JExp: 10 AttackRange: 6 Attack: [81, 93] Def: 80 Mdef: 90 Stats: { Str: 50 Agi: 66 Vit: 76 Int: 30 Dex: 70 Luk: 41 } ViewRange: 9 ChaseRange: 14 Race: 2 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true Aggressive: true CastSensorChase: true } MoveSpeed: 162 AttackDelay: 872 AttackMotion: 172 DamageMotion: 100 Drops: { GuildCoin: 10 CottonCloth: 10 StrangeCoin: 1 } }, { Id: 1503 SpriteName: "GeneralKrukan" Name: "General Krukan" Lv: 85 Hp: 13255 Sp: 0 Exp: 57 JExp: 10 AttackRange: 1 Attack: [81, 93] Def: 80 Mdef: 90 Stats: { Str: 50 Agi: 66 Vit: 76 Int: 30 Dex: 70 Luk: 41 } ViewRange: 9 ChaseRange: 14 Race: 2 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true Aggressive: true CastSensorChase: true Boss: true } MoveSpeed: 162 AttackDelay: 872 AttackMotion: 172 DamageMotion: 100 Drops: { BronzeBossGift: 100 GuildCoin: 10 OperaMask: 1 } }, { Id: 1504 SpriteName: "GeneralRazha" Name: "General Razha" Lv: 85 Hp: 13255 Sp: 0 Exp: 57 JExp: 10 AttackRange: 1 Attack: [81, 93] Def: 80 Mdef: 90 Stats: { Str: 50 Agi: 66 Vit: 76 Int: 30 Dex: 70 Luk: 41 } ViewRange: 9 ChaseRange: 14 Race: 2 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true Aggressive: true CastSensorChase: true Boss: true } MoveSpeed: 162 AttackDelay: 872 AttackMotion: 172 DamageMotion: 100 Drops: { BronzeBossGift: 1000 SilverBossGift: 250 GoldenBossGift: 10 GuildCoin: 10 OperaMask: 1 } }, { Id: 1505 SpriteName: "GeneralTerogan" Name: "General Terogan" Lv: 85 Hp: 13255 Sp: 0 Exp: 57 JExp: 10 AttackRange: 1 Attack: [81, 93] Def: 80 Mdef: 90 Stats: { Str: 50 Agi: 66 Vit: 76 Int: 30 Dex: 70 Luk: 41 } ViewRange: 9 ChaseRange: 14 Race: 2 Element: (0, 1) Mode: { CanMove: true CanAttack: true ChangeTargetMelee: true ChangeChase: true Aggressive: true CastSensorChase: true Boss: true } MoveSpeed: 162 AttackDelay: 872 AttackMotion: 172 DamageMotion: 100 Drops: { BronzeBossGift: 1000 SilverBossGift: 400 GoldenBossGift: 50 GuildCoin: 10 OperaMask: 1 } }, // WARNING: ID 1900~2500 PERMANENTLY RESERVED - USE PROHIBTED )