From cf18ce071c79ae37e14ea38943e0b1d88da70a7b Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Fri, 9 Apr 2021 13:33:57 -0300 Subject: Override --- npc/029-2/_import.txt | 16 ++ npc/029-2/_mobs.txt | 3 + npc/029-2/_warps.txt | 8 + npc/029-2/alchemy.txt | 98 +++++++++++ npc/029-2/bankroom.txt | 5 + npc/029-2/barrels.txt | 45 +++++ npc/029-2/barrels_config.txt | 84 ++++++++++ npc/029-2/cynric.txt | 6 + npc/029-2/mapflags.txt | 3 + npc/029-2/morgan.txt | 113 +++++++++++++ npc/029-2/nyle.txt | 47 ++++++ npc/029-2/sorfina.txt | 387 +++++++++++++++++++++++++++++++++++++++++++ npc/029-2/stat_reset.txt | 49 ++++++ npc/029-2/tanisha.txt | 286 ++++++++++++++++++++++++++++++++ npc/029-2/two_arms.txt | 3 + 15 files changed, 1153 insertions(+) create mode 100644 npc/029-2/_import.txt create mode 100644 npc/029-2/_mobs.txt create mode 100644 npc/029-2/_warps.txt create mode 100755 npc/029-2/alchemy.txt create mode 100755 npc/029-2/bankroom.txt create mode 100755 npc/029-2/barrels.txt create mode 100755 npc/029-2/barrels_config.txt create mode 100755 npc/029-2/cynric.txt create mode 100755 npc/029-2/mapflags.txt create mode 100755 npc/029-2/morgan.txt create mode 100755 npc/029-2/nyle.txt create mode 100755 npc/029-2/sorfina.txt create mode 100755 npc/029-2/stat_reset.txt create mode 100755 npc/029-2/tanisha.txt create mode 100755 npc/029-2/two_arms.txt (limited to 'npc/029-2') diff --git a/npc/029-2/_import.txt b/npc/029-2/_import.txt new file mode 100644 index 00000000..1a254643 --- /dev/null +++ b/npc/029-2/_import.txt @@ -0,0 +1,16 @@ +// Map 029-2: Candor Island Indoor +// This file is generated automatically. All manually added changes will be removed when running the Converter. +"npc/029-2/_mobs.txt", +"npc/029-2/_warps.txt", +"npc/029-2/alchemy.txt", +"npc/029-2/bankroom.txt", +"npc/029-2/barrels.txt", +"npc/029-2/barrels_config.txt", +"npc/029-2/cynric.txt", +"npc/029-2/mapflags.txt", +"npc/029-2/morgan.txt", +"npc/029-2/nyle.txt", +"npc/029-2/sorfina.txt", +"npc/029-2/stat_reset.txt", +"npc/029-2/tanisha.txt", +"npc/029-2/two_arms.txt", diff --git a/npc/029-2/_mobs.txt b/npc/029-2/_mobs.txt new file mode 100644 index 00000000..46230226 --- /dev/null +++ b/npc/029-2/_mobs.txt @@ -0,0 +1,3 @@ +// This file is generated automatically. All manually added changes will be removed when running the Converter. +// Map 029-2: Candor Island Indoor mobs +029-2,33,57,12,3 monster Wicked Mushroom 1050,7,100000,30000 diff --git a/npc/029-2/_warps.txt b/npc/029-2/_warps.txt new file mode 100644 index 00000000..3a6e62bb --- /dev/null +++ b/npc/029-2/_warps.txt @@ -0,0 +1,8 @@ +// This file is generated automatically. All manually added changes will be removed when running the Converter. +// Map 029-2: Candor Island Indoor warps +029-2,29,62,0 warp #029-2_29_62 0,0,029-1,40,89 +029-2,22,93,0 warp #029-2_22_93 0,0,029-1,44,84 +029-2,112,84,0 warp #029-2_112_84 0,0,029-2,44,30 +029-2,103,62,0 warp #029-2_103_62 0,0,029-1,52,85 +029-2,94,31,0 warp #029-2_94_31 0,0,029-1,58,80 +029-2,24,124,0 warp #029-2_24_124 0,0,029-1,49,78 diff --git a/npc/029-2/alchemy.txt b/npc/029-2/alchemy.txt new file mode 100755 index 00000000..f9799252 --- /dev/null +++ b/npc/029-2/alchemy.txt @@ -0,0 +1,98 @@ +- script _N-Alchemy NPC32767,{ + @npc_distance = 1; + callfunc "PCtoNPCRange"; + if (@npc_check) end; + + title "Alchemy Lab"; + mes "This is an alchemy lab."; + mes "With it, you can combine reagents together to create powerful potions."; + next; + clear; + mes "##BDrag & drop 2 items from your inventory. All items used will be lost.##b"; + cleararray @alchlab_items$[0], "", 2; // since we're not using a scoped (.@) array, we need to clean it + requestitem @alchlab_items$[0], 2; // TODO: add a craft builtin (npc action 12) + clear; + if (@alchlab_items$[0] == "" || @alchlab_items$[1] == "") + goto L_NoItems; + + mes "You are about to combine the following:"; + mes " ["+ getitemlink(@alchlab_items$[0]) +"]"; + mes " ["+ getitemlink(@alchlab_items$[1]) +"]"; + mes; + mes "##BWarning! This will permanently destroy the selected items.##b"; + // can not use a scope variable to store item names because menu is a script terminator (destroys the scope) + menu + "Abort Mission.", L_Abort, + "Proceed.", L_Proceed; + +L_Proceed: + // XXX: here we could make it wait a little, while the potion is boiling (and show an animation/particles/sound) + if (countitem(@alchlab_items$[0]) < 1 || countitem(@alchlab_items$[1]) < 1) // this shouldn't happen, but just to be safe.. + goto L_NoItems; + delitem @alchlab_items$[0], 1; + delitem @alchlab_items$[1], 1; + if (@alchlab_items$[0] == "BottleOfWater" || @alchlab_items$[1] == "BottleOfWater") // give back used bottles + getitem "EmptyBottle", if_then_else(@alchlab_items$[0] == "BottleOfWater" && @alchlab_items$[1] == "BottleOfWater",2,1); + + .@n = -3; + goto L_CheckRecipes; + +L_CheckRecipes: + .@n = .@n+3; + if (.@n == get(.rsize, "_N-Alchemy")) + goto L_Failed; + if (!(get(.recipes$[.@n], "_N-Alchemy") == @alchlab_items$[0] && get(.recipes$[.@n+1], "_N-Alchemy") == @alchlab_items$[1]) && + !(get(.recipes$[.@n], "_N-Alchemy") == @alchlab_items$[1] && get(.recipes$[.@n+1], "_N-Alchemy") == @alchlab_items$[0])) + goto L_CheckRecipes; + + getitem get(.recipes$[.@n+2], "_N-Alchemy"), 1; // XXX: here we could also make it fail sometimes depending on your expertise + + // XXX: here we could make it give profession/crafting exp + clear; + mes "You combined the following:"; + mes " ["+ getitemlink(@alchlab_items$[0]) +"]"; + mes " ["+ getitemlink(@alchlab_items$[1]) +"]"; + mes; + mes "You obtained:"; + mes " ["+ getitemlink(get(.recipes$[.@n+2], "_N-Alchemy")) +"]"; + close; + +L_NoItems: + mes "You must put exactly 2 items."; + close; + +L_Failed: + mes "The potion bubbles violently and evaporates."; // XXX: here we could have random failure messages + close; + +L_Abort: + close; + +S_Spawn: + .@s = getarraysize(.x1); + if (.spawned >= .@s) + goto S_Return; + .@n$ = "#_Al-lab"+chr(3)+.spawned; + if (puppet(.m$[.spawned], .x1[.spawned], .y1[.spawned], .@n$, 399) < 1) mapexit; + .spawned = .spawned + 1; + if (.spawned < .@s) + goto S_Spawn; + return; + +S_Return: + return; + +OnMaybeStart: + callsub S_Spawn; + if (.started == 0) + goto L_InitVars; + end; + +L_InitVars: + setarray .recipes$[0], 0, + "DilutedConcentrationPot", "DarkConcentrationPotion", "ConcentrationPotion", + "CactusDrink", "CactusDrink", "CactusPotion", + "PinkPetal", "BottleOfWater", "ConcentrationPotion"; + .rsize = getarraysize(.recipes$); + end; +} diff --git a/npc/029-2/bankroom.txt b/npc/029-2/bankroom.txt new file mode 100755 index 00000000..12a7390c --- /dev/null +++ b/npc/029-2/bankroom.txt @@ -0,0 +1,5 @@ + +029-2,35,122,0 script #BankRoom NPC32767,0,0,{ + message strcharinfo(0), "The door is locked. This must be where Cynric saves the people's money and items."; + end; +} diff --git a/npc/029-2/barrels.txt b/npc/029-2/barrels.txt new file mode 100755 index 00000000..b44fec43 --- /dev/null +++ b/npc/029-2/barrels.txt @@ -0,0 +1,45 @@ +029-2,23,86,0 script Barrel#0 NPC400,{ + @barrel = 0; + callfunc "CheckBarrel"; + end; + +OnMaggotDeath: + @mobId = 1050; + callfunc "MobPoints"; + end; +} +029-2,28,86,0 script Barrel#1 NPC400,{ + @barrel = 1; + callfunc "CheckBarrel"; + end; +} +029-2,31,91,0 script Barrel#2 NPC400,{ + @barrel = 2; + callfunc "CheckBarrel"; + end; +} +029-2,36,85,0 script Barrel#3 NPC400,{ + @barrel = 3; + callfunc "CheckBarrel"; + end; +} +029-2,40,89,0 script Barrel#4 NPC400,{ + @barrel = 4; + callfunc "CheckBarrel"; + end; +} +029-2,38,91,0 script Barrel#5 NPC400,{ + @barrel = 5; + callfunc "CheckBarrel"; + end; +} +029-2,29,92,0 script Barrel#6 NPC400,{ + @barrel = 6; + callfunc "CheckBarrel"; + end; +} +029-2,24,91,0 script Barrel#7 NPC400,{ + @barrel = 7; + callfunc "CheckBarrel"; + end; +} diff --git a/npc/029-2/barrels_config.txt b/npc/029-2/barrels_config.txt new file mode 100755 index 00000000..84f4b111 --- /dev/null +++ b/npc/029-2/barrels_config.txt @@ -0,0 +1,84 @@ +029-2,33,88,24,7 monster HouseMaggot 1050,2,100000,30000,Barrel#0::OnMaggotDeath +- script #BarrelConfig NPC32767,{ + end; + +OnInit: + setarray $@BarrelBits, (1 << 20), (1 << 21), (1 << 22), (1 << 23), (1 << 24), (1 << 25), (1 << 26), (1 << 27); + setarray $@BarrelRewards, 533, 507, 505, 518, 537, 526; + $@BarrelSpawnCnt = 1; + $@BarrelSpawnId = 1050; + $@BarrelSpawnName$ = "House Maggot"; + $@BarrelMax = getarraysize($@BarrelBits); + end; +} +function script CountBarrels { + @barrel_count = 0; + @count_tmp = 0; + goto L_Loop; + +L_Loop: + if (STARTAREA & $@BarrelBits[@barrel_count]) + goto L_AddOne; + goto L_LoopAgain; + +L_AddOne: + @barrel_count = (@barrel_count + 1); + goto L_LoopAgain; + +L_LoopAgain: + @count_tmp = (@count_tmp + 1); + if (@count_tmp == getarraysize($@BarrelBits)) + goto L_BarrelTally; + goto L_Loop; + +L_BarrelTally: + return; +} +function script CheckBarrel { + @npc_distance = 2; + callfunc "PCtoNPCRange"; + if(@npc_check) goto L_Return; + if (!(QL_ZEGAS == 2)) + goto L_NoI; + if (STARTAREA & $@BarrelBits[@barrel]) + goto L_Empty; + STARTAREA = STARTAREA | $@BarrelBits[@barrel]; + + callfunc "CountBarrels"; + if (@barrel_count == $@BarrelMax) + goto L_QuestReward; + @player_random = rand(@barrel_count * 10); + @barrel_random = rand(@barrel_count * $@BarrelMax); + if (@barrel_random > @player_random) + goto L_Spawn; + goto L_Reward; + +L_NoI: + message strcharinfo(0), "Nothing interesting here."; + goto L_Return; + +L_Empty: + message strcharinfo(0), "You've already searched this barrel."; + goto L_Return; + +L_QuestReward: + message strcharinfo(0), "You found the bug bomb."; + misceffect 33; + QL_ZEGAS = 3; + killmonster getmapname() + "", "Barrel#0::OnMaggotDeath"; + goto L_Return; + +L_Spawn: + message strcharinfo(0), "Uck, More Maggots!"; + setarray @npc_loc, getnpcx(), getnpcy(); + areamonster getmapname(), @npc_loc[0], @npc_loc[1], (@npc_loc[0] + 1), (@npc_loc[1] + 1), $@BarrelSpawnName$, $@BarrelSpawnId, $@BarrelSpawnCnt, "Barrel#0::OnMaggotDeath"; + cleararray @npc_loc, 0, 2; + goto L_Return; + +L_Reward: + getitem $@BarrelRewards[rand(getarraysize($@BarrelRewards))], 1; + goto L_Return; + +L_Return: + return; +} diff --git a/npc/029-2/cynric.txt b/npc/029-2/cynric.txt new file mode 100755 index 00000000..beecaa04 --- /dev/null +++ b/npc/029-2/cynric.txt @@ -0,0 +1,6 @@ + +029-2,30,118,0 script Cynric NPC161,{ + @npcname$ = "Cynric"; + callfunc "Banker"; + close; +} diff --git a/npc/029-2/mapflags.txt b/npc/029-2/mapflags.txt new file mode 100755 index 00000000..bfe50c0c --- /dev/null +++ b/npc/029-2/mapflags.txt @@ -0,0 +1,3 @@ +029-2 mapflag nosave 029-2,22,24 +//029-2 mapflag resave 029-2,22,24 +029-2 mapflag mask 1 diff --git a/npc/029-2/morgan.txt b/npc/029-2/morgan.txt new file mode 100755 index 00000000..5c12dfc3 --- /dev/null +++ b/npc/029-2/morgan.txt @@ -0,0 +1,113 @@ +029-2,105,57,0 script MorganDebug NPC355,{ + mes "[Morgan Debug]"; + mes "Reset?"; + menu + "Yes.", L_Reset, + "No.", L_End; +L_Reset: + QL_MORGAN = 0; + mes "Reset!"; + goto L_End; + +L_End: + end; + +OnInit: + if (!debug) + disablenpc "MorganDebug"; + end; +} +029-2,101,57,0 script Morgan#_M NPC355,{ + callfunc "PCtoNPCRange"; + if(@npc_check) end; + + if (Int >= 5) + goto L_Learn; + goto L_NotMagic; + +L_Learn: + if (QL_MORGAN == 0) + goto L_NotSeen; + if (QL_MORGAN == 1) + goto L_Seen; + if (QL_MORGAN == 2) + goto L_Started; + if (QL_MORGAN == 3) + goto L_CastOnce; + if (QL_MORGAN == 4) + goto L_LearningDone; + goto L_close; + +L_NotSeen: + QL_MORGAN = 1; + mes "[Morgan]"; + mes "\"Welcome to the magic school of Candor\""; + mes "\"My name is Morgan, I'm Head of Wizardry.\""; + mes "\"You appear to have the markings to use magic.\""; + mes "\"Granted you are still to young to cast spells.\""; + mes "\"But we can teach you to use simple magic devices.\""; + mes "\"Would you like to learn some apprentice skills?\""; + menu + "Yes.", L_Start, + "Maybe later", L_close; + +L_Seen: + mes "[Morgan]"; + mes "\"Have you returned to learn some magic?\""; + menu + "Yes.", L_Start, + "Maybe later", L_close; + +L_NotMagic: + mes "[Morgan]"; + mes "\"Hrmm you don't appear to posses enough magical talent to teach.\""; + goto L_close; + +L_Start: + QL_MORGAN = 2; + mes "\"Great, lets begin your first lesson.\""; + getitem 1171, 1; + mes "\"This is a wand, there are many like it but this one is now yours.\""; + mes "\"Various wands and staffs are found throughout the land with many different strengths and weaknesses.\""; + mes "\"To use the wand you need to have it equipped and speak the incantation to let it tap into your mana.\""; + mes "\"As the power of your magic grows so will the spells you can cast.\""; + mes "\"Lets start with a basic wand attack. " + get(.invocation$, "spell-wand") + "\""; + mes "\"Equip the wand and lets try out that spell.\""; + mes "\"To cast a spell open the chat window, type the invocation and press enter.\""; + mes "\"Speak to me again once you've cast the spell.\""; + goto L_close; + +L_Started: + mes "[Morgan]"; + mes "\"Lets start with a basic wand attack. " + get(.invocation$, "spell-wand") + "\""; + mes "\"Equip the wand and lets try out that spell.\""; + mes "\"To cast a spell open the chat window, type the invocation and press enter.\""; + mes "\"Speak to me again once you've cast the spell.\""; + goto L_close; + +L_CastOnce: + mes "[Morgan]"; + mes "\"Ok, good job! Looks like you have good mana flow.\""; + mes "\"Onto the next lesson. Now that you have " + get(.invocation$, "spell-wand") + " cast,\""; + mes "\"Each time you attack the wand will convert a bit of you mana into a magic bolt.\""; + mes "\"After so many attacks, you will need to recast the invocation to stay attuned to the wand.\""; + mes "\"(Logging out will also cancel any spell effects currently active in-game.).\""; + next; + mes "\"I've taught you all I can for now. You should visit the Mana Seed north west of Hurnscald.\""; + QL_MORGAN = 4; + goto L_close; + +L_LearningDone: + mes "[Morgan]"; + mes "\"" + get(.invocation$, "spell-wand") + " is a basic wand attack.\""; + mes "\"A Wand must be equipped to use the spell.\""; + mes "\"To cast a spell open the chat window, type the invocation and press enter.\""; + mes "\"You can also discharge any active spell by saying " + get(.invocation$, "discharge spell") + ".\""; + mes "\"I've taught you all I can for now. You should visit the Mana Seed north west of Hurnscald.\""; + goto L_close; + +L_close: + close; +} + +029-2,113,59,0 shop Zitoni NPC103,501:25,502:35,825:50,826:100 diff --git a/npc/029-2/nyle.txt b/npc/029-2/nyle.txt new file mode 100755 index 00000000..d4573269 --- /dev/null +++ b/npc/029-2/nyle.txt @@ -0,0 +1,47 @@ + +029-2,26,120,6 script Nyle NPC101,{ + mes "[Nyle]"; + mes "\"Visiting the bank too right? We're only a small village but Cynric is the best bank guy I know.\""; + menu + "Yeah, you're right.", L_close, + "What is banking?", L_Explain; + +L_Explain: + mes "[Nyle]"; + mes "\"There are banks all over the world. Usually every important village or city has one."; + mes "You can save both items and money at a bank.\""; + menu + "How do I save items?", L_Items, + "How do I save money?", L_Money, + "Thanks!", L_Thanks; + +L_Items: + mes "[Nyle]"; + mes "\"Let Cynric open your storage. You might also want to open your inventory."; + mes "Pick an item from either storage or inventory and choose what you want to do with it by clicking the right button."; + mes "You can also pick and drag items from one window into the other but this will move all items of this kind."; + next; + mes "Items in your storage are totally safe. Banking itself is totally safe.\""; + menu + "And how do I save money?", L_Money, + "Thanks!", L_Thanks; + +L_Money: + mes "[Nyle]"; + mes "\"That's easy. Cynric will save your money when you ask him to deposit. Or you pick up your money by asking to withdraw."; + mes "You only have to tell him how much you want to deposit or withdraw."; + mes "Also you can ask how much he already save for you by checking your balance."; + next; + mes "Money in your storage is totally safe. Banking itself is totally safe.\""; + menu + "And how do I save items?", L_Items, + "Thanks!", L_Thanks; + +L_Thanks: + mes "[Nyle]"; + mes "\"You are very welcome.\""; + goto L_close; + +L_close: + close; +} diff --git a/npc/029-2/sorfina.txt b/npc/029-2/sorfina.txt new file mode 100755 index 00000000..fe77d09d --- /dev/null +++ b/npc/029-2/sorfina.txt @@ -0,0 +1,387 @@ +029-2,27,27,0 script Sorfina NPC154,0,1,{ + @npc_distance = 2; + callfunc "PCtoNPCRange"; + if(@npc_check) end; + goto L_Main; + +L_Main: + if (QL_BEGIN == 10) goto L_Hasan; + if (QL_BEGIN >= 4) goto L_Again; + if (QL_BEGIN == 3) goto L_Clothes; + if (QL_BEGIN == 2) goto L_Dresser; + if (QL_BEGIN == 1) goto L_Carpet; + goto L_Start; + +L_Start: + mes "You open your eyes."; + mes ""; + mes "[Old Woman]"; + mes "\"Ah, you woke up. You washed ashore on the beach 3 days ago. You've been asleep since."; + mes "You must have been thrown off one of the ships sailing during that last tremor.\""; + mes "\"My little granddaughter Tanisha found you. Kaan was able to carry you to bed."; + mes "We've been taking care of you ever since. Waiting for you to wake up.\""; + mes "\"You didn't have any possessions on you when we found you and no one knows who you are.\""; + mes "Do you have a name?"; + menu + strcharinfo(0), L_name; + +L_name: + mes "[Old Woman]"; + mes "\"Well " + strcharinfo(0) + " what else can you tell me about yourself?.\""; + next; + mes "[Old Woman]"; + mes "\"Go on. If you need to think a bit, take your time.\""; + select + "... Tulimshar in Tonori ... I'm a Talpan."; + mes ""; + mes "[Old Woman]"; + mes "\"Anything else you can remember?\""; + menu + "Umm... no... I... I don't remember anything else...", L_KnowNothing; + +L_KnowNothing: + mes "[Old Woman]"; + mes "\"Well I can tell you some useful things, if you want to hear."; + mes "Some of it might jog your memory or at least help you catch your bearings."; + mes "Oh, and by the way my name is Sorfina.\""; + menu + "That would be great!",L_Tut, + "No, thanks. I already know how things are going.",L_SkipTut; + +L_Tut: + mes "She smiles at you."; + mes "[Sorfina]"; + mes "\"You have arrived at a very strange time. The Council is visiting Candor today.\""; + mes "\"All the recent rumbling from the cave has all of Candor worried.\""; + mes "\"Our guess is something with the last big shaker was the reason you ended up here.\""; + mes "\"Ok, lets start by getting you dressed.\""; + goto L_Carpet; + +L_Carpet: + mes "[Sorfina]"; + mes "\"Try to take a few steps and walk to that carpet over there."; + next; + camera "#Carpet"; + mapmask getmask() | 4; + next; + camera; + mes "Press [###keyMoveUp;] to move up, press [###keyMoveDown;] to move down, "; + mes "press [###keyMoveLeft;] to move left, press [###keyMoveRight;] to move right "; + mes " or click on the place you want to go to.\""; + QL_BEGIN = 1; + goto L_close; + +L_Dresser: + mes "[Sorfina]"; + mes "\"You should get dressed now.\""; + next; + camera "Dresser#tutorial"; + mapmask getmask() | 32; + mes "\"In that dresser there are some clothes you can wear.\""; + mes "\"To interact with things in your environment or talk to NPCs you can either click on it or press [###keyTargetNPC;] to focus and [###keyTalk;] to talk/activate.\""; + next; + camera; + mes "\"Now get the clothes out of the dresser.\""; + goto L_close; + +L_Naked: + mes "[Sorfina]"; + mes "\"Press [###keyWindowInventory;] or click on the Inventory button in the bar at the upper right corner to open your bag.\""; + mes "\"Once we stop talking, double-click on the clothes to equip.\""; + mes "\"Talk to me again after you get dressed. You can either click on me, or press [###keyTargetNPC;] to focus on me and [###keyTalk;] to talk.\""; + goto L_close; + +L_Clothes: + if (getequipid(equip_torso) < 0) + goto L_Naked; + mes "[Sorfina]"; + mes "\"That's much better, don't you think?\""; + mes "\"Here take this.\""; + getitem "HitchhikersTowel", 1; + mes "\"Your HitchHikers Towel will return you to your last set soul menhir or here if not set.\""; + mes "\"It can't be used constantly as the magic needs time to power the jump.\""; + mes "\"I think this will help you a bit. To get more information, press the button Setup and look at the controls on the Keyboard tab. You can also change them as you like."; + mes "Talk to me again if you want me to explain more things.\""; + + mes "\"Oh, and if you're looking for extra work, you should talk to Aidan and Valon when you go outside. They're giving rewards for monster hunting."; + mes "You can find Aidan near the camp fire outside and Valon out by the fields in the east.\""; + next; + + mes "She digs in her pocket for a moment."; + mes "\"And here is some money for you. Don't spend it all in one place."; + mes "Now go help Tanisha downstairs.\""; + mapmask getmask() | 8; + Zeny = Zeny + 30; + QL_BEGIN = 4; + goto L_close; + +L_Again: + mes "[Sorfina]"; + mes "\"Make yourself at home! Do you have any questions?\""; + menu + "Yes, could you explain about...",L_Explain, + "Could I get Healed?",L_Heal, + "No, thanks.",L_close; + +L_Heal: + if (BaseLevel > 20) + goto L_NoHeal; + mes "[Sorfina]"; + mes "\"Hello Dear! You look tired, you should rest a moment.\""; + mes "You take a short nap and feel refreshed."; + heal MaxHp, 0; + goto L_Main; + +L_NoHeal: + mes "[Sorfina]"; + mes "\"I'm sorry but your wounds are far to advanced for my skills.\""; + goto L_Main; + +L_Explain: + menu + "... walking?",L_Walk, + "... talking?",L_Talk, + "... the inventory and items?",L_Items, + "... shortcuts?",L_Shortcut, + "... what to do in Candor?",L_Aidan, + "... change my appearence?",L_Barber, + "... nevermind.",L_close; + +L_Walk: + mes "[Sorfina]"; + mes "\"You can use the arrow keys to walk around."; + mes "Press [###keyMoveUp;] to move up, press [###keyMoveDown;] to move down, "; + mes "press [###keyMoveLeft;] to move left, press [###keyMoveRight;] to move right "; + mes " or click on the place you want to go to."; + mes "This only works if that place is reachable and walkable.\""; + goto L_close; + +L_Talk: + mes "[Sorfina]"; + mes "\"If you want to talk to a normal person, you can click at him or her."; + mes "Or you can press [###keyTargetNPC;] to focus on the nearest person and then press [###keyTalk;] to talk.\""; + next; + mes "\"If you want to talk to other adventurers, press [###keyChat;] to open your chat window."; + mes "Then type your message and press Enter to send.\""; + next; + mes "\"You may want to talk privately to another adventurer sometimes. In that case you can whisper."; + mes "After pressing [###keyChat;] type '/whisper [name] [message]'."; + mes "Or you can right click on someone and choose the whisper option.\""; + next; + mes "\"Press [###keyWindowChat;] to show and hide your chat window.\""; + goto L_close; + +L_Items: + mes "[Sorfina]"; + mes "\"There are three types of items."; + mes "They can be Consumables, Equipment or Miscellaneous.\""; + next; + mes "\"Consumable items such as Potions, can be used only once."; + mes "After use, they will disappear from your inventory."; + mes "There are some rare items that can be used but don't get consumed.\""; + next; + mes "\"Equipment items like Armors, Weapons, Accessories can be equipped for fashionable purposes or to raise your status.\""; + next; + mes "\"Miscellaneous items such as maggot slime, can be used in creating other items, or just to trade and sell.\""; + next; + mes "\"Your HitchHikers Towel will return you to your last set soul menhir or here if not set.\""; + mes "\"It can't be used constantly as the magic needs time to power the jump.\""; + next; + mes "\"Press [###keyWindowInventory;] to open your inventory."; + mes "When placing your cursor over an item there, you can see a box with some information about that item.\""; + next; + mes "\"To use or equip an item, select it by double-clicking on it."; + mes "Selecting the item then pressing Use or Equip also works.\""; + goto L_close; + +L_Shortcut: + mes "[Sorfina]"; + mes "\"Press [###keyWindowShortcut;] or click the Shortcut button in the bar at the upper right to open your shortcut window.\""; + next; + mes "\"You can select the item you want to put on a shortcut with your mouse and then click on the position in the shortcut window you want to place it.\""; + next; + mes "\"Now you can use or equip/unequip it by pressing the number of the shortcut.\""; + goto L_close; + +L_Aidan: + mes "[Sorfina]"; + mes "\"I heard Aidan and Valon are looking for brave adventurers, you might want to talk to them. "; + mes "You can find Aidan near the camp fire outside. The fields are just south of the town exit. "; + mes "You'll see Valon of the city gaurd standing there. They both are offering rewards for monster hunting.\""; + next; + mes "\"When you leave this area to the South, you'll come to the docks."; + mes "They will take you to Hurnscald, a major trading port.\""; + next; + mes "\"Go east out of Candor and north. You will find the cave everyone is talking about to the north."; + next; + mes "Talk to everybody. You can never tell when they might know something useful.\""; + goto L_close; + +L_Barber: + mes "[Sorfina]"; + mes "\"Jessie downstairs can change your appearance.\""; + mes "\"They will allow you to change your hair color or style as well as gender.\""; + next; + mes "\"There are a number of people across the continent that can change this for you.\""; + mes "\"There is no cost or limit to the number of times it can be changed.\""; + goto L_close; + +L_Hasan: + mes "[Sorfina]"; + mes "\"Make yourself at home! Do you have any questions?\""; + menu + "A guy named Hasan is bullying people.",L_Next, + "Yes, could you explain again about...",L_Explain, + "No, thanks.",L_close; + +L_Next: + mes "\"Ah, Hasan. He's causing trouble again?\""; + mes "She shakes her head."; + mes "[Sorfina]"; + mes "\"This guy has been a plague ever since he could walk. He's always causing trouble.\""; + mes "\"And his father... Well, one day his father thought he should teach Hasan a lesson.\""; + mes "\"He took him into the desert and then left him there!"; + mes "Hasan was only seven years old!\""; + mes "\"I never understood how someone could do something like that to a child, even if it's a rascal like Hasan.\""; + mes "\"Anyway, Hasan tried to find his way back home, but stumbled into a nest of scorpions!\""; + mes "She shakes her head."; + mes "\"If Valon hadn't have come along that moment, Hasan would have died that day.\""; + mes "\"However, the scorpions poison caused a bad fever and once Hasan had recovered from that, he was even more malicious than before.\""; + mes "She sighs."; + QL_BEGIN = 11; + goto L_close; + +L_SkipTut: + mes "[Sorfina]"; + mes "\"Really? You seem quite unexperienced. Listening to some advice won't hurt.\""; + menu + "Thinking about it twice... please tell me.",L_Tut, + "Yeah, but thanks for the offer. Bye.",L_Bye; + +L_Bye: + mes "[Sorfina]"; + mes "\"Alright, if you say so. But take at least this. See you later.\""; + getitem "Knife", 1; + getitem "SlingShot", 1; + getitem "SlingBullet", 500; + getitem "HitchhikersTowel", 1; + getitem "CottonShirt", 1; + getitem "RaggedShorts", 1; + set Zeny, Zeny + 35; // tanisha gives 5 Zeny + QL_BEGIN = 8; + goto L_close; + +L_close: + close; + +OnTouch: + if (QL_BEGIN > 0) + end; + goto L_Start; +} + +029-2,33,27,0 script #Carpet NPC127,1,1,{ + if (QL_BEGIN != 1) + end; + mapmask getmask(); + mes "[Sorfina]"; + mes "\"You should get dressed now.\""; + next; + camera "Dresser#tutorial"; + mapmask getmask() | 16; + mes "\"In that dresser there are some clothes you can wear.\""; + mes "\"To interact with things in your environment or talk to NPCs you can either click on it or press N to focus and T to talk/activate.\""; + next; + camera; + mes "\"Now get the clothes out of the dresser.\""; + QL_BEGIN = 2; + close; +} + +029-2,29,23,0 script Dresser#tutorial NPC400,{ + @npc_distance = 2; + @distance_handler = 1; + callfunc "PCtoNPCRange"; + if (@npc_check) + goto L_closeDis; + if (QL_BEGIN > 2) goto L_Empty; + if (QL_BEGIN == 2) goto L_Shirt; + goto L_Walk; + +L_Walk: + mes "[Sorfina]"; + mes "\"Thats not what I said to do. Please don't skip ahead.\""; + close; + +L_Shirt: + mapmask getmask(); + mes "You take a simple Cotton Shirt and some very worn-out Ragged Shorts out of the dresser."; + getitem "CottonShirt", 1; + getitem "RaggedShorts", 1; + mes "[Sorfina]"; + mes "\"Great! Now you can equip it.\""; + mes "\"You can open your inventory by pressing F3 or clicking on the 'Inventory' button in the bar at the upper right corner.\""; + next; + mes "\"After we finish talking, click on the clothes and press the equip button.\""; + QL_BEGIN = 3; + close; + +L_Empty: + mes "The dresser is empty."; + close; + +L_closeDis: + mes "You cannot reach that far."; + close; +} + +029-2,44,31,0 script #DoorOutTut1 NPC45,0,0,{ + if (QL_BEGIN < 4) + goto L_Block; + mapmask getmask(); + warp "029-2", 112, 85; + end; + +L_Block: + message strcharinfo(0), "Sorfina : ##BWait a moment! ##bYou're not ready to leave."; + // FIXME: this should be changed to npctalk with strcharinfo(0) once we increase the view area + end; +} +029-2,23,24,0 script #GameRules1 NPC32767,0,1,{ + if (TUT_var > 0) + end; + mes "[Server/Client Notice]"; + mes "The explanations in this tutorial are based on the official client, Manaplus."; + mes "If you're using another client, settings and controls may be different."; + callfunc "GameRules"; + close; +} +029-2,21,24,0 script #GameRules2 NPC32767,0,1,{ + if (TUT_var > 0) + end; + mes "[Server/Client Notice]"; + mes "The explanations in this tutorial are based on the official client, Manaplus."; + mes "If you're using another client, settings and controls may be different."; + callfunc "GameRules"; + close; +} +029-2,22,26,0 script #GameRules3 NPC32767,1,0,{ + if (TUT_var == 0) + goto L_KnockBack; + end; + +L_KnockBack: + message strcharinfo(0), "Server : ##BPlease Accept the Game rules"; + warp "029-2", 22, 24; + end; +} +029-2,24,24,0 script #GameRules4 NPC32767,0,1,{ + if (TUT_var == 0) + goto L_KnockBack; + end; + +L_KnockBack: + message strcharinfo(0), "Server : ##BPlease Accept the Game rules"; + warp "029-2", 22, 24; + end; +} diff --git a/npc/029-2/stat_reset.txt b/npc/029-2/stat_reset.txt new file mode 100755 index 00000000..75fe3e66 --- /dev/null +++ b/npc/029-2/stat_reset.txt @@ -0,0 +1,49 @@ + +029-2,98,92,0 script Jessie NPC159,{ + callfunc "PCtoNPCRange"; + if(@npc_check) end; + + if (BaseLevel >= 10) + goto L_Sorry; + + mes "[Jessie]"; + mes "\"I know a spell that will"; + mes "reset status points on the youngings."; + mes ""; + mes "I can also change their appearance.\""; + next; + menu + "Reset my stats",L_Reset, + "Change my appearance", L_Appearance, + "Forget about it",L_Pass; + +L_Appearance: + callfunc "Barber"; + goto L_Pass; + +L_Reset: + resetstatus; + + mes "[Jessie]"; + mes "\"There you are."; + mes ""; + mes "Good as new!\""; + goto L_close; + +L_Pass: + mes "[Jessie]"; + mes "\"Very well then, see you.\""; + goto L_close; + +L_Sorry: + mes "[Jessie]"; + mes "\"My spell only works on the very young, sorry.\""; + next; + mes "\"You can try Mailvox in the Tulimshar Bazaar or Wyara in the Potion Shop in Hurnscald.\""; + menu + "Change my appearance", L_Appearance, + "Bye", L_close; + +L_close: + close; +} diff --git a/npc/029-2/tanisha.txt b/npc/029-2/tanisha.txt new file mode 100755 index 00000000..4e5abe42 --- /dev/null +++ b/npc/029-2/tanisha.txt @@ -0,0 +1,286 @@ + +029-2,110,88,0 script Tanisha NPC114,{ + callfunc "PCtoNPCRange"; + if(@npc_check) end; + + if (isin("029-2", 98, 84, 106, 89)) + goto L_Fighting; + + if (QL_BEGIN >= 8) goto L_Tut_Done; + if (QL_BEGIN == 7) goto L_Stats; + if (QL_BEGIN == 6) goto L_Fail; + if (QL_BEGIN == 5) goto L_Maggots; + + mes "[Tanisha]"; + mes "\"Hey! You're up again!\""; + emotion EMOTE_HAPPY, strcharinfo(0); + mes "\"Are you feeling better?\""; + menu + "Yes, thank you.",L_Next, + "Yeah, but everything is gone. My stuff and memories..",L_Next; + +L_Next: + mes "[Tanisha]"; + mes "\"I'm glad you're feeling better. It was really bad luck what happened to you."; + mes "Hey, I have an idea.\""; + QL_BEGIN = 5; + goto L_Maggots; + +L_Maggots: + mes "[Tanisha]"; + mes "\"There are some maggots eating the goods and I'm supposed to get rid of them."; + mes "But they're so yucky!\""; + mes "\"If you kill them, I'll give you my knife."; + mes "What do you say?\""; + menu + "I guess it's the least I can do.",L_Next1; + +L_Next1: + mes "[Tanisha]"; + mes "\"Wonderful."; + // since the check happens here, it is actually possible to have + // more than $@Maggot_MaxHunters in the area at one time + // but that's not a BIG problem + if (getareausers("029-2", 98, 84, 106, 89) >= $@Maggot_MaxHunters) + goto L_Crowded; + next; + goto L_Fight_Again; + +L_Fight_Again: + mes "[Tanisha]"; + mes "\"Ok, listen what to do."; + mes "Equip a weapon and kill the maggots.\""; + mes "\"Press [###keyTargetMonster;] to focus on a monster. With [###keyTargetAttack;] you can focus and start attacking the same time."; + mes "But it also works to click on the monster with your mouse.\""; + next; + mes "\"If you press the [###keyTarget;], you can abort your attack.\""; + next; + mes "\"Maggots aren't aggressive, so they won't harm you until you attack them first. Take them out one by one.\""; + next; + mes "\"Sometimes dead monsters leave some useful things. You can pick them up by pressing [###keyPickup;] or clicking on the items with your mouse.\""; + close2; + // The getitem must be in the same place as set QL_BEGIN, 2; + // since it was moved to after L_Fight_Again, add it conditionally + if (QL_BEGIN == 5) + goto L_GetFightItems; + goto L_ContinueFight; + +L_GetFightItems: + QL_BEGIN = 6; + getitem "Knife", 1; + getitem "SlingShot", 1; + getitem "SlingBullet", 500; + goto L_ContinueFight; + +L_ContinueFight: + QL_BEGIN = 6; + @Maggot_Kills = 0; + @time = 0; + if (getareausers("029-2", 98, 84, 106, 89) == 0) + initnpctimer; + warp "029-2", 101, 87; + goto L_Summon; + +L_Summon: + areamonster "029-2", 98, 84, 106, 89, "", 1002, 1, "Tanisha::OnMaggotDeath"; + end; + +L_Stats: + mes "[Tanisha]"; + mes "\"That was great! Like a professional exterminator!\""; + mes "\"And it seems you became stronger and more experienced."; + mes "That means you got some status points which you can use to increase your abilities.\""; + mes "\"Press [###keyWindowStatus;] or click the Status button in the bar at the upper right to see your status window. There you can distribute your points on six different properties.\""; + mapmask getmask() | 2; + next; + goto L_StatsRe; + +L_StatsRe: + mes "\"Strength makes you hit harder and you can carry more weight.\""; + mes "\"Agility increases your attack speed and your ability to dodge attacks.\""; + mes "\"Vitality gives you more hit points and more defense against physical attacks.\""; + mes "\"Intelligence is useful for magic attack and defense."; + mes "But as long as you don't know any magic, you shouldn't use your points on this.\""; + mes "\"Dexterity is needed to hit monsters. It's also very important for the damage if you use a ranged weapon.\""; + mes "\"Luck gives you the chance to do critical hits and lowers the chance to receive a critical hit from your opponent.\""; + next; + mes "\"Think about how you want to play before assigning the points.\""; + mes "\"My Uncle sitting at the counter knows a spell to help the younglings reset their stats.\""; + mes "\"He can also change your hair style and color, along with your gender.\""; + mes "\"Furthermore, he knows of mages with even more powerful reset spells for your stats.\""; + next; + if (QL_BEGIN == 7) + goto L_Money; + goto L_Advice; + +L_Money: + next; + mes "[Tanisha]"; + mes "\"Hey, you are so smart taking out all that yucky maggots for me."; + mes "You can have my pocket money. Here.\""; + QL_BEGIN = 8; + Zeny = Zeny + 5; + next; + goto L_Advice; + +L_Advice: + mes "\"When you go to Hurnscald, you should see Bernard. He can make a delicious soup!"; + mes "Good luck!\""; + emotion EMOTE_HAPPY, strcharinfo(0); + goto L_close; + +L_Explain: + menu + "... how to fight?",L_Fight, + "... monsters?",L_Mob, + "... status points?",L_StatsRe, + "... what to do in Hurnscald?",L_Advice, + "... nevermind.",L_close; + +L_Fight: + mes "[Tanisha]"; + mes "\"Press [###keyTargetMonster;] to focus on a monster. With [###keyTargetAttack;] you can focus and attack."; + mes "But it also works to click on the monster with your mouse.\""; + next; + mes "\"If you press the [###keyTarget;] button, you can abort your attack.\""; + next; + mes "\"Sometimes dead monsters leave some useful things. You can pick them up with pressing [###keyPickup;] or clicking on the items with your mouse.\""; + next; + mes "\"If you feel exhausted from battle you can sit down by pressing [###keyBeingSit;] to recover faster.\""; + goto L_close; + +L_Mob: + mes "[Tanisha]"; + mes "\"I don't know much about monsters, I'm just a little girl. But I know a few things."; + mes "There are several types of monsters...Aggressive, Neutral, and Assistants.\""; + next; + mes "\"Aggressive monsters will attack you as soon as they see you.\""; + next; + mes "\"Neutral monsters are peaceful until they get attacked.\""; + next; + mes "\"Assistants are monsters who help each other.\""; + goto L_close; + +L_Tut_Done: + mes "[Tanisha]"; + mes "\"These yucky maggots! They're eating our goods!"; + mes "No matter how many of them you kill, they always come back.\""; + mes "She sighs."; + mes "[Tanisha]"; + mes "\"Do you have any questions?\""; + menu + "Yes, could you explain about...", L_Explain, + "No, thanks.", L_close; + +L_Crowded: + mes "[Tanisha]"; + mes "\"That's great! But..."; + mes "it seems a little crowded in there.\""; + mes "\"Let's wait a short while.\""; + goto L_close; + +L_Sleep: + warp "029-2", 101, 87; + mes "[Tanisha]"; + mes "\"What are you doing in there?"; + mes "Sleeping?"; + mes "Come back when you're serious.\""; + @Maggot_Kills = 0; + @time = 0; + close2; + if (getareausers("029-2", 98, 84, 106, 89) == 0) + goto L_CleanUp; + end; + +L_Fail: + mes "Tanisha seems to be trying hard to supress laughter."; + mes "[Tanisha]"; + mes "\"The maggots defeated you.\""; + mes "She bursts out with laughter."; + mes "\"Oops, I'm sorry. It's just too funny."; + mes "Do you want to try it again?\""; + menu + "Sure!", L_Next2, + "No, I need a rest.", L_close; + +L_Next2: + if (getareausers("029-2", 98, 84, 106, 89) >= $@Maggot_MaxHunters) + goto L_Crowded; + goto L_Fight_Again; + +L_Fighting: + npctalk strnpcinfo(0), "##3I believe in you!", strcharinfo(0); + end; + +OnTimer1000: + setnpctimer 0; + if (getareausers("029-2", 98, 84, 106, 89) == 0) + goto L_CleanUp; + // This is needed because multiple players can be in the area at once + areatimer 0, "029-2", 98, 84, 106, 89, 0, "Tanisha::OnTick"; + end; + +L_CleanUp: + killmonster "029-2", "Tanisha::OnMaggotDeath"; + $@Maggot_Hunters = 0; + stopnpctimer; + areamonster "029-2", 98, 84, 106, 89, "", 1002, 1, "Tanisha::OnMaggotDeath"; + end; + +OnTick: + @time = @time + 1; + if (@time > 300) + goto L_Sleep; + if (ispcdead()) + end; + if (Hp > 20) + end; + heal MaxHp, 0; + npctalk strnpcinfo(0), "##3You're doing good!", strcharinfo(0); + end; + +OnMaggotDeath: + if (@Maggot_Kills == 1) + npctalk strnpcinfo(0), "##3Aaahhhh... another one! It will crawl up your legs!", strcharinfo(0); + if (@Maggot_Kills == 2) + npctalk strnpcinfo(0), "##3Ohh... Irrhk... Eeeeww... They just appear from nowhere!", strcharinfo(0); + if (@Maggot_Kills == 3) + npctalk strnpcinfo(0), "##3Yuck... I think I am getting sick.", strcharinfo(0); + if (isin("029-2", 98, 84, 106, 89)) + @Maggot_Kills = @Maggot_Kills + 1; + if (@Maggot_Kills < 5) + goto L_Summon; + // else, complete + warp "029-2", 110, 88; + QL_BEGIN = 7; + @Maggot_Kills = 0; + @time = 0; + if (getareausers("029-2", 98, 84, 106, 89) == 0) + goto L_CleanUp; + end; + +L_close: + close; + +OnInit: + $@Maggot_MaxHunters = 4; + areamonster "029-2", 98, 84, 106, 89, "", 1002, 1, "Tanisha::OnMaggotDeath"; + end; +} +029-2,114,93,0 script #DoorOutTut2 NPC45,0,0,{ + end; + +OnTouch: + if (QL_BEGIN >= 8) + goto L_Warp; + goto L_Block; + +L_Warp: + mapmask getmask(); + warp "029-1", 32, 100; + end; + +L_Block: + npctalk "Tanisha", "##3##BPlease come here. ##bI'd like some help!", strcharinfo(0); + end; +} diff --git a/npc/029-2/two_arms.txt b/npc/029-2/two_arms.txt new file mode 100755 index 00000000..48dec1cb --- /dev/null +++ b/npc/029-2/two_arms.txt @@ -0,0 +1,3 @@ + +029-2,99,25,0 shop Rosen NPC311,903:50,904:0,530:8000,1199:2,529:2 +029-2,112,24,0 shop Toichi NPC377,1201:25,522:50,521:500,523:1000,603:1000 -- cgit v1.2.3-70-g09d2 From 32f9089ea34947e7a78eb7e8c1df69b3804c21b3 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Fri, 9 Apr 2021 14:02:49 -0300 Subject: Fix dresser I hope --- npc/029-2/sorfina.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'npc/029-2') diff --git a/npc/029-2/sorfina.txt b/npc/029-2/sorfina.txt index fe77d09d..25d37985 100755 --- a/npc/029-2/sorfina.txt +++ b/npc/029-2/sorfina.txt @@ -300,7 +300,7 @@ OnTouch: 029-2,29,23,0 script Dresser#tutorial NPC400,{ @npc_distance = 2; - @distance_handler = 1; + @distance_handler = 2; callfunc "PCtoNPCRange"; if (@npc_check) goto L_closeDis; -- cgit v1.2.3-70-g09d2 From 1374fa567866403dbc075f56d950deeb49ad9dff Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Fri, 9 Apr 2021 14:03:51 -0300 Subject: Fix it --- npc/029-2/sorfina.txt | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'npc/029-2') diff --git a/npc/029-2/sorfina.txt b/npc/029-2/sorfina.txt index 25d37985..619a7060 100755 --- a/npc/029-2/sorfina.txt +++ b/npc/029-2/sorfina.txt @@ -299,11 +299,6 @@ OnTouch: } 029-2,29,23,0 script Dresser#tutorial NPC400,{ - @npc_distance = 2; - @distance_handler = 2; - callfunc "PCtoNPCRange"; - if (@npc_check) - goto L_closeDis; if (QL_BEGIN > 2) goto L_Empty; if (QL_BEGIN == 2) goto L_Shirt; goto L_Walk; @@ -330,9 +325,9 @@ L_Empty: mes "The dresser is empty."; close; -L_closeDis: - mes "You cannot reach that far."; - close; +OnInit: + .distance=1; + end; } 029-2,44,31,0 script #DoorOutTut1 NPC45,0,0,{ -- cgit v1.2.3-70-g09d2 From f6ae20d6fa226996f808e32e7f455e28dc1796d0 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Fri, 9 Apr 2021 14:20:07 -0300 Subject: Replace mob db --- db/pre-re/mob_db.conf | 17422 +++++++++++++++++++++++++++++++++--------------- npc/029-2/sorfina.txt | 4 +- 2 files changed, 12034 insertions(+), 5392 deletions(-) (limited to 'npc/029-2') diff --git a/db/pre-re/mob_db.conf b/db/pre-re/mob_db.conf index a58da85e..232d3dec 100644 --- a/db/pre-re/mob_db.conf +++ b/db/pre-re/mob_db.conf @@ -31,5399 +31,12041 @@ 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) - 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 - } - SkillAttacks: { - SkillName: 10000 - } - ViewData: { - SpriteId: sprite id (int, defaults to Id) - WeaponId: weapon id (int, defaults to 0) - ShieldId: shield id (int, defaults to 0) - RobeId: garment id (int, defaults to 0) - HeadTopId: top headgear id (int, defaults to 0) - HeadMidId: middle headgear id (int, defaults to 0) - HeadLowId: lower headgear id (int, defaults to 0) - HairStyleId: hair style id (int, defaults to 0) - BodyStyleId: clothes id (int, defaults to 0) - HairColorId: hair color id (int, defaults to 0) - BodyColorId: clothes color id (int, defaults to 0) - Gender: gender (string, defaults to "SEX_FEMALE") - Options: options (int, defaults to 0) - } + ************* 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) + MvpExp: mvp experience (int, defaults to 0) + MvpDrops: { + AegisName: chance (string: int) + ... + } + Drops: { + AegisName: chance (string: int) + ... + } + }, ******************************************************************************/ - +//ID, Name, Jname, LV, HP, SP, EXP, JEXP, Range1, ATK1, ATK2, DEF, MDEF, STR, AGI, VIT, INT, DEX, LUK, Range2, Range3, Scale, Race, Element,Mode, Speed, Adelay, Amotion,Dmotion,Drop1id,Drop1per,Drop2id,Drop2%, Drop3id,Drop3%, Drop4id,Drop4%, Drop5id,Drop5%, Drop6id,Drop6%, Drop7id,Drop7%, Drop8id,Drop8%, Item1, Item2, MEXP, ExpPer, MVP1id, MVP1per,MVP2id, MVP2per,MVP3id, MVP3per,mutationcount,mutationstrength +{ + Id: 1011 + SpriteName: "FireGoblin" + Name: "FireGoblin" + Lv: 20 + Hp: 220 + Sp: 0 + Exp: 33 + JExp: 4 + AttackRange: 1 + Attack: [15, 20] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 6 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (3, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 800 + CactusDrink: 150 + BugLeg: 800 + CactusPotion: 150 + Dagger: 70 + SharpKnife: 10 + PileOfAsh: 500 + } +}, +{ + Id: 1017 + SpriteName: "Bat" + Name: "Bat" + Lv: 20 + Hp: 150 + Sp: 0 + Exp: 22 + JExp: 3 + AttackRange: 1 + Attack: [5, 25] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 20 + Luk: 25 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (4, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 800 + CactusDrink: 150 + BugLeg: 400 + RoastedMaggot: 150 + Dagger: 70 + SharpKnife: 1 + BatWing: 3000 + BatTeeth: 2000 + } +}, +{ + Id: 1131 + SpriteName: "ManaBug" + Name: "ManaBug" + Lv: 25 + Hp: 300 + Sp: 0 + Exp: 42 + JExp: 5 + AttackRange: 2 + Attack: [10, 17] + Def: 4 + Mdef: 6 + Stats: { + Str: 1 + Agi: 4 + Vit: 1 + Int: 4 + Dex: 5 + Luk: 4 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (4, 1) + Mode: { + CanMove: true + Assist: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 1000 + BugLeg: 800 + RoastedMaggot: 400 + } +}, +{ + Id: 1018 + SpriteName: "Pinkie" + Name: "Pinkie" + Lv: 30 + Hp: 300 + Sp: 0 + Exp: 47 + JExp: 7 + AttackRange: 2 + Attack: [15, 20] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 20 + Luk: 25 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + PinkAntenna: 1000 + PinkieHat: 40 + } +}, +{ + Id: 1019 + SpriteName: "SpikyMushroom" + Name: "SpikyMushroom" + Lv: 30 + Hp: 300 + Sp: 0 + Exp: 43 + JExp: 5 + AttackRange: 1 + Attack: [10, 13] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 10 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + IronPotion: 800 + CactusDrink: 150 + BugLeg: 50 + HardSpike: 400 + } +}, +{ + Id: 1020 + SpriteName: "Fluffy" + Name: "Fluffy" + Lv: 30 + Hp: 500 + Sp: 0 + Exp: 76 + JExp: 7 + AttackRange: 1 + Attack: [6, 10] + Def: 1 + Mdef: 5 + Stats: { + Str: 1 + Agi: 2 + Vit: 1 + Int: 0 + Dex: 20 + Luk: 25 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1600 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + WhiteFur: 800 + Milk: 150 + RedApple: 400 + FluffyHat: 20 + } +}, +{ + Id: 1021 + SpriteName: "CaveSnake" + Name: "CaveSnake" + Lv: 30 + Hp: 800 + Sp: 0 + Exp: 123 + JExp: 13 + AttackRange: 1 + Attack: [20, 15] + Def: 1 + Mdef: 5 + Stats: { + Str: 10 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 5 + Luk: 20 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + CaveSnakeLamp: 1000 + JeansShorts: 40 + CaveSnakeTongue: 500 + CaveSnakeEgg: 400 + CaveSnakeEgg: 400 + SnakeSkin: 20 + } +}, +{ + Id: 1025 + SpriteName: "LogHead" + Name: "LogHead" + Lv: 30 + Hp: 500 + Sp: 0 + Exp: 116 + JExp: 5 + AttackRange: 1 + Attack: [10, 20] + Def: 50 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 20 + Luk: 25 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + RawLog: 2000 + Root: 2500 + Acorn: 3000 + RawLog: 2000 + } +}, +{ + Id: 1027 + SpriteName: "EasterFluffy" + Name: "EasterFluffy" + Lv: 30 + Hp: 500 + Sp: 0 + Exp: 77 + JExp: 7 + AttackRange: 1 + Attack: [10, 12] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 20 + Luk: 25 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + RedEasterEgg: 2000 + GreenEasterEgg: 2000 + BlueEasterEgg: 2000 + YellowEasterEgg: 1000 + PinkEasterEgg: 1000 + TealEasterEgg: 200 + } +}, +{ + Id: 1035 + SpriteName: "Silkworm" + Name: "Silkworm" + Lv: 20 + Hp: 1 + Sp: 0 + Exp: 1 + JExp: 1 + AttackRange: 1 + Attack: [0, 0] + Def: 2 + Mdef: 10 + Stats: { + Str: 20 + Agi: 11 + Vit: 10 + Int: 10 + Dex: 40 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 1300 + AttackDelay: 1100 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + SilkCocoon: 5000 + } +}, +{ + Id: 1041 + SpriteName: "Snail" + Name: "Snail" + Lv: 30 + Hp: 900 + Sp: 0 + Exp: 114 + JExp: 18 + AttackRange: 1 + Attack: [50, 65] + Def: 20 + Mdef: 15 + Stats: { + Str: 10 + Agi: 1 + Vit: 25 + Int: 0 + Dex: 20 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 1800 + AttackDelay: 2500 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + GreenApple: 500 + ReedBundle: 400 + Pear: 1000 + Plum: 1500 + Blueberries: 500 + Cherry: 2000 + } +}, +{ + Id: 1049 + SpriteName: "Bee" + Name: "Bee" + Lv: 30 + Hp: 600 + Sp: 0 + Exp: 124 + JExp: 32 + AttackRange: 1 + Attack: [5, 90] + Def: 12 + Mdef: 4 + Stats: { + Str: 15 + Agi: 25 + Vit: 20 + Int: 3 + Dex: 40 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (5, 1) + Mode: { + CanMove: true + Assist: true + CanAttack: true + } + MoveSpeed: 380 + AttackDelay: 1500 + AttackMotion: 300 + DamageMotion: 350 + MvpExp: 0 +}, +{ + Id: 1055 + SpriteName: "Butterfly" + Name: "Butterfly" + Lv: 25 + Hp: 250 + Sp: 0 + Exp: 55 + JExp: 11 + AttackRange: 2 + Attack: [10, 40] + Def: 3 + Mdef: 5 + Stats: { + Str: 10 + Agi: 45 + Vit: 10 + Int: 15 + Dex: 35 + Luk: 40 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (4, 2) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 350 + AttackDelay: 780 + AttackMotion: 300 + DamageMotion: 800 + MvpExp: 0 + Drops: { + SilkCocoon: 1000 + } +}, +{ + Id: 1057 + SpriteName: "AngryScorpionMob" + Name: "AngryScorpionMob" + Lv: 20 + Hp: 200 + Sp: 0 + Exp: 27 + JExp: 5 + AttackRange: 1 + Attack: [15, 15] + Def: 0 + Mdef: 5 + Stats: { + Str: 5 + Agi: 5 + Vit: 1 + Int: 0 + Dex: 15 + Luk: 5 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 1000 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + AngryScorpionStinger: 700 + Candy: 100 + ChocolateBar: 50 + BugLeg: 700 + } +}, +{ + Id: 1058 + SpriteName: "IceGoblin" + Name: "IceGoblin" + Lv: 25 + Hp: 330 + Sp: 0 + Exp: 52 + JExp: 10 + AttackRange: 1 + Attack: [20, 25] + Def: 0 + Mdef: 5 + Stats: { + Str: 5 + Agi: 5 + Vit: 1 + Int: 0 + Dex: 6 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (1, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 700 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 800 + CactusDrink: 150 + BugLeg: 800 + CactusPotion: 150 + Dagger: 70 + SharpKnife: 10 + IceCube: 500 + } +}, +{ + Id: 1060 + SpriteName: "Archant" + Name: "Archant" + Lv: 30 + Hp: 400 + Sp: 0 + Exp: 61 + JExp: 14 + AttackRange: 1 + Attack: [20, 30] + Def: 4 + Mdef: 6 + Stats: { + Str: 10 + Agi: 5 + Vit: 1 + Int: 0 + Dex: 12 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (5, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 1000 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + TreasureKey: 300 + RedApple: 100 + IronOre: 40 + Coal: 20 + } +}, +{ + Id: 1064 + SpriteName: "Bandit" + Name: "Bandit" + Lv: 20 + Hp: 400 + Sp: 0 + Exp: 65 + JExp: 21 + AttackRange: 1 + Attack: [40, 40] + Def: 5 + Mdef: 0 + Stats: { + Str: 10 + Agi: 10 + Vit: 10 + Int: 10 + Dex: 10 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 500 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 900 + MvpExp: 0 + Drops: { + BanditHood: 800 + Dagger: 200 + CoinBag: 500 + RedApple: 200 + } +}, +{ + Id: 1083 + SpriteName: "HuntsmanSpider" + Name: "HuntsmanSpider" + Lv: 30 + Hp: 1500 + Sp: 0 + Exp: 302 + JExp: 363 + AttackRange: 1 + Attack: [125, 150] + Def: 10 + Mdef: 45 + Stats: { + Str: 20 + Agi: 15 + Vit: 10 + Int: 10 + Dex: 45 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (5, 2) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 575 + AttackDelay: 1250 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + InfantryHelmet: 100 + CoinBag: 500 + IronOre: 300 + BugLeg: 1000 + GreenApple: 500 + Coal: 150 + } +}, +{ + Id: 1084 + SpriteName: "CrotcherScorpionMob" + Name: "CrotcherScorpionMob" + Lv: 25 + Hp: 1200 + Sp: 0 + Exp: 264 + JExp: 86 + AttackRange: 1 + Attack: [75, 175] + Def: 15 + Mdef: 45 + Stats: { + Str: 15 + Agi: 30 + Vit: 10 + Int: 10 + Dex: 25 + Luk: 25 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (5, 2) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 750 + AttackDelay: 1350 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + LeatherShirt: 300 + BugLeg: 1000 + ChocolateBar: 300 + GingerBreadMan: 300 + RedApple: 500 + } +}, +{ + Id: 1087 + SpriteName: "Larvern" + Name: "Larvern" + Lv: 20 + Hp: 550 + Sp: 0 + Exp: 122 + JExp: 26 + AttackRange: 1 + Attack: [50, 200] + Def: 30 + Mdef: 65 + Stats: { + Str: 35 + Agi: 20 + Vit: 50 + Int: 0 + Dex: 70 + Luk: 20 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (5, 1) + Mode: { + CanMove: true + Looter: true + Assist: true + CanAttack: true + } + MoveSpeed: 1500 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + GrubSlime: 2000 + BugLeg: 1000 + GrassSeed: 300 + ReedBundle: 300 + } +}, +{ + Id: 1089 + SpriteName: "HungryFluffy" + Name: "HungryFluffy" + Lv: 30 + Hp: 500 + Sp: 0 + Exp: 76 + JExp: 10 + AttackRange: 1 + Attack: [6, 10] + Def: 1 + Mdef: 5 + Stats: { + Str: 1 + Agi: 2 + Vit: 1 + Int: 0 + Dex: 20 + Luk: 25 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1600 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + WhiteFur: 500 + Milk: 150 + FluffyHat: 20 + } +}, +{ + Id: 1093 + SpriteName: "WhiteSlime" + Name: "WhiteSlime" + Lv: 20 + Hp: 200 + Sp: 0 + Exp: 40 + JExp: 15 + AttackRange: 1 + Attack: [80, 120] + Def: 10 + Mdef: 10 + Stats: { + Str: 20 + Agi: 30 + Vit: 10 + Int: 10 + Dex: 30 + Luk: 20 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 3) + Mode: { + CanMove: true + Assist: true + CanAttack: true + } + MoveSpeed: 500 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + IceCube: 200 + Diamond: 20 + BottleOfWater: 500 + SilverMirror: 100 + BookPage: 200 + } +}, +{ + Id: 1094 + SpriteName: "Reinboo" + Name: "Reinboo" + Lv: 35 + Hp: 1100 + Sp: 0 + Exp: 214 + JExp: 29 + AttackRange: 2 + Attack: [40, 75] + Def: 35 + Mdef: 5 + Stats: { + Str: 15 + Agi: 5 + Vit: 15 + Int: 0 + Dex: 40 + Luk: 10 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 600 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + GingerBreadMan: 1000 + WhiteCake: 1200 + ChocolateCake: 1200 + OrangeCake: 1200 + AppleCake: 1200 + Antlers: 50 + RedNose: 10 + } +}, +{ + Id: 1099 + SpriteName: "SleepingBandit" + Name: "SleepingBandit" + Lv: 20 + Hp: 25 + Sp: 0 + Exp: 3 + JExp: 1 + AttackRange: 1 + Attack: [0, 0] + Def: 0 + Mdef: 0 + Stats: { + Str: 10 + Agi: 10 + Vit: 10 + Int: 10 + Dex: 10 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + MoveSpeed: 500 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 900 + MvpExp: 0 + Drops: { + BanditHood: 800 + Dagger: 200 + CoinBag: 500 + RedApple: 200 + } +}, +{ + Id: 1100 + SpriteName: "AzulSlime" + Name: "AzulSlime" + Lv: 20 + Hp: 200 + Sp: 0 + Exp: 40 + JExp: 10 + AttackRange: 1 + Attack: [80, 120] + Def: 10 + Mdef: 10 + Stats: { + Str: 20 + Agi: 30 + Vit: 10 + Int: 10 + Dex: 30 + Luk: 20 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 3) + Mode: { + CanMove: true + Looter: true + CanAttack: true + } + MoveSpeed: 500 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 +}, +{ + Id: 1107 + SpriteName: "Bluepar" + Name: "Bluepar" + Lv: 30 + Hp: 350 + Sp: 0 + Exp: 54 + JExp: 8 + AttackRange: 2 + Attack: [7, 15] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 20 + Luk: 25 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + IronPotion: 800 + ConcentrationPotion: 800 + Diamond: 50 + } +}, +{ + Id: 1108 + SpriteName: "AngryFireGoblin" + Name: "AngryFireGoblin" + Lv: 30 + Hp: 320 + Sp: 0 + Exp: 55 + JExp: 12 + AttackRange: 1 + Attack: [25, 40] + Def: 0 + Mdef: 10 + Stats: { + Str: 3 + Agi: 3 + Vit: 3 + Int: 2 + Dex: 10 + Luk: 50 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (3, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 800 + CactusDrink: 150 + BugLeg: 800 + CactusPotion: 150 + Dagger: 70 + SharpKnife: 10 + PileOfAsh: 500 + } +}, +{ + Id: 1113 + SpriteName: "Pollett" + Name: "Pollett" + Lv: 30 + Hp: 500 + Sp: 0 + Exp: 76 + JExp: 7 + AttackRange: 1 + Attack: [6, 10] + Def: 1 + Mdef: 5 + Stats: { + Str: 1 + Agi: 2 + Vit: 1 + Int: 0 + Dex: 20 + Luk: 25 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1600 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + IceCube: 1000 + AnimalBones: 500 + Pearl: 300 + IcedWater: 100 + PollettEgg: 400 + PollettEgg: 400 + PollettEgg: 400 + WhiteFur: 500 + } +}, +//ID, Name, Jname, LV, HP, SP, EXP, JEXP, Range1, ATK1, ATK2, DEF, MDEF, STR, AGI, VIT, INT, DEX, LUK, Range2, Range3, Scale, Race, Element,Mode, Speed, Adelay, Amotion,Dmotion,Drop1id,Drop1per,Drop2id,Drop2%, Drop3id,Drop3%, Drop4id,Drop4%, Drop5id,Drop5%, Drop6id,Drop6%, Drop7id,Drop7%, Drop8id,Drop8%, Item1, Item2, MEXP, ExpPer, MVP1id, MVP1per,MVP2id, MVP2per,MVP3id, MVP3per,mutationcount,mutationstrength +{ + Id: 1002 + SpriteName: "Maggot" + Name: "Maggot" + Lv: 5 + Hp: 50 + Sp: 0 + Exp: 6 + JExp: 1 + AttackRange: 1 + Attack: [5, 10] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 6 + Luk: 5 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (1, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 800 + CactusDrink: 150 + BugLeg: 400 + RoastedMaggot: 150 + CactusPotion: 70 + SharpKnife: 10 + } +}, +{ + Id: 1046 + SpriteName: "TameScorpionMob" + Name: "TameScorpionMob" + Lv: 5 + Hp: 50 + Sp: 0 + Exp: 5 + JExp: 2 + AttackRange: 1 + Attack: [7, 10] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 15 + Luk: 5 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 2000 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + ScorpionStinger: 700 + Candy: 100 + ChocolateBar: 50 + BugLeg: 700 + } +}, +{ + Id: 1050 + SpriteName: "HouseMaggot" + Name: "HouseMaggot" + Lv: 5 + Hp: 50 + Sp: 0 + Exp: 6 + JExp: 3 + AttackRange: 1 + Attack: [5, 7] + Def: 0 + Mdef: 5 + Stats: { + Str: 5 + Agi: 5 + Vit: 1 + Int: 0 + Dex: 6 + Luk: 5 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (1, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 700 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 800 + CactusDrink: 150 + BugLeg: 400 + RoastedMaggot: 150 + CactusPotion: 70 + SharpKnife: 10 + } +}, +{ + Id: 1003 + SpriteName: "ScorpionMob" + Name: "ScorpionMob" + Lv: 10 + Hp: 100 + Sp: 0 + Exp: 12 + JExp: 2 + AttackRange: 1 + Attack: [10, 15] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 15 + Luk: 5 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 2000 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + ScorpionStinger: 700 + Candy: 100 + ChocolateBar: 50 + BugLeg: 700 + } +}, +{ + Id: 1029 + SpriteName: "MauvePlant" + Name: "MauvePlant" + Lv: 1 + Hp: 1 + Sp: 0 + Exp: 1 + JExp: 1 + AttackRange: 1 + Attack: [0, 0] + Def: 1 + Mdef: 0 + Stats: { + Str: 0 + Agi: 0 + Vit: 0 + Int: 0 + Dex: 0 + Luk: 0 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + MoveSpeed: 800 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MauveHerb: 3000 + MauveHerb: 3000 + MauveHerb: 3000 + } +}, +{ + Id: 1030 + SpriteName: "CobaltPlant" + Name: "CobaltPlant" + Lv: 1 + Hp: 1 + Sp: 0 + Exp: 1 + JExp: 1 + AttackRange: 1 + Attack: [0, 0] + Def: 1 + Mdef: 0 + Stats: { + Str: 0 + Agi: 0 + Vit: 0 + Int: 0 + Dex: 0 + Luk: 0 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + MoveSpeed: 800 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + CobaltHerb: 3000 + CobaltHerb: 3000 + CobaltHerb: 3000 + } +}, +{ + Id: 1031 + SpriteName: "GambogePlant" + Name: "GambogePlant" + Lv: 1 + Hp: 1 + Sp: 0 + Exp: 1 + JExp: 1 + AttackRange: 1 + Attack: [0, 0] + Def: 1 + Mdef: 0 + Stats: { + Str: 0 + Agi: 0 + Vit: 0 + Int: 0 + Dex: 0 + Luk: 0 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + MoveSpeed: 800 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + GambogeHerb: 3000 + GambogeHerb: 3000 + GambogeHerb: 3000 + } +}, +{ + Id: 1032 + SpriteName: "AlizarinPlant" + Name: "AlizarinPlant" + Lv: 1 + Hp: 1 + Sp: 0 + Exp: 1 + JExp: 1 + AttackRange: 1 + Attack: [0, 0] + Def: 1 + Mdef: 0 + Stats: { + Str: 0 + Agi: 0 + Vit: 0 + Int: 0 + Dex: 0 + Luk: 0 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + MoveSpeed: 800 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + AlizarinHerb: 3000 + AlizarinHerb: 3000 + AlizarinHerb: 3000 + } +}, +{ + Id: 1037 + SpriteName: "CloverPatch" + Name: "CloverPatch" + Lv: 1 + Hp: 1 + Sp: 0 + Exp: 1 + JExp: 1 + AttackRange: 1 + Attack: [0, 0] + Def: 0 + Mdef: 5 + Stats: { + Str: 0 + Agi: 0 + Vit: 0 + Int: 0 + Dex: 0 + Luk: 0 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + MoveSpeed: 800 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + FourLeafClover: 5 + } +}, +{ + Id: 1038 + SpriteName: "Squirrel" + Name: "Squirrel" + Lv: 15 + Hp: 160 + Sp: 1 + Exp: 27 + JExp: 5 + AttackRange: 1 + Attack: [10, 20] + Def: 1 + Mdef: 6 + Stats: { + Str: 1 + Agi: 3 + Vit: 1 + Int: 0 + Dex: 15 + Luk: 40 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + Acorn: 7000 + MauveHerb: 1000 + CobaltHerb: 1000 + GambogeHerb: 1000 + AlizarinHerb: 1000 + GrassSeed: 800 + SquirrelPelt: 550 + } +}, +{ + Id: 1056 + SpriteName: "CaveMaggot" + Name: "CaveMaggot" + Lv: 10 + Hp: 100 + Sp: 0 + Exp: 13 + JExp: 3 + AttackRange: 1 + Attack: [10, 10] + Def: 0 + Mdef: 5 + Stats: { + Str: 5 + Agi: 5 + Vit: 1 + Int: 0 + Dex: 6 + Luk: 5 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (1, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 700 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 800 + CactusDrink: 150 + BugLeg: 400 + RoastedMaggot: 150 + CactusPotion: 70 + SharpKnife: 10 + } +}, +{ + Id: 1063 + SpriteName: "Pumpkin" + Name: "Pumpkin" + Lv: 1 + Hp: 200 + Sp: 0 + Exp: 17 + JExp: 1 + AttackRange: 1 + Attack: [0, 0] + Def: 0 + Mdef: 5 + Stats: { + Str: 0 + Agi: 0 + Vit: 0 + Int: 0 + Dex: 0 + Luk: 0 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + MoveSpeed: 800 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + JackOLantern: 100 + RubberBat: 20 + RealisticBrain: 10 + JarofBlood: 15 + PumpkinSeeds: 500 + TonoriDelight: 1500 + Marshmallow: 2000 + CandyPumpkin: 2500 + } +}, +{ + Id: 1082 + SpriteName: "Serqet" + Name: "Serqet" + Lv: 10 + Hp: 100 + Sp: 0 + Exp: 12 + JExp: 2 + AttackRange: 1 + Attack: [10, 15] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 15 + Luk: 5 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 2000 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 +}, +{ + Id: 1092 + SpriteName: "SlimeBlast" + Name: "SlimeBlast" + Lv: 10 + Hp: 100 + Sp: 0 + Exp: 15 + JExp: 8 + AttackRange: 1 + Attack: [10, 10] + Def: 10 + Mdef: 10 + Stats: { + Str: 10 + Agi: 10 + Vit: 10 + Int: 10 + Dex: 10 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 3) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 250 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 +}, +{ + Id: 1095 + SpriteName: "WhiteBell" + Name: "WhiteBell" + Lv: 10 + Hp: 100 + Sp: 0 + Exp: 18 + JExp: 40 + AttackRange: 2 + Attack: [70, 75] + Def: 0 + Mdef: 5 + Stats: { + Str: 16 + Agi: 12 + Vit: 20 + Int: 20 + Dex: 20 + Luk: 50 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + RedApple: 100 + EmptyBottle: 10 + Arrow: 100 + CoinBag: 400 + WhiteBellTuber: 5000 + Snowball: 1800 + } +}, +{ + Id: 1105 + SpriteName: "ViciousSquirrel" + Name: "ViciousSquirrel" + Lv: 15 + Hp: 140 + Sp: 1 + Exp: 24 + JExp: 7 + AttackRange: 1 + Attack: [20, 25] + Def: 1 + Mdef: 6 + Stats: { + Str: 3 + Agi: 3 + Vit: 1 + Int: 0 + Dex: 15 + Luk: 40 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + IronPowder: 7000 + MauveHerb: 1000 + CobaltHerb: 1000 + GambogeHerb: 1000 + AlizarinHerb: 1000 + GrassSeed: 800 + Sapphire: 50 + } +}, +{ + Id: 1162 + SpriteName: "Grinchboo" + Name: "Grinchboo" + Lv: 5 + Hp: 50 + Sp: 0 + Exp: 6 + JExp: 1 + AttackRange: 1 + Attack: [5, 10] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 6 + Luk: 5 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (1, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 800 + CactusDrink: 150 + BugLeg: 400 + Milk: 50 + Milk: 30 + } +}, +//ID, Name, Jname, LV, HP, SP, EXP, JEXP, Range1, ATK1, ATK2, DEF, MDEF, STR, AGI, VIT, INT, DEX, LUK, Range2, Range3, Scale, Race, Element,Mode, Speed, Adelay, Amotion,Dmotion,Drop1id,Drop1per,Drop2id,Drop2%, Drop3id,Drop3%, Drop4id,Drop4%, Drop5id,Drop5%, Drop6id,Drop6%, Drop7id,Drop7%, Drop8id,Drop8%, Item1, Item2, MEXP, ExpPer, MVP1id, MVP1per,MVP2id, MVP2per,MVP3id, MVP3per,mutationcount,mutationstrength +{ + Id: 1011 + SpriteName: "FireGoblin" + Name: "FireGoblin" + Lv: 20 + Hp: 220 + Sp: 0 + Exp: 33 + JExp: 4 + AttackRange: 1 + Attack: [15, 20] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 6 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (3, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 800 + CactusDrink: 150 + BugLeg: 800 + CactusPotion: 150 + Dagger: 70 + SharpKnife: 10 + PileOfAsh: 500 + } +}, +{ + Id: 1017 + SpriteName: "Bat" + Name: "Bat" + Lv: 20 + Hp: 150 + Sp: 0 + Exp: 22 + JExp: 3 + AttackRange: 1 + Attack: [5, 25] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 20 + Luk: 25 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (4, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 800 + CactusDrink: 150 + BugLeg: 400 + RoastedMaggot: 150 + Dagger: 70 + SharpKnife: 1 + BatWing: 3000 + BatTeeth: 2000 + } +}, +{ + Id: 1131 + SpriteName: "ManaBug" + Name: "ManaBug" + Lv: 25 + Hp: 300 + Sp: 0 + Exp: 42 + JExp: 5 + AttackRange: 2 + Attack: [10, 17] + Def: 4 + Mdef: 6 + Stats: { + Str: 1 + Agi: 4 + Vit: 1 + Int: 4 + Dex: 5 + Luk: 4 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (4, 1) + Mode: { + CanMove: true + Assist: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 1000 + BugLeg: 800 + RoastedMaggot: 400 + } +}, +{ + Id: 1018 + SpriteName: "Pinkie" + Name: "Pinkie" + Lv: 30 + Hp: 300 + Sp: 0 + Exp: 47 + JExp: 7 + AttackRange: 2 + Attack: [15, 20] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 20 + Luk: 25 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + PinkAntenna: 1000 + PinkieHat: 40 + } +}, +{ + Id: 1019 + SpriteName: "SpikyMushroom" + Name: "SpikyMushroom" + Lv: 30 + Hp: 300 + Sp: 0 + Exp: 43 + JExp: 5 + AttackRange: 1 + Attack: [10, 13] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 10 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + IronPotion: 800 + CactusDrink: 150 + BugLeg: 50 + HardSpike: 400 + } +}, +{ + Id: 1020 + SpriteName: "Fluffy" + Name: "Fluffy" + Lv: 30 + Hp: 500 + Sp: 0 + Exp: 76 + JExp: 7 + AttackRange: 1 + Attack: [6, 10] + Def: 1 + Mdef: 5 + Stats: { + Str: 1 + Agi: 2 + Vit: 1 + Int: 0 + Dex: 20 + Luk: 25 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1600 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + WhiteFur: 800 + Milk: 150 + RedApple: 400 + FluffyHat: 20 + } +}, +{ + Id: 1021 + SpriteName: "CaveSnake" + Name: "CaveSnake" + Lv: 30 + Hp: 800 + Sp: 0 + Exp: 123 + JExp: 13 + AttackRange: 1 + Attack: [20, 15] + Def: 1 + Mdef: 5 + Stats: { + Str: 10 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 5 + Luk: 20 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + CaveSnakeLamp: 1000 + JeansShorts: 40 + CaveSnakeTongue: 500 + CaveSnakeEgg: 400 + CaveSnakeEgg: 400 + SnakeSkin: 20 + } +}, +{ + Id: 1025 + SpriteName: "LogHead" + Name: "LogHead" + Lv: 30 + Hp: 500 + Sp: 0 + Exp: 116 + JExp: 5 + AttackRange: 1 + Attack: [10, 20] + Def: 50 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 20 + Luk: 25 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + RawLog: 2000 + Root: 2500 + Acorn: 3000 + RawLog: 2000 + } +}, +{ + Id: 1027 + SpriteName: "EasterFluffy" + Name: "EasterFluffy" + Lv: 30 + Hp: 500 + Sp: 0 + Exp: 77 + JExp: 7 + AttackRange: 1 + Attack: [10, 12] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 20 + Luk: 25 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + RedEasterEgg: 2000 + GreenEasterEgg: 2000 + BlueEasterEgg: 2000 + YellowEasterEgg: 1000 + PinkEasterEgg: 1000 + TealEasterEgg: 200 + } +}, +{ + Id: 1035 + SpriteName: "Silkworm" + Name: "Silkworm" + Lv: 20 + Hp: 1 + Sp: 0 + Exp: 1 + JExp: 1 + AttackRange: 1 + Attack: [0, 0] + Def: 2 + Mdef: 10 + Stats: { + Str: 20 + Agi: 11 + Vit: 10 + Int: 10 + Dex: 40 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 1300 + AttackDelay: 1100 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + SilkCocoon: 5000 + } +}, +{ + Id: 1041 + SpriteName: "Snail" + Name: "Snail" + Lv: 30 + Hp: 900 + Sp: 0 + Exp: 114 + JExp: 18 + AttackRange: 1 + Attack: [50, 65] + Def: 20 + Mdef: 15 + Stats: { + Str: 10 + Agi: 1 + Vit: 25 + Int: 0 + Dex: 20 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 1800 + AttackDelay: 2500 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + GreenApple: 500 + ReedBundle: 400 + Pear: 1000 + Plum: 1500 + Blueberries: 500 + Cherry: 2000 + } +}, +{ + Id: 1049 + SpriteName: "Bee" + Name: "Bee" + Lv: 30 + Hp: 600 + Sp: 0 + Exp: 124 + JExp: 32 + AttackRange: 1 + Attack: [5, 90] + Def: 12 + Mdef: 4 + Stats: { + Str: 15 + Agi: 25 + Vit: 20 + Int: 3 + Dex: 40 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (5, 1) + Mode: { + CanMove: true + Assist: true + CanAttack: true + } + MoveSpeed: 380 + AttackDelay: 1500 + AttackMotion: 300 + DamageMotion: 350 + MvpExp: 0 +}, +{ + Id: 1055 + SpriteName: "Butterfly" + Name: "Butterfly" + Lv: 25 + Hp: 250 + Sp: 0 + Exp: 55 + JExp: 11 + AttackRange: 2 + Attack: [10, 40] + Def: 3 + Mdef: 5 + Stats: { + Str: 10 + Agi: 45 + Vit: 10 + Int: 15 + Dex: 35 + Luk: 40 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (4, 2) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 350 + AttackDelay: 780 + AttackMotion: 300 + DamageMotion: 800 + MvpExp: 0 + Drops: { + SilkCocoon: 1000 + } +}, +{ + Id: 1057 + SpriteName: "AngryScorpionMob" + Name: "AngryScorpionMob" + Lv: 20 + Hp: 200 + Sp: 0 + Exp: 27 + JExp: 5 + AttackRange: 1 + Attack: [15, 15] + Def: 0 + Mdef: 5 + Stats: { + Str: 5 + Agi: 5 + Vit: 1 + Int: 0 + Dex: 15 + Luk: 5 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 1000 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + AngryScorpionStinger: 700 + Candy: 100 + ChocolateBar: 50 + BugLeg: 700 + } +}, +{ + Id: 1058 + SpriteName: "IceGoblin" + Name: "IceGoblin" + Lv: 25 + Hp: 330 + Sp: 0 + Exp: 52 + JExp: 10 + AttackRange: 1 + Attack: [20, 25] + Def: 0 + Mdef: 5 + Stats: { + Str: 5 + Agi: 5 + Vit: 1 + Int: 0 + Dex: 6 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (1, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 700 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 800 + CactusDrink: 150 + BugLeg: 800 + CactusPotion: 150 + Dagger: 70 + SharpKnife: 10 + IceCube: 500 + } +}, +{ + Id: 1060 + SpriteName: "Archant" + Name: "Archant" + Lv: 30 + Hp: 400 + Sp: 0 + Exp: 61 + JExp: 14 + AttackRange: 1 + Attack: [20, 30] + Def: 4 + Mdef: 6 + Stats: { + Str: 10 + Agi: 5 + Vit: 1 + Int: 0 + Dex: 12 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (5, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 1000 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + TreasureKey: 300 + RedApple: 100 + IronOre: 40 + Coal: 20 + } +}, +{ + Id: 1064 + SpriteName: "Bandit" + Name: "Bandit" + Lv: 20 + Hp: 400 + Sp: 0 + Exp: 65 + JExp: 21 + AttackRange: 1 + Attack: [40, 40] + Def: 5 + Mdef: 0 + Stats: { + Str: 10 + Agi: 10 + Vit: 10 + Int: 10 + Dex: 10 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 500 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 900 + MvpExp: 0 + Drops: { + BanditHood: 800 + Dagger: 200 + CoinBag: 500 + RedApple: 200 + } +}, +{ + Id: 1083 + SpriteName: "HuntsmanSpider" + Name: "HuntsmanSpider" + Lv: 30 + Hp: 1500 + Sp: 0 + Exp: 302 + JExp: 363 + AttackRange: 1 + Attack: [125, 150] + Def: 10 + Mdef: 45 + Stats: { + Str: 20 + Agi: 15 + Vit: 10 + Int: 10 + Dex: 45 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (5, 2) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 575 + AttackDelay: 1250 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + InfantryHelmet: 100 + CoinBag: 500 + IronOre: 300 + BugLeg: 1000 + GreenApple: 500 + Coal: 150 + } +}, +{ + Id: 1084 + SpriteName: "CrotcherScorpionMob" + Name: "CrotcherScorpionMob" + Lv: 25 + Hp: 1200 + Sp: 0 + Exp: 264 + JExp: 86 + AttackRange: 1 + Attack: [75, 175] + Def: 15 + Mdef: 45 + Stats: { + Str: 15 + Agi: 30 + Vit: 10 + Int: 10 + Dex: 25 + Luk: 25 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (5, 2) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 750 + AttackDelay: 1350 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + LeatherShirt: 300 + BugLeg: 1000 + ChocolateBar: 300 + GingerBreadMan: 300 + RedApple: 500 + } +}, +{ + Id: 1087 + SpriteName: "Larvern" + Name: "Larvern" + Lv: 20 + Hp: 550 + Sp: 0 + Exp: 122 + JExp: 26 + AttackRange: 1 + Attack: [50, 200] + Def: 30 + Mdef: 65 + Stats: { + Str: 35 + Agi: 20 + Vit: 50 + Int: 0 + Dex: 70 + Luk: 20 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (5, 1) + Mode: { + CanMove: true + Looter: true + Assist: true + CanAttack: true + } + MoveSpeed: 1500 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + GrubSlime: 2000 + BugLeg: 1000 + GrassSeed: 300 + ReedBundle: 300 + } +}, +{ + Id: 1089 + SpriteName: "HungryFluffy" + Name: "HungryFluffy" + Lv: 30 + Hp: 500 + Sp: 0 + Exp: 76 + JExp: 10 + AttackRange: 1 + Attack: [6, 10] + Def: 1 + Mdef: 5 + Stats: { + Str: 1 + Agi: 2 + Vit: 1 + Int: 0 + Dex: 20 + Luk: 25 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1600 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + WhiteFur: 500 + Milk: 150 + FluffyHat: 20 + } +}, +{ + Id: 1093 + SpriteName: "WhiteSlime" + Name: "WhiteSlime" + Lv: 20 + Hp: 200 + Sp: 0 + Exp: 40 + JExp: 15 + AttackRange: 1 + Attack: [80, 120] + Def: 10 + Mdef: 10 + Stats: { + Str: 20 + Agi: 30 + Vit: 10 + Int: 10 + Dex: 30 + Luk: 20 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 3) + Mode: { + CanMove: true + Assist: true + CanAttack: true + } + MoveSpeed: 500 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + IceCube: 200 + Diamond: 20 + BottleOfWater: 500 + SilverMirror: 100 + BookPage: 200 + Snowball: 1800 + } +}, +{ + Id: 1094 + SpriteName: "Reinboo" + Name: "Reinboo" + Lv: 35 + Hp: 1100 + Sp: 0 + Exp: 214 + JExp: 29 + AttackRange: 2 + Attack: [40, 75] + Def: 35 + Mdef: 5 + Stats: { + Str: 15 + Agi: 5 + Vit: 15 + Int: 0 + Dex: 40 + Luk: 10 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 600 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + GingerBreadMan: 1000 + WhiteCake: 1200 + ChocolateCake: 1200 + OrangeCake: 1200 + AppleCake: 1200 + Antlers: 50 + RedNose: 10 + } +}, +{ + Id: 1099 + SpriteName: "SleepingBandit" + Name: "SleepingBandit" + Lv: 20 + Hp: 25 + Sp: 0 + Exp: 3 + JExp: 1 + AttackRange: 1 + Attack: [0, 0] + Def: 0 + Mdef: 0 + Stats: { + Str: 10 + Agi: 10 + Vit: 10 + Int: 10 + Dex: 10 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + MoveSpeed: 500 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 900 + MvpExp: 0 + Drops: { + BanditHood: 800 + Dagger: 200 + CoinBag: 500 + RedApple: 200 + } +}, +{ + Id: 1100 + SpriteName: "AzulSlime" + Name: "AzulSlime" + Lv: 20 + Hp: 200 + Sp: 0 + Exp: 40 + JExp: 10 + AttackRange: 1 + Attack: [80, 120] + Def: 10 + Mdef: 10 + Stats: { + Str: 20 + Agi: 30 + Vit: 10 + Int: 10 + Dex: 30 + Luk: 20 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 3) + Mode: { + CanMove: true + Looter: true + CanAttack: true + } + MoveSpeed: 500 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 +}, +{ + Id: 1107 + SpriteName: "Bluepar" + Name: "Bluepar" + Lv: 30 + Hp: 350 + Sp: 0 + Exp: 54 + JExp: 8 + AttackRange: 2 + Attack: [7, 15] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 20 + Luk: 25 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + IronPotion: 800 + ConcentrationPotion: 800 + Diamond: 50 + } +}, +{ + Id: 1108 + SpriteName: "AngryFireGoblin" + Name: "AngryFireGoblin" + Lv: 30 + Hp: 320 + Sp: 0 + Exp: 55 + JExp: 12 + AttackRange: 1 + Attack: [25, 40] + Def: 0 + Mdef: 10 + Stats: { + Str: 3 + Agi: 3 + Vit: 3 + Int: 2 + Dex: 10 + Luk: 50 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (3, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 800 + CactusDrink: 150 + BugLeg: 800 + CactusPotion: 150 + Dagger: 70 + SharpKnife: 10 + PileOfAsh: 500 + } +}, +{ + Id: 1113 + SpriteName: "Pollett" + Name: "Pollett" + Lv: 30 + Hp: 500 + Sp: 0 + Exp: 76 + JExp: 7 + AttackRange: 1 + Attack: [6, 10] + Def: 1 + Mdef: 5 + Stats: { + Str: 1 + Agi: 2 + Vit: 1 + Int: 0 + Dex: 20 + Luk: 25 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1600 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + IceCube: 1000 + AnimalBones: 500 + Pearl: 300 + IcedWater: 100 + PollettEgg: 400 + PollettEgg: 400 + PollettEgg: 400 + WhiteFur: 500 + } +}, +//ID, Name, Jname, LV, HP, SP, EXP, JEXP, Range1, ATK1, ATK2, DEF, MDEF, STR, AGI, VIT, INT, DEX, LUK, Range2, Range3, Scale, Race, Element,Mode, Speed, Adelay, Amotion,Dmotion,Drop1id,Drop1per,Drop2id,Drop2%, Drop3id,Drop3%, Drop4id,Drop4%, Drop5id,Drop5%, Drop6id,Drop6%, Drop7id,Drop7%, Drop8id,Drop8%, Item1, Item2, MEXP, ExpPer, MVP1id, MVP1per,MVP2id, MVP2per,MVP3id, MVP3per,mutationcount,mutationstrength +{ + Id: 1009 + SpriteName: "BlackScorpionMob" + Name: "BlackScorpionMob" + Lv: 100 + Hp: 600 + Sp: 0 + Exp: 500 + JExp: 37 + AttackRange: 1 + Attack: [60, 100] + Def: 4 + Mdef: 6 + Stats: { + Str: 16 + Agi: 30 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 1000 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + LeatherShirt: 150 + ChocolateBar: 100 + BugLeg: 800 + BlackScorpionStinger: 800 + } +}, +{ + Id: 1010 + SpriteName: "Snake" + Name: "Snake" + Lv: 115 + Hp: 850 + Sp: 0 + Exp: 722 + JExp: 56 + AttackRange: 1 + Attack: [75, 90] + Def: 4 + Mdef: 6 + Stats: { + Str: 20 + Agi: 11 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 900 + AttackDelay: 1300 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + SnakeSkin: 150 + SnakeEgg: 400 + SnakeEgg: 400 + SnakeTongue: 500 + } +}, +{ + Id: 1012 + SpriteName: "Spider" + Name: "Spider" + Lv: 125 + Hp: 800 + Sp: 0 + Exp: 690 + JExp: 115 + AttackRange: 1 + Attack: [70, 85] + Def: 4 + Mdef: 6 + Stats: { + Str: 14 + Agi: 13 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (5, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 1000 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + TreasureKey: 500 + RedApple: 100 + InfantryHelmet: 20 + CoinBag: 200 + } +}, +{ + Id: 1013 + SpriteName: "EvilMushroom" + Name: "EvilMushroom" + Lv: 110 + Hp: 650 + Sp: 0 + Exp: 138 + JExp: 35 + AttackRange: 1 + Attack: [65, 80] + Def: 4 + Mdef: 6 + Stats: { + Str: 16 + Agi: 12 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + CanMove: true + Assist: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + RedApple: 500 + EmptyBottle: 10 + OrangeCupcake: 100 + SmallMushroom: 1000 + } +}, +{ + Id: 1014 + SpriteName: "PinkFlower" + Name: "PinkFlower" + Lv: 115 + Hp: 700 + Sp: 0 + Exp: 163 + JExp: 40 + AttackRange: 2 + Attack: [70, 75] + Def: 0 + Mdef: 5 + Stats: { + Str: 16 + Agi: 12 + Vit: 20 + Int: 20 + Dex: 20 + Luk: 50 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + RedApple: 100 + EmptyBottle: 10 + Arrow: 100 + CoinBag: 400 + PinkPetal: 1000 + PinkPetal: 1000 + } +}, +{ + Id: 1015 + SpriteName: "SantaSlime" + Name: "SantaSlime" + Lv: 120 + Hp: 750 + Sp: 0 + Exp: 166 + JExp: 58 + AttackRange: 1 + Attack: [75, 80] + Def: 2 + Mdef: 7 + Stats: { + Str: 1 + Agi: 20 + Vit: 1 + Int: 0 + Dex: 30 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 1) + Mode: { + CanMove: true + Boss: true + CanAttack: true + } + MoveSpeed: 1500 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + GingerBreadMan: 800 + Cake: 700 + XmasCandyCane: 600 + CherryCake: 500 + Milk: 400 + GreenPresentBox: 500 + } +}, +{ + Id: 1022 + SpriteName: "JackO" + Name: "JackO" + Lv: 175 + Hp: 10000 + Sp: 0 + Exp: 18130 + JExp: 1241 + AttackRange: 2 + Attack: [100, 500] + Def: 40 + Mdef: 20 + Stats: { + Str: 105 + Agi: 40 + Vit: 85 + Int: 75 + Dex: 105 + Luk: 95 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 250 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + PirateHat: 300 + Bandana: 400 + VNeckSweater: 400 + Circlet: 400 + PumpkinHelmet: 300 + RangerHat: 400 + Soul: 10000 + AxeHat: 600 + } +}, +{ + Id: 1023 + SpriteName: "FireSkull" + Name: "FireSkull" + Lv: 170 + Hp: 5000 + Sp: 0 + Exp: 2460 + JExp: 721 + AttackRange: 2 + Attack: [75, 175] + Def: 35 + Mdef: 15 + Stats: { + Str: 40 + Agi: 30 + Vit: 30 + Int: 30 + Dex: 35 + Luk: 70 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (3, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 600 + AttackDelay: 1600 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + DarkCrystal: 1000 + PileOfAsh: 5000 + } +}, +{ + Id: 1024 + SpriteName: "PoisonSkull" + Name: "PoisonSkull" + Lv: 170 + Hp: 5000 + Sp: 0 + Exp: 2460 + JExp: 721 + AttackRange: 2 + Attack: [75, 175] + Def: 35 + Mdef: 15 + Stats: { + Str: 40 + Agi: 30 + Vit: 30 + Int: 30 + Dex: 35 + Luk: 70 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (5, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 600 + AttackDelay: 1600 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + DarkCrystal: 1000 + } +}, +{ + Id: 1026 + SpriteName: "MountainSnake" + Name: "MountainSnake" + Lv: 130 + Hp: 900 + Sp: 0 + Exp: 1024 + JExp: 63 + AttackRange: 1 + Attack: [80, 125] + Def: 4 + Mdef: 6 + Stats: { + Str: 20 + Agi: 40 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 45 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 1000 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + LeatherGloves: 20 + SnakeSkin: 350 + MountainSnakeEgg: 400 + MountainSnakeEgg: 400 + MountainSnakeTongue: 500 + } +}, +{ + Id: 1034 + SpriteName: "GrassSnake" + Name: "GrassSnake" + Lv: 140 + Hp: 1000 + Sp: 0 + Exp: 1254 + JExp: 103 + AttackRange: 1 + Attack: [80, 120] + Def: 2 + Mdef: 10 + Stats: { + Str: 20 + Agi: 40 + Vit: 10 + Int: 10 + Dex: 40 + Luk: 50 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 500 + AttackDelay: 1100 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + GrassSnakeEgg: 400 + GrassSnakeEgg: 400 + GrassSnakeTongue: 500 + Steak: 500 + CottonCloth: 1600 + SnakeSkin: 500 + } +}, +{ + Id: 1036 + SpriteName: "Zombie" + Name: "Zombie" + Lv: 110 + Hp: 12000 + Sp: 0 + Exp: 4192 + JExp: 1393 + AttackRange: 2 + Attack: [275, 355] + Def: 20 + Mdef: 15 + Stats: { + Str: 30 + Agi: 15 + Vit: 30 + Int: 3 + Dex: 60 + Luk: 40 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 480 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 900 + MvpExp: 0 + Drops: { + DarkCrystal: 1000 + RottenRags: 700 + DiseasedHeart: 500 + UndeadEar: 200 + UndeadEye: 150 + Soul: 500 + } +}, +{ + Id: 1042 + SpriteName: "Spectre" + Name: "Spectre" + Lv: 140 + Hp: 6500 + Sp: 0 + Exp: 3978 + JExp: 359 + AttackRange: 3 + Attack: [160, 220] + Def: 40 + Mdef: 0 + Stats: { + Str: 35 + Agi: 70 + Vit: 22 + Int: 15 + Dex: 20 + Luk: 70 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 2) + Mode: { + CanMove: true + Assist: true + CanAttack: true + } + MoveSpeed: 650 + AttackDelay: 1700 + AttackMotion: 800 + DamageMotion: 500 + MvpExp: 0 + Drops: { + SpectrePowder: 1000 + SulphurPowder: 150 + SulphurPowder: 120 + } +}, +{ + Id: 1045 + SpriteName: "Fallen" + Name: "Fallen" + Lv: 120 + Hp: 10000 + Sp: 0 + Exp: 7812 + JExp: 1663 + AttackRange: 2 + Attack: [180, 430] + Def: 5 + Mdef: 20 + Stats: { + Str: 40 + Agi: 3 + Vit: 25 + Int: 5 + Dex: 80 + Luk: 45 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 2) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 300 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 300 + MvpExp: 1198 + Drops: { + Bone: 210 + Bone: 210 + Skull: 300 + DarkCrystal: 1000 + WarlordHelmet: 3 + WarlordPlate: 2 + LeatherGloves: 35 + DiseasedHeart: 500 + Soul: 500 + } +}, +{ + Id: 1062 + SpriteName: "Terranite" + Name: "Terranite" + Lv: 110 + Hp: 6000 + Sp: 0 + Exp: 2484 + JExp: 889 + AttackRange: 1 + Attack: [200, 300] + Def: 20 + Mdef: 40 + Stats: { + Str: 60 + Agi: 40 + Vit: 40 + Int: 30 + Dex: 60 + Luk: 40 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 400 + AttackDelay: 872 + AttackMotion: 672 + DamageMotion: 900 + MvpExp: 0 + Drops: { + Coal: 600 + Emerald: 20 + Sapphire: 20 + Amethyst: 20 + TerraniteOre: 500 + IronOre: 500 + } +}, +{ + Id: 1068 + SpriteName: "Reaper" + Name: "Reaper" + Lv: 140 + Hp: 40000 + Sp: 0 + Exp: 23960 + JExp: 156 + AttackRange: 7 + Attack: [200, 350] + Def: 30 + Mdef: 80 + Stats: { + Str: 100 + Agi: 120 + Vit: 70 + Int: 120 + Dex: 100 + Luk: 75 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 1 + Element: (9, 4) + Mode: { + CanMove: true + Aggressive: true + Boss: true + CanAttack: true + } + MoveSpeed: 500 + AttackDelay: 1200 + AttackMotion: 800 + DamageMotion: 300 + MvpExp: 0 + Drops: { + RottenRags: 1000 + Bone: 500 + Skull: 100 + SkullMask: 10 + } +}, +{ + Id: 1071 + SpriteName: "IceElement" + Name: "IceElement" + Lv: 100 + Hp: 5000 + Sp: 0 + Exp: 1508 + JExp: 689 + AttackRange: 3 + Attack: [60, 200] + Def: 5 + Mdef: 20 + Stats: { + Str: 15 + Agi: 25 + Vit: 40 + Int: 15 + Dex: 45 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 2) + Mode: { + CanMove: true + Looter: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 330 + AttackDelay: 740 + AttackMotion: 672 + DamageMotion: 400 + MvpExp: 0 + Drops: { + IceCube: 900 + TreasureKey: 750 + ConcentrationPotion: 400 + StandardHeadband: 900 + SilkHeadband: 250 + } +}, +{ + Id: 1072 + SpriteName: "Yeti" + Name: "Yeti" + Lv: 100 + Hp: 8500 + Sp: 0 + Exp: 4716 + JExp: 726 + AttackRange: 2 + Attack: [100, 400] + Def: 60 + Mdef: 15 + Stats: { + Str: 60 + Agi: 5 + Vit: 45 + Int: 15 + Dex: 60 + Luk: 32 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 3) + Mode: { + CanMove: true + Looter: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 220 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 900 + MvpExp: 0 + Drops: { + AnimalBones: 700 + FrozenYetiTear: 300 + YetiClaw: 400 + YetiMask: 142 + YellowPresentBox: 800 + WhitePresentBox: 700 + } +}, +{ + Id: 1075 + SpriteName: "Stalker" + Name: "Stalker" + Lv: 120 + Hp: 20000 + Sp: 0 + Exp: 8136 + JExp: 4000 + AttackRange: 2 + Attack: [220, 500] + Def: 23 + Mdef: 30 + Stats: { + Str: 35 + Agi: 15 + Vit: 3 + Int: 50 + Dex: 50 + Luk: 50 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 1 + Element: (9, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 340 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 950 + MvpExp: 0 + Drops: { + Bone: 75 + Bone: 115 + Skull: 135 + DarkCrystal: 40 + DiseasedHeart: 500 + Soul: 500 + } +}, +{ + Id: 1085 + SpriteName: "IceSkull" + Name: "IceSkull" + Lv: 170 + Hp: 7000 + Sp: 0 + Exp: 3342 + JExp: 757 + AttackRange: 2 + Attack: [75, 400] + Def: 40 + Mdef: 15 + Stats: { + Str: 40 + Agi: 30 + Vit: 30 + Int: 30 + Dex: 35 + Luk: 44 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (1, 1) + Mode: { + CanMove: true + Aggressive: true + Assist: true + CanAttack: true + } + MoveSpeed: 600 + AttackDelay: 1600 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + IceCube: 5000 + IcedWater: 800 + } +}, +{ + Id: 1096 + SpriteName: "SoulSnake" + Name: "SoulSnake" + Lv: 115 + Hp: 850 + Sp: 0 + Exp: 184 + JExp: 56 + AttackRange: 1 + Attack: [75, 90] + Def: 4 + Mdef: 6 + Stats: { + Str: 20 + Agi: 11 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Assist: true + CanAttack: true + } + MoveSpeed: 900 + AttackDelay: 1300 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 +}, +{ + Id: 1102 + SpriteName: "Luvia" + Name: "Luvia" + Lv: 127 + Hp: 48044 + Sp: 60 + Exp: 122817 + JExp: 12172 + AttackRange: 5 + Attack: [339, 364] + Def: 50 + Mdef: 92 + Stats: { + Str: 1 + Agi: 29 + Vit: 55 + Int: 255 + Dex: 255 + Luk: 255 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 220 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 +}, +{ + Id: 1106 + SpriteName: "WickedMushroom" + Name: "WickedMushroom" + Lv: 110 + Hp: 550 + Sp: 0 + Exp: 117 + JExp: 30 + AttackRange: 1 + Attack: [70, 80] + Def: 4 + Mdef: 4 + Stats: { + Str: 16 + Agi: 12 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + HardSpike: 600 + Amethyst: 50 + IronPotion: 100 + SmallMushroom: 1000 + } +}, +//ID, Name, Jname, LV, HP, SP, EXP, JEXP, Range1, ATK1, ATK2, DEF, MDEF, STR, AGI, VIT, INT, DEX, LUK, Range2, Range3, Scale, Race, Element,Mode, Speed, Adelay, Amotion,Dmotion,Drop1id,Drop1per,Drop2id,Drop2%, Drop3id,Drop3%, Drop4id,Drop4%, Drop5id,Drop5%, Drop6id,Drop6%, Drop7id,Drop7%, Drop8id,Drop8%, Item1, Item2, MEXP, ExpPer, MVP1id, MVP1per,MVP2id, MVP2per,MVP3id, MVP3per,mutationcount,mutationstrength +{ + Id: 1114 + SpriteName: "Nutcracker" + Name: "Nutcracker" + Lv: 110 + Hp: 6000 + Sp: 0 + Exp: 2235 + JExp: 769 + AttackRange: 1 + Attack: [81, 281] + Def: 20 + Mdef: 42 + Stats: { + Str: 40 + Agi: 20 + Vit: 10 + Int: 5 + Dex: 60 + Luk: 40 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 400 + AttackDelay: 872 + AttackMotion: 672 + DamageMotion: 900 + MvpExp: 0 + Drops: { + RawLog: 1000 + CottonCloth: 750 + Beer: 750 + CasinoCoins: 250 + IronOre: 200 + Emerald: 200 + Coal: 600 + } +}, +{ + Id: 1119 + SpriteName: "Thug" + Name: "Thug" + Lv: 170 + Hp: 5000 + Sp: 0 + Exp: 2316 + JExp: 999 + AttackRange: 1 + Attack: [125, 250] + Def: 30 + Mdef: 6 + Stats: { + Str: 10 + Agi: 10 + Vit: 60 + Int: 10 + Dex: 50 + Luk: 70 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 500 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + Beer: 1000 + Orange: 1000 + PileOfAsh: 500 + SulphurPowder: 250 + Pearl: 250 + SailorHat: 10 + } +}, +{ + Id: 1120 + SpriteName: "Swashbuckler" + Name: "Swashbuckler" + Lv: 170 + Hp: 5000 + Sp: 0 + Exp: 2423 + JExp: 999 + AttackRange: 1 + Attack: [75, 250] + Def: 23 + Mdef: 27 + Stats: { + Str: 20 + Agi: 20 + Vit: 40 + Int: 30 + Dex: 90 + Luk: 70 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 400 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + Beer: 1000 + Orange: 1000 + PileOfAsh: 500 + SulphurPowder: 250 + Pearl: 250 + Bandana: 500 + } +}, +{ + Id: 1121 + SpriteName: "Grenadier" + Name: "Grenadier" + Lv: 170 + Hp: 6000 + Sp: 0 + Exp: 1358 + JExp: 999 + AttackRange: 6 + Attack: [100, 200] + Def: 8 + Mdef: 60 + Stats: { + Str: 12 + Agi: 10 + Vit: 50 + Int: 60 + Dex: 90 + Luk: 70 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 500 + AttackDelay: 2000 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + Beer: 1000 + Orange: 1000 + PileOfAsh: 500 + IronPowder: 250 + Pearl: 250 + CaptainsHat: 1 + } +}, +{ + Id: 1122 + SpriteName: "DreadPirateMarley" + Name: "DreadPirateMarley" + Lv: 180 + Hp: 10000 + Sp: 0 + Exp: 7518 + JExp: 20000 + AttackRange: 4 + Attack: [175, 250] + Def: 38 + Mdef: 32 + Stats: { + Str: 10 + Agi: 20 + Vit: 40 + Int: 20 + Dex: 90 + Luk: 80 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 400 + AttackDelay: 700 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 +}, +{ + Id: 1123 + SpriteName: "DreadPirateMarleyClone" + Name: "DreadPirateMarleyClone" + Lv: 150 + Hp: 2000 + Sp: 0 + Exp: 709 + JExp: 0 + AttackRange: 4 + Attack: [175, 250] + Def: 18 + Mdef: 22 + Stats: { + Str: 10 + Agi: 40 + Vit: 30 + Int: 20 + Dex: 80 + Luk: 40 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 500 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 +}, +{ + Id: 1126 + SpriteName: "PsiBrain" + Name: "PsiBrain" + Lv: 100 + Hp: 10000 + Sp: 0 + Exp: 3952 + JExp: 4000 + AttackRange: 2 + Attack: [220, 500] + Def: 23 + Mdef: 30 + Stats: { + Str: 35 + Agi: 15 + Vit: 3 + Int: 50 + Dex: 50 + Luk: 50 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 1 + Element: (9, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 340 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 950 + MvpExp: 0 + Drops: { + Bone: 75 + Bone: 115 + Skull: 135 + DarkCrystal: 40 + BrainStem: 700 + } +}, +{ + Id: 1127 + SpriteName: "GeneralKrukan" + Name: "GeneralKrukan" + Lv: 140 + Hp: 40000 + Sp: 0 + Exp: 12932 + JExp: 1663 + AttackRange: 2 + Attack: [180, 430] + Def: 5 + Mdef: 20 + Stats: { + Str: 40 + Agi: 3 + Vit: 25 + Int: 5 + Dex: 80 + Luk: 45 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 2) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 300 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 300 + MvpExp: 778 + MvpDrops: { + Soul: 1198 + } + Drops: { + Bone: 1000 + Skull: 1000 + DarkCrystal: 1000 + DarkHelm: 2 + WarlordHelmet: 6 + KnightsHelmet: 25 + InfantryHelmet: 50 + CrusadeHelmet: 8 + DiseasedHeart: 500 + Soul: 500 + } +}, +{ + Id: 1128 + SpriteName: "GeneralRazha" + Name: "GeneralRazha" + Lv: 140 + Hp: 40000 + Sp: 0 + Exp: 12932 + JExp: 1663 + AttackRange: 2 + Attack: [180, 430] + Def: 5 + Mdef: 20 + Stats: { + Str: 40 + Agi: 3 + Vit: 25 + Int: 5 + Dex: 80 + Luk: 45 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 2) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 300 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 300 + MvpExp: 1198 + Drops: { + Bone: 210 + UnderworldMask: 5 + Skull: 300 + DarkCrystal: 1000 + WarlordHelmet: 3 + WarlordPlate: 2 + LeatherGloves: 35 + DiseasedHeart: 500 + Soul: 500 + } +}, +{ + Id: 1129 + SpriteName: "GeneralTerogan" + Name: "GeneralTerogan" + Lv: 140 + Hp: 40000 + Sp: 0 + Exp: 12932 + JExp: 1663 + AttackRange: 2 + Attack: [180, 430] + Def: 5 + Mdef: 20 + Stats: { + Str: 40 + Agi: 3 + Vit: 25 + Int: 5 + Dex: 80 + Luk: 45 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 2) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 300 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 300 + MvpExp: 1198 + Drops: { + Bone: 210 + Phylactery: 1 + Skull: 300 + DarkCrystal: 1000 + WarlordHelmet: 3 + WarlordPlate: 2 + LeatherGloves: 35 + DiseasedHeart: 500 + Soul: 500 + } +}, +{ + Id: 1130 + SpriteName: "Moonshroom" + Name: "Moonshroom" + Lv: 110 + Hp: 550 + Sp: 0 + Exp: 120 + JExp: 35 + AttackRange: 4 + Attack: [70, 80] + Def: 4 + Mdef: 4 + Stats: { + Str: 16 + Agi: 12 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + SmallMushroom: 500 + BugLeg: 500 + Lifestone: 300 + EmptyBottle: 100 + SulphurPowder: 100 + } +}, +{ + Id: 1132 + SpriteName: "LavaSlime" + Name: "LavaSlime" + Lv: 135 + Hp: 4144 + Sp: 0 + Exp: 6000 + JExp: 1111 + AttackRange: 2 + Attack: [105, 260] + Def: 75 + Mdef: 80 + Stats: { + Str: 30 + Agi: 15 + Vit: 35 + Int: 10 + Dex: 70 + Luk: 250 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (3, 2) + Mode: { + CanMove: true + Looter: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 900 + AttackDelay: 1300 + AttackMotion: 672 + DamageMotion: 100 + MvpExp: 0 + Drops: { + SlingBullet: 10000 + SulphurPowder: 2500 + IronOre: 1000 + PileOfAsh: 1000 + Coal: 1000 + TinyManaElixir: 500 + } +}, +{ + Id: 1133 + SpriteName: "Anne" + Name: "Anne" + Lv: 110 + Hp: 12000 + Sp: 0 + Exp: 1100 + JExp: 889 + AttackRange: 1 + Attack: [200, 300] + Def: 20 + Mdef: 40 + Stats: { + Str: 60 + Agi: 40 + Vit: 40 + Int: 30 + Dex: 60 + Luk: 40 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 380 + AttackDelay: 872 + AttackMotion: 672 + DamageMotion: 900 + MvpExp: 0 + Drops: { + CranberryLollipop: 6000 + GrapeLollipop: 6000 + OrangeLollipop: 6000 + CaramelApple: 200 + LollipopColor1: 500 + LollipopColor2: 500 + LollipopColor3: 500 + ShockSweet: 20 + } +}, +{ + Id: 1134 + SpriteName: "SUSAN" + Name: "SUSAN" + Lv: 255 + Hp: 696969 + Sp: 0 + Exp: 69000 + JExp: 1400 + AttackRange: 1 + Attack: [0, 0] + Def: 69 + Mdef: 69 + Stats: { + Str: 69 + Agi: 69 + Vit: 69 + Int: 69 + Dex: 69 + Luk: 69 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Boss: true + CanAttack: true + } + MoveSpeed: 1500 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + CranberryLollipop: 6000 + GrapeLollipop: 6000 + OrangeLollipop: 6000 + CaramelApple: 200 + LollipopColor1: 500 + LollipopColor2: 500 + LollipopColor3: 500 + ShockSweet: 20 + } +}, +{ + Id: 1135 + SpriteName: "LovelyMaggot" + Name: "LovelyMaggot" + Lv: 1 + Hp: 50 + Sp: 0 + Exp: 1 + JExp: 1 + AttackRange: 1 + Attack: [69, 6969] + Def: 0 + Mdef: 5 + Stats: { + Str: 5 + Agi: 5 + Vit: 1 + Int: 0 + Dex: 6 + Luk: 5 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (1, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 400 + CactusDrink: 70 + BugLeg: 200 + RoastedMaggot: 75 + CactusPotion: 30 + } +}, +{ + Id: 1136 + SpriteName: "LesserGhost" + Name: "LesserGhost" + Lv: 1 + Hp: 1 + Sp: 0 + Exp: 1 + JExp: 1 + AttackRange: 0 + Attack: [150, 300] + Def: 0 + Mdef: 0 + Stats: { + Str: 0 + Agi: 0 + Vit: 0 + Int: 0 + Dex: 0 + Luk: 0 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 1 + Element: (9, 1) + Mode: { + CanMove: true + Looter: true + CanAttack: true + } + MoveSpeed: 340 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 950 + MvpExp: 0 +}, +{ + Id: 1137 + SpriteName: "Tormenta" + Name: "Tormenta" + Lv: 200 + Hp: 18000 + Sp: 60 + Exp: 500000 + JExp: 5000 + AttackRange: 5 + Attack: [360, 374] + Def: 48 + Mdef: 90 + Stats: { + Str: 1 + Agi: 32 + Vit: 60 + Int: 255 + Dex: 255 + Luk: 255 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 210 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 +}, +//ID, Name, Jname, LV, HP, SP, EXP, JEXP, Range1, ATK1, ATK2, DEF, MDEF, STR, AGI, VIT, INT, DEX, LUK, Range2, Range3, Scale, Race, Element,Mode, Speed, Adelay, Amotion,Dmotion,Drop1id,Drop1per,Drop2id,Drop2%, Drop3id,Drop3%, Drop4id,Drop4%, Drop5id,Drop5%, Drop6id,Drop6%, Drop7id,Drop7%, Drop8id,Drop8%, Item1, Item2, MEXP, ExpPer, MVP1id, MVP1per,MVP2id, MVP2per,MVP3id, MVP3per,mutationcount,mutationstrength +{ + Id: 1138 + SpriteName: "ManaGuard" + Name: "ManaGuardian" + Lv: 180 + Hp: 20000 + Sp: 280 + Exp: 27000 + JExp: 5000 + AttackRange: 2 + Attack: [280, 324] + Def: 22 + Mdef: 67 + Stats: { + Str: 31 + Agi: 22 + Vit: 90 + Int: 127 + Dex: 255 + Luk: 95 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 210 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 +}, +{ + Id: 1139 + SpriteName: "Virus" + Name: "Virus" + Lv: 170 + Hp: 5000 + Sp: 0 + Exp: 2273 + JExp: 721 + AttackRange: 6 + Attack: [45, 75] + Def: 37 + Mdef: 12 + Stats: { + Str: 30 + Agi: 30 + Vit: 20 + Int: 20 + Dex: 25 + Luk: 60 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (5, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 600 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + Snapple: 500 + Acorn: 1100 + GumiCandy: 11 + } +}, +{ + Id: 1140 + SpriteName: "Tengu" + Name: "Tengu" + Lv: 180 + Hp: 24000 + Sp: 280 + Exp: 45000 + JExp: 5000 + AttackRange: 2 + Attack: [180, 224] + Def: 67 + Mdef: 9 + Stats: { + Str: 31 + Agi: 22 + Vit: 90 + Int: 97 + Dex: 255 + Luk: 95 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 310 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 +}, +{ + Id: 1141 + SpriteName: "Sasquatch" + Name: "Sasquatch" + Lv: 180 + Hp: 24000 + Sp: 280 + Exp: 45000 + JExp: 5000 + AttackRange: 1 + Attack: [420, 444] + Def: 12 + Mdef: 27 + Stats: { + Str: 31 + Agi: 22 + Vit: 90 + Int: 97 + Dex: 255 + Luk: 95 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 310 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 +}, +{ + Id: 1142 + SpriteName: "Kage" + Name: "ZaxDeKagen" + Lv: 200 + Hp: 29999 + Sp: 280 + Exp: 999999 + JExp: 99999 + AttackRange: 9 + Attack: [90, 124] + Def: 74 + Mdef: 100 + Stats: { + Str: 199 + Agi: 2 + Vit: 199 + Int: 197 + Dex: 255 + Luk: 175 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 210 + AttackDelay: 672 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 + Drops: { + BlueRose: 10000 + } +}, +{ + Id: 1143 + SpriteName: "ManaSlayer" + Name: "ManaSlayer" + Lv: 180 + Hp: 24000 + Sp: 280 + Exp: 42000 + JExp: 5000 + AttackRange: 2 + Attack: [260, 274] + Def: 22 + Mdef: 67 + Stats: { + Str: 31 + Agi: 22 + Vit: 90 + Int: 127 + Dex: 255 + Luk: 95 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 210 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 +}, +{ + Id: 1144 + SpriteName: "Dragon" + Name: "GreatDragon" + Lv: 250 + Hp: 29999 + Sp: 280 + Exp: 1 + JExp: 1 + AttackRange: 3 + Attack: [60, 90] + Def: 67 + Mdef: 67 + Stats: { + Str: 199 + Agi: 2 + Vit: 199 + Int: 197 + Dex: 255 + Luk: 95 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 210 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 + Drops: { + PaladinsHelmet: 1 + } +}, +{ + Id: 1145 + SpriteName: "KageGolem" + Name: "KageGolem" + Lv: 180 + Hp: 29999 + Sp: 280 + Exp: 150000 + JExp: 15000 + AttackRange: 6 + Attack: [140, 174] + Def: 72 + Mdef: 55 + Stats: { + Str: 31 + Agi: 22 + Vit: 90 + Int: 127 + Dex: 255 + Luk: 125 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 410 + AttackDelay: 1000 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 + Drops: { + WumpusEgg: 10000 + } +}, +{ + Id: 1146 + SpriteName: "Flashmob" + Name: "Flashmob" + Lv: 181 + Hp: 27000 + Sp: 280 + Exp: 72000 + JExp: 5000 + AttackRange: 1 + Attack: [40, 60] + Def: 57 + Mdef: 57 + Stats: { + Str: 31 + Agi: 22 + Vit: 90 + Int: 127 + Dex: 255 + Luk: 95 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 160 + AttackDelay: 600 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 +}, +{ + Id: 1147 + SpriteName: "Koyntety" + Name: "Koyntety" + Lv: 181 + Hp: 27000 + Sp: 280 + Exp: 72000 + JExp: 5000 + AttackRange: 4 + Attack: [220, 240] + Def: 52 + Mdef: 52 + Stats: { + Str: 31 + Agi: 22 + Vit: 90 + Int: 127 + Dex: 255 + Luk: 105 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 240 + AttackDelay: 1400 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 +}, +{ + Id: 1148 + SpriteName: "DoomGolem" + Name: "DoomGolem" + Lv: 180 + Hp: 22000 + Sp: 280 + Exp: 65000 + JExp: 2000 + AttackRange: 3 + Attack: [160, 180] + Def: 60 + Mdef: 30 + Stats: { + Str: 31 + Agi: 22 + Vit: 90 + Int: 127 + Dex: 255 + Luk: 105 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 320 + AttackDelay: 1000 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 + Drops: { + MageRing: 4 + BlackRose: 30 + TreasureKey: 800 + UndeadEar: 150 + UndeadEye: 150 + RottenRags: 70 + Soul: 50 + BlinkingHocus: 1 + } +}, +{ + Id: 1149 + SpriteName: "Enchanter" + Name: "Enchanter" + Lv: 181 + Hp: 19000 + Sp: 280 + Exp: 55000 + JExp: 2000 + AttackRange: 8 + Attack: [140, 180] + Def: 30 + Mdef: 60 + Stats: { + Str: 31 + Agi: 22 + Vit: 90 + Int: 127 + Dex: 255 + Luk: 105 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 240 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 + Drops: { + EnchantersAmulet: 2 + BlackRose: 30 + TreasureKey: 800 + UndeadEar: 90 + UndeadEye: 80 + RottenRags: 70 + Soul: 50 + } +}, +{ + Id: 1150 + SpriteName: "ManaTyrant" + Name: "ManaTyrant" + Lv: 180 + Hp: 24000 + Sp: 280 + Exp: 27000 + JExp: 5000 + AttackRange: 2 + Attack: [300, 325] + Def: 42 + Mdef: 67 + Stats: { + Str: 31 + Agi: 22 + Vit: 90 + Int: 127 + Dex: 255 + Luk: 95 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 180 + AttackDelay: 1050 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 + Drops: { + PaladinsHelmet: 1 + CaramelCandy: 20 + GoldenDeliciousApple: 5 + SilkRobe: 100 + TinyManaElixir: 500 + SilkGloves: 20 + SilkPants: 15 + } +}, +//ID, Name, Jname, LV, HP, SP, EXP, JEXP, Range1, ATK1, ATK2, DEF, MDEF, STR, AGI, VIT, INT, DEX, LUK, Range2, Range3, Scale, Race, Element,Mode, Speed, Adelay, Amotion,Dmotion,Drop1id,Drop1per,Drop2id,Drop2%, Drop3id,Drop3%, Drop4id,Drop4%, Drop5id,Drop5%, Drop6id,Drop6%, Drop7id,Drop7%, Drop8id,Drop8%, Item1, Item2, MEXP, ExpPer, MVP1id, MVP1per,MVP2id, MVP2per,MVP3id, MVP3per,mutationcount,mutationstrength { - Id: 1002 - SpriteName: "Piou" - Name: "Piou" - Lv: 1 - Hp: 110 - Sp: 0 - Exp: 3 - JExp: 0 - AttackRange: 1 - Attack: [22, 25] - Def: 0 - Mdef: 0 - WalkMask: "WALK_AIR" - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 0 - Dex: 6 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1000 - Size: 0 - Race: 2 - Element: (4, 1) - Mode: { - CanMove: true - CanAttack: true - SurviveWithoutMaster: true - } - MoveSpeed: 200 - AttackDelay: 1872 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - PiouFeathers: 2300 - PiouLegs: 2700 - } -}, -{ - Id: 1003 - SpriteName: "Piousse" - Name: "Piousse" - Lv: 2 - Hp: 220 - Sp: 0 - Exp: 7 - JExp: 0 - AttackRange: 1 - Attack: [38, 40] - Def: 1 - Mdef: 0 - Stats: { - Str: 5 - Agi: 1 - Vit: 5 - Int: 0 - Dex: 10 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1000 - Size: 0 - Race: 2 - Element: (4, 1) - Mode: { - CanMove: true - CanAttack: true - SurviveWithoutMaster: true - } - MoveSpeed: 150 - AttackDelay: 1872 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - HalfEggshell: 4000 - PiouLegs: 3000 - PiouFeathers: 3000 - } -}, -{ - Id: 1004 - SpriteName: "Tortuga" - Name: "Tortuga" - Lv: 3 - Hp: 325 - Sp: 0 - Exp: 6 - JExp: 0 - AttackRange: 1 - Attack: [44, 45] - Def: 5 - Mdef: 0 - WalkMask: "WALK_WATER" - Stats: { - Str: 1 - Agi: 1 - Vit: 10 - Int: 1 - Dex: 20 - Luk: 5 - } - ViewRange: 1 - ChaseRange: 12 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 900 - AttackDelay: 2872 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - TortugaShellFragment: 1880 - LettuceLeaf: 1800 - TortugaTongue: 1000 - Fungus: 800 - SeaDrops: 500 - Aquada: 500 - TortugaShell: 500 - Moss: 500 - } - WeaponAttacks: { - Bows: 7000 - } -}, -{ - Id: 1005 - SpriteName: "Ratto" - Name: "Ratto" - Lv: 5 - Hp: 540 - Sp: 0 - Exp: 10 - JExp: 0 - AttackRange: 1 - Attack: [49, 50] - Def: 8 - Mdef: 0 - Stats: { - Str: 5 - Agi: 15 - Vit: 10 - Int: 1 - Dex: 25 - Luk: 4 - } - ViewRange: 1 - ChaseRange: 12 - Size: 0 - Race: 2 - Element: (5, 1) - Mode: { - CanMove: true - Looter: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 150 - AttackDelay: 1872 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - Cheese: 2000 - RattoTeeth: 1000 - RattoTail: 700 - Piberries: 700 - Moss: 700 - } -}, -{ - Id: 1006 - SpriteName: "Croc" - Name: "Croc" - Lv: 8 - Hp: 900 - Sp: 0 - Exp: 12 - JExp: 0 - AttackRange: 1 - Attack: [64, 70] - Def: 15 - Mdef: 1 - Stats: { - Str: 6 - Agi: 20 - Vit: 10 - Int: 1 - Dex: 30 - Luk: 10 - } - ViewRange: 1 - ChaseRange: 12 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 600 - AttackDelay: 1872 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - CrocClaw: 2000 - BlueCoral: 1300 - Aquada: 1500 - SeaDrops: 700 - Coral: 500 - } -}, -{ - Id: 1007 - SpriteName: "LittleBlub" - Name: "Little Blub" - Lv: 4 - Hp: 440 - Sp: 0 - Exp: 7 - JExp: 0 - AttackRange: 1 - Attack: [25, 30] - Def: 6 - Mdef: 1 - WalkMask: "WALK_WATER" - Stats: { - Str: 5 - Agi: 17 - Vit: 5 - Int: 1 - Dex: 28 - Luk: 15 - } - ViewRange: 1 - ChaseRange: 12 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - Looter: true - Assist: true - CanAttack: true - SurviveWithoutMaster: true - } - MoveSpeed: 300 - AttackDelay: 1100 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - SmallTentacles: 1500 - PinkBlobime: 1500 - Aquada: 1500 - SeaDrops: 1000 - Coral: 1000 - Pearl: 10 - } -}, -{ - Id: 1008 - SpriteName: "Blub" - Name: "Blub" - Lv: 8 - Hp: 1300 - Sp: 0 - Exp: 27 - JExp: 2 - AttackRange: 1 - Attack: [90, 100] - Def: 14 - Mdef: 3 - WalkMask: "WALK_WATER" - Stats: { - Str: 8 - Agi: 15 - Vit: 20 - Int: 1 - Dex: 35 - Luk: 20 - } - ViewRange: 1 - ChaseRange: 12 - Size: 1 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - Looter: true - Boss: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 500 - AttackDelay: 2150 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - Tentacles: 1800 - PinkBlobime: 2000 - Aquada: 1500 - SeaDrops: 1600 - Coral: 3000 - Pearl: 70 - } -}, -{ - Id: 1009 - SpriteName: "ToppyBlub" - Name: "Toppy Blub" - Lv: 11 - Hp: 1200 - Sp: 0 - Exp: 16 - JExp: 0 - AttackRange: 1 - Attack: [150, 180] - Def: 21 - Mdef: 3 - WalkMask: "WALK_WATER" - Stats: { - Str: 20 - Agi: 8 - Vit: 15 - Int: 1 - Dex: 40 - Luk: 13 - } - ViewRange: 1 - ChaseRange: 12 - Size: 1 - Race: 2 - Element: (1, 1) - 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 - } -}, -{ - Id: 1010 - SpriteName: "Crocotree" - Name: "Crocotree" - Lv: 10 - Hp: 1100 - Sp: 0 - Exp: 15 - JExp: 0 - AttackRange: 1 - Attack: [10, 10] - Def: 19 - Mdef: 3 - Stats: { - Str: 2 - Agi: 1 - Vit: 10 - Int: 1 - Dex: 1 - Luk: 20 - } - ViewRange: 1 - ChaseRange: 12 - Size: 0 - Race: 3 - Element: (2, 1) - MoveSpeed: 800 - AttackDelay: 800 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - HalfCroconut: 4200 - Croconut: 3300 - } -}, -{ - Id: 1011 - SpriteName: "PlushroomField" - Name: "Plushroom Field" - Lv: 1 - Hp: 50 - Sp: 0 - Exp: 0 - JExp: 0 - AttackRange: 1 - Attack: [0, 0] - Def: 0 - Mdef: 0 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 12 - Size: 2 - Race: 3 - Element: (2, 1) - MoveSpeed: 1000 - AttackDelay: 800 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - Plushroom: 7000 - MushroomSpores: 2000 - Moss: 300 - } -}, -{ - Id: 1012 - SpriteName: "Frostiana" - Name: "Frostiana" - Lv: 9 - Hp: 980 - Sp: 0 - Exp: 15 - JExp: 0 - AttackRange: 1 - Attack: [95, 100] - Def: 17 - Mdef: 2 - Stats: { - Str: 10 - Agi: 1 - Vit: 15 - Int: 1 - Dex: 40 - Luk: 5 - } - ViewRange: 1 - ChaseRange: 12 - Size: 2 - Race: 3 - Element: (2, 1) - Mode: { - Aggressive: true - CanAttack: true - } - MoveSpeed: 1000 - AttackDelay: 2400 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - MushroomSpores: 4000 - Moss: 700 - } -}, -{ - Id: 1013 - SpriteName: "Pikpik" - Name: "Pikpik" - Lv: 10 - Hp: 1120 - Sp: 0 - Exp: 16 - JExp: 0 - AttackRange: 0 - Attack: [65, 100] - Def: 19 - Mdef: 3 - Stats: { - Str: 5 - Agi: 1 - Vit: 10 - Int: 1 - Dex: 30 - Luk: 10 - } - ViewRange: 1 - ChaseRange: 12 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - Aggressive: true - CanAttack: true - } - MoveSpeed: 1000 - AttackDelay: 1872 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - UrchinMeat: 2000 - } -}, -{ - Id: 1014 - SpriteName: "CroconutMob" - Name: "CroconutMob" - Lv: 5 - Hp: 50 - Sp: 0 - Exp: 0 - JExp: 0 - AttackRange: 1 - Attack: [80, 95] - Def: 1 - Mdef: 0 - Stats: { - Str: 15 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 54 - Luk: 7 - } - ViewRange: 1 - ChaseRange: 12 - Size: 0 - Race: 3 - Element: (1, 1) - Mode: { - Aggressive: true - CanAttack: true - } - MoveSpeed: 1000 - AttackDelay: 800 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - HalfCroconut: 4200 - Croconut: 3300 - } -}, -{ - Id: 1015 - SpriteName: "Tipiu" - Name: "Tipiu" - Lv: 20 - Hp: 2200 - Sp: 0 - Exp: 42 - JExp: 2 - AttackRange: 1 - Attack: [75, 100] - Def: 46 - Mdef: 8 - WalkMask: "WALK_AIR" - Stats: { - Str: 10 - Agi: 5 - Vit: 20 - Int: 0 - Dex: 35 - Luk: 15 - } - ViewRange: 1 - ChaseRange: 1000 - Size: 0 - Race: 2 - Element: (4, 1) - Mode: { - CanMove: true - Aggressive: true - Assist: true - CanAttack: true - ChangeTargetMelee: true - ChangeChase: true - } - MoveSpeed: 200 - AttackDelay: 1120 - AttackMotion: 1672 - DamageMotion: 100 - Drops: { - PiouFeathers: 3700 - PiouLegs: 4000 - EasterEgg: 3000 - } -}, -{ - Id: 1016 - SpriteName: "Tipiou" - Name: "Tipiou" - Lv: 45 - Hp: 5000 - Sp: 0 - Exp: 340 - JExp: 9 - AttackRange: 1 - Attack: [220, 250] - Def: 28 - Mdef: 22 - WalkMask: "WALK_AIR" - Stats: { - Str: 15 - Agi: 5 - Vit: 15 - Int: 0 - Dex: 30 - Luk: 10 - } - ViewRange: 1 - ChaseRange: 12 - Size: 0 - Race: 2 - Element: (4, 1) - 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 - } -}, -{ - Id: 1017 - SpriteName: "MananaTree" - Name: "Manana Tree" - Lv: 5 - Hp: 600 - Sp: 0 - Exp: 9 - JExp: 0 - AttackRange: 1 - Attack: [10, 10] - Def: 15 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 10 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 12 - Size: 1 - Race: 3 - Element: (2, 1) - MoveSpeed: 1000 - AttackDelay: 800 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - Manana: 2500 - Manana: 1000 - } -}, -{ - Id: 1018 - SpriteName: "Crafty" - Name: "Crafty" - Lv: 7 - Hp: 760 - Sp: 0 - Exp: 12 - JExp: 1 - AttackRange: 1 - Attack: [25, 30] - Def: 12 - Mdef: 1 - Stats: { - Str: 4 - Agi: 30 - Vit: 20 - Int: 1 - Dex: 50 - Luk: 10 - } - ViewRange: 1 - ChaseRange: 1000 - Size: 0 - Race: 2 - Element: (4, 1) - Mode: { - CanMove: true - Looter: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 400 - AttackDelay: 800 - AttackMotion: 672 - DamageMotion: 270 - Drops: { - LeftCraftyWing: 4000 - RightCraftyWing: 4000 - BatTeeth: 4000 - } -}, -{ - Id: 1019 - SpriteName: "PumpkinMob" - Name: "PumpkinMob" - Lv: 1 - Hp: 1900 - Sp: 0 - Exp: 2 - JExp: 0 - AttackRange: 1 - Attack: [10, 10] - Def: 20 - Mdef: 0 - Stats: { - Str: 3 - Agi: 6 - Vit: 12 - Int: 1 - Dex: 1 - Luk: 5 - } - ViewRange: 1 - ChaseRange: 12 - Size: 0 - Race: 3 - Element: (2, 1) - MoveSpeed: 800 - AttackDelay: 800 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - PumpkinJuice: 5000 - PumpkinSeeds: 2000 - } -}, -{ - Id: 1020 - SpriteName: "Cuco" - Name: "Cuco" - Lv: 25 - Hp: 2700 - Sp: 0 - Exp: 37 - JExp: 0 - AttackRange: 1 - Attack: [150, 200] - Def: 60 - Mdef: 10 - Stats: { - Str: 20 - Agi: 1 - Vit: 40 - Int: 1 - Dex: 45 - Luk: 5 - } - ViewRange: 1 - ChaseRange: 1000 - Size: 0 - Race: 2 - Element: (4, 1) - Mode: { - CanMove: true - Looter: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 400 - AttackDelay: 1300 - AttackMotion: 672 - DamageMotion: 270 - Drops: { - Pumpkin: 10000 - PumpkinJuice: 5000 - PumpkinSeeds: 2000 - } -}, -{ - Id: 1021 - SpriteName: "Dummy" - Name: "Dummy" - Lv: 1 - Hp: 20 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 1 - Attack: [10, 10] - Def: 100 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 12 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1000 - AttackDelay: 800 - AttackMotion: 672 - DamageMotion: 480 -}, -{ - Id: 1022 - SpriteName: "Fluffy" - Name: "Fluffy" - Lv: 4 - Hp: 440 - Sp: 0 - Exp: 6 - JExp: 0 - AttackRange: 1 - Attack: [70, 90] - Def: 6 - Mdef: 0 - Stats: { - Str: 5 - Agi: 1 - Vit: 5 - Int: 1 - Dex: 25 - Luk: 5 - } - ViewRange: 1 - ChaseRange: 12 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 400 - AttackDelay: 2872 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - FluffyFur: 3500 - LettuceLeaf: 1500 - Moss: 800 - } -}, -{ - Id: 1023 - SpriteName: "Mouboo" - Name: "Mouboo" - Lv: 16 - Hp: 1600 - Sp: 0 - Exp: 24 - JExp: 0 - AttackRange: 2 - Attack: [300, 350] - Def: 35 - Mdef: 6 - Stats: { - Str: 25 - Agi: 5 - Vit: 30 - Int: 1 - Dex: 5 - Luk: 35 - } - ViewRange: 1 - ChaseRange: 20 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 300 - AttackDelay: 3200 - AttackMotion: 1400 - DamageMotion: 1200 - Drops: { - MoubooMilk: 1750 - MoubooSteak: 1000 - GrassSeeds: 100 - FlowerSeeds: 10 - } -}, -{ - Id: 1024 - SpriteName: "Slime" - Name: "Green Slime" - Lv: 10 - Hp: 1080 - Sp: 0 - Exp: 16 - JExp: 1 - AttackRange: 1 - Attack: [85, 100] - Def: 19 - Mdef: 3 - Stats: { - Str: 5 - Agi: 15 - Vit: 20 - Int: 1 - Dex: 35 - Luk: 10 - } - ViewRange: 2 - ChaseRange: 8 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - Aggressive: true - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 1100 - AttackDelay: 2462 - AttackMotion: 864 - DamageMotion: 1026 - Drops: { - MaggotSlime: 1000 - HalfEggshell: 200 - TreasureKey: 100 - EmptyBottle: 10 - Pearl: 1 - } -}, -{ - Id: 1025 - SpriteName: "LittleSlime" - Name: "Little Green Slime" - Lv: 8 - Hp: 700 - Sp: 0 - Exp: 12 - JExp: 0 - AttackRange: 1 - Attack: [75, 100] - Def: 14 - Mdef: 1 - Stats: { - Str: 5 - Agi: 10 - Vit: 15 - Int: 1 - Dex: 20 - Luk: 5 - } - ViewRange: 2 - ChaseRange: 8 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - Aggressive: true - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 1100 - AttackDelay: 2462 - AttackMotion: 864 - DamageMotion: 466 - Drops: { - MaggotSlime: 550 - } -}, -{ - Id: 1026 - SpriteName: "Maggot" - Name: "Maggot" - Lv: 10 - Hp: 1100 - Sp: 0 - Exp: 15 - 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: 400 - AttackDelay: 1976 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - MaggotSlime: 800 - BugLeg: 500 - RoastedMaggot: 100 - MaggotSlimePotion: 2 - } -}, -{ - Id: 1027 - SpriteName: "CaveMaggot" - Name: "Cave Maggot" - Lv: 12 - Hp: 1300 - Sp: 0 - Exp: 20 - JExp: 2 - AttackRange: 1 - Attack: [75, 100] - Def: 24 - Mdef: 4 - Stats: { - Str: 10 - Agi: 18 - Vit: 20 - Int: 1 - Dex: 15 - Luk: 15 - } - ViewRange: 3 - ChaseRange: 15 - Size: 0 - Race: 2 - Element: (5, 1) - Mode: { - Aggressive: true - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - Angry: true - } - MoveSpeed: 500 - AttackDelay: 1576 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - MaggotSlime: 1200 - BugLeg: 750 - RoastedMaggot: 200 - MaggotSlimePotion: 5 - } -}, -{ - Id: 1028 - SpriteName: "ForestMaggot" - Name: "Forest Maggot" - Lv: 13 - Hp: 1400 - Sp: 0 - Exp: 20 - JExp: 0 - AttackRange: 1 - Attack: [125, 150] - Def: 27 - Mdef: 5 - Stats: { - Str: 20 - Agi: 25 - Vit: 25 - Int: 1 - Dex: 20 - Luk: 20 - } - ViewRange: 5 - ChaseRange: 12 - Size: 0 - Race: 2 - Element: (5, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - Angry: true - } - MoveSpeed: 600 - AttackDelay: 1676 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - MaggotSlime: 1000 - BugLeg: 800 - RoastedMaggot: 250 - MaggotSlimePotion: 10 - } -}, -{ - Id: 1029 - SpriteName: "Bee" - Name: "Bee" - Lv: 5 - Hp: 540 - Sp: 0 - Exp: 11 - JExp: 0 - AttackRange: 1 - Attack: [85, 100] - Def: 8 - Mdef: 0 - WalkMask: "WALK_AIR" - Stats: { - Str: 20 - Agi: 65 - Vit: 15 - Int: 3 - Dex: 40 - Luk: 30 - } - ViewRange: 10 - ChaseRange: 20 - Size: 0 - Race: 2 - Element: (4, 1) - Mode: { - CanMove: true - CanAttack: true - ChangeChase: true - Assist: true - Angry: true - SurviveWithoutMaster: false - } - MoveSpeed: 90 - AttackDelay: 1600 - AttackMotion: 1000 - DamageMotion: 800 - Drops: { - BugLeg: 1000 - WaxChunk: 500 - ChocolateBar: 200 - Honey: 100 - } -}, -{ - Id: 1030 - SpriteName: "Pinkie" - Name: "Pinkie" - Lv: 12 - Hp: 1300 - Sp: 0 - Exp: 19 - JExp: 1 - AttackRange: 1 - Attack: [235, 250] - Def: 32 - Mdef: 5 - Stats: { - Str: 5 - Agi: 10 - Vit: 15 - Int: 5 - Dex: 15 - Luk: 20 - } - ViewRange: 3 - ChaseRange: 10 - Size: 0 - Race: 2 - Element: (5, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - Angry: true - } - MoveSpeed: 700 - AttackDelay: 2500 - AttackMotion: 600 - DamageMotion: 200 - Drops: { - PinkAntennae: 3000 - BugLeg: 2000 - Blueberries: 1000 - BlueberryCake: 10 - } -}, -{ - Id: 1031 - SpriteName: "LogHead" - Name: "Log Head" - Lv: 15 - Hp: 1625 - Sp: 0 - Exp: 21 - JExp: 0 - AttackRange: 1 - Attack: [235, 250] - Def: 32 - Mdef: 5 - Stats: { - Str: 30 - Agi: 5 - Vit: 10 - Int: 5 - Dex: 10 - Luk: 15 - } - ViewRange: 4 - ChaseRange: 8 - Size: 0 - Race: 2 - Element: (5, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - Angry: true - } - MoveSpeed: 1500 - AttackDelay: 2500 - AttackMotion: 800 - DamageMotion: 600 - Drops: { - Acorn: 3500 - RawLog: 2500 - Moss: 1000 - } -}, -{ - Id: 1032 - SpriteName: "Butterfly" - Name: "Butterfly" - Lv: 11 - Hp: 1200 - Sp: 0 - Exp: 18 - JExp: 0 - AttackRange: 1 - Attack: [75, 100] - Def: 24 - Mdef: 4 - WalkMask: "WALK_AIR" - Stats: { - Str: 5 - Agi: 60 - Vit: 15 - Int: 3 - Dex: 25 - Luk: 30 - } - ViewRange: 4 - ChaseRange: 15 - Size: 0 - Race: 2 - Element: (5, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 200 - AttackDelay: 1600 - AttackMotion: 700 - DamageMotion: 850 - Drops: { - BugLeg: 5000 - AlizarinHerb: 1000 - CobaltHerb: 500 - MauveHerb: 100 - } -}, -{ - Id: 1033 - SpriteName: "CloverPatch" - Name: "Clover Patch" - Lv: 1 - Hp: 1 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 1 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1 - Drops: { - GrassSeeds: 2000 - FlowerSeeds: 100 - } -}, -{ - Id: 1034 - SpriteName: "PinkFlower" - Name: "Pink Flower" - Lv: 15 - Hp: 1500 - Sp: 0 - Exp: 23 - JExp: 0 - AttackRange: 2 - Attack: [15, 20] - Def: 20 - Mdef: 10 - Stats: { - Str: 5 - Agi: 1 - Vit: 10 - Int: 10 - Dex: 20 - Luk: 40 - } - ViewRange: 8 - ChaseRange: 12 - Size: 1 - Race: 2 - Element: (2, 1) - Mode: { - CanAttack: true - } - MoveSpeed: 100 - AttackDelay: 250 - AttackMotion: 750 - DamageMotion: 550 - Drops: { - PinkPetal: 1000 - PinkPetal: 200 - } -}, -{ - Id: 1035 - SpriteName: "ManaBug" - Name: "Mana Bug" - Lv: 15 - Hp: 1580 - Sp: 0 - Exp: 28 - JExp: 2 - AttackRange: 1 - Attack: [90, 100] - Def: 32 - Mdef: 5 - WalkMask: "WALK_AIR" - Stats: { - Str: 5 - Agi: 25 - Vit: 20 - Int: 1 - Dex: 20 - Luk: 20 - } - ViewRange: 3 - ChaseRange: 15 - Size: 0 - Race: 2 - Element: (5, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - Assist: true - } - MoveSpeed: 300 - AttackDelay: 1800 - AttackMotion: 500 - DamageMotion: 700 - Drops: { - BugLeg: 7500 - MaggotSlime: 1000 - MaggotSlimePotion: 250 - Pearl: 10 - } -}, -{ - Id: 1036 - SpriteName: "MauvePlant" - Name: "Mauve Plant" - Lv: 1 - Hp: 1 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 1 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1 - Drops: { - MauveHerb: 3300 - MauveHerb: 3300 - MauveHerb: 2500 - } -}, -{ - Id: 1037 - SpriteName: "AlizarinPlant" - Name: "Alizarin Plant" - Lv: 1 - Hp: 1 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 1 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1 - Drops: { - AlizarinHerb: 3300 - AlizarinHerb: 3000 - AlizarinHerb: 2000 - } -}, -{ - Id: 1038 - SpriteName: "GambogePlant" - Name: "Gamboge Plant" - Lv: 1 - Hp: 1 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 1 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1 - Drops: { - GambogeHerb: 3300 - GambogeHerb: 2500 - GambogeHerb: 1800 - } -}, -{ - Id: 1039 - SpriteName: "CobaltPlant" - Name: "Cobalt Plant" - Lv: 1 - Hp: 1 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 1 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1 - Drops: { - CobaltHerb: 2500 - CobaltHerb: 1800 - CobaltHerb: 1500 - } -}, -{ - Id: 1040 - SpriteName: "Silkworm" - Name: "Silkworm" - Lv: 10 - Hp: 10 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 1 - Attack: [1, 10] - Def: 5 - Mdef: 0 - Stats: { - Str: 1 - Agi: 10 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 10 - } - ViewRange: 3 - ChaseRange: 5 - Size: 0 - Race: 2 - Element: (5, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 1200 - AttackDelay: 2500 - AttackMotion: 1200 - DamageMotion: 600 - Drops: { - SilkCocoon: 3500 - SilkCocoon: 500 - } -}, -{ - Id: 1041 - SpriteName: "Squirrel" - Name: "Squirrel" - Lv: 11 - Hp: 1180 - Sp: 0 - Exp: 16 - JExp: 0 - AttackRange: 1 - Attack: [55, 75] - Def: 21 - Mdef: 3 - Stats: { - Str: 15 - Agi: 25 - Vit: 10 - Int: 5 - Dex: 25 - Luk: 25 - } - ViewRange: 1 - ChaseRange: 12 - Size: 0 - Race: 2 - Element: (5, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 350 - AttackDelay: 895 - AttackMotion: 750 - DamageMotion: 600 - Drops: { - Acorn: 3500 - CobaltHerb: 1000 - MauveHerb: 1000 - SquirrelMeat: 750 - } -}, -{ - Id: 1042 - SpriteName: "GrassSnake" - Name: "Grass Snake" - Lv: 20 - Hp: 2200 - Sp: 0 - Exp: 30 - JExp: 4 - AttackRange: 1 - Attack: [75, 100] - Def: 46 - Mdef: 8 - Stats: { - Str: 20 - Agi: 30 - Vit: 20 - Int: 1 - Dex: 50 - Luk: 20 - } - ViewRange: 1 - ChaseRange: 15 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 400 - AttackDelay: 800 - AttackMotion: 400 - DamageMotion: 380 - Drops: { - SnakeSkin: 500 - SnakeTongue: 500 - SnakeScale: 10 - } -}, -{ - Id: 1043 - SpriteName: "Scorpion" - Name: "Scorpion" - Lv: 14 - Hp: 1500 - Sp: 0 - Exp: 21 - JExp: 2 - AttackRange: 1 - Attack: [110, 150] - Def: 35 - Mdef: 6 - Stats: { - Str: 25 - Agi: 15 - Vit: 40 - Int: 1 - Dex: 20 - Luk: 10 - } - ViewRange: 1 - ChaseRange: 12 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 500 - AttackDelay: 1250 - AttackMotion: 800 - DamageMotion: 500 - Drops: { - RightScorpionClaw: 1000 - LeftScorpionClaw: 1000 - ScorpionStinger: 500 - } -}, -{ - Id: 1044 - SpriteName: "Spider" - Name: "Spider" - Lv: 22 - Hp: 2350 - Sp: 0 - Exp: 29 - JExp: 4 - AttackRange: 1 - Attack: [140, 150] - Def: 52 - Mdef: 9 - Stats: { - Str: 18 - Agi: 32 - Vit: 16 - Int: 1 - Dex: 25 - Luk: 20 - } - ViewRange: 1 - ChaseRange: 12 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 700 - AttackDelay: 1400 - AttackMotion: 500 - DamageMotion: 300 - Drops: { - BugLeg: 2500 - TreasureKey: 500 - Lockpicks: 100 - } -}, -{ - Id: 1045 - SpriteName: "DiamondVein" - Name: "Diamond Vein" - Lv: 1 - Hp: 20 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 0 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1 - Drops: { - DiamondShard: 500 - CrudeDiamond: 100 - } - WeaponAttacks: { - All: 0 - Daggers: 2500 - 1HSwords: 3300 - 1HAxes: 5000 - 2HSwords: 5000 - 2HAxes: 6600 - 2HMaces: 7500 - Katars: 10000 - } -}, -{ - Id: 1046 - SpriteName: "GoldVein" - Name: "Gold Vein" - Lv: 1 - Hp: 15 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 0 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1 - Drops: { - GoldNuggets: 1000 - } - WeaponAttacks: { - All: 0 - Daggers: 2500 - 1HSwords: 3300 - 1HAxes: 5000 - 2HSwords: 5000 - 2HAxes: 6600 - 2HMaces: 7500 - Katars: 10000 - } -}, -{ - Id: 1047 - SpriteName: "IronVein" - Name: "Iron Vein" - Lv: 1 - Hp: 10 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 0 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1 - Drops: { - IronOre: 2500 - } - WeaponAttacks: { - All: 0 - Daggers: 2500 - 1HSwords: 3300 - 1HAxes: 5000 - 2HSwords: 5000 - 2HAxes: 6600 - 2HMaces: 7500 - Katars: 10000 - } -}, -{ - Id: 1048 - SpriteName: "CoalVein" - Name: "Coal Vein" - Lv: 1 - Hp: 7 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 0 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1 - Drops: { - Coal: 5000 - } - WeaponAttacks: { - All: 0 - Daggers: 2500 - 1HSwords: 3300 - 1HAxes: 5000 - 2HSwords: 5000 - 2HAxes: 6600 - 2HMaces: 7500 - Katars: 10000 - } -}, -{ - Id: 1049 - SpriteName: "SpikyMushroom" - Name: "Spiky Mushroom" - Lv: 19 - Hp: 2050 - Sp: 0 - Exp: 32 - JExp: 0 - AttackRange: 1 - Attack: [45, 50] - Def: 43 - Mdef: 7 - Stats: { - Str: 10 - Agi: 5 - Vit: 35 - Int: 10 - Dex: 25 - Luk: 25 - } - ViewRange: 1 - ChaseRange: 12 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - Assist: true - } - MoveSpeed: 800 - AttackDelay: 600 - AttackMotion: 700 - DamageMotion: 600 - Drops: { - HardSpike: 1000 - SmallMushroom: 800 - Fungus: 50 - } -}, -{ - Id: 1050 - SpriteName: "WickedMushroom" - Name: "Wicked Mushroom" - Lv: 26 - Hp: 2800 - Sp: 0 - Exp: 37 - JExp: 3 - AttackRange: 1 - Attack: [60, 100] - Def: 64 - Mdef: 11 - Stats: { - Str: 10 - Agi: 5 - Vit: 40 - Int: 10 - Dex: 25 - Luk: 25 - } - ViewRange: 1 - ChaseRange: 12 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 800 - AttackDelay: 600 - AttackMotion: 700 - DamageMotion: 600 - Drops: { - MushroomSpores: 2000 - SmallMushroom: 1000 - Curshroom: 330 - } -}, -{ - Id: 1051 - SpriteName: "RubyVein" - Name: "Ruby Vein" - Lv: 1 - Hp: 20 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 0 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1 - Drops: { - RubyShard: 500 - CrudeRuby: 100 - } - WeaponAttacks: { - All: 0 - Daggers: 2500 - 1HSwords: 3300 - 1HAxes: 5000 - 2HSwords: 5000 - 2HAxes: 6600 - 2HMaces: 7500 - Katars: 10000 - } -}, -{ - Id: 1052 - SpriteName: "EmeraldVein" - Name: "Emerald Vein" - Lv: 1 - Hp: 20 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 0 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1 - Drops: { - EmeraldShard: 500 - CrudeEmerald: 100 - } - WeaponAttacks: { - All: 0 - Daggers: 2500 - 1HSwords: 3300 - 1HAxes: 5000 - 2HSwords: 5000 - 2HAxes: 6600 - 2HMaces: 7500 - Katars: 10000 - } -}, -{ - Id: 1053 - SpriteName: "SapphireVein" - Name: "Sapphire Vein" - Lv: 1 - Hp: 25 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 0 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1 - Drops: { - SapphireShard: 450 - CrudeSapphire: 95 - } - WeaponAttacks: { - All: 0 - Daggers: 2500 - 1HSwords: 3300 - 1HAxes: 5000 - 2HSwords: 5000 - 2HAxes: 6600 - 2HMaces: 7500 - Katars: 10000 - } -}, -{ - Id: 1054 - SpriteName: "TopazVein" - Name: "Topaz Vein" - Lv: 1 - Hp: 20 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 0 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1 - Drops: { - TopazShard: 500 - CrudeTopaz: 100 - } - WeaponAttacks: { - All: 0 - Daggers: 2500 - 1HSwords: 3300 - 1HAxes: 5000 - 2HSwords: 5000 - 2HAxes: 6600 - 2HMaces: 7500 - Katars: 10000 - } -}, -{ - Id: 1055 - SpriteName: "AmethystVein" - Name: "Amethyst Vein" - Lv: 1 - Hp: 22 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 0 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1 - Drops: { - AmethystShard: 475 - CrudeAmethyst: 98 - } - WeaponAttacks: { - All: 0 - Daggers: 2500 - 1HSwords: 3300 - 1HAxes: 5000 - 2HSwords: 5000 - 2HAxes: 6600 - 2HMaces: 7500 - Katars: 10000 - } -}, -{ - Id: 1056 - SpriteName: "Beehive" - Name: "Beehive" - Lv: 1 - Hp: 10 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 1 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 5 - ChaseRange: 15 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1 - Drops: { - WaxChunk: 7500 - Honey: 5000 - RoastedMaggot: 1000 - } -}, -{ - Id: 1058 - SpriteName: "BadBee" - Name: "Bad Bee" - Lv: 15 - Hp: 1600 - Sp: 0 - Exp: 33 - JExp: 0 - AttackRange: 1 - Attack: [100, 120] - Def: 32 - Mdef: 5 - WalkMask: "WALK_AIR" - Stats: { - Str: 25 - Agi: 55 - Vit: 15 - Int: 1 - Dex: 35 - Luk: 30 - } - ViewRange: 10 - ChaseRange: 20 - Size: 0 - Race: 2 - Element: (4, 1) - Mode: { - CanMove: true - CanAttack: true - ChangeChase: true - Assist: true - Angry: true - Aggressive: true - } - MoveSpeed: 105 - AttackDelay: 1200 - AttackMotion: 750 - DamageMotion: 750 - Drops: { - BugLeg: 2000 - WaxChunk: 1000 - Honey: 200 - ChocolateBar: 100 - } -}, -{ - Id: 1059 - SpriteName: "YellowTulip" - Name: "Yellow Tulip" - Lv: 1 - Hp: 1 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 1 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1000 - Drops: { - AYellowTulip: 500 - } -}, -{ - Id: 1060 - SpriteName: "YellowRose" - Name: "Yellow Rose" - Lv: 1 - Hp: 1 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 1 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1000 - Drops: { - AYellowRose: 500 - } -}, -{ - Id: 1061 - SpriteName: "BlueRose" - Name: "Blue Rose" - Lv: 1 - Hp: 1 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 1 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1000 - Drops: { - ABlueRose: 200 - ABlueRose: 50 - } -}, -{ - Id: 1062 - SpriteName: "RedRose" - Name: "Red Rose" - Lv: 1 - Hp: 1 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 1 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1000 - Drops: { - ARedRose: 500 - ARedRose: 100 - ARedRose: 50 - } -}, -{ - Id: 1063 - SpriteName: "Bandit" - Name: "Bandit" - Lv: 26 - Hp: 2800 - Sp: 0 - Exp: 48 - JExp: 6 - AttackRange: 1 - Attack: [120, 150] - Def: 64 - Mdef: 10 - 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: { - CoinBag: 500 - BottleOfWater: 250 - TreasureKey: 200 - Dagger: 10 - BanditBoots: 2 - BanditTrousers: 1 - BanditHood: 1 - } -}, -{ - Id: 1064 - SpriteName: "RobinBandit" - Name: "Robin Bandit" - Lv: 35 - Hp: 3400 - Sp: 0 - Exp: 140 - JExp: 12 - AttackRange: 5 - Attack: [149, 152] - Def: 90 - 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: { - TrainingArrow: 5000 - TrainingArrow: 1000 - TrainingArrow: 500 - EmptyBottle: 500 - CoinBag: 500 - TreasureKey: 200 - BanditTrousers: 1 - BanditHood: 1 - BanditGloves: 1 - } -}, -{ - Id: 1065 - SpriteName: "BanditLord" - Name: "Bandit Lord" - Lv: 55 - Hp: 12000 - Sp: 0 - Exp: 500 - JExp: 60 - AttackRange: 5 - Attack: [572, 600] - Def: 40 - Mdef: 44 - 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: { - TreasureKey: 2000 - CoinBag: 750 - Dagger: 150 - BanditShawl: 10 - BanditTrousers: 5 - BanditHood: 5 - } -}, -{ - Id: 1066 - SpriteName: "LegionSwordswoman" - Name: "Legion Swordswoman" - Lv: 20 - Hp: 2220 - Sp: 0 - Exp: 27 - JExp: 3 - AttackRange: 1 - Attack: [75, 100] - Def: 46 - Mdef: 7 - Stats: { - Str: 15 - Agi: 10 - Vit: 25 - Int: 5 - Dex: 20 - Luk: 10 - } - ViewRange: 6 - ChaseRange: 9 - Race: 2 - Element: (7, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 280 - AttackDelay: 870 - AttackMotion: 672 - DamageMotion: 400 - Drops: { - SmallHealing: 1000 - CoinBag: 500 - ShortSword: 1 - } -}, -{ - Id: 1067 - SpriteName: "LegionHalberdier" - Name: "Legion Halberdier" - Lv: 22 - Hp: 2200 - Sp: 0 - Exp: 30 - JExp: 4 - AttackRange: 2 - Attack: [200, 240] - Def: 50 - Mdef: 9 - Stats: { - Str: 10 - Agi: 5 - Vit: 30 - Int: 5 - Dex: 40 - Luk: 10 - } - ViewRange: 6 - ChaseRange: 9 - Race: 2 - Element: (7, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 380 - AttackDelay: 2170 - AttackMotion: 954 - DamageMotion: 620 - Drops: { - CoinBag: 500 - IronPotion: 100 - Halberd: 1 - } -}, -{ - Id: 1068 - SpriteName: "LegionLieutenant" - Name: "Legion Lieutenant" - Lv: 30 - Hp: 2900 - Sp: 0 - Exp: 75 - JExp: 8 - AttackRange: 2 - Attack: [125, 150] - Def: 60 - Mdef: 14 - Stats: { - Str: 20 - Agi: 30 - Vit: 20 - Int: 10 - Dex: 40 - Luk: 10 - } - ViewRange: 6 - ChaseRange: 9 - Race: 2 - Element: (7, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 260 - AttackDelay: 870 - AttackMotion: 454 - DamageMotion: 420 - Drops: { - CoinBag: 1500 - TreasureMap: 200 - ConcPotion: 250 - LegionIronArmor: 1 - LongSword: 1 - } -}, -{ - Id: 1069 - SpriteName: "GemVeinbloc" - Name: "Gem Veinbloc" - Lv: 1 - Hp: 20 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 0 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1 - Drops: { - CrudeDiamond: 45 - CrudeAmethyst: 23 - CrudeSapphire: 15 - CrudeRuby: 98 - CrudeTopaz: 68 - CrudeEmerald: 40 - Coal: 1500 - IronOre: 500 - GoldNuggets: 100 - } - WeaponAttacks: { - All: 0 - Daggers: 2500 - 1HSwords: 3300 - 1HAxes: 5000 - 2HSwords: 5000 - 2HAxes: 6600 - 2HMaces: 7500 - Katars: 10000 - } -}, -{ - Id: 1070 - SpriteName: "GoldVeinbloc" - Name: "Gold Veinbloc" - Lv: 1 - Hp: 15 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 0 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1 - Drops: { - GoldNuggets: 500 - Coal: 2500 - IronOre: 1250 - DiamondShard: 150 - AmethystShard: 75 - SapphireShard: 50 - } - WeaponAttacks: { - All: 0 - Daggers: 2500 - 1HSwords: 3300 - 1HAxes: 5000 - 2HSwords: 5000 - 2HAxes: 6600 - 2HMaces: 7500 - Katars: 10000 - } -}, -{ - Id: 1071 - SpriteName: "CoalVeinbloc" - Name: "Coal Veinbloc" - Lv: 1 - Hp: 7 - Sp: 0 - Exp: 1 - JExp: 0 - AttackRange: 0 - Attack: [0, 0] - Def: 1 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 1 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - } - MoveSpeed: 1 - AttackDelay: 1 - AttackMotion: 1 - DamageMotion: 1 - Drops: { - Coal: 3500 - IronOre: 1000 - RubyShard: 350 - TopazShard: 250 - EmeraldShard: 200 - } - WeaponAttacks: { - All: 0 - Daggers: 2500 - 1HSwords: 3300 - 1HAxes: 5000 - 2HSwords: 5000 - 2HAxes: 6600 - 2HMaces: 7500 - Katars: 10000 - } -}, -{ - Id: 1072 - SpriteName: "Moubi" - Name: "Moubi" - Lv: 26 - Hp: 3600 - Sp: 0 - Exp: 69 - JExp: 0 - AttackRange: 2 - Attack: [690, 960] - Def: 96 - Mdef: 69 - Stats: { - Str: 29 - Agi: 9 - Vit: 9 - Int: 6 - Dex: 9 - Luk: 69 - } - ViewRange: 6 - ChaseRange: 9 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 300 - AttackDelay: 3200 - AttackMotion: 1400 - DamageMotion: 1200 - Drops: { - Pearl: 100 - MagicFeather: 10 - CopperNecklace: 1 - } -}, -{ - Id: 1073 - SpriteName: "YellowSlime" - Name: "Yellow Slime" - Lv: 10 - Hp: 1050 - Sp: 0 - Exp: 15 - JExp: 0 - AttackRange: 1 - Attack: [90, 100] - Def: 19 - Mdef: 3 - Stats: { - Str: 5 - Agi: 15 - Vit: 20 - Int: 1 - Dex: 35 - Luk: 10 - } - ViewRange: 8 - ChaseRange: 8 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: false - Looter: true - } - MoveSpeed: 330 - AttackDelay: 2462 - AttackMotion: 864 - DamageMotion: 1026 - Drops: { - MaggotSlime: 800 - Moss: 400 - TopazShard: 200 - GoldNuggets: 10 - } -}, -{ - Id: 1074 - SpriteName: "RedSlime" - Name: "Red Slime" - Lv: 15 - Hp: 1650 - Sp: 0 - Exp: 15 - JExp: 0 - AttackRange: 1 - Attack: [90, 100] - Def: 19 - Mdef: 3 - Stats: { - Str: 15 - Agi: 15 - Vit: 30 - Int: 1 - Dex: 35 - Luk: 10 - } - ViewRange: 8 - ChaseRange: 8 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: false - } - MoveSpeed: 320 - AttackDelay: 2262 - AttackMotion: 764 - DamageMotion: 826 - Drops: { - RedApple: 1000 - MaggotSlime: 800 - Moss: 400 - RubyShard: 200 - CoinBag: 10 - } -}, -{ - Id: 1075 - SpriteName: "Snake" - Name: "Snake" - Lv: 25 - Hp: 2640 - Sp: 0 - Exp: 45 - JExp: 5 - AttackRange: 1 - Attack: [150, 225] - Def: 55 - Mdef: 10 - Stats: { - Str: 25 - Agi: 35 - Vit: 25 - Int: 5 - Dex: 50 - Luk: 20 - } - ViewRange: 1 - ChaseRange: 15 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 260 - AttackDelay: 1000 - AttackMotion: 750 - DamageMotion: 1120 - Drops: { - SnakeSkin: 750 - SnakeTongue: 750 - SnakeScale: 20 - } -}, -{ - Id: 1076 - SpriteName: "GiantMaggot" - Name: "Giant Maggot" - Lv: 20 - Hp: 2407 - Sp: 0 - Exp: 63 - JExp: 5 - AttackRange: 1 - Attack: [300, 450] - Def: 23 - Mdef: 44 - Stats: { - Str: 10 - Agi: 30 - Vit: 35 - Int: 1 - Dex: 30 - Luk: 20 - } - ChaseRange: 12 - Race: 2 - Element: (0, 2) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 1900 - AttackDelay: 2700 - AttackMotion: 672 - DamaeMotion: 480 - Drops: { - BugLeg: 3500 - Carrot: 1000 - Moss: 900 - ConcPotion: 10 - } -}, -{ - Id: 1077 - SpriteName: "DesertSnake" - Name: "Desert Snake" - Lv: 35 - Hp: 3640 - Sp: 0 - Exp: 85 - JExp: 7 - AttackRange: 1 - Attack: [250, 425] - Def: 65 - Mdef: 10 - Stats: { - Str: 35 - Agi: 45 - Vit: 25 - Int: 5 - Dex: 60 - Luk: 25 - } - ViewRange: 1 - ChaseRange: 15 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 220 - AttackDelay: 1000 - AttackMotion: 750 - DamageMotion: 1120 - Drops: { - SnakeSkin: 1000 - SnakeTongue: 700 - SnakeScale: 33 - } -}, -{ - Id: 1078 - SpriteName: "DesertScorpion" - Name: "Desert Scorpion" - Lv: 28 - Hp: 3000 - Sp: 0 - Exp: 44 - JExp: 5 - AttackRange: 1 - Attack: [220, 350] - Def: 40 - Mdef: 15 - Stats: { - Str: 45 - Agi: 15 - Vit: 50 - Int: 1 - Dex: 30 - Luk: 20 - } - ViewRange: 7 - ChaseRange: 12 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 400 - AttackDelay: 1250 - AttackMotion: 800 - DamageMotion: 500 - Drops: { - RightScorpionClaw: 1500 - LeftScorpionClaw: 1500 - ScorpionStinger: 750 - } -}, -{ - Id: 1079 - SpriteName: "BlackSlime" - Name: "Black Slime" - Lv: 25 - Hp: 2650 - Sp: 0 - Exp: 35 - JExp: 4 - AttackRange: 1 - Attack: [290, 400] - Def: 25 - Mdef: 5 - Stats: { - Str: 25 - Agi: 25 - Vit: 45 - Int: 1 - Dex: 35 - Luk: 20 - } - ViewRange: 8 - ChaseRange: 8 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: false - } - MoveSpeed: 320 - AttackDelay: 2262 - AttackMotion: 764 - DamageMotion: 826 - Drops: { - MaggotSlime: 800 - ChocolateBar: 100 - TreasureKey: 50 - TreasureMap: 10 - DeathPotion: 1 - } -}, -{ - Id: 1080 - SpriteName: "FireGoblin" - Name: "Fire Goblin" - Lv: 37 - Hp: 4042 - Sp: 0 - Exp: 75 - JExp: 8 - AttackRange: 1 - Attack: [396,499] - Def: 35 - Mdef: 25 - Stats: { - Str: 25 - Agi: 30 - Vit: 45 - Int: 1 - Dex: 25 - Luk: 15 - } - ChaseRange: 12 - Race: 2 - Element: (3, 1) - Mode: { - CanMove: true - CanAttack: true - ChangeChase: true - CastSensorChase: true - } - MoveSpeed: 600 - AttackDelay: 1872 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - PileOfAsh: 1000 - Coal: 750 - BugLeg: 400 - } -}, -{ - Id: 1081 - SpriteName: "BrotherhoodFighter" - Name: "Brotherhood Fighter" - Lv: 30 - Hp: 3220 - Sp: 0 - Exp: 37 - JExp: 6 - AttackRange: 1 - Attack: [175, 300] - Def: 50 - Mdef: 10 - Stats: { - Str: 45 - Agi: 20 - Vit: 20 - Int: 15 - Dex: 30 - Luk: 10 - } - ViewRange: 6 - ChaseRange: 9 - Race: 2 - Element: (7, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 270 - AttackDelay: 870 - AttackMotion: 672 - DamageMotion: 400 - Drops: { - CoinBag: 1000 - Bread: 500 - MediumHealing: 250 - Dagger: 20 - } -}, -{ - Id: 1082 - SpriteName: "BrotherhoodArcher" - Name: "Brotherhood Archer" - Lv: 32 - Hp: 3200 - Sp: 0 - Exp: 50 - JExp: 6 - AttackRange: 2 - Attack: [300, 440] - Def: 20 - Mdef: 20 - Stats: { - Str: 10 - Agi: 25 - Vit: 30 - Int: 5 - Dex: 60 - Luk: 10 - } - ViewRange: 6 - ChaseRange: 9 - Race: 2 - Element: (7, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 310 - AttackDelay: 2170 - AttackMotion: 954 - DamageMotion: 620 - Drops: { - IronArrow: 5000 - IronArrow: 2500 - CoinBag: 1000 - MediumHealing: 250 - ShortBow: 5 - } -}, -{ - Id: 1083 - SpriteName: "BrotherhoodLeader" - Name: "Brotherhood Leader" - Lv: 40 - Hp: 3900 - Sp: 0 - Exp: 110 - JExp: 13 - AttackRange: 2 - Attack: [425, 550] - Def: 70 - Mdef: 25 - Stats: { - Str: 30 - Agi: 40 - Vit: 30 - Int: 20 - Dex: 50 - Luk: 10 - } - ViewRange: 6 - ChaseRange: 9 - Race: 2 - Element: (7, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 240 - AttackDelay: 870 - AttackMotion: 454 - DamageMotion: 420 - Drops: { - CoinBag: 2500 - TreasureMap: 1000 - Bread: 1000 - MediumMana: 100 - Axe: 5 - } -}, -{ - Id: 1084 - SpriteName: "Skeleton" - Name: "Skeleton" - Lv: 38 - Hp: 4100 - Sp: 0 - Exp: 140 - JExp: 17 - AttackRange: 1 - Attack: [525, 650] - Def: 40 - Mdef: 10 - Stats: { - Str: 40 - Agi: 40 - Vit: 30 - Int: 20 - Dex: 50 - Luk: 10 - } - ViewRange: 7 - ChaseRange: 11 - Race: 2 - Element: (7, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 270 - AttackDelay: 1070 - AttackMotion: 570 - DamageMotion: 450 - Drops: { - Bone: 1500 - Skull: 750 - } -}, -{ - Id: 1085 - SpriteName: "MisterPrickel" - Name: "Mister Prickel" - Lv: 40 - Hp: 4407 - Sp: 0 - Exp: 130 - JExp: 11 - AttackRange: 1 - Attack: [400, 750] - 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: 5000 - BugLeg: 3500 - BottleOfWater: 1000 - GoldNuggets: 1 - } -}, -{ - Id: 1086 - SpriteName: "FrogSmall" - Name: "Small Frog" - Lv: 10 - Hp: 1100 - Sp: 0 - Exp: 15 - 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: { - Moss: 1000 - MaggotSlime: 1000 - BugLeg: 600 - Blueberries: 500 - } -}, -{ - Id: 1087 - SpriteName: "FrogBig" - Name: "Big Frog" - Lv: 10 - Hp: 1100 - Sp: 0 - Exp: 15 - 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: { - Moss: 1500 - MaggotSlime: 1000 - BugLeg: 900 - Blueberries: 700 - MaggotSlimePotion: 50 - SmallMana: 10 - } -}, -{ - Id: 1088 - SpriteName: "Bluepar" - Name: "Bluepar" - Lv: 20 - Hp: 2100 - Sp: 0 - Exp: 40 - JExp: 0 - AttackRange: 1 - Attack: [210, 340] - Def: 25 - Mdef: 20 - Stats: { - Str: 20 - Agi: 25 - Vit: 35 - Int: 5 - Dex: 5 - Luk: 50 - } - ViewRange: 3 - ChaseRange: 7 - Size: 0 - Race: 2 - Element: (5, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 1100 - AttackDelay: 1776 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - BugLeg: 600 - MaggotSlime: 500 - Blueberries: 500 - } -}, -{ - Id: 1091 - SpriteName: "JackO" - Name: "Jack-O" - Lv: 60 - Hp: 11100 - Sp: 200 - Exp: 1080 - JExp: 69 - AttackRange: 2 - Attack: [550, 850] - Def: 80 - Mdef: 80 - Stats: { - Str: 30 - Agi: 50 - Vit: 35 - Int: 50 - Dex: 25 - Luk: 25 - } - ViewRange: 10 - ChaseRange: 15 - Size: 0 - Race: 2 - Element: (5, 1) - Mode: { - Aggressive: true - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 300 - AttackDelay: 1225 - AttackMotion: 692 - DamageMotion: 652 - Drops: { - PumpkinSeeds: 3300 - PumpkinJuice: 2000 - Curshroom: 660 - Beer: 500 - MediumMana: 100 - } -}, -{ - Id: 1092 - SpriteName: "IceGoblin" - Name: "Ice Goblin" - Lv: 47 - Hp: 5042 - Sp: 0 - Exp: 95 - JExp: 12 - AttackRange: 1 - Attack: [500,620] - Def: 45 - Mdef: 35 - Stats: { - Str: 25 - Agi: 25 - Vit: 50 - Int: 1 - Dex: 35 - Luk: 15 - } - ChaseRange: 10 - Race: 2 - Element: (3, 1) - Mode: { - CanMove: true - CanAttack: true - ChangeChase: true - CastSensorChase: true - } - MoveSpeed: 500 - AttackDelay: 1672 - AttackMotion: 572 - DamageMotion: 380 - Drops: { - Aquada: 1000 - BugLeg: 400 - SapphireShard: 100 - CrudeSapphire: 10 - } -}, -{ - Id: 1093 - SpriteName: "Nutcracker" - Name: "Nutcracker" - Lv: 60 - Hp: 8900 - Sp: 0 - Exp: 1720 - JExp: 55 - AttackRange: 1 - Attack: [700, 850] - Def: 70 - Mdef: 25 - Stats: { - Str: 50 - Agi: 30 - Vit: 40 - Int: 10 - Dex: 30 - Luk: 50 - } - ViewRange: 6 - ChaseRange: 9 - Race: 2 - Element: (7, 1) - Mode: { - Aggressive: true - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 480 - AttackDelay: 870 - AttackMotion: 454 - DamageMotion: 420 - Drops: { - RoastedAcorn: 2500 - CherryCake: 1000 - LargeHealing: 100 - CrudeEmerald: 10 - CrudeAmethyst: 5 - } -}, -{ - Id: 1094 - SpriteName: "Penguin" - Name: "Penguin" - Lv: 41 - Hp: 3042 - Sp: 0 - Exp: 75 - JExp: 24 - AttackRange: 1 - Attack: [200,440] - Def: 35 - Mdef: 0 - Stats: { - Str: 45 - Agi: 15 - Vit: 50 - Int: 1 - Dex: 25 - Luk: 15 - } - ChaseRange: 8 - Race: 2 - Element: (3, 1) - Mode: { - CanMove: true - CanAttack: true - ChangeChase: true - CastSensorChase: true - } - MoveSpeed: 900 - AttackDelay: 1872 - AttackMotion: 572 - DamageMotion: 380 - Drops: { - RedApple: 1000 - BlueCoral: 750 - BugLeg: 500 - Donut: 100 - Pearl: 50 - } -}, -{ - Id: 1095 - SpriteName: "Reaper" - Name: "Reaper" - Lv: 80 - Hp: 22400 - Sp: 0 - Exp: 7560 - JExp: 420 - AttackRange: 6 - Attack: [1000, 1200] - Def: 90 - Mdef: 90 - Stats: { - Str: 60 - Agi: 80 - Vit: 30 - Int: 20 - Dex: 60 - Luk: 40 - } - ViewRange: 8 - ChaseRange: 13 - Size: 0 - Race: 2 - Element: (5, 1) - Mode: { - Aggressive: true - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 250 - AttackDelay: 625 - AttackMotion: 352 - DamageMotion: 552 - Drops: { - Runestones: 250 - GoldNuggets: 100 - Gems: 10 - Gems: 5 - Gems: 1 - } -}, -{ - Id: 1096 - SpriteName: "MudSlime" - Name: "Mud Slime" - Lv: 20 - Hp: 1650 - Sp: 0 - Exp: 25 - JExp: 3 - AttackRange: 1 - Attack: [190, 300] - Def: 25 - Mdef: 5 - Stats: { - Str: 25 - Agi: 25 - Vit: 45 - Int: 1 - Dex: 35 - Luk: 20 - } - ViewRange: 8 - ChaseRange: 8 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: false - } - MoveSpeed: 360 - AttackDelay: 1662 - AttackMotion: 764 - DamageMotion: 826 - Drops: { - MaggotSlime: 2000 - ChocolateBar: 1000 - IronOre: 500 - RotoniumOre: 3 - } -}, -{ - Id: 1097 - SpriteName: "GreenSlimeProgenitor" - Name: "Green Slime Progenitor" - 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: { - MaggotSlime: 3000 - TreasureKey: 100 - Emerald: 36 - ZealiteOre: 5 - } -}, -{ - Id: 1098 - SpriteName: "MudSlimeProgenitor" - Name: "Mud Slime Progenitor" - 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: { - MaggotSlime: 3500 - ChocolateBar: 2000 - CrudeGems: 50 - RotoniumOre: 5 - TerraniteOre: 1 - } -}, -{ - Id: 1099 - SpriteName: "YellowSlimeProgenitor" - Name: "Yellow Slime Progenitor" - 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: { - MaggotSlime: 2500 - TopazShard: 800 - GoldNuggets: 20 - Topaz: 22 - } -}, -{ - Id: 1100 - SpriteName: "PoisonSkull" - Name: "Poison Skull" - Lv: 50 - Hp: 5100 - Sp: 0 - Exp: 420 - JExp: 45 - AttackRange: 2 - Attack: [250, 300] - Def: 55 - Mdef: 25 - Stats: { - Str: 30 - Agi: 40 - Vit: 35 - Int: 35 - Dex: 45 - Luk: 15 - } - ViewRange: 8 - ChaseRange: 15 - Size: 0 - Race: 2 - Element: (5, 1) - Mode: { - Aggressive: true - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 800 - AttackDelay: 1025 - AttackMotion: 452 - DamageMotion: 652 - Drops: { - PoisonedArrow: 2000 - PoisonedArrow: 1000 - PoisonedArrow: 500 - Skull: 500 - } -}, -{ - Id: 1101 - SpriteName: "ManaGhost" - Name: "Mana Ghost" - Lv: 40 - Hp: 3900 - Sp: 0 - Exp: 180 - JExp: 25 - AttackRange: 2 - Attack: [120, 150] - Def: 90 - Mdef: 25 - Stats: { - Str: 20 - Agi: 50 - Vit: 50 - Int: 10 - Dex: 15 - Luk: 30 - } - ViewRange: 5 - ChaseRange: 8 - Size: 0 - Race: 2 - Element: (5, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 700 - AttackDelay: 625 - AttackMotion: 550 - DamageMotion: 450 - Drops: { - TreasureKey: 100 - Runestones: 10 - } -}, -{ - Id: 1102 - SpriteName: "GameBalance" - Name: "Game Balance" - Lv: 40 - Hp: 11000 - Sp: 0 - Exp: 380 - JExp: 35 - AttackRange: 2 - Attack: [260, 300] - Def: 75 - Mdef: 60 - Stats: { - Str: 20 - Agi: 50 - Vit: 50 - Int: 10 - Dex: 65 - Luk: 30 - } - ViewRange: 5 - ChaseRange: 8 - Size: 0 - Race: 2 - Element: (5, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - Boss: true - Angry: true - Aggressive: true - } - MoveSpeed: 350 - AttackDelay: 1625 - AttackMotion: 550 - DamageMotion: 450 - Drops: { - TreasureKey: 100 - Runestones: 10 - } -}, -{ - Id: 1103 - SpriteName: "AngryCrafty" - Name: "AngryCrafty" - Lv: 7 - Hp: 750 - Sp: 0 - Exp: 13 - JExp: 0 - AttackRange: 1 - Attack: [25, 50] - Def: 12 - Mdef: 4 - Stats: { - Str: 4 - Agi: 30 - Vit: 20 - Int: 1 - Dex: 50 - Luk: 10 - } - ViewRange: 7 - ChaseRange: 15 - Size: 0 - Race: 2 - Element: (4, 1) - Mode: { - CanMove: true - Looter: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - Angry: true - Aggressive: true - } - MoveSpeed: 400 - AttackDelay: 800 - AttackMotion: 672 - DamageMotion: 270 - Drops: { - LeftCraftyWing: 4000 - RightCraftyWing: 4000 - BatTeeth: 4000 - } -}, -{ - Id: 1104 - SpriteName: "BlackScorpion" - Name: "Black Scorpion" - Lv: 18 - Hp: 2000 - Sp: 0 - Exp: 26 - JExp: 2 - AttackRange: 1 - Attack: [120, 150] - Def: 35 - Mdef: 7 - Stats: { - Str: 25 - Agi: 15 - Vit: 40 - Int: 1 - Dex: 20 - Luk: 10 - } - ViewRange: 7 - ChaseRange: 12 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 500 - AttackDelay: 1250 - AttackMotion: 800 - DamageMotion: 500 - Drops: { - RightScorpionClaw: 2000 - LeftScorpionClaw: 2000 - BlackScorpionStinger: 750 - } -}, -{ - Id: 1105 - SpriteName: "ThiefSlime" - Name: "Thief Slime" - Lv: 10 - Hp: 1050 - Sp: 0 - Exp: 15 - JExp: 0 - AttackRange: 1 - Attack: [90, 100] - Def: 19 - Mdef: 3 - Stats: { - Str: 5 - Agi: 15 - Vit: 20 - Int: 1 - Dex: 35 - Luk: 10 - } - ViewRange: 8 - ChaseRange: 8 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: false - Looter: true - } - MoveSpeed: 320 - AttackDelay: 2462 - AttackMotion: 864 - DamageMotion: 1026 - Drops: { - MaggotSlime: 800 - Moss: 400 - BasicCottonDyes: 10 - ExtendedSilkDyes: 5 - } -}, -{ - Id: 1106 - SpriteName: "SpiderQueen" - Name: "Spider Queen" - Lv: 45 - Hp: 16000 - Sp: 0 - Exp: 1250 - JExp: 125 - AttackRange: 3 - Attack: [300, 350] - 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: 7500 - MaggotSlime: 5000 - SilverOre: 1000 - GoldOre: 500 - PlatinumOre: 100 - CrudeGems: 50 - } -}, -{ - Id: 1107 - SpriteName: "FireDummy" - Name: "Burning Dummy" - Lv: 1 - Hp: 20 - Sp: 1000 - Exp: 1 - JExp: 0 - AttackRange: 1 - Attack: [100, 100] - Def: 100 - Mdef: 1 - Stats: { - Str: 1 - Agi: 1 - Vit: 1 - Int: 1 - Dex: 1 - Luk: 1 - } - ViewRange: 1 - ChaseRange: 12 - Size: 1 - Race: 3 - Element: (2, 1) - Mode: { - Plant: true - Aggressive: true - CanAttack: true - } - MoveSpeed: 1000 - AttackDelay: 800 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - } -}, -{ - Id: 1109 - SpriteName: "Swampling" - Name: "Swampling" - Lv: 16 - Hp: 1600 - Sp: 0 - Exp: 24 - JExp: 0 - AttackRange: 2 - Attack: [300, 350] - Def: 35 - Mdef: 6 - Stats: { - Str: 25 - Agi: 5 - Vit: 30 - Int: 1 - Dex: 5 - Luk: 35 - } - ViewRange: 1 - ChaseRange: 20 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 300 - AttackDelay: 3200 - AttackMotion: 1400 - DamageMotion: 1200 - Drops: { - Tentacles: 1000 - CommonCarp: 750 - GrassCarp: 500 - Trout: 250 - CopperOre: 100 - MagicFeather: 50 - Pearl: 10 - } -}, -{ - Id: 1110 - SpriteName: "GoldenScorpion" - Name: "Golden Scorpion" - Lv: 40 - Hp: 18000 - Sp: 0 - Exp: 1600 - JExp: 200 - AttackRange: 2 - Attack: [470, 520] - Def: 90 - Mdef: 50 - Stats: { - Str: 30 - Agi: 30 - Vit: 50 - Int: 5 - Dex: 40 - Luk: 20 - } - ViewRange: 7 - ChaseRange: 12 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: true - ChangeChase: true - ChangeTargetMelee: true - CastSensorChase: true - Boss: true - } - MoveSpeed: 300 - AttackDelay: 872 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - BugLeg: 4000 - RightScorpionClaw: 2500 - LeftScorpionClaw: 2500 - GoldenScorpionStinger: 1500 - GoldOre: 50 - GoldNuggets: 10 - } -}, -{ - Id: 1111 - SpriteName: "SnowFlower" - Name: "Snow Flower" - Lv: 15 - Hp: 1500 - Sp: 0 - Exp: 23 - JExp: 0 - AttackRange: 2 - Attack: [15, 20] - Def: 20 - Mdef: 10 - Stats: { - Str: 5 - Agi: 1 - Vit: 10 - Int: 10 - Dex: 20 - Luk: 40 - } - ViewRange: 8 - ChaseRange: 12 - Size: 1 - Race: 2 - Element: (2, 1) - Mode: { - CanAttack: true - } - MoveSpeed: 100 - AttackDelay: 250 - AttackMotion: 750 - DamageMotion: 550 - Drops: { - CobaltHerb: 1000 - AlizarinHerb: 1000 - GambogeHerb: 1000 - MauveHerb: 1000 - FlowerSeeds: 500 - } -}, -{ - Id: 1112 - SpriteName: "DemonicSpirit" - Name: "Demonic Spirit" - Lv: 65 - Hp: 4640 - Sp: 0 - Exp: 205 - JExp: 13 - AttackRange: 1 - Attack: [450, 625] - Def: 65 - Mdef: 10 - Stats: { - Str: 55 - Agi: 65 - Vit: 45 - Int: 5 - Dex: 50 - Luk: 10 - } - ViewRange: 1 - ChaseRange: 17 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - Aggressive: true - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 170 - AttackDelay: 800 - AttackMotion: 550 - DamageMotion: 620 -}, -{ - Id: 1113 - SpriteName: "Terranite" - Name: "Terranite" - Lv: 70 - Hp: 8900 - Sp: 0 - Exp: 1720 - JExp: 55 - AttackRange: 1 - Attack: [700, 850] - Def: 95 - Mdef: 25 - Stats: { - Str: 70 - Agi: 30 - Vit: 50 - Int: 10 - Dex: 30 - Luk: 50 - } - ViewRange: 7 - ChaseRange: 11 - Race: 2 - Element: (7, 1) - Mode: { - Aggressive: true - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 350 - AttackDelay: 870 - AttackMotion: 454 - DamageMotion: 420 - Drops: { - Coal: 1000 - TerraniteOre: 100 - CrudeGems: 50 - } -}, -{ - Id: 1114 - SpriteName: "Troll" - Name: "Troll" - Lv: 50 - Hp: 7900 - Sp: 0 - Exp: 320 - JExp: 23 - AttackRange: 4 - Attack: [500, 650] - Def: 50 - Mdef: 75 - Stats: { - Str: 40 - Agi: 20 - Vit: 30 - Int: 40 - Dex: 30 - Luk: 50 - } - ViewRange: 7 - ChaseRange: 12 - Race: 2 - Element: (7, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 500 - AttackDelay: 1070 - AttackMotion: 654 - DamageMotion: 420 - Drops: { - DiamondShard: 500 - RubyShard: 450 - TopazShard: 400 - EmeraldShard: 350 - AmethystShard: 300 - SapphireShard: 250 - CrudeGems: 100 - } -}, -{ - Id: 1115 - SpriteName: "FireWisp" - Name: "Fire Wisp" - 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: { - PileOfAsh: 1000 - } -}, -{ - Id: 1116 - SpriteName: "WaterWisp" - Name: "Water Wisp" - 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: { - SeaDrops: 1000 - Aquada: 500 - } -}, -{ - Id: 1117 - 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: { - MoubooSteak: 500 - WolvernPelt: 330 - ToothNecklace: 2 - } -}, -{ - Id: 1118 - SpriteName: "Zombie" - Name: "Zombie" - Lv: 45 - Hp: 5900 - Sp: 0 - Exp: 620 - JExp: 17 - AttackRange: 1 - Attack: [700, 850] - Def: 25 - Mdef: 50 - Stats: { - Str: 40 - Agi: 20 - Vit: 50 - Int: 1 - Dex: 20 - Luk: 70 - } - ViewRange: 5 - ChaseRange: 9 - Race: 2 - Element: (7, 1) - Mode: { - Aggressive: true - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 550 - AttackDelay: 1170 - AttackMotion: 754 - DamageMotion: 520 - Drops: { - CottonCloth: 2000 - LeatherPatch: 1500 - Bone: 1000 - Skull: 500 - } -}, -{ - Id: 1119 - SpriteName: "Serqet" - Name: "Serqet" - 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: { - BugLeg: 2500 - MaggotSlime: 1000 - ZealiteOre: 5 - } -}, -{ - Id: 1120 - SpriteName: "Tengu" - Name: "Tengu" - Lv: 80 - Hp: 12500 - Sp: 0 - Exp: 5000 - JExp: 100 - AttackRange: 2 - Attack: [470, 500] - Def: 70 - Mdef: 20 - Stats: { - Str: 70 - Agi: 20 - Vit: 40 - Int: 10 - Dex: 80 - Luk: 20 - } - ViewRange: 6 - ChaseRange: 12 - Size: 1 - Race: 2 - Element: (5, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - Boss: true - Angry: true - Aggressive: true - } - MoveSpeed: 170 - AttackDelay: 1200 - AttackMotion: 450 - DamageMotion: 850 - Drops: { - Blueberries: 1000 - IronOre: 250 - MediumMana: 100 - MagicFeather: 50 - PlatinumIngot: 10 - } -}, -{ - Id: 1121 - SpriteName: "Golem" - Name: "Golem" - Lv: 80 - Hp: 12500 - Sp: 0 - Exp: 5000 - JExp: 100 - AttackRange: 2 - Attack: [470, 500] - Def: 127 - Mdef: 40 - Stats: { - Str: 70 - Agi: 20 - Vit: 40 - Int: 10 - Dex: 80 - Luk: 20 - } - ViewRange: 6 - ChaseRange: 12 - Size: 1 - Race: 2 - Element: (5, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - Boss: false - Angry: true - Aggressive: true - } - MoveSpeed: 320 - AttackDelay: 4000 - AttackMotion: 2000 - DamageMotion: 2000 - Drops: { - Coal: 1000 - IronOre: 500 - Runestones: 200 - Runestones: 100 - Runestones: 50 - RotoniumOre: 10 - ZealiteOre: 2 - } -}, -{ - Id: 1122 - 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: { - } -}, -{ - Id: 1123 - 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: { - } -}, -{ - Id: 1124 - 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: { - } -}, -{ - Id: 1125 - SpriteName: "CraftyGhost" - Name: "Crafty Ghost" - Lv: 42 - Hp: 2400 - Sp: 0 - Exp: 70 - JExp: 5 - AttackRange: 1 - Attack: [250, 300] - Def: 12 - Mdef: 1 - Stats: { - Str: 25 - Agi: 50 - Vit: 40 - Int: 1 - Dex: 50 - Luk: 10 - } - ViewRange: 5 - ChaseRange: 100 - Size: 0 - Race: 2 - Element: (4, 1) - Mode: { - CanMove: true - Looter: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 400 - AttackDelay: 800 - AttackMotion: 672 - DamageMotion: 270 - Drops: { - } -}, -{ - Id: 1126 - SpriteName: "SnakeGhost" - Name: "Snake Ghost" - Lv: 50 - Hp: 4200 - Sp: 0 - Exp: 70 - JExp: 4 - AttackRange: 1 - Attack: [375, 400] - Def: 87 - Mdef: 15 - Stats: { - Str: 40 - Agi: 40 - Vit: 60 - Int: 1 - Dex: 50 - Luk: 20 - } - ViewRange: 5 - ChaseRange: 15 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 400 - AttackDelay: 800 - AttackMotion: 400 - DamageMotion: 380 - Drops: { - } -}, -{ - Id: 1127 - SpriteName: "ScorpionGhost" - Name: "Scorpion Ghost" - Lv: 55 - Hp: 6500 - Sp: 0 - Exp: 120 - JExp: 20 - AttackRange: 1 - Attack: [410, 550] - Def: 80 - Mdef: 20 - Stats: { - Str: 45 - Agi: 25 - Vit: 60 - Int: 1 - Dex: 30 - Luk: 10 - } - ViewRange: 4 - ChaseRange: 12 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 500 - AttackDelay: 1250 - AttackMotion: 800 - DamageMotion: 500 - Drops: { - } -}, -{ - Id: 1128 - SpriteName: "SpiderGhost" - Name: "Spider Ghost" - Lv: 46 - Hp: 4350 - Sp: 0 - Exp: 89 - JExp: 10 - AttackRange: 1 - Attack: [340, 450] - Def: 75 - Mdef: 10 - Stats: { - Str: 48 - Agi: 32 - Vit: 29 - Int: 1 - Dex: 35 - Luk: 35 - } - ViewRange: 5 - ChaseRange: 12 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: true - CastSensorChase: true - ChangeChase: true - } - MoveSpeed: 700 - AttackDelay: 1400 - AttackMotion: 500 - DamageMotion: 300 - Drops: { - } -}, -{ - Id: 1129 - SpriteName: "SkeletonGhost" - Name: "Skeleton Ghost" - Lv: 70 - Hp: 28000 - Sp: 0 - Exp: 2600 - JExp: 250 - AttackRange: 2 - Attack: [670, 820] - Def: 120 - Mdef: 50 - Stats: { - Str: 40 - Agi: 30 - Vit: 60 - Int: 20 - Dex: 40 - Luk: 40 - } - ViewRange: 7 - ChaseRange: 12 - Size: 0 - Race: 2 - Element: (1, 1) - Mode: { - CanMove: true - CanAttack: true - ChangeChase: true - ChangeTargetMelee: true - CastSensorChase: true - Boss: true - } - MoveSpeed: 220 - AttackDelay: 872 - AttackMotion: 672 - DamageMotion: 480 - Drops: { - } + Id: 1151 + SpriteName: "VoidFlower" + Name: "VoidFlower" + Lv: 115 + Hp: 7000 + Sp: 0 + Exp: 1068 + JExp: 40 + AttackRange: 12 + Attack: [400, 420] + Def: 0 + Mdef: 5 + Stats: { + Str: 16 + Agi: 12 + Vit: 20 + Int: 20 + Dex: 255 + Luk: 50 + } + ViewRange: 12 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 2000 + AttackMotion: 672 + DamageMotion: 180 + MvpExp: 0 + Drops: { + RedApple: 100 + EmptyBottle: 10 + Arrow: 100 + CoinBag: 400 + PinkPetal: 1000 + PinkPetal: 1000 + } }, +{ + Id: 1152 + SpriteName: "VoidArchant" + Name: "VoidArchant" + Lv: 130 + Hp: 6000 + Sp: 0 + Exp: 1598 + JExp: 14 + AttackRange: 1 + Attack: [140, 180] + Def: 36 + Mdef: 6 + Stats: { + Str: 10 + Agi: 5 + Vit: 1 + Int: 0 + Dex: 12 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (5, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 200 + MvpExp: 0 + Drops: { + TreasureKey: 300 + RedApple: 100 + IronOre: 40 + Coal: 20 + } +}, +{ + Id: 1153 + SpriteName: "VoidSlime" + Name: "VoidSlime" + Lv: 135 + Hp: 4144 + Sp: 0 + Exp: 6000 + JExp: 70 + AttackRange: 2 + Attack: [105, 160] + Def: 75 + Mdef: 40 + Stats: { + Str: 30 + Agi: 15 + Vit: 35 + Int: 10 + Dex: 70 + Luk: 250 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (3, 2) + Mode: { + CanMove: true + Looter: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 1100 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 200 + MvpExp: 0 + Drops: { + SlingBullet: 10000 + SulphurPowder: 2500 + IronOre: 1000 + PileOfAsh: 1000 + Coal: 1000 + TinyManaElixir: 500 + } +}, +{ + Id: 1154 + SpriteName: "VoidSnake" + Name: "VoidSnake" + Lv: 130 + Hp: 2000 + Sp: 0 + Exp: 541 + JExp: 63 + AttackRange: 1 + Attack: [80, 120] + Def: 4 + Mdef: 6 + Stats: { + Str: 20 + Agi: 40 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 45 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 320 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 200 + MvpExp: 0 + Drops: { + LeatherGloves: 20 + SnakeSkin: 350 + MountainSnakeEgg: 400 + MountainSnakeEgg: 400 + MountainSnakeTongue: 500 + } +}, +{ + Id: 1155 + SpriteName: "VoidBat" + Name: "VoidBat" + Lv: 100 + Hp: 400 + Sp: 0 + Exp: 81 + JExp: 3 + AttackRange: 1 + Attack: [10, 25] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 20 + Luk: 25 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (4, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 800 + CactusDrink: 150 + BugLeg: 400 + RoastedMaggot: 150 + Dagger: 70 + SharpKnife: 1 + BatWing: 3000 + BatTeeth: 2000 + } +}, +{ + Id: 1156 + SpriteName: "VoidMaggot" + Name: "VoidMaggot" + Lv: 100 + Hp: 400 + Sp: 0 + Exp: 74 + JExp: 1 + AttackRange: 1 + Attack: [10, 25] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 20 + Luk: 25 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (1, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 800 + CactusDrink: 150 + BugLeg: 400 + RoastedMaggot: 150 + CactusPotion: 70 + SharpKnife: 10 + } +}, +{ + Id: 1157 + SpriteName: "VoidSoldier" + Name: "VoidSoldier" + Lv: 120 + Hp: 8000 + Sp: 0 + Exp: 1957 + JExp: 663 + AttackRange: 7 + Attack: [20, 30] + Def: 5 + Mdef: 20 + Stats: { + Str: 40 + Agi: 3 + Vit: 25 + Int: 5 + Dex: 80 + Luk: 45 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 2) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 500 + AttackDelay: 1600 + AttackMotion: 672 + DamageMotion: 300 + MvpExp: 1198 + Drops: { + UndeadEar: 210 + UndeadEye: 210 + PurpleDye: 200 + DarkCrystal: 1000 + WarlordHelmet: 3 + WarlordPlate: 2 + LeatherGloves: 35 + DiseasedHeart: 500 + Soul: 500 + } +}, +{ + Id: 1158 + SpriteName: "VoidMouboo" + Name: "VoidMouboo" + Lv: 100 + Hp: 5000 + Sp: 0 + Exp: 1338 + JExp: 16 + AttackRange: 2 + Attack: [50, 65] + Def: 60 + Mdef: 5 + Stats: { + Str: 15 + Agi: 5 + Vit: 15 + Int: 0 + Dex: 40 + Luk: 10 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 600 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + CottonCloth: 1000 + CottonCloth: 500 + BottleOfWater: 750 + CottonCloth: 50 + ReedBundle: 500 + } +}, +{ + Id: 1159 + SpriteName: "VoidScorpionMob" + Name: "VoidScorpionMob" + Lv: 110 + Hp: 6000 + Sp: 0 + Exp: 1327 + JExp: 37 + AttackRange: 1 + Attack: [60, 90] + Def: 4 + Mdef: 6 + Stats: { + Str: 16 + Agi: 30 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 700 + AttackDelay: 1700 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + LeatherShirt: 150 + ChocolateBar: 100 + BugLeg: 800 + BlackScorpionStinger: 800 + } +}, +{ + Id: 1160 + SpriteName: "VoidShroom" + Name: "VoidShroom" + Lv: 110 + Hp: 5500 + Sp: 0 + Exp: 1223 + JExp: 30 + AttackRange: 3 + Attack: [70, 80] + Def: 4 + Mdef: 4 + Stats: { + Str: 16 + Agi: 12 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 550 + AttackDelay: 1700 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + HardSpike: 600 + Amethyst: 50 + IronPotion: 100 + SmallMushroom: 1000 + } +}, +{ + Id: 1161 + SpriteName: "Xakelbael" + Name: "Xakelbael" + Lv: 200 + Hp: 29999 + Sp: 280 + Exp: 999999 + JExp: 99999 + AttackRange: 9 + Attack: [90, 124] + Def: 74 + Mdef: 100 + Stats: { + Str: 199 + Agi: 2 + Vit: 199 + Int: 197 + Dex: 255 + Luk: 175 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 210 + AttackDelay: 672 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 + Drops: { + BlueRose: 10000 + } +}, + +//ID, Name, Jname, LV, HP, SP, EXP, JEXP, Range1, ATK1, ATK2, DEF, MDEF, STR, AGI, VIT, INT, DEX, LUK, Range2, Range3, Scale, Race, Element,Mode, Speed, Adelay, Amotion,Dmotion,Drop1id,Drop1per,Drop2id,Drop2%, Drop3id,Drop3%, Drop4id,Drop4%, Drop5id,Drop5%, Drop6id,Drop6%, Drop7id,Drop7%, Drop8id,Drop8%, Item1, Item2, MEXP, ExpPer, MVP1id, MVP1per,MVP2id, MVP2per,MVP3id, MVP3per,mutationcount,mutationstrength +{ + Id: 1005 + SpriteName: "GreenSlime" + Name: "GreenSlime" + Lv: 40 + Hp: 800 + Sp: 0 + Exp: 185 + JExp: 96 + AttackRange: 1 + Attack: [80, 120] + Def: 20 + Mdef: 30 + Stats: { + Str: 20 + Agi: 30 + Vit: 10 + Int: 10 + Dex: 30 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 1200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + CactusPotion: 200 + Emerald: 20 + CactusDrink: 100 + Dagger: 250 + SharpKnife: 200 + CoinBag: 500 + CasinoCoins: 500 + GreenApple: 750 + } +}, +{ + Id: 1016 + SpriteName: "RudolphSlime" + Name: "RudolphSlime" + Lv: 50 + Hp: 350 + Sp: 0 + Exp: 67 + JExp: 8 + AttackRange: 1 + Attack: [30, 35] + Def: 10 + Mdef: 7 + Stats: { + Str: 1 + Agi: 20 + Vit: 1 + Int: 0 + Dex: 30 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 1) + Mode: { + CanMove: true + Looter: true + CanAttack: true + } + MoveSpeed: 1000 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + DecorCandy: 800 + CandyCane: 500 + XmasCake: 200 + ChocolateBar: 300 + Candy: 600 + PurplePresentBox: 800 + BluePresentBox: 500 + } +}, +{ + Id: 1065 + SpriteName: "BanditLord" + Name: "BanditLord" + Lv: 40 + Hp: 2000 + Sp: 0 + Exp: 407 + JExp: 103 + AttackRange: 5 + Attack: [50, 50] + Def: 15 + Mdef: 15 + Stats: { + Str: 15 + Agi: 15 + Vit: 15 + Int: 15 + Dex: 15 + Luk: 15 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 400 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 900 + MvpExp: 0 +}, +{ + Id: 1080 + SpriteName: "BlueSpark" + Name: "BlueSpark" + Lv: 40 + Hp: 10000 + Sp: 0 + Exp: 2431 + JExp: 392 + AttackRange: 2 + Attack: [40, 40] + Def: 20 + Mdef: 40 + Stats: { + Str: 30 + Agi: 30 + Vit: 30 + Int: 30 + Dex: 30 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 190 + AttackDelay: 1500 + AttackMotion: 800 + DamageMotion: 800 + MvpExp: 0 +}, +{ + Id: 1081 + SpriteName: "RedSpark" + Name: "RedSpark" + Lv: 40 + Hp: 10000 + Sp: 0 + Exp: 2431 + JExp: 392 + AttackRange: 2 + Attack: [40, 40] + Def: 20 + Mdef: 40 + Stats: { + Str: 30 + Agi: 30 + Vit: 30 + Int: 30 + Dex: 30 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 190 + AttackDelay: 1500 + AttackMotion: 800 + DamageMotion: 800 + MvpExp: 0 +}, +{ + Id: 1086 + SpriteName: "FeyElement" + Name: "FeyElement" + Lv: 50 + Hp: 5000 + Sp: 0 + Exp: 12500 + JExp: 901 + AttackRange: 5 + Attack: [50, 125] + Def: 25 + Mdef: 50 + Stats: { + Str: 20 + Agi: 70 + Vit: 10 + Int: 20 + Dex: 80 + Luk: 1 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (4, 4) + Mode: { + CanMove: true + Aggressive: true + Boss: true + CanAttack: true + } + MoveSpeed: 330 + AttackDelay: 740 + AttackMotion: 672 + DamageMotion: 400 + MvpExp: 0 + Drops: { + BrokenDoll: 5000 + MauveHerb: 1000 + MauveHerb: 1000 + CobaltHerb: 1000 + CobaltHerb: 1000 + GambogeHerb: 1000 + GambogeHerb: 1000 + AlizarinHerb: 1000 + } +}, +{ + Id: 1088 + SpriteName: "Hyvern" + Name: "Hyvern" + Lv: 40 + Hp: 2250 + Sp: 0 + Exp: 572 + JExp: 346 + AttackRange: 1 + Attack: [50, 125] + Def: 0 + Mdef: 10 + Stats: { + Str: 10 + Agi: 45 + Vit: 5 + Int: 0 + Dex: 35 + Luk: 35 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (5, 4) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 250 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + HyvernStinger: 2000 + BugLeg: 1000 + Orange: 600 + IronArrow: 3000 + } +}, +{ + Id: 1090 + SpriteName: "Wolvern" + Name: "Wolvern" + Lv: 40 + Hp: 900 + Sp: 0 + Exp: 185 + JExp: 86 + AttackRange: 1 + Attack: [50, 80] + Def: 5 + Mdef: 5 + Stats: { + Str: 15 + Agi: 10 + Vit: 5 + Int: 0 + Dex: 20 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 425 + AttackDelay: 770 + AttackMotion: 500 + DamageMotion: 200 + MvpExp: 0 + Drops: { + WolvernTooth: 1000 + WolvernPelt: 400 + AnimalBones: 200 + Steak: 1300 + Snowball: 1800 + } +}, +{ + Id: 1091 + SpriteName: "BlueSlime" + Name: "BlueSlime" + Lv: 40 + Hp: 2000 + Sp: 0 + Exp: 511 + JExp: 77 + AttackRange: 1 + Attack: [100, 150] + Def: 20 + Mdef: 40 + Stats: { + Str: 40 + Agi: 30 + Vit: 50 + Int: 10 + Dex: 50 + Luk: 40 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 3) + Mode: { + CanMove: true + Looter: true + CanAttack: true + } + MoveSpeed: 1200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + IceCube: 200 + Sapphire: 20 + CactusDrink: 500 + IcedWater: 700 + SilverMirror: 100 + BookPage: 500 + } +}, +{ + Id: 1098 + SpriteName: "CopperSlime" + Name: "CopperSlime" + Lv: 40 + Hp: 600 + Sp: 0 + Exp: 134 + JExp: 18 + AttackRange: 1 + Attack: [60, 90] + Def: 20 + Mdef: 30 + Stats: { + Str: 20 + Agi: 30 + Vit: 10 + Int: 10 + Dex: 30 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 1) + Mode: { + CanMove: true + Looter: true + CanAttack: true + } + MoveSpeed: 1200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + IronOre: 1500 + TreasureKey: 1000 + Coal: 300 + } +}, +{ + Id: 1111 + SpriteName: "CandiedSlime" + Name: "CandiedSlime" + Lv: 50 + Hp: 800 + Sp: 0 + Exp: 800 + JExp: 66 + AttackRange: 3 + Attack: [50, 50] + Def: 20 + Mdef: 30 + Stats: { + Str: 20 + Agi: 30 + Vit: 10 + Int: 10 + Dex: 30 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 1200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + Candy: 1000 + ChocolateBar: 1000 + PurplePresentBox: 200 + BluePresentBox: 200 + GreenPresentBox: 200 + GingerBreadMan: 200 + XmasCake: 500 + XmasCandyCane: 750 + } +}, +{ + Id: 1112 + SpriteName: "Santaboo" + Name: "Santaboo" + Lv: 50 + Hp: 2200 + Sp: 0 + Exp: 734 + JExp: 59 + AttackRange: 2 + Attack: [80, 125] + Def: 50 + Mdef: 10 + Stats: { + Str: 25 + Agi: 10 + Vit: 25 + Int: 0 + Dex: 60 + Luk: 30 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 600 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + GingerBreadMan: 1000 + WhiteCake: 1200 + ChocolateCake: 1200 + OrangeCake: 1200 + AppleCake: 1200 + SantaHat: 50 + RedNose: 10 + Snowball: 1800 + } +}, +//ID, Name, Jname, LV, HP, SP, EXP, JEXP, Range1, ATK1, ATK2, DEF, MDEF, STR, AGI, VIT, INT, DEX, LUK, Range2, Range3, Scale, Race, Element,Mode, Speed, Adelay, Amotion,Dmotion,Drop1id,Drop1per,Drop2id,Drop2%, Drop3id,Drop3%, Drop4id,Drop4%, Drop5id,Drop5%, Drop6id,Drop6%, Drop7id,Drop7%, Drop8id,Drop8%, Item1, Item2, MEXP, ExpPer, MVP1id, MVP1per,MVP2id, MVP2per,MVP3id, MVP3per,mutationcount,mutationstrength +{ + Id: 1004 + SpriteName: "RedScorpionMob" + Name: "RedScorpionMob" + Lv: 90 + Hp: 550 + Sp: 0 + Exp: 107 + JExp: 16 + AttackRange: 1 + Attack: [50, 55] + Def: 4 + Mdef: 6 + Stats: { + Str: 8 + Agi: 8 + Vit: 10 + Int: 10 + Dex: 30 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 1000 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + RedScorpionStinger: 2000 + ChocolateBar: 100 + BugLeg: 500 + Bow: 10 + Arrow: 760 + Knife: 540 + FancyHat: 25 + } +}, +{ + Id: 1006 + SpriteName: "GiantMaggot" + Name: "GiantMaggot" + Lv: 80 + Hp: 500 + Sp: 0 + Exp: 91 + JExp: 14 + AttackRange: 2 + Attack: [45, 75] + Def: 2 + Mdef: 7 + Stats: { + Str: 8 + Agi: 6 + Vit: 2 + Int: 1 + Dex: 22 + Luk: 1 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 2) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 2000 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + Arrow: 900 + CherryCake: 100 + BugLeg: 750 + CactusDrink: 5000 + CactusPotion: 3000 + CasinoCoins: 11 + CoinBag: 200 + } +}, +{ + Id: 1028 + SpriteName: "Mouboo" + Name: "Mouboo" + Lv: 85 + Hp: 1200 + Sp: 0 + Exp: 326 + JExp: 16 + AttackRange: 2 + Attack: [30, 75] + Def: 65 + Mdef: 5 + Stats: { + Str: 15 + Agi: 5 + Vit: 15 + Int: 0 + Dex: 40 + Luk: 10 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 600 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + CottonCloth: 1000 + CottonCloth: 500 + BottleOfWater: 750 + CottonCloth: 50 + ReedBundle: 500 + } +}, +{ + Id: 1043 + SpriteName: "Skeleton" + Name: "Skeleton" + Lv: 90 + Hp: 6800 + Sp: 0 + Exp: 2102 + JExp: 1467 + AttackRange: 1 + Attack: [51, 284] + Def: 12 + Mdef: 10 + Stats: { + Str: 35 + Agi: 18 + Vit: 3 + Int: 8 + Dex: 71 + Luk: 65 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 340 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 950 + MvpExp: 0 + Drops: { + Bone: 200 + Bone: 280 + Skull: 300 + DarkCrystal: 1000 + DiseasedHeart: 250 + } +}, +{ + Id: 1044 + SpriteName: "LadySkeleton" + Name: "LadySkeleton" + Lv: 90 + Hp: 5500 + Sp: 0 + Exp: 2135 + JExp: 957 + AttackRange: 2 + Attack: [73, 146] + Def: 31 + Mdef: 8 + Stats: { + Str: 20 + Agi: 25 + Vit: 15 + Int: 8 + Dex: 43 + Luk: 48 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 650 + AttackDelay: 750 + AttackMotion: 672 + DamageMotion: 700 + MvpExp: 0 + Drops: { + Bone: 200 + Bone: 280 + Skull: 300 + DarkCrystal: 1000 + DiseasedHeart: 250 + } +}, +{ + Id: 1047 + SpriteName: "Poltergeist" + Name: "Poltergeist" + Lv: 90 + Hp: 9000 + Sp: 0 + Exp: 2605 + JExp: 1306 + AttackRange: 3 + Attack: [110, 150] + Def: 0 + Mdef: 20 + Stats: { + Str: 35 + Agi: 0 + Vit: 15 + Int: 15 + Dex: 75 + Luk: 50 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (7, 1) + Mode: { + CanMove: true + Assist: true + CanAttack: true + } + MoveSpeed: 330 + AttackDelay: 740 + AttackMotion: 672 + DamageMotion: 400 + MvpExp: 0 + Drops: { + PoltergeistPowder: 1000 + SulphurPowder: 150 + SulphurPowder: 120 + } +}, +{ + Id: 1059 + SpriteName: "GCMaggot" + Name: "GiantCaveMaggot" + Lv: 90 + Hp: 2000 + Sp: 0 + Exp: 395 + JExp: 102 + AttackRange: 2 + Attack: [60, 80] + Def: 2 + Mdef: 7 + Stats: { + Str: 10 + Agi: 10 + Vit: 2 + Int: 1 + Dex: 22 + Luk: 1 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 2) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 1000 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + Iten: 10000 + } +}, +{ + Id: 1066 + SpriteName: "VampireBat" + Name: "VampireBat" + Lv: 80 + Hp: 800 + Sp: 0 + Exp: 164 + JExp: 9 + AttackRange: 1 + Attack: [55, 150] + Def: 10 + Mdef: 8 + Stats: { + Str: 8 + Agi: 8 + Vit: 1 + Int: 4 + Dex: 20 + Luk: 4 + } + ViewRange: 6 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (4, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + CactusDrink: 150 + BugLeg: 400 + RoastedMaggot: 150 + Dagger: 70 + SharpKnife: 1 + VampireBatWing: 3000 + BatTeeth: 2000 + } +}, +{ + Id: 1069 + SpriteName: "Scythe" + Name: "Scythe" + Lv: 80 + Hp: 3000 + Sp: 0 + Exp: 2496 + JExp: 617 + AttackRange: 1 + Attack: [200, 350] + Def: 30 + Mdef: 10 + Stats: { + Str: 100 + Agi: 250 + Vit: 1 + Int: 1 + Dex: 150 + Luk: 90 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 2) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 220 + AttackDelay: 700 + AttackMotion: 672 + DamageMotion: 500 + MvpExp: 0 +}, +{ + Id: 1070 + SpriteName: "BallLightning" + Name: "BallLightning" + Lv: 80 + Hp: 300 + Sp: 0 + Exp: 77 + JExp: 1 + AttackRange: 1 + Attack: [5, 10] + Def: 40 + Mdef: 65 + Stats: { + Str: 1 + Agi: 200 + Vit: 1 + Int: 1 + Dex: 1 + Luk: 1 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (7, 2) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 110 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 0 + MvpExp: 0 +}, +{ + Id: 1073 + SpriteName: "TheLost" + Name: "TheLost" + Lv: 83 + Hp: 5000 + Sp: 0 + Exp: 8750 + JExp: 2840 + AttackRange: 5 + Attack: [125, 150] + Def: 10 + Mdef: 70 + Stats: { + Str: 5 + Agi: 40 + Vit: 10 + Int: 70 + Dex: 70 + Luk: 40 + } + ViewRange: 4 + ChaseRange: 10 + Size: 1 + Race: 1 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + Assist: true + CanAttack: true + } + MoveSpeed: 500 + AttackDelay: 2000 + AttackMotion: 672 + DamageMotion: 300 + MvpExp: 0 + Drops: { + Bloodstone: 500 + Bloodstone: 500 + DarkCrystal: 500 + SmallMushroom: 500 + DiseasedHeart: 800 + } +}, +{ + Id: 1074 + SpriteName: "RedBone" + Name: "RedBone" + Lv: 90 + Hp: 8000 + Sp: 0 + Exp: 9750 + JExp: 3434 + AttackRange: 2 + Attack: [100, 330] + Def: 24 + Mdef: 30 + Stats: { + Str: 35 + Agi: 25 + Vit: 3 + Int: 50 + Dex: 80 + Luk: 75 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 1 + Element: (9, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 340 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 950 + MvpExp: 0 + Drops: { + Bone: 75 + Bone: 115 + Skull: 135 + DarkCrystal: 4 + DiseasedHeart: 250 + } +}, +{ + Id: 1077 + SpriteName: "DrunkenSkeleton" + Name: "DrunkenSkeleton" + Lv: 90 + Hp: 7200 + Sp: 0 + Exp: 2912 + JExp: 530 + AttackRange: 1 + Attack: [55, 284] + Def: 30 + Mdef: 10 + Stats: { + Str: 35 + Agi: 10 + Vit: 3 + Int: 8 + Dex: 71 + Luk: 65 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Assist: true + CanAttack: true + } + MoveSpeed: 350 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 950 + MvpExp: 0 + Drops: { + BloodWine: 300 + GutBuster: 280 + JarofBlood: 100 + JackOLantern: 50 + JellySkull: 250 + TonoriDelight: 400 + DiseasedHeart: 250 + } +}, +{ + Id: 1078 + SpriteName: "TipsySkeleton" + Name: "TipsySkeleton" + Lv: 90 + Hp: 7000 + Sp: 0 + Exp: 2987 + JExp: 493 + AttackRange: 1 + Attack: [60, 284] + Def: 33 + Mdef: 10 + Stats: { + Str: 35 + Agi: 10 + Vit: 3 + Int: 8 + Dex: 71 + Luk: 65 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Assist: true + CanAttack: true + } + MoveSpeed: 350 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 950 + MvpExp: 0 + Drops: { + Snapple: 300 + BeetleJuice: 280 + RealisticBrain: 100 + JackOLantern: 50 + Marshmallow: 400 + CandyPumpkin: 250 + DiseasedHeart: 250 + } +}, +{ + Id: 1079 + SpriteName: "DrunkenLadySkeleton" + Name: "DrunkenLadySkeleton" + Lv: 90 + Hp: 6000 + Sp: 0 + Exp: 2660 + JExp: 389 + AttackRange: 2 + Attack: [75, 146] + Def: 40 + Mdef: 8 + Stats: { + Str: 20 + Agi: 20 + Vit: 15 + Int: 8 + Dex: 51 + Luk: 48 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Assist: true + CanAttack: true + } + MoveSpeed: 660 + AttackDelay: 750 + AttackMotion: 672 + DamageMotion: 700 + MvpExp: 0 + Drops: { + LadyFingers: 300 + JellAhh: 280 + RubberBat: 100 + JackOLantern: 50 + CandyPumpkin: 250 + JellySkull: 250 + DiseasedHeart: 250 + } +}, +{ + Id: 1097 + SpriteName: "SoulEater" + Name: "SoulEater" + Lv: 90 + Hp: 6800 + Sp: 0 + Exp: 2232 + JExp: 1746 + AttackRange: 1 + Attack: [129, 354] + Def: 12 + Mdef: 10 + Stats: { + Str: 35 + Agi: 18 + Vit: 3 + Int: 8 + Dex: 71 + Luk: 65 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 340 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 950 + MvpExp: 0 + Drops: { + DiseasedHeart: 250 + } +}, +{ + Id: 1103 + SpriteName: "WitchGuard" + Name: "WitchGuard" + Lv: 84 + Hp: 9742 + Sp: 0 + Exp: 4313 + JExp: 1060 + AttackRange: 2 + Attack: [200, 220] + Def: 25 + Mdef: 50 + Stats: { + Str: 90 + Agi: 65 + Vit: 45 + Int: 5 + Dex: 120 + Luk: 69 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 4) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 290 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 30 + MvpExp: 0 + Drops: { + DarkCrystal: 2000 + DarkCrystal: 500 + DiseasedHeart: 250 + } +}, +{ + Id: 1104 + SpriteName: "DemonicMouboo" + Name: "DemonicMouboo" + Lv: 85 + Hp: 800 + Sp: 0 + Exp: 176 + JExp: 32 + AttackRange: 2 + Attack: [40, 70] + Def: 35 + Mdef: 15 + Stats: { + Str: 15 + Agi: 5 + Vit: 15 + Int: 0 + Dex: 40 + Luk: 10 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 600 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + CottonCloth: 1000 + CottonCloth: 500 + SulphurPowder: 750 + Emerald: 50 + ReedBundle: 500 + } +}, +{ + Id: 1109 + SpriteName: "AngrySeaSlime" + Name: "AngrySeaSlime" + Lv: 80 + Hp: 1200 + Sp: 0 + Exp: 268 + JExp: 42 + AttackRange: 1 + Attack: [40, 70] + Def: 13 + Mdef: 17 + Stats: { + Str: 3 + Agi: 30 + Vit: 3 + Int: 0 + Dex: 35 + Luk: 35 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 2) + Mode: { + CanMove: true + Looter: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 1500 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + RedApple: 800 + Orange: 800 + BugLeg: 500 + Candy: 1000 + Pearl: 100 + Arrow: 5000 + ConcentrationPotion: 100 + BottleOfWater: 50 + } +}, +{ + Id: 1115 + SpriteName: "SeaSlimeMother" + Name: "SeaSlimeMother" + Lv: 90 + Hp: 8000 + Sp: 0 + Exp: 1784 + JExp: 900 + AttackRange: 5 + Attack: [100, 150] + Def: 10 + Mdef: 20 + Stats: { + Str: 1 + Agi: 15 + Vit: 10 + Int: 10 + Dex: 10 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (4, 2) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 1500 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + RedApple: 800 + Orange: 800 + BugLeg: 500 + Candy: 1000 + Pearl: 100 + Arrow: 5000 + ConcentrationPotion: 100 + BottleOfWater: 50 + } +}, +{ + Id: 1116 + SpriteName: "UndeadWitch" + Name: "UndeadWitch" + Lv: 80 + Hp: 4200 + Sp: 0 + Exp: 1012 + JExp: 722 + AttackRange: 3 + Attack: [50, 110] + Def: 8 + Mdef: 31 + Stats: { + Str: 15 + Agi: 20 + Vit: 10 + Int: 25 + Dex: 50 + Luk: 40 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 550 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 700 + MvpExp: 0 + Drops: { + DarkCrystal: 1000 + Bone: 400 + Skull: 300 + IronPowder: 100 + } +}, +{ + Id: 1118 + SpriteName: "GreenSlimeMother" + Name: "GreenSlimeMother" + Lv: 90 + Hp: 8000 + Sp: 0 + Exp: 1942 + JExp: 900 + AttackRange: 5 + Attack: [100, 150] + Def: 15 + Mdef: 20 + Stats: { + Str: 20 + Agi: 25 + Vit: 20 + Int: 30 + Dex: 20 + Luk: 20 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 1400 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + CactusPotion: 200 + Emerald: 20 + CactusDrink: 100 + Dagger: 250 + SharpKnife: 200 + CoinBag: 500 + CasinoCoins: 500 + RedApple: 750 + } +}, +{ + Id: 1124 + SpriteName: "Wight" + Name: "Wight" + Lv: 90 + Hp: 8000 + Sp: 0 + Exp: 9000 + JExp: 1900 + AttackRange: 2 + Attack: [56, 294] + Def: 32 + Mdef: 15 + Stats: { + Str: 28 + Agi: 25 + Vit: 15 + Int: 15 + Dex: 50 + Luk: 65 + } + ViewRange: 3 + ChaseRange: 10 + Size: 1 + Race: 1 + Element: (9, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 340 + AttackDelay: 1400 + AttackMotion: 672 + DamageMotion: 950 + MvpExp: 0 + Drops: { + Bone: 100 + Bone: 140 + Skull: 150 + DarkCrystal: 50 + DarkCrystal: 500 + DiseasedHeart: 250 + } +}, +{ + Id: 1125 + SpriteName: "ManaGhost" + Name: "ManaGhost" + Lv: 82 + Hp: 8000 + Sp: 0 + Exp: 7500 + JExp: 2400 + AttackRange: 3 + Attack: [150, 300] + Def: 23 + Mdef: 30 + Stats: { + Str: 35 + Agi: 15 + Vit: 3 + Int: 50 + Dex: 50 + Luk: 40 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 1 + Element: (9, 1) + Mode: { + CanMove: true + Looter: true + CanAttack: true + } + MoveSpeed: 340 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 950 + MvpExp: 0 + Drops: { + Bone: 75 + Bone: 115 + Skull: 135 + DarkCrystal: 40 + Bloodstone: 700 + DarkCrystal: 800 + } +}, +//ID, Name, Jname, LV, HP, SP, EXP, JEXP, Range1, ATK1, ATK2, DEF, MDEF, STR, AGI, VIT, INT, DEX, LUK, Range2, Range3, Scale, Race, Element,Mode, Speed, Adelay, Amotion,Dmotion,Drop1id,Drop1per,Drop2id,Drop2%, Drop3id,Drop3%, Drop4id,Drop4%, Drop5id,Drop5%, Drop6id,Drop6%, Drop7id,Drop7%, Drop8id,Drop8%, Item1, Item2, MEXP, ExpPer, MVP1id, MVP1per,MVP2id, MVP2per,MVP3id, MVP3per,mutationcount,mutationstrength +{ + Id: 1007 + SpriteName: "YellowSlime" + Name: "YellowSlime" + Lv: 60 + Hp: 400 + Sp: 0 + Exp: 66 + JExp: 9 + AttackRange: 1 + Attack: [35, 40] + Def: 2 + Mdef: 7 + Stats: { + Str: 9 + Agi: 6 + Vit: 2 + Int: 1 + Dex: 34 + Luk: 1 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 1) + Mode: { + CanMove: true + Looter: true + CanAttack: true + } + MoveSpeed: 1400 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + OrangeCupcake: 200 + CherryCake: 100 + CactusDrink: 350 + CactusPotion: 250 + SharpKnife: 10 + IronOre: 450 + Topaz: 20 + Coal: 450 + } +}, +{ + Id: 1008 + SpriteName: "RedSlime" + Name: "RedSlime" + Lv: 70 + Hp: 450 + Sp: 0 + Exp: 79 + JExp: 17 + AttackRange: 1 + Attack: [40, 45] + Def: 2 + Mdef: 7 + Stats: { + Str: 12 + Agi: 8 + Vit: 2 + Int: 1 + Dex: 25 + Luk: 1 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 1300 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + Knife: 300 + ChocolateBar: 110 + Dagger: 200 + Ruby: 20 + MinersHat: 80 + RedApple: 750 + Boots: 250 + MinerGloves: 150 + } +}, +{ + Id: 1033 + SpriteName: "SeaSlime" + Name: "SeaSlime" + Lv: 70 + Hp: 600 + Sp: 0 + Exp: 116 + JExp: 13 + AttackRange: 1 + Attack: [30, 50] + Def: 3 + Mdef: 7 + Stats: { + Str: 1 + Agi: 25 + Vit: 1 + Int: 0 + Dex: 30 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 2) + Mode: { + CanMove: true + Looter: true + CanAttack: true + } + MoveSpeed: 1500 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + RedApple: 800 + Orange: 800 + BugLeg: 500 + Candy: 1000 + Pearl: 100 + Arrow: 5000 + ConcentrationPotion: 100 + BottleOfWater: 50 + } +}, +{ + Id: 1040 + SpriteName: "Wisp" + Name: "Wisp" + Lv: 70 + Hp: 9300 + Sp: 0 + Exp: 1514 + JExp: 1210 + AttackRange: 2 + Attack: [215, 350] + Def: 0 + Mdef: 20 + Stats: { + Str: 45 + Agi: 12 + Vit: 13 + Int: 15 + Dex: 0 + Luk: 45 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (7, 1) + Mode: { + CanMove: true + Assist: true + CanAttack: true + } + MoveSpeed: 380 + AttackDelay: 2000 + AttackMotion: 672 + DamageMotion: 1500 + MvpExp: 0 + Drops: { + WispPowder: 1000 + SulphurPowder: 150 + SulphurPowder: 120 + } +}, +{ + Id: 1054 + SpriteName: "Troll" + Name: "Troll" + Lv: 65 + Hp: 2000 + Sp: 0 + Exp: 503 + JExp: 129 + AttackRange: 1 + Attack: [70, 100] + Def: 20 + Mdef: 10 + Stats: { + Str: 50 + Agi: 40 + Vit: 10 + Int: 10 + Dex: 30 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Assist: true + CanAttack: true + } + MoveSpeed: 600 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + Arrow: 2000 + IronArrow: 500 + Beer: 300 + CoinBag: 250 + GingerBreadMan: 200 + KidBook: 10 + } +}, +{ + Id: 1061 + SpriteName: "Moggun" + Name: "Moggun" + Lv: 60 + Hp: 800 + Sp: 0 + Exp: 174 + JExp: 52 + AttackRange: 1 + Attack: [70, 90] + Def: 20 + Mdef: 10 + Stats: { + Str: 50 + Agi: 40 + Vit: 10 + Int: 10 + Dex: 10 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (5, 1) + Mode: { + CanMove: true + Assist: true + CanAttack: true + } + MoveSpeed: 600 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + WhiteFur: 600 + Coal: 1000 + Diamond: 20 + } +}, +{ + Id: 1101 + SpriteName: "DemonicSpirit" + Name: "DemonicSpirit" + Lv: 72 + Hp: 1505 + Sp: 0 + Exp: 478 + JExp: 270 + AttackRange: 1 + Attack: [125, 175] + Def: 4 + Mdef: 6 + Stats: { + Str: 20 + Agi: 40 + Vit: 10 + Int: 10 + Dex: 110 + Luk: 45 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 4) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 230 + AttackDelay: 900 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + DarkCrystal: 1000 + } +}, +{ + Id: 1110 + SpriteName: "AngryGreenSlime" + Name: "AngryGreenSlime" + Lv: 60 + Hp: 1000 + Sp: 0 + Exp: 249 + JExp: 135 + AttackRange: 1 + Attack: [100, 160] + Def: 20 + Mdef: 30 + Stats: { + Str: 20 + Agi: 30 + Vit: 10 + Int: 10 + Dex: 30 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 1200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + CactusPotion: 200 + Emerald: 20 + CactusDrink: 100 + Dagger: 250 + SharpKnife: 200 + CoinBag: 500 + CasinoCoins: 500 + RedApple: 750 + } +}, +{ + Id: 1117 + SpriteName: "UndeadTroll" + Name: "UndeadTroll" + Lv: 75 + Hp: 3100 + Sp: 0 + Exp: 910 + JExp: 179 + AttackRange: 2 + Attack: [60, 140] + Def: 20 + Mdef: 10 + Stats: { + Str: 50 + Agi: 40 + Vit: 20 + Int: 10 + Dex: 40 + Luk: 49 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 650 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + Arrow: 2000 + DarkCrystal: 1000 + IronArrow: 500 + Beer: 300 + CoinBag: 250 + AnimalBones: 200 + KidBook: 20 + } +}, +//ID, Name, Jname, LV, HP, SP, EXP, JEXP, Range1, ATK1, ATK2, DEF, MDEF, STR, AGI, VIT, INT, DEX, LUK, Range2, Range3, Scale, Race, Element,Mode, Speed, Adelay, Amotion,Dmotion,Drop1id,Drop1per,Drop2id,Drop2%, Drop3id,Drop3%, Drop4id,Drop4%, Drop5id,Drop5%, Drop6id,Drop6%, Drop7id,Drop7%, Drop8id,Drop8%, Item1, Item2, MEXP, ExpPer, MVP1id, MVP1per,MVP2id, MVP2per,MVP3id, MVP3per,mutationcount,mutationstrength +{ + Id: 1002 + SpriteName: "Maggot" + Name: "Maggot" + Lv: 5 + Hp: 50 + Sp: 0 + Exp: 6 + JExp: 1 + AttackRange: 1 + Attack: [5, 10] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 6 + Luk: 5 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (1, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 800 + CactusDrink: 150 + BugLeg: 400 + RoastedMaggot: 150 + CactusPotion: 70 + SharpKnife: 10 + } +}, +{ + Id: 1046 + SpriteName: "TameScorpionMob" + Name: "TameScorpionMob" + Lv: 5 + Hp: 50 + Sp: 0 + Exp: 5 + JExp: 2 + AttackRange: 1 + Attack: [7, 10] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 15 + Luk: 5 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 2000 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + ScorpionStinger: 700 + Candy: 100 + ChocolateBar: 50 + BugLeg: 700 + } +}, +{ + Id: 1050 + SpriteName: "HouseMaggot" + Name: "HouseMaggot" + Lv: 5 + Hp: 50 + Sp: 0 + Exp: 6 + JExp: 3 + AttackRange: 1 + Attack: [5, 7] + Def: 0 + Mdef: 5 + Stats: { + Str: 5 + Agi: 5 + Vit: 1 + Int: 0 + Dex: 6 + Luk: 5 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (1, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 700 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 800 + CactusDrink: 150 + BugLeg: 400 + RoastedMaggot: 150 + CactusPotion: 70 + SharpKnife: 10 + } +}, +{ + Id: 1003 + SpriteName: "ScorpionMob" + Name: "ScorpionMob" + Lv: 10 + Hp: 100 + Sp: 0 + Exp: 12 + JExp: 2 + AttackRange: 1 + Attack: [10, 15] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 15 + Luk: 5 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 2000 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + ScorpionStinger: 700 + Candy: 100 + ChocolateBar: 50 + BugLeg: 700 + } +}, +{ + Id: 1029 + SpriteName: "MauvePlant" + Name: "MauvePlant" + Lv: 1 + Hp: 1 + Sp: 0 + Exp: 1 + JExp: 1 + AttackRange: 1 + Attack: [0, 0] + Def: 1 + Mdef: 0 + Stats: { + Str: 0 + Agi: 0 + Vit: 0 + Int: 0 + Dex: 0 + Luk: 0 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + MoveSpeed: 800 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MauveHerb: 3000 + MauveHerb: 3000 + MauveHerb: 3000 + } +}, +{ + Id: 1030 + SpriteName: "CobaltPlant" + Name: "CobaltPlant" + Lv: 1 + Hp: 1 + Sp: 0 + Exp: 1 + JExp: 1 + AttackRange: 1 + Attack: [0, 0] + Def: 1 + Mdef: 0 + Stats: { + Str: 0 + Agi: 0 + Vit: 0 + Int: 0 + Dex: 0 + Luk: 0 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + MoveSpeed: 800 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + CobaltHerb: 3000 + CobaltHerb: 3000 + CobaltHerb: 3000 + } +}, +{ + Id: 1031 + SpriteName: "GambogePlant" + Name: "GambogePlant" + Lv: 1 + Hp: 1 + Sp: 0 + Exp: 1 + JExp: 1 + AttackRange: 1 + Attack: [0, 0] + Def: 1 + Mdef: 0 + Stats: { + Str: 0 + Agi: 0 + Vit: 0 + Int: 0 + Dex: 0 + Luk: 0 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + MoveSpeed: 800 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + GambogeHerb: 3000 + GambogeHerb: 3000 + GambogeHerb: 3000 + } +}, +{ + Id: 1032 + SpriteName: "AlizarinPlant" + Name: "AlizarinPlant" + Lv: 1 + Hp: 1 + Sp: 0 + Exp: 1 + JExp: 1 + AttackRange: 1 + Attack: [0, 0] + Def: 1 + Mdef: 0 + Stats: { + Str: 0 + Agi: 0 + Vit: 0 + Int: 0 + Dex: 0 + Luk: 0 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + MoveSpeed: 800 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + AlizarinHerb: 3000 + AlizarinHerb: 3000 + AlizarinHerb: 3000 + } +}, +{ + Id: 1037 + SpriteName: "CloverPatch" + Name: "CloverPatch" + Lv: 1 + Hp: 1 + Sp: 0 + Exp: 1 + JExp: 1 + AttackRange: 1 + Attack: [0, 0] + Def: 0 + Mdef: 5 + Stats: { + Str: 0 + Agi: 0 + Vit: 0 + Int: 0 + Dex: 0 + Luk: 0 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + MoveSpeed: 800 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + FourLeafClover: 5 + } +}, +{ + Id: 1038 + SpriteName: "Squirrel" + Name: "Squirrel" + Lv: 15 + Hp: 160 + Sp: 1 + Exp: 27 + JExp: 5 + AttackRange: 1 + Attack: [10, 20] + Def: 1 + Mdef: 6 + Stats: { + Str: 1 + Agi: 3 + Vit: 1 + Int: 0 + Dex: 15 + Luk: 40 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + Acorn: 7000 + MauveHerb: 1000 + CobaltHerb: 1000 + GambogeHerb: 1000 + AlizarinHerb: 1000 + GrassSeed: 800 + SquirrelPelt: 550 + } +}, +{ + Id: 1056 + SpriteName: "CaveMaggot" + Name: "CaveMaggot" + Lv: 10 + Hp: 100 + Sp: 0 + Exp: 13 + JExp: 3 + AttackRange: 1 + Attack: [10, 10] + Def: 0 + Mdef: 5 + Stats: { + Str: 5 + Agi: 5 + Vit: 1 + Int: 0 + Dex: 6 + Luk: 5 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (1, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 700 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 800 + CactusDrink: 150 + BugLeg: 400 + RoastedMaggot: 150 + CactusPotion: 70 + SharpKnife: 10 + } +}, +{ + Id: 1063 + SpriteName: "Pumpkin" + Name: "Pumpkin" + Lv: 1 + Hp: 200 + Sp: 0 + Exp: 17 + JExp: 1 + AttackRange: 1 + Attack: [0, 0] + Def: 0 + Mdef: 5 + Stats: { + Str: 0 + Agi: 0 + Vit: 0 + Int: 0 + Dex: 0 + Luk: 0 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + MoveSpeed: 800 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + JackOLantern: 100 + RubberBat: 20 + RealisticBrain: 10 + JarofBlood: 15 + PumpkinSeeds: 500 + TonoriDelight: 1500 + Marshmallow: 2000 + CandyPumpkin: 2500 + } +}, +{ + Id: 1082 + SpriteName: "Serqet" + Name: "Serqet" + Lv: 10 + Hp: 100 + Sp: 0 + Exp: 12 + JExp: 2 + AttackRange: 1 + Attack: [10, 15] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 15 + Luk: 5 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 2000 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 +}, +{ + Id: 1092 + SpriteName: "SlimeBlast" + Name: "SlimeBlast" + Lv: 10 + Hp: 100 + Sp: 0 + Exp: 15 + JExp: 8 + AttackRange: 1 + Attack: [10, 10] + Def: 10 + Mdef: 10 + Stats: { + Str: 10 + Agi: 10 + Vit: 10 + Int: 10 + Dex: 10 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 3) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 250 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 +}, +{ + Id: 1095 + SpriteName: "WhiteBell" + Name: "WhiteBell" + Lv: 10 + Hp: 100 + Sp: 0 + Exp: 18 + JExp: 40 + AttackRange: 2 + Attack: [70, 75] + Def: 0 + Mdef: 5 + Stats: { + Str: 16 + Agi: 12 + Vit: 20 + Int: 20 + Dex: 20 + Luk: 50 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + RedApple: 100 + EmptyBottle: 10 + Arrow: 100 + CoinBag: 400 + WhiteBellTuber: 5000 + } +}, +{ + Id: 1105 + SpriteName: "ViciousSquirrel" + Name: "ViciousSquirrel" + Lv: 15 + Hp: 140 + Sp: 1 + Exp: 24 + JExp: 7 + AttackRange: 1 + Attack: [20, 25] + Def: 1 + Mdef: 6 + Stats: { + Str: 3 + Agi: 3 + Vit: 1 + Int: 0 + Dex: 15 + Luk: 40 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + IronPowder: 7000 + MauveHerb: 1000 + CobaltHerb: 1000 + GambogeHerb: 1000 + AlizarinHerb: 1000 + GrassSeed: 800 + Sapphire: 50 + } +}, +{ + Id: 1162 + SpriteName: "Grinchboo" + Name: "Grinchboo" + Lv: 5 + Hp: 50 + Sp: 0 + Exp: 6 + JExp: 1 + AttackRange: 1 + Attack: [5, 10] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 6 + Luk: 5 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (1, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 800 + CactusDrink: 150 + BugLeg: 400 + Milk: 50 + Milk: 30 + } +}, +//ID, Name, Jname, LV, HP, SP, EXP, JEXP, Range1, ATK1, ATK2, DEF, MDEF, STR, AGI, VIT, INT, DEX, LUK, Range2, Range3, Scale, Race, Element,Mode, Speed, Adelay, Amotion,Dmotion,Drop1id,Drop1per,Drop2id,Drop2%, Drop3id,Drop3%, Drop4id,Drop4%, Drop5id,Drop5%, Drop6id,Drop6%, Drop7id,Drop7%, Drop8id,Drop8%, Item1, Item2, MEXP, ExpPer, MVP1id, MVP1per,MVP2id, MVP2per,MVP3id, MVP3per,mutationcount,mutationstrength +{ + Id: 1005 + SpriteName: "GreenSlime" + Name: "GreenSlime" + Lv: 40 + Hp: 800 + Sp: 0 + Exp: 185 + JExp: 96 + AttackRange: 1 + Attack: [80, 120] + Def: 20 + Mdef: 30 + Stats: { + Str: 20 + Agi: 30 + Vit: 10 + Int: 10 + Dex: 30 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 1200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + CactusPotion: 200 + Emerald: 20 + CactusDrink: 100 + Dagger: 250 + SharpKnife: 200 + CoinBag: 500 + CasinoCoins: 500 + GreenApple: 750 + } +}, +{ + Id: 1016 + SpriteName: "RudolphSlime" + Name: "RudolphSlime" + Lv: 50 + Hp: 350 + Sp: 0 + Exp: 67 + JExp: 8 + AttackRange: 1 + Attack: [30, 35] + Def: 10 + Mdef: 7 + Stats: { + Str: 1 + Agi: 20 + Vit: 1 + Int: 0 + Dex: 30 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 1) + Mode: { + CanMove: true + Looter: true + CanAttack: true + } + MoveSpeed: 1000 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + DecorCandy: 800 + CandyCane: 500 + XmasCake: 200 + ChocolateBar: 300 + Candy: 600 + PurplePresentBox: 800 + BluePresentBox: 500 + } +}, +{ + Id: 1065 + SpriteName: "BanditLord" + Name: "BanditLord" + Lv: 40 + Hp: 2000 + Sp: 0 + Exp: 407 + JExp: 103 + AttackRange: 5 + Attack: [50, 50] + Def: 15 + Mdef: 15 + Stats: { + Str: 15 + Agi: 15 + Vit: 15 + Int: 15 + Dex: 15 + Luk: 15 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 400 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 900 + MvpExp: 0 +}, +{ + Id: 1080 + SpriteName: "BlueSpark" + Name: "BlueSpark" + Lv: 40 + Hp: 10000 + Sp: 0 + Exp: 2431 + JExp: 392 + AttackRange: 2 + Attack: [40, 40] + Def: 20 + Mdef: 40 + Stats: { + Str: 30 + Agi: 30 + Vit: 30 + Int: 30 + Dex: 30 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 190 + AttackDelay: 1500 + AttackMotion: 800 + DamageMotion: 800 + MvpExp: 0 +}, +{ + Id: 1081 + SpriteName: "RedSpark" + Name: "RedSpark" + Lv: 40 + Hp: 10000 + Sp: 0 + Exp: 2431 + JExp: 392 + AttackRange: 2 + Attack: [40, 40] + Def: 20 + Mdef: 40 + Stats: { + Str: 30 + Agi: 30 + Vit: 30 + Int: 30 + Dex: 30 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 190 + AttackDelay: 1500 + AttackMotion: 800 + DamageMotion: 800 + MvpExp: 0 +}, +{ + Id: 1086 + SpriteName: "FeyElement" + Name: "FeyElement" + Lv: 50 + Hp: 5000 + Sp: 0 + Exp: 12500 + JExp: 901 + AttackRange: 5 + Attack: [50, 125] + Def: 25 + Mdef: 50 + Stats: { + Str: 20 + Agi: 70 + Vit: 10 + Int: 20 + Dex: 80 + Luk: 1 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (4, 4) + Mode: { + CanMove: true + Aggressive: true + Boss: true + CanAttack: true + } + MoveSpeed: 330 + AttackDelay: 740 + AttackMotion: 672 + DamageMotion: 400 + MvpExp: 0 + Drops: { + BrokenDoll: 5000 + MauveHerb: 1000 + MauveHerb: 1000 + CobaltHerb: 1000 + CobaltHerb: 1000 + GambogeHerb: 1000 + GambogeHerb: 1000 + AlizarinHerb: 1000 + } +}, +{ + Id: 1088 + SpriteName: "Hyvern" + Name: "Hyvern" + Lv: 40 + Hp: 2250 + Sp: 0 + Exp: 572 + JExp: 346 + AttackRange: 1 + Attack: [50, 125] + Def: 0 + Mdef: 10 + Stats: { + Str: 10 + Agi: 45 + Vit: 5 + Int: 0 + Dex: 35 + Luk: 35 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (5, 4) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 250 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + HyvernStinger: 2000 + BugLeg: 1000 + Orange: 600 + IronArrow: 3000 + } +}, +{ + Id: 1090 + SpriteName: "Wolvern" + Name: "Wolvern" + Lv: 40 + Hp: 900 + Sp: 0 + Exp: 185 + JExp: 86 + AttackRange: 1 + Attack: [50, 80] + Def: 5 + Mdef: 5 + Stats: { + Str: 15 + Agi: 10 + Vit: 5 + Int: 0 + Dex: 20 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 425 + AttackDelay: 770 + AttackMotion: 500 + DamageMotion: 200 + MvpExp: 0 + Drops: { + WolvernTooth: 1000 + WolvernPelt: 400 + AnimalBones: 200 + Steak: 1300 + } +}, +{ + Id: 1091 + SpriteName: "BlueSlime" + Name: "BlueSlime" + Lv: 40 + Hp: 2000 + Sp: 0 + Exp: 511 + JExp: 77 + AttackRange: 1 + Attack: [100, 150] + Def: 20 + Mdef: 40 + Stats: { + Str: 40 + Agi: 30 + Vit: 50 + Int: 10 + Dex: 50 + Luk: 40 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 3) + Mode: { + CanMove: true + Looter: true + CanAttack: true + } + MoveSpeed: 1200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + IceCube: 200 + Sapphire: 20 + CactusDrink: 500 + IcedWater: 700 + SilverMirror: 100 + BookPage: 500 + } +}, +{ + Id: 1098 + SpriteName: "CopperSlime" + Name: "CopperSlime" + Lv: 40 + Hp: 600 + Sp: 0 + Exp: 134 + JExp: 18 + AttackRange: 1 + Attack: [60, 90] + Def: 20 + Mdef: 30 + Stats: { + Str: 20 + Agi: 30 + Vit: 10 + Int: 10 + Dex: 30 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 1) + Mode: { + CanMove: true + Looter: true + CanAttack: true + } + MoveSpeed: 1200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + IronOre: 1500 + TreasureKey: 1000 + Coal: 300 + } +}, +{ + Id: 1111 + SpriteName: "CandiedSlime" + Name: "CandiedSlime" + Lv: 50 + Hp: 800 + Sp: 0 + Exp: 800 + JExp: 66 + AttackRange: 3 + Attack: [50, 50] + Def: 20 + Mdef: 30 + Stats: { + Str: 20 + Agi: 30 + Vit: 10 + Int: 10 + Dex: 30 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 1200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + Candy: 1000 + ChocolateBar: 1000 + PurplePresentBox: 200 + BluePresentBox: 200 + GreenPresentBox: 200 + GingerBreadMan: 200 + XmasCake: 500 + XmasCandyCane: 750 + } +}, +{ + Id: 1112 + SpriteName: "Santaboo" + Name: "Santaboo" + Lv: 50 + Hp: 2200 + Sp: 0 + Exp: 734 + JExp: 59 + AttackRange: 2 + Attack: [80, 125] + Def: 50 + Mdef: 10 + Stats: { + Str: 25 + Agi: 10 + Vit: 25 + Int: 0 + Dex: 60 + Luk: 30 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 600 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + GingerBreadMan: 1000 + WhiteCake: 1200 + ChocolateCake: 1200 + OrangeCake: 1200 + AppleCake: 1200 + SantaHat: 50 + RedNose: 10 + } +}, +//ID, Name, Jname, LV, HP, SP, EXP, JEXP, Range1, ATK1, ATK2, DEF, MDEF, STR, AGI, VIT, INT, DEX, LUK, Range2, Range3, Scale, Race, Element,Mode, Speed, Adelay, Amotion,Dmotion,Drop1id,Drop1per,Drop2id,Drop2%, Drop3id,Drop3%, Drop4id,Drop4%, Drop5id,Drop5%, Drop6id,Drop6%, Drop7id,Drop7%, Drop8id,Drop8%, Item1, Item2, MEXP, ExpPer, MVP1id, MVP1per,MVP2id, MVP2per,MVP3id, MVP3per,mutationcount,mutationstrength +{ + Id: 1009 + SpriteName: "BlackScorpionMob" + Name: "BlackScorpionMob" + Lv: 100 + Hp: 600 + Sp: 0 + Exp: 500 + JExp: 37 + AttackRange: 1 + Attack: [60, 100] + Def: 4 + Mdef: 6 + Stats: { + Str: 16 + Agi: 30 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 1000 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + LeatherShirt: 150 + ChocolateBar: 100 + BugLeg: 800 + BlackScorpionStinger: 800 + } +}, +{ + Id: 1010 + SpriteName: "Snake" + Name: "Snake" + Lv: 115 + Hp: 850 + Sp: 0 + Exp: 722 + JExp: 56 + AttackRange: 1 + Attack: [75, 90] + Def: 4 + Mdef: 6 + Stats: { + Str: 20 + Agi: 11 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 900 + AttackDelay: 1300 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + SnakeSkin: 150 + SnakeEgg: 400 + SnakeEgg: 400 + SnakeTongue: 500 + } +}, +{ + Id: 1012 + SpriteName: "Spider" + Name: "Spider" + Lv: 125 + Hp: 800 + Sp: 0 + Exp: 690 + JExp: 115 + AttackRange: 1 + Attack: [70, 85] + Def: 4 + Mdef: 6 + Stats: { + Str: 14 + Agi: 13 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (5, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 1000 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + TreasureKey: 500 + RedApple: 100 + InfantryHelmet: 20 + CoinBag: 200 + } +}, +{ + Id: 1013 + SpriteName: "EvilMushroom" + Name: "EvilMushroom" + Lv: 110 + Hp: 650 + Sp: 0 + Exp: 138 + JExp: 35 + AttackRange: 1 + Attack: [65, 80] + Def: 4 + Mdef: 6 + Stats: { + Str: 16 + Agi: 12 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + CanMove: true + Assist: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + RedApple: 500 + EmptyBottle: 10 + OrangeCupcake: 100 + SmallMushroom: 1000 + } +}, +{ + Id: 1014 + SpriteName: "PinkFlower" + Name: "PinkFlower" + Lv: 115 + Hp: 700 + Sp: 0 + Exp: 163 + JExp: 40 + AttackRange: 2 + Attack: [70, 75] + Def: 0 + Mdef: 5 + Stats: { + Str: 16 + Agi: 12 + Vit: 20 + Int: 20 + Dex: 20 + Luk: 50 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + RedApple: 100 + EmptyBottle: 10 + Arrow: 100 + CoinBag: 400 + PinkPetal: 1000 + PinkPetal: 1000 + } +}, +{ + Id: 1015 + SpriteName: "SantaSlime" + Name: "SantaSlime" + Lv: 120 + Hp: 750 + Sp: 0 + Exp: 166 + JExp: 58 + AttackRange: 1 + Attack: [75, 80] + Def: 2 + Mdef: 7 + Stats: { + Str: 1 + Agi: 20 + Vit: 1 + Int: 0 + Dex: 30 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 1) + Mode: { + CanMove: true + Boss: true + CanAttack: true + } + MoveSpeed: 1500 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + GingerBreadMan: 800 + Cake: 700 + XmasCandyCane: 600 + CherryCake: 500 + Milk: 400 + GreenPresentBox: 500 + Snowball: 1800 + } +}, +{ + Id: 1022 + SpriteName: "JackO" + Name: "JackO" + Lv: 175 + Hp: 10000 + Sp: 0 + Exp: 18130 + JExp: 1241 + AttackRange: 2 + Attack: [100, 500] + Def: 40 + Mdef: 20 + Stats: { + Str: 105 + Agi: 40 + Vit: 85 + Int: 75 + Dex: 105 + Luk: 95 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 250 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + PirateHat: 300 + Bandana: 400 + VNeckSweater: 400 + Circlet: 400 + PumpkinHelmet: 300 + RangerHat: 400 + Soul: 10000 + AxeHat: 600 + } +}, +{ + Id: 1023 + SpriteName: "FireSkull" + Name: "FireSkull" + Lv: 170 + Hp: 5000 + Sp: 0 + Exp: 2460 + JExp: 721 + AttackRange: 2 + Attack: [75, 175] + Def: 35 + Mdef: 15 + Stats: { + Str: 40 + Agi: 30 + Vit: 30 + Int: 30 + Dex: 35 + Luk: 70 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (3, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 600 + AttackDelay: 1600 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + DarkCrystal: 1000 + PileOfAsh: 5000 + } +}, +{ + Id: 1024 + SpriteName: "PoisonSkull" + Name: "PoisonSkull" + Lv: 170 + Hp: 5000 + Sp: 0 + Exp: 2460 + JExp: 721 + AttackRange: 2 + Attack: [75, 175] + Def: 35 + Mdef: 15 + Stats: { + Str: 40 + Agi: 30 + Vit: 30 + Int: 30 + Dex: 35 + Luk: 70 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (5, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 600 + AttackDelay: 1600 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + DarkCrystal: 1000 + } +}, +{ + Id: 1026 + SpriteName: "MountainSnake" + Name: "MountainSnake" + Lv: 130 + Hp: 900 + Sp: 0 + Exp: 1024 + JExp: 63 + AttackRange: 1 + Attack: [80, 125] + Def: 4 + Mdef: 6 + Stats: { + Str: 20 + Agi: 40 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 45 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 1000 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + LeatherGloves: 20 + SnakeSkin: 350 + MountainSnakeEgg: 400 + MountainSnakeEgg: 400 + MountainSnakeTongue: 500 + } +}, +{ + Id: 1034 + SpriteName: "GrassSnake" + Name: "GrassSnake" + Lv: 140 + Hp: 1000 + Sp: 0 + Exp: 1254 + JExp: 103 + AttackRange: 1 + Attack: [80, 120] + Def: 2 + Mdef: 10 + Stats: { + Str: 20 + Agi: 40 + Vit: 10 + Int: 10 + Dex: 40 + Luk: 50 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 500 + AttackDelay: 1100 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + GrassSnakeEgg: 400 + GrassSnakeEgg: 400 + GrassSnakeTongue: 500 + Steak: 500 + CottonCloth: 1600 + SnakeSkin: 500 + } +}, +{ + Id: 1036 + SpriteName: "Zombie" + Name: "Zombie" + Lv: 110 + Hp: 12000 + Sp: 0 + Exp: 4192 + JExp: 1393 + AttackRange: 2 + Attack: [275, 355] + Def: 20 + Mdef: 15 + Stats: { + Str: 30 + Agi: 15 + Vit: 30 + Int: 3 + Dex: 60 + Luk: 40 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 480 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 900 + MvpExp: 0 + Drops: { + DarkCrystal: 1000 + RottenRags: 700 + DiseasedHeart: 500 + UndeadEar: 200 + UndeadEye: 150 + Soul: 500 + } +}, +{ + Id: 1042 + SpriteName: "Spectre" + Name: "Spectre" + Lv: 140 + Hp: 6500 + Sp: 0 + Exp: 3978 + JExp: 359 + AttackRange: 3 + Attack: [160, 220] + Def: 40 + Mdef: 0 + Stats: { + Str: 35 + Agi: 70 + Vit: 22 + Int: 15 + Dex: 20 + Luk: 70 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 2) + Mode: { + CanMove: true + Assist: true + CanAttack: true + } + MoveSpeed: 650 + AttackDelay: 1700 + AttackMotion: 800 + DamageMotion: 500 + MvpExp: 0 + Drops: { + SpectrePowder: 1000 + SulphurPowder: 150 + SulphurPowder: 120 + } +}, +{ + Id: 1045 + SpriteName: "Fallen" + Name: "Fallen" + Lv: 120 + Hp: 10000 + Sp: 0 + Exp: 7812 + JExp: 1663 + AttackRange: 2 + Attack: [180, 430] + Def: 5 + Mdef: 20 + Stats: { + Str: 40 + Agi: 3 + Vit: 25 + Int: 5 + Dex: 80 + Luk: 45 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 2) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 300 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 300 + MvpExp: 1198 + Drops: { + Bone: 210 + Bone: 210 + Skull: 300 + DarkCrystal: 1000 + WarlordHelmet: 3 + WarlordPlate: 2 + LeatherGloves: 35 + DiseasedHeart: 500 + Soul: 500 + } +}, +{ + Id: 1062 + SpriteName: "Terranite" + Name: "Terranite" + Lv: 110 + Hp: 6000 + Sp: 0 + Exp: 2484 + JExp: 889 + AttackRange: 1 + Attack: [200, 300] + Def: 20 + Mdef: 40 + Stats: { + Str: 60 + Agi: 40 + Vit: 40 + Int: 30 + Dex: 60 + Luk: 40 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 400 + AttackDelay: 872 + AttackMotion: 672 + DamageMotion: 900 + MvpExp: 0 + Drops: { + Coal: 600 + Emerald: 20 + Sapphire: 20 + Amethyst: 20 + TerraniteOre: 500 + IronOre: 500 + } +}, +{ + Id: 1068 + SpriteName: "Reaper" + Name: "Reaper" + Lv: 140 + Hp: 40000 + Sp: 0 + Exp: 23960 + JExp: 156 + AttackRange: 7 + Attack: [200, 350] + Def: 30 + Mdef: 80 + Stats: { + Str: 100 + Agi: 120 + Vit: 70 + Int: 120 + Dex: 100 + Luk: 75 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 1 + Element: (9, 4) + Mode: { + CanMove: true + Aggressive: true + Boss: true + CanAttack: true + } + MoveSpeed: 500 + AttackDelay: 1200 + AttackMotion: 800 + DamageMotion: 300 + MvpExp: 0 + Drops: { + RottenRags: 1000 + Bone: 500 + Skull: 100 + SkullMask: 10 + } +}, +{ + Id: 1071 + SpriteName: "IceElement" + Name: "IceElement" + Lv: 100 + Hp: 5000 + Sp: 0 + Exp: 1508 + JExp: 689 + AttackRange: 3 + Attack: [60, 200] + Def: 5 + Mdef: 20 + Stats: { + Str: 15 + Agi: 25 + Vit: 40 + Int: 15 + Dex: 45 + Luk: 30 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 2) + Mode: { + CanMove: true + Looter: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 330 + AttackDelay: 740 + AttackMotion: 672 + DamageMotion: 400 + MvpExp: 0 + Drops: { + IceCube: 900 + TreasureKey: 750 + ConcentrationPotion: 400 + StandardHeadband: 900 + SilkHeadband: 250 + Snowball: 1800 + } +}, +{ + Id: 1072 + SpriteName: "Yeti" + Name: "Yeti" + Lv: 100 + Hp: 8500 + Sp: 0 + Exp: 4716 + JExp: 726 + AttackRange: 2 + Attack: [100, 400] + Def: 60 + Mdef: 15 + Stats: { + Str: 60 + Agi: 5 + Vit: 45 + Int: 15 + Dex: 60 + Luk: 32 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (1, 3) + Mode: { + CanMove: true + Looter: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 220 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 900 + MvpExp: 0 + Drops: { + AnimalBones: 700 + FrozenYetiTear: 300 + YetiClaw: 400 + YetiMask: 142 + YellowPresentBox: 800 + WhitePresentBox: 700 + Snowball: 1800 + } +}, +{ + Id: 1075 + SpriteName: "Stalker" + Name: "Stalker" + Lv: 120 + Hp: 20000 + Sp: 0 + Exp: 8136 + JExp: 4000 + AttackRange: 2 + Attack: [220, 500] + Def: 23 + Mdef: 30 + Stats: { + Str: 35 + Agi: 15 + Vit: 3 + Int: 50 + Dex: 50 + Luk: 50 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 1 + Element: (9, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 340 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 950 + MvpExp: 0 + Drops: { + Bone: 75 + Bone: 115 + Skull: 135 + DarkCrystal: 40 + DiseasedHeart: 500 + Soul: 500 + } +}, +{ + Id: 1085 + SpriteName: "IceSkull" + Name: "IceSkull" + Lv: 170 + Hp: 7000 + Sp: 0 + Exp: 3342 + JExp: 757 + AttackRange: 2 + Attack: [75, 400] + Def: 40 + Mdef: 15 + Stats: { + Str: 40 + Agi: 30 + Vit: 30 + Int: 30 + Dex: 35 + Luk: 44 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (1, 1) + Mode: { + CanMove: true + Aggressive: true + Assist: true + CanAttack: true + } + MoveSpeed: 600 + AttackDelay: 1600 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + IceCube: 5000 + IcedWater: 800 + Snowball: 1800 + } +}, +{ + Id: 1096 + SpriteName: "SoulSnake" + Name: "SoulSnake" + Lv: 115 + Hp: 850 + Sp: 0 + Exp: 184 + JExp: 56 + AttackRange: 1 + Attack: [75, 90] + Def: 4 + Mdef: 6 + Stats: { + Str: 20 + Agi: 11 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Assist: true + CanAttack: true + } + MoveSpeed: 900 + AttackDelay: 1300 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 +}, +{ + Id: 1102 + SpriteName: "Luvia" + Name: "Luvia" + Lv: 127 + Hp: 48044 + Sp: 60 + Exp: 122817 + JExp: 12172 + AttackRange: 5 + Attack: [339, 364] + Def: 50 + Mdef: 92 + Stats: { + Str: 1 + Agi: 29 + Vit: 55 + Int: 255 + Dex: 255 + Luk: 255 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 220 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 +}, +{ + Id: 1106 + SpriteName: "WickedMushroom" + Name: "WickedMushroom" + Lv: 110 + Hp: 550 + Sp: 0 + Exp: 117 + JExp: 30 + AttackRange: 1 + Attack: [70, 80] + Def: 4 + Mdef: 4 + Stats: { + Str: 16 + Agi: 12 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + HardSpike: 600 + Amethyst: 50 + IronPotion: 100 + SmallMushroom: 1000 + } +}, +//ID, Name, Jname, LV, HP, SP, EXP, JEXP, Range1, ATK1, ATK2, DEF, MDEF, STR, AGI, VIT, INT, DEX, LUK, Range2, Range3, Scale, Race, Element,Mode, Speed, Adelay, Amotion,Dmotion,Drop1id,Drop1per,Drop2id,Drop2%, Drop3id,Drop3%, Drop4id,Drop4%, Drop5id,Drop5%, Drop6id,Drop6%, Drop7id,Drop7%, Drop8id,Drop8%, Item1, Item2, MEXP, ExpPer, MVP1id, MVP1per,MVP2id, MVP2per,MVP3id, MVP3per,mutationcount,mutationstrength +{ + Id: 1114 + SpriteName: "Nutcracker" + Name: "Nutcracker" + Lv: 110 + Hp: 6000 + Sp: 0 + Exp: 2235 + JExp: 769 + AttackRange: 1 + Attack: [81, 281] + Def: 20 + Mdef: 42 + Stats: { + Str: 40 + Agi: 20 + Vit: 10 + Int: 5 + Dex: 60 + Luk: 40 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 400 + AttackDelay: 872 + AttackMotion: 672 + DamageMotion: 900 + MvpExp: 0 + Drops: { + RawLog: 1000 + CottonCloth: 750 + Beer: 750 + CasinoCoins: 250 + IronOre: 200 + Emerald: 200 + Coal: 600 + } +}, +{ + Id: 1119 + SpriteName: "Thug" + Name: "Thug" + Lv: 170 + Hp: 5000 + Sp: 0 + Exp: 2316 + JExp: 999 + AttackRange: 1 + Attack: [125, 250] + Def: 30 + Mdef: 6 + Stats: { + Str: 10 + Agi: 10 + Vit: 60 + Int: 10 + Dex: 50 + Luk: 70 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 500 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + Beer: 1000 + Orange: 1000 + PileOfAsh: 500 + SulphurPowder: 250 + Pearl: 250 + SailorHat: 10 + } +}, +{ + Id: 1120 + SpriteName: "Swashbuckler" + Name: "Swashbuckler" + Lv: 170 + Hp: 5000 + Sp: 0 + Exp: 2423 + JExp: 999 + AttackRange: 1 + Attack: [75, 250] + Def: 23 + Mdef: 27 + Stats: { + Str: 20 + Agi: 20 + Vit: 40 + Int: 30 + Dex: 90 + Luk: 70 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 400 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + Beer: 1000 + Orange: 1000 + PileOfAsh: 500 + SulphurPowder: 250 + Pearl: 250 + Bandana: 500 + } +}, +{ + Id: 1121 + SpriteName: "Grenadier" + Name: "Grenadier" + Lv: 170 + Hp: 6000 + Sp: 0 + Exp: 1358 + JExp: 999 + AttackRange: 6 + Attack: [100, 200] + Def: 8 + Mdef: 60 + Stats: { + Str: 12 + Agi: 10 + Vit: 50 + Int: 60 + Dex: 90 + Luk: 70 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 500 + AttackDelay: 2000 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + Beer: 1000 + Orange: 1000 + PileOfAsh: 500 + IronPowder: 250 + Pearl: 250 + CaptainsHat: 1 + } +}, +{ + Id: 1122 + SpriteName: "DreadPirateMarley" + Name: "DreadPirateMarley" + Lv: 180 + Hp: 10000 + Sp: 0 + Exp: 7518 + JExp: 20000 + AttackRange: 4 + Attack: [175, 250] + Def: 38 + Mdef: 32 + Stats: { + Str: 10 + Agi: 20 + Vit: 40 + Int: 20 + Dex: 90 + Luk: 80 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 400 + AttackDelay: 700 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 +}, +{ + Id: 1123 + SpriteName: "DreadPirateMarleyClone" + Name: "DreadPirateMarleyClone" + Lv: 150 + Hp: 2000 + Sp: 0 + Exp: 709 + JExp: 0 + AttackRange: 4 + Attack: [175, 250] + Def: 18 + Mdef: 22 + Stats: { + Str: 10 + Agi: 40 + Vit: 30 + Int: 20 + Dex: 80 + Luk: 40 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 500 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 +}, +{ + Id: 1126 + SpriteName: "PsiBrain" + Name: "PsiBrain" + Lv: 100 + Hp: 10000 + Sp: 0 + Exp: 3952 + JExp: 4000 + AttackRange: 2 + Attack: [220, 500] + Def: 23 + Mdef: 30 + Stats: { + Str: 35 + Agi: 15 + Vit: 3 + Int: 50 + Dex: 50 + Luk: 50 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 1 + Element: (9, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 340 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 950 + MvpExp: 0 + Drops: { + Bone: 75 + Bone: 115 + Skull: 135 + DarkCrystal: 40 + BrainStem: 700 + } +}, +{ + Id: 1127 + SpriteName: "GeneralKrukan" + Name: "GeneralKrukan" + Lv: 140 + Hp: 40000 + Sp: 0 + Exp: 12932 + JExp: 1663 + AttackRange: 2 + Attack: [180, 430] + Def: 5 + Mdef: 20 + Stats: { + Str: 40 + Agi: 3 + Vit: 25 + Int: 5 + Dex: 80 + Luk: 45 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 2) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 300 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 300 + MvpExp: 778 + MvpDrops: { + Soul: 1198 + } + Drops: { + Bone: 1000 + Skull: 1000 + DarkCrystal: 1000 + DarkHelm: 2 + WarlordHelmet: 6 + KnightsHelmet: 25 + InfantryHelmet: 50 + CrusadeHelmet: 8 + DiseasedHeart: 500 + Soul: 500 + } +}, +{ + Id: 1128 + SpriteName: "GeneralRazha" + Name: "GeneralRazha" + Lv: 140 + Hp: 40000 + Sp: 0 + Exp: 12932 + JExp: 1663 + AttackRange: 2 + Attack: [180, 430] + Def: 5 + Mdef: 20 + Stats: { + Str: 40 + Agi: 3 + Vit: 25 + Int: 5 + Dex: 80 + Luk: 45 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 2) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 300 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 300 + MvpExp: 1198 + Drops: { + Bone: 210 + UnderworldMask: 5 + Skull: 300 + DarkCrystal: 1000 + WarlordHelmet: 3 + WarlordPlate: 2 + LeatherGloves: 35 + DiseasedHeart: 500 + Soul: 500 + } +}, +{ + Id: 1129 + SpriteName: "GeneralTerogan" + Name: "GeneralTerogan" + Lv: 140 + Hp: 40000 + Sp: 0 + Exp: 12932 + JExp: 1663 + AttackRange: 2 + Attack: [180, 430] + Def: 5 + Mdef: 20 + Stats: { + Str: 40 + Agi: 3 + Vit: 25 + Int: 5 + Dex: 80 + Luk: 45 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 2) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 300 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 300 + MvpExp: 1198 + Drops: { + Bone: 210 + Phylactery: 1 + Skull: 300 + DarkCrystal: 1000 + WarlordHelmet: 3 + WarlordPlate: 2 + LeatherGloves: 35 + DiseasedHeart: 500 + Soul: 500 + } +}, +{ + Id: 1130 + SpriteName: "Moonshroom" + Name: "Moonshroom" + Lv: 110 + Hp: 550 + Sp: 0 + Exp: 120 + JExp: 35 + AttackRange: 4 + Attack: [70, 80] + Def: 4 + Mdef: 4 + Stats: { + Str: 16 + Agi: 12 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + SmallMushroom: 500 + BugLeg: 500 + Lifestone: 300 + EmptyBottle: 100 + SulphurPowder: 100 + } +}, +{ + Id: 1132 + SpriteName: "LavaSlime" + Name: "LavaSlime" + Lv: 135 + Hp: 4144 + Sp: 0 + Exp: 6000 + JExp: 1111 + AttackRange: 2 + Attack: [105, 260] + Def: 75 + Mdef: 80 + Stats: { + Str: 30 + Agi: 15 + Vit: 35 + Int: 10 + Dex: 70 + Luk: 250 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (3, 2) + Mode: { + CanMove: true + Looter: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 900 + AttackDelay: 1300 + AttackMotion: 672 + DamageMotion: 100 + MvpExp: 0 + Drops: { + SlingBullet: 10000 + SulphurPowder: 2500 + IronOre: 1000 + PileOfAsh: 1000 + Coal: 1000 + TinyManaElixir: 500 + } +}, +{ + Id: 1133 + SpriteName: "Anne" + Name: "Anne" + Lv: 110 + Hp: 12000 + Sp: 0 + Exp: 1100 + JExp: 889 + AttackRange: 1 + Attack: [200, 300] + Def: 20 + Mdef: 40 + Stats: { + Str: 60 + Agi: 40 + Vit: 40 + Int: 30 + Dex: 60 + Luk: 40 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 380 + AttackDelay: 872 + AttackMotion: 672 + DamageMotion: 900 + MvpExp: 0 + Drops: { + CranberryLollipop: 6000 + GrapeLollipop: 6000 + OrangeLollipop: 6000 + CaramelApple: 200 + LollipopColor1: 500 + LollipopColor2: 500 + LollipopColor3: 500 + ShockSweet: 20 + } +}, +{ + Id: 1134 + SpriteName: "SUSAN" + Name: "SUSAN" + Lv: 255 + Hp: 696969 + Sp: 0 + Exp: 69000 + JExp: 1400 + AttackRange: 1 + Attack: [0, 0] + Def: 69 + Mdef: 69 + Stats: { + Str: 69 + Agi: 69 + Vit: 69 + Int: 69 + Dex: 69 + Luk: 69 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 1) + Mode: { + CanMove: true + Boss: true + CanAttack: true + } + MoveSpeed: 1500 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + CranberryLollipop: 6000 + GrapeLollipop: 6000 + OrangeLollipop: 6000 + CaramelApple: 200 + LollipopColor1: 500 + LollipopColor2: 500 + LollipopColor3: 500 + ShockSweet: 20 + } +}, +{ + Id: 1135 + SpriteName: "LovelyMaggot" + Name: "LovelyMaggot" + Lv: 1 + Hp: 50 + Sp: 0 + Exp: 1 + JExp: 1 + AttackRange: 1 + Attack: [69, 6969] + Def: 0 + Mdef: 5 + Stats: { + Str: 5 + Agi: 5 + Vit: 1 + Int: 0 + Dex: 6 + Luk: 5 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (1, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 400 + CactusDrink: 70 + BugLeg: 200 + RoastedMaggot: 75 + CactusPotion: 30 + } +}, +{ + Id: 1136 + SpriteName: "LesserGhost" + Name: "LesserGhost" + Lv: 1 + Hp: 1 + Sp: 0 + Exp: 1 + JExp: 1 + AttackRange: 0 + Attack: [150, 300] + Def: 0 + Mdef: 0 + Stats: { + Str: 0 + Agi: 0 + Vit: 0 + Int: 0 + Dex: 0 + Luk: 0 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 1 + Element: (9, 1) + Mode: { + CanMove: true + Looter: true + CanAttack: true + } + MoveSpeed: 340 + AttackDelay: 1800 + AttackMotion: 672 + DamageMotion: 950 + MvpExp: 0 +}, +{ + Id: 1137 + SpriteName: "Tormenta" + Name: "Tormenta" + Lv: 200 + Hp: 18000 + Sp: 60 + Exp: 500000 + JExp: 5000 + AttackRange: 5 + Attack: [360, 374] + Def: 48 + Mdef: 90 + Stats: { + Str: 1 + Agi: 32 + Vit: 60 + Int: 255 + Dex: 255 + Luk: 255 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 210 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 +}, +//ID, Name, Jname, LV, HP, SP, EXP, JEXP, Range1, ATK1, ATK2, DEF, MDEF, STR, AGI, VIT, INT, DEX, LUK, Range2, Range3, Scale, Race, Element,Mode, Speed, Adelay, Amotion,Dmotion,Drop1id,Drop1per,Drop2id,Drop2%, Drop3id,Drop3%, Drop4id,Drop4%, Drop5id,Drop5%, Drop6id,Drop6%, Drop7id,Drop7%, Drop8id,Drop8%, Item1, Item2, MEXP, ExpPer, MVP1id, MVP1per,MVP2id, MVP2per,MVP3id, MVP3per,mutationcount,mutationstrength +{ + Id: 1138 + SpriteName: "ManaGuard" + Name: "ManaGuardian" + Lv: 180 + Hp: 20000 + Sp: 280 + Exp: 27000 + JExp: 5000 + AttackRange: 2 + Attack: [280, 324] + Def: 22 + Mdef: 67 + Stats: { + Str: 31 + Agi: 22 + Vit: 90 + Int: 127 + Dex: 255 + Luk: 95 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 210 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 +}, +{ + Id: 1139 + SpriteName: "Virus" + Name: "Virus" + Lv: 170 + Hp: 5000 + Sp: 0 + Exp: 2273 + JExp: 721 + AttackRange: 6 + Attack: [45, 75] + Def: 37 + Mdef: 12 + Stats: { + Str: 30 + Agi: 30 + Vit: 20 + Int: 20 + Dex: 25 + Luk: 60 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (5, 1) + Mode: { + CanMove: true + Looter: true + Aggressive: true + Assist: true + Boss: true + CanAttack: true + } + MoveSpeed: 600 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + Snapple: 500 + Acorn: 1100 + GumiCandy: 11 + } +}, +{ + Id: 1140 + SpriteName: "Tengu" + Name: "Tengu" + Lv: 180 + Hp: 24000 + Sp: 280 + Exp: 45000 + JExp: 5000 + AttackRange: 2 + Attack: [180, 224] + Def: 67 + Mdef: 9 + Stats: { + Str: 31 + Agi: 22 + Vit: 90 + Int: 97 + Dex: 255 + Luk: 95 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 310 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 +}, +{ + Id: 1141 + SpriteName: "Sasquatch" + Name: "Sasquatch" + Lv: 180 + Hp: 24000 + Sp: 280 + Exp: 45000 + JExp: 5000 + AttackRange: 1 + Attack: [420, 444] + Def: 12 + Mdef: 27 + Stats: { + Str: 31 + Agi: 22 + Vit: 90 + Int: 97 + Dex: 255 + Luk: 95 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 310 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 +}, +{ + Id: 1142 + SpriteName: "Kage" + Name: "ZaxDeKagen" + Lv: 200 + Hp: 29999 + Sp: 280 + Exp: 999999 + JExp: 99999 + AttackRange: 9 + Attack: [90, 124] + Def: 74 + Mdef: 100 + Stats: { + Str: 199 + Agi: 2 + Vit: 199 + Int: 197 + Dex: 255 + Luk: 175 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 210 + AttackDelay: 672 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 + Drops: { + BlueRose: 10000 + } +}, +{ + Id: 1143 + SpriteName: "ManaSlayer" + Name: "ManaSlayer" + Lv: 180 + Hp: 24000 + Sp: 280 + Exp: 42000 + JExp: 5000 + AttackRange: 2 + Attack: [260, 274] + Def: 22 + Mdef: 67 + Stats: { + Str: 31 + Agi: 22 + Vit: 90 + Int: 127 + Dex: 255 + Luk: 95 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 210 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 +}, +{ + Id: 1144 + SpriteName: "Dragon" + Name: "GreatDragon" + Lv: 250 + Hp: 29999 + Sp: 280 + Exp: 1 + JExp: 1 + AttackRange: 3 + Attack: [60, 90] + Def: 67 + Mdef: 67 + Stats: { + Str: 199 + Agi: 2 + Vit: 199 + Int: 197 + Dex: 255 + Luk: 95 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 210 + AttackDelay: 1200 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 + Drops: { + PaladinsHelmet: 1 + } +}, +{ + Id: 1145 + SpriteName: "KageGolem" + Name: "KageGolem" + Lv: 180 + Hp: 29999 + Sp: 280 + Exp: 150000 + JExp: 15000 + AttackRange: 6 + Attack: [140, 174] + Def: 72 + Mdef: 55 + Stats: { + Str: 31 + Agi: 22 + Vit: 90 + Int: 127 + Dex: 255 + Luk: 125 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 410 + AttackDelay: 1000 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 + Drops: { + WumpusEgg: 10000 + } +}, +{ + Id: 1146 + SpriteName: "Flashmob" + Name: "Flashmob" + Lv: 181 + Hp: 27000 + Sp: 280 + Exp: 72000 + JExp: 5000 + AttackRange: 1 + Attack: [40, 60] + Def: 57 + Mdef: 57 + Stats: { + Str: 31 + Agi: 22 + Vit: 90 + Int: 127 + Dex: 255 + Luk: 95 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 160 + AttackDelay: 600 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 +}, +{ + Id: 1147 + SpriteName: "Koyntety" + Name: "Koyntety" + Lv: 181 + Hp: 27000 + Sp: 280 + Exp: 72000 + JExp: 5000 + AttackRange: 4 + Attack: [220, 240] + Def: 52 + Mdef: 52 + Stats: { + Str: 31 + Agi: 22 + Vit: 90 + Int: 127 + Dex: 255 + Luk: 105 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 240 + AttackDelay: 1400 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 +}, +{ + Id: 1148 + SpriteName: "DoomGolem" + Name: "DoomGolem" + Lv: 180 + Hp: 22000 + Sp: 280 + Exp: 65000 + JExp: 2000 + AttackRange: 3 + Attack: [160, 180] + Def: 60 + Mdef: 30 + Stats: { + Str: 31 + Agi: 22 + Vit: 90 + Int: 127 + Dex: 255 + Luk: 105 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 320 + AttackDelay: 1000 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 + Drops: { + MageRing: 4 + BlackRose: 30 + TreasureKey: 800 + UndeadEar: 150 + UndeadEye: 150 + RottenRags: 70 + Soul: 50 + BlinkingHocus: 1 + } +}, +{ + Id: 1149 + SpriteName: "Enchanter" + Name: "Enchanter" + Lv: 181 + Hp: 19000 + Sp: 280 + Exp: 55000 + JExp: 2000 + AttackRange: 8 + Attack: [140, 180] + Def: 30 + Mdef: 60 + Stats: { + Str: 31 + Agi: 22 + Vit: 90 + Int: 127 + Dex: 255 + Luk: 105 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 240 + AttackDelay: 800 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 + Drops: { + EnchantersAmulet: 2 + BlackRose: 30 + TreasureKey: 800 + UndeadEar: 90 + UndeadEye: 80 + RottenRags: 70 + Soul: 50 + } +}, +{ + Id: 1150 + SpriteName: "ManaTyrant" + Name: "ManaTyrant" + Lv: 180 + Hp: 24000 + Sp: 280 + Exp: 27000 + JExp: 5000 + AttackRange: 2 + Attack: [300, 325] + Def: 42 + Mdef: 67 + Stats: { + Str: 31 + Agi: 22 + Vit: 90 + Int: 127 + Dex: 255 + Luk: 95 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 180 + AttackDelay: 1050 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 + Drops: { + PaladinsHelmet: 1 + CaramelCandy: 20 + GoldenDeliciousApple: 5 + SilkRobe: 100 + TinyManaElixir: 500 + SilkGloves: 20 + SilkPants: 15 + } +}, +//ID, Name, Jname, LV, HP, SP, EXP, JEXP, Range1, ATK1, ATK2, DEF, MDEF, STR, AGI, VIT, INT, DEX, LUK, Range2, Range3, Scale, Race, Element,Mode, Speed, Adelay, Amotion,Dmotion,Drop1id,Drop1per,Drop2id,Drop2%, Drop3id,Drop3%, Drop4id,Drop4%, Drop5id,Drop5%, Drop6id,Drop6%, Drop7id,Drop7%, Drop8id,Drop8%, Item1, Item2, MEXP, ExpPer, MVP1id, MVP1per,MVP2id, MVP2per,MVP3id, MVP3per,mutationcount,mutationstrength +{ + Id: 1151 + SpriteName: "VoidFlower" + Name: "VoidFlower" + Lv: 115 + Hp: 7000 + Sp: 0 + Exp: 1068 + JExp: 40 + AttackRange: 12 + Attack: [400, 420] + Def: 0 + Mdef: 5 + Stats: { + Str: 16 + Agi: 12 + Vit: 20 + Int: 20 + Dex: 255 + Luk: 50 + } + ViewRange: 12 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 2000 + AttackMotion: 672 + DamageMotion: 180 + MvpExp: 0 + Drops: { + RedApple: 100 + EmptyBottle: 10 + Arrow: 100 + CoinBag: 400 + PinkPetal: 1000 + PinkPetal: 1000 + } +}, +{ + Id: 1152 + SpriteName: "VoidArchant" + Name: "VoidArchant" + Lv: 130 + Hp: 6000 + Sp: 0 + Exp: 1598 + JExp: 14 + AttackRange: 1 + Attack: [140, 180] + Def: 36 + Mdef: 6 + Stats: { + Str: 10 + Agi: 5 + Vit: 1 + Int: 0 + Dex: 12 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (5, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 200 + MvpExp: 0 + Drops: { + TreasureKey: 300 + RedApple: 100 + IronOre: 40 + Coal: 20 + } +}, +{ + Id: 1153 + SpriteName: "VoidSlime" + Name: "VoidSlime" + Lv: 135 + Hp: 4144 + Sp: 0 + Exp: 6000 + JExp: 70 + AttackRange: 2 + Attack: [105, 160] + Def: 75 + Mdef: 40 + Stats: { + Str: 30 + Agi: 15 + Vit: 35 + Int: 10 + Dex: 70 + Luk: 250 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (3, 2) + Mode: { + CanMove: true + Looter: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 1100 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 200 + MvpExp: 0 + Drops: { + SlingBullet: 10000 + SulphurPowder: 2500 + IronOre: 1000 + PileOfAsh: 1000 + Coal: 1000 + TinyManaElixir: 500 + } +}, +{ + Id: 1154 + SpriteName: "VoidSnake" + Name: "VoidSnake" + Lv: 130 + Hp: 2000 + Sp: 0 + Exp: 541 + JExp: 63 + AttackRange: 1 + Attack: [80, 120] + Def: 4 + Mdef: 6 + Stats: { + Str: 20 + Agi: 40 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 45 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 320 + AttackDelay: 1500 + AttackMotion: 672 + DamageMotion: 200 + MvpExp: 0 + Drops: { + LeatherGloves: 20 + SnakeSkin: 350 + MountainSnakeEgg: 400 + MountainSnakeEgg: 400 + MountainSnakeTongue: 500 + } +}, +{ + Id: 1155 + SpriteName: "VoidBat" + Name: "VoidBat" + Lv: 100 + Hp: 400 + Sp: 0 + Exp: 81 + JExp: 3 + AttackRange: 1 + Attack: [10, 25] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 20 + Luk: 25 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (4, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 200 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 800 + CactusDrink: 150 + BugLeg: 400 + RoastedMaggot: 150 + Dagger: 70 + SharpKnife: 1 + BatWing: 3000 + BatTeeth: 2000 + } +}, +{ + Id: 1156 + SpriteName: "VoidMaggot" + Name: "VoidMaggot" + Lv: 100 + Hp: 400 + Sp: 0 + Exp: 74 + JExp: 1 + AttackRange: 1 + Attack: [10, 25] + Def: 0 + Mdef: 5 + Stats: { + Str: 1 + Agi: 1 + Vit: 1 + Int: 0 + Dex: 20 + Luk: 25 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (1, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 800 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + MaggotSlime: 800 + CactusDrink: 150 + BugLeg: 400 + RoastedMaggot: 150 + CactusPotion: 70 + SharpKnife: 10 + } +}, +{ + Id: 1157 + SpriteName: "VoidSoldier" + Name: "VoidSoldier" + Lv: 120 + Hp: 8000 + Sp: 0 + Exp: 1957 + JExp: 663 + AttackRange: 7 + Attack: [20, 30] + Def: 5 + Mdef: 20 + Stats: { + Str: 40 + Agi: 3 + Vit: 25 + Int: 5 + Dex: 80 + Luk: 45 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 2) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 500 + AttackDelay: 1600 + AttackMotion: 672 + DamageMotion: 300 + MvpExp: 1198 + Drops: { + UndeadEar: 210 + UndeadEye: 210 + PurpleDye: 200 + DarkCrystal: 1000 + WarlordHelmet: 3 + WarlordPlate: 2 + LeatherGloves: 35 + DiseasedHeart: 500 + Soul: 500 + } +}, +{ + Id: 1158 + SpriteName: "VoidMouboo" + Name: "VoidMouboo" + Lv: 100 + Hp: 5000 + Sp: 0 + Exp: 1338 + JExp: 16 + AttackRange: 2 + Attack: [50, 65] + Def: 60 + Mdef: 5 + Stats: { + Str: 15 + Agi: 5 + Vit: 15 + Int: 0 + Dex: 40 + Luk: 10 + } + ViewRange: 2 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (0, 1) + Mode: { + CanMove: true + CanAttack: true + } + MoveSpeed: 600 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + CottonCloth: 1000 + CottonCloth: 500 + BottleOfWater: 750 + CottonCloth: 50 + ReedBundle: 500 + } +}, +{ + Id: 1159 + SpriteName: "VoidScorpionMob" + Name: "VoidScorpionMob" + Lv: 110 + Hp: 6000 + Sp: 0 + Exp: 1327 + JExp: 37 + AttackRange: 1 + Attack: [60, 90] + Def: 4 + Mdef: 6 + Stats: { + Str: 16 + Agi: 30 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (0, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 700 + AttackDelay: 1700 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + LeatherShirt: 150 + ChocolateBar: 100 + BugLeg: 800 + BlackScorpionStinger: 800 + } +}, +{ + Id: 1160 + SpriteName: "VoidShroom" + Name: "VoidShroom" + Lv: 110 + Hp: 5500 + Sp: 0 + Exp: 1223 + JExp: 30 + AttackRange: 3 + Attack: [70, 80] + Def: 4 + Mdef: 4 + Stats: { + Str: 16 + Agi: 12 + Vit: 10 + Int: 10 + Dex: 35 + Luk: 10 + } + ViewRange: 1 + ChaseRange: 10 + Size: 1 + Race: 3 + Element: (2, 1) + Mode: { + CanMove: true + Aggressive: true + CanAttack: true + } + MoveSpeed: 550 + AttackDelay: 1700 + AttackMotion: 672 + DamageMotion: 480 + MvpExp: 0 + Drops: { + HardSpike: 600 + Amethyst: 50 + IronPotion: 100 + SmallMushroom: 1000 + } +}, +{ + Id: 1161 + SpriteName: "Xakelbael" + Name: "Xakelbael" + Lv: 200 + Hp: 29999 + Sp: 280 + Exp: 999999 + JExp: 99999 + AttackRange: 9 + Attack: [90, 124] + Def: 74 + Mdef: 100 + Stats: { + Str: 199 + Agi: 2 + Vit: 199 + Int: 197 + Dex: 255 + Luk: 175 + } + ViewRange: 31 + ChaseRange: 10 + Size: 1 + Race: 0 + Element: (9, 3) + Mode: { + CanMove: true + Aggressive: true + CastSensorIdle: true + Boss: true + CanAttack: true + } + MoveSpeed: 210 + AttackDelay: 672 + AttackMotion: 672 + DamageMotion: 50 + MvpExp: 0 + Drops: { + BlueRose: 10000 + } +}, + ) diff --git a/npc/029-2/sorfina.txt b/npc/029-2/sorfina.txt index 619a7060..d9353e4d 100755 --- a/npc/029-2/sorfina.txt +++ b/npc/029-2/sorfina.txt @@ -311,8 +311,8 @@ L_Walk: L_Shirt: mapmask getmask(); mes "You take a simple Cotton Shirt and some very worn-out Ragged Shorts out of the dresser."; - getitem "CottonShirt", 1; - getitem "RaggedShorts", 1; + getitem CottonShirt, 1; + getitem RaggedShorts, 1; mes "[Sorfina]"; mes "\"Great! Now you can equip it.\""; mes "\"You can open your inventory by pressing F3 or clicking on the 'Inventory' button in the bar at the upper right corner.\""; -- cgit v1.2.3-70-g09d2 From 53e5a40a0a2b22205346a84bce25e419c4a3cf17 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Fri, 9 Apr 2021 18:10:53 -0300 Subject: Remove alchemy, fix some scripts --- npc/002-2/stranger.txt | 4 +-- npc/029-2/alchemy.txt | 98 -------------------------------------------------- npc/functions/main.txt | 5 +++ 3 files changed, 7 insertions(+), 100 deletions(-) delete mode 100755 npc/029-2/alchemy.txt (limited to 'npc/029-2') diff --git a/npc/002-2/stranger.txt b/npc/002-2/stranger.txt index 98c9ffd7..8be7ac21 100755 --- a/npc/002-2/stranger.txt +++ b/npc/002-2/stranger.txt @@ -150,8 +150,8 @@ L_Towel: mes "\"What is the most important item for every hitchhiker to have?\""; mes ""; mes "##BDrag & drop the item from your inventory##b."; - requestitem .@answer$[0]; - if (.@answer$[0] != "Towel" && .@answer$[0] != "HitchhikersTowel") + .@answer=requestitem(); + if (.@answer != Towel && .@answer != HitchhikersTowel) goto L_Wrong_Answer; mes "[Stranger]"; diff --git a/npc/029-2/alchemy.txt b/npc/029-2/alchemy.txt deleted file mode 100755 index f9799252..00000000 --- a/npc/029-2/alchemy.txt +++ /dev/null @@ -1,98 +0,0 @@ -- script _N-Alchemy NPC32767,{ - @npc_distance = 1; - callfunc "PCtoNPCRange"; - if (@npc_check) end; - - title "Alchemy Lab"; - mes "This is an alchemy lab."; - mes "With it, you can combine reagents together to create powerful potions."; - next; - clear; - mes "##BDrag & drop 2 items from your inventory. All items used will be lost.##b"; - cleararray @alchlab_items$[0], "", 2; // since we're not using a scoped (.@) array, we need to clean it - requestitem @alchlab_items$[0], 2; // TODO: add a craft builtin (npc action 12) - clear; - if (@alchlab_items$[0] == "" || @alchlab_items$[1] == "") - goto L_NoItems; - - mes "You are about to combine the following:"; - mes " ["+ getitemlink(@alchlab_items$[0]) +"]"; - mes " ["+ getitemlink(@alchlab_items$[1]) +"]"; - mes; - mes "##BWarning! This will permanently destroy the selected items.##b"; - // can not use a scope variable to store item names because menu is a script terminator (destroys the scope) - menu - "Abort Mission.", L_Abort, - "Proceed.", L_Proceed; - -L_Proceed: - // XXX: here we could make it wait a little, while the potion is boiling (and show an animation/particles/sound) - if (countitem(@alchlab_items$[0]) < 1 || countitem(@alchlab_items$[1]) < 1) // this shouldn't happen, but just to be safe.. - goto L_NoItems; - delitem @alchlab_items$[0], 1; - delitem @alchlab_items$[1], 1; - if (@alchlab_items$[0] == "BottleOfWater" || @alchlab_items$[1] == "BottleOfWater") // give back used bottles - getitem "EmptyBottle", if_then_else(@alchlab_items$[0] == "BottleOfWater" && @alchlab_items$[1] == "BottleOfWater",2,1); - - .@n = -3; - goto L_CheckRecipes; - -L_CheckRecipes: - .@n = .@n+3; - if (.@n == get(.rsize, "_N-Alchemy")) - goto L_Failed; - if (!(get(.recipes$[.@n], "_N-Alchemy") == @alchlab_items$[0] && get(.recipes$[.@n+1], "_N-Alchemy") == @alchlab_items$[1]) && - !(get(.recipes$[.@n], "_N-Alchemy") == @alchlab_items$[1] && get(.recipes$[.@n+1], "_N-Alchemy") == @alchlab_items$[0])) - goto L_CheckRecipes; - - getitem get(.recipes$[.@n+2], "_N-Alchemy"), 1; // XXX: here we could also make it fail sometimes depending on your expertise - - // XXX: here we could make it give profession/crafting exp - clear; - mes "You combined the following:"; - mes " ["+ getitemlink(@alchlab_items$[0]) +"]"; - mes " ["+ getitemlink(@alchlab_items$[1]) +"]"; - mes; - mes "You obtained:"; - mes " ["+ getitemlink(get(.recipes$[.@n+2], "_N-Alchemy")) +"]"; - close; - -L_NoItems: - mes "You must put exactly 2 items."; - close; - -L_Failed: - mes "The potion bubbles violently and evaporates."; // XXX: here we could have random failure messages - close; - -L_Abort: - close; - -S_Spawn: - .@s = getarraysize(.x1); - if (.spawned >= .@s) - goto S_Return; - .@n$ = "#_Al-lab"+chr(3)+.spawned; - if (puppet(.m$[.spawned], .x1[.spawned], .y1[.spawned], .@n$, 399) < 1) mapexit; - .spawned = .spawned + 1; - if (.spawned < .@s) - goto S_Spawn; - return; - -S_Return: - return; - -OnMaybeStart: - callsub S_Spawn; - if (.started == 0) - goto L_InitVars; - end; - -L_InitVars: - setarray .recipes$[0], 0, - "DilutedConcentrationPot", "DarkConcentrationPotion", "ConcentrationPotion", - "CactusDrink", "CactusDrink", "CactusPotion", - "PinkPetal", "BottleOfWater", "ConcentrationPotion"; - .rsize = getarraysize(.recipes$); - end; -} diff --git a/npc/functions/main.txt b/npc/functions/main.txt index 2bac9b29..d4fef57f 100644 --- a/npc/functions/main.txt +++ b/npc/functions/main.txt @@ -588,6 +588,11 @@ function script wgm { return; } +function script registercmd { + bindatcmd getarg(0), getarg(1), getarg(2, 0); + return; +} + ////////////////////////////////////////////////////////////////////// // maptimer("", , "::") function script maptimer { -- cgit v1.2.3-70-g09d2 From d23cbc7f10ce7655baace2f7a79a12066ee733a5 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Fri, 9 Apr 2021 22:56:31 -0300 Subject: Renegerate map data, even with all the errors issues and et cetera --- npc/001-1/_mobs.txt | 10 +-- npc/001-3/_mobs.txt | 2 +- npc/002-1/_mobs.txt | 26 ++++---- npc/002-4/_mobs.txt | 28 ++++---- npc/002-5/_mobs.txt | 34 +++++----- npc/003-4/_mobs.txt | 12 ++-- npc/004-1/_mobs.txt | 14 ++-- npc/004-3/_mobs.txt | 14 ++-- npc/004-4/_mobs.txt | 18 ++--- npc/004-5/_mobs.txt | 24 +++---- npc/005-3/_mobs.txt | 10 +-- npc/006-1/_mobs.txt | 42 ++++++------ npc/006-3/_mobs.txt | 52 +++++++-------- npc/007-1/_mobs.txt | 18 ++--- npc/008-1/_mobs.txt | 17 ++--- npc/009-1/_mobs.txt | 10 +-- npc/009-3/_mobs.txt | 8 +-- npc/009-4/_mobs.txt | 14 ++-- npc/010-1/_mobs.txt | 26 ++++---- npc/011-3/_mobs.txt | 4 +- npc/011-4/_mobs.txt | 14 ++-- npc/011-6/_mobs.txt | 94 +++++++++++++------------- npc/012-1/_mobs.txt | 22 +++---- npc/012-3/_mobs.txt | 32 ++++----- npc/012-4/_mobs.txt | 128 ++++++++++++++++++------------------ npc/013-1/_mobs.txt | 30 ++++----- npc/014-1/_mobs.txt | 32 ++++----- npc/014-3/_mobs.txt | 2 +- npc/015-1/_mobs.txt | 20 +++--- npc/015-3/_mobs.txt | 8 +-- npc/016-1/_mobs.txt | 18 ++--- npc/017-1/_mobs.txt | 36 +++++----- npc/018-1/_mobs.txt | 53 +++++++-------- npc/018-2/_mobs.txt | 2 +- npc/018-3/_mobs.txt | 46 ++++++------- npc/019-1/_mobs.txt | 8 +-- npc/019-3/_mobs.txt | 4 +- npc/019-4/_mobs.txt | 8 +-- npc/020-1/_mobs.txt | 2 +- npc/020-3/_mobs.txt | 8 +-- npc/021-3/_mobs.txt | 20 +++--- npc/023-1/_mobs.txt | 26 ++++---- npc/023-3/_mobs.txt | 12 ++-- npc/025-1/_mobs.txt | 20 +++--- npc/025-3/_mobs.txt | 8 +-- npc/025-4/_mobs.txt | 4 +- npc/026-1/_mobs.txt | 28 ++++---- npc/027-1/_mobs.txt | 32 ++++----- npc/027-2/_mobs.txt | 8 +-- npc/027-3/_mobs.txt | 16 ++--- npc/027-4/_mobs.txt | 10 +-- npc/027-5/_mobs.txt | 14 ++-- npc/029-1/_mobs.txt | 11 ++-- npc/029-2/_import.txt | 1 - npc/029-2/_mobs.txt | 2 +- npc/029-4/_mobs.txt | 12 ++-- npc/030-1/_mobs.txt | 8 +-- npc/031-1/_mobs.txt | 8 +-- npc/031-3/_mobs.txt | 178 +++++++++++++++++++++++++------------------------- npc/032-3/_mobs.txt | 20 +++--- npc/033-1/_mobs.txt | 8 +-- npc/034-1/_mobs.txt | 12 ++-- npc/041-1/_mobs.txt | 22 +++---- npc/042-1/_mobs.txt | 20 +++--- npc/043-1/_mobs.txt | 6 +- npc/043-3/_mobs.txt | 18 ++--- npc/043-4/_mobs.txt | 44 ++++++------- npc/045-1/_mobs.txt | 30 ++++----- npc/046-1/_mobs.txt | 22 +++---- npc/046-3/_mobs.txt | 30 ++++----- npc/047-1/_mobs.txt | 44 ++++++------- npc/047-3/_mobs.txt | 42 ++++++------ npc/051-1/_mobs.txt | 4 +- npc/051-3/_mobs.txt | 32 ++++----- npc/052-1/_mobs.txt | 2 +- npc/055-1/_mobs.txt | 34 +++++----- npc/055-3/_mobs.txt | 16 ++--- npc/057-1/_mobs.txt | 36 +++++----- 78 files changed, 906 insertions(+), 904 deletions(-) (limited to 'npc/029-2') diff --git a/npc/001-1/_mobs.txt b/npc/001-1/_mobs.txt index df91a1df..192ea6a5 100644 --- a/npc/001-1/_mobs.txt +++ b/npc/001-1/_mobs.txt @@ -1,7 +1,7 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 001-1: Tulimshar Port mobs -001-1,32,59,5,5 monster Ratto 1005,8,100000,30000 -001-1,45,100,5,5 monster Ratto 1005,8,100000,30000 -001-1,37,75,4,17 monster Clover Patch 1033,8,100000,30000 -001-1,86,84,32,27 monster Piou 1002,11,100000,30000 -001-1,86,84,32,27 monster Clover Patch 1033,8,100000,30000 +001-1,32,59,5,5 monster The GreenSlime 1005,8,100000,30000 +001-1,45,100,5,5 monster The GreenSlime 1005,8,100000,30000 +001-1,37,75,4,17 monster The SeaSlime 1033,8,100000,30000 +001-1,86,84,32,27 monster The Maggot 1002,11,100000,30000 +001-1,86,84,32,27 monster The SeaSlime 1033,8,100000,30000 diff --git a/npc/001-3/_mobs.txt b/npc/001-3/_mobs.txt index 908b7fc5..a347e41d 100644 --- a/npc/001-3/_mobs.txt +++ b/npc/001-3/_mobs.txt @@ -1,3 +1,3 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 001-3: Tulimshar Arena mobs -001-3,0,0,0,0 monster Piou 1002,10,0,0 +001-3,0,0,0,0 monster The Maggot 1002,10,0,0 diff --git a/npc/002-1/_mobs.txt b/npc/002-1/_mobs.txt index 3a6bf126..2ee1797c 100644 --- a/npc/002-1/_mobs.txt +++ b/npc/002-1/_mobs.txt @@ -1,15 +1,15 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 002-1: Tulimshar South mobs -002-1,93,62,12,4 monster Piou 1002,11,100000,30000 -002-1,112,62,5,4 monster Piou 1002,11,100000,30000 -002-1,108,73,5,4 monster Piou 1002,11,100000,30000 -002-1,62,28,1,7 monster Piou 1002,6,100000,30000 -002-1,74,96,12,16 monster Piousse 1003,12,100000,30000 -002-1,113,114,5,3 monster Piou 1002,11,100000,30000 -002-1,43,61,5,35 monster Piousse 1003,6,100000,30000 -002-1,70,92,24,9 monster Piousse 1003,10,100000,30000 -002-1,40,93,9,10 monster Tortuga 1004,10,100000,30000 -002-1,42,40,4,14 monster Clover Patch 1033,8,100000,30000 -002-1,33,75,4,20 monster Clover Patch 1033,8,100000,30000 -002-1,99,62,18,4 monster Piousse 1003,6,100000,30000 -002-1,73,105,10,10 monster Plushroom Field 1011,6,100000,30000 +002-1,93,62,12,4 monster The Maggot 1002,11,100000,30000 +002-1,112,62,5,4 monster The Maggot 1002,11,100000,30000 +002-1,108,73,5,4 monster The Maggot 1002,11,100000,30000 +002-1,62,28,1,7 monster The Maggot 1002,6,100000,30000 +002-1,74,96,12,16 monster The ScorpionMob 1003,12,100000,30000 +002-1,113,114,5,3 monster The Maggot 1002,11,100000,30000 +002-1,43,61,5,35 monster The ScorpionMob 1003,6,100000,30000 +002-1,70,92,24,9 monster The ScorpionMob 1003,10,100000,30000 +002-1,40,93,9,10 monster The RedScorpionMob 1004,10,100000,30000 +002-1,42,40,4,14 monster The SeaSlime 1033,8,100000,30000 +002-1,33,75,4,20 monster The SeaSlime 1033,8,100000,30000 +002-1,99,62,18,4 monster The ScorpionMob 1003,6,100000,30000 +002-1,73,105,10,10 monster The FireGoblin 1011,6,100000,30000 diff --git a/npc/002-4/_mobs.txt b/npc/002-4/_mobs.txt index 01984822..63e94d2f 100644 --- a/npc/002-4/_mobs.txt +++ b/npc/002-4/_mobs.txt @@ -1,16 +1,16 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 002-4: Desert Mines mobs -002-4,39,37,7,5 monster Beehive 1056,5,100000,30000 -002-4,91,41,8,10 monster AngryFireGoblin 1108,3,100000,30000 -002-4,71,35,12,8 monster Beehive 1056,4,100000,30000 -002-4,69,100,4,2 monster AngryFireGoblin 1108,2,100000,30000 -002-4,68,57,13,12 monster AngryScorpion 1057,5,100000,30000 -002-4,49,58,2,7 monster AngryScorpion 1057,5,100000,30000 -002-4,38,76,7,11 monster AngryScorpion 1057,4,100000,30000 -002-4,58,78,3,8 monster Beehive 1056,4,100000,30000 -002-4,89,68,5,16 monster AngryScorpion 1057,4,100000,30000 -002-4,84,93,9,8 monster Beehive 1056,4,100000,30000 -002-4,72,77,10,7 monster AngryFireGoblin 1108,3,100000,30000 -002-4,67,91,5,6 monster AngryScorpion 1057,4,100000,30000 -002-4,58,95,3,6 monster Beehive 1056,4,100000,30000 -002-4,63,100,1,2 monster AngryScorpion 1057,3,100000,30000 +002-4,39,37,7,5 monster The CaveMaggot 1056,5,100000,30000 +002-4,91,41,8,10 monster The AngryFireGoblin 1108,3,100000,30000 +002-4,71,35,12,8 monster The CaveMaggot 1056,4,100000,30000 +002-4,69,100,4,2 monster The AngryFireGoblin 1108,2,100000,30000 +002-4,68,57,13,12 monster The AngryScorpionMob 1057,5,100000,30000 +002-4,49,58,2,7 monster The AngryScorpionMob 1057,5,100000,30000 +002-4,38,76,7,11 monster The AngryScorpionMob 1057,4,100000,30000 +002-4,58,78,3,8 monster The CaveMaggot 1056,4,100000,30000 +002-4,89,68,5,16 monster The AngryScorpionMob 1057,4,100000,30000 +002-4,84,93,9,8 monster The CaveMaggot 1056,4,100000,30000 +002-4,72,77,10,7 monster The AngryFireGoblin 1108,3,100000,30000 +002-4,67,91,5,6 monster The AngryScorpionMob 1057,4,100000,30000 +002-4,58,95,3,6 monster The CaveMaggot 1056,4,100000,30000 +002-4,63,100,1,2 monster The AngryScorpionMob 1057,3,100000,30000 diff --git a/npc/002-5/_mobs.txt b/npc/002-5/_mobs.txt index 0f858c3a..ecbadd56 100644 --- a/npc/002-5/_mobs.txt +++ b/npc/002-5/_mobs.txt @@ -1,19 +1,19 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 002-5: Deep Desert Mines mobs -002-5,37,89,6,3 monster AngryFireGoblin 1108,3,100000,30000 -002-5,33,76,1,5 monster Beehive 1056,3,100000,30000 -002-5,40,68,3,2 monster AngryScorpion 1057,3,100000,30000 -002-5,40,38,9,2 monster Yellow Rose 1060,3,100000,30000 -002-5,56,97,1,2 monster Yellow Rose 1060,1,100000,30000 -002-5,68,100,6,1 monster Little Blub 1007,4,100000,30000 -002-5,91,80,0,2 monster Yellow Rose 1060,1,100000,30000 -002-5,89,94,0,2 monster Yellow Rose 1060,1,100000,30000 -002-5,74,78,0,2 monster Yellow Rose 1060,2,100000,30000 -002-5,94,72,1,2 monster Yellow Rose 1060,1,100000,30000 -002-5,90,61,3,1 monster Little Blub 1007,1,100000,30000 -002-5,74,35,0,2 monster Yellow Rose 1060,1,100000,30000 -002-5,84,33,0,2 monster Yellow Rose 1060,1,100000,30000 -002-5,84,46,0,2 monster Yellow Rose 1060,1,100000,30000 -002-5,99,38,0,2 monster Yellow Rose 1060,1,100000,30000 -002-5,93,38,4,1 monster Little Blub 1007,2,100000,30000 -002-5,62,62,2,21 monster AngryFireGoblin 1108,3,100000,30000 +002-5,37,89,6,3 monster The AngryFireGoblin 1108,3,100000,30000 +002-5,33,76,1,5 monster The CaveMaggot 1056,3,100000,30000 +002-5,40,68,3,2 monster The AngryScorpionMob 1057,3,100000,30000 +002-5,40,38,9,2 monster The Archant 1060,3,100000,30000 +002-5,56,97,1,2 monster The Archant 1060,1,100000,30000 +002-5,68,100,6,1 monster The YellowSlime 1007,4,100000,30000 +002-5,91,80,0,2 monster The Archant 1060,1,100000,30000 +002-5,89,94,0,2 monster The Archant 1060,1,100000,30000 +002-5,74,78,0,2 monster The Archant 1060,2,100000,30000 +002-5,94,72,1,2 monster The Archant 1060,1,100000,30000 +002-5,90,61,3,1 monster The YellowSlime 1007,1,100000,30000 +002-5,74,35,0,2 monster The Archant 1060,1,100000,30000 +002-5,84,33,0,2 monster The Archant 1060,1,100000,30000 +002-5,84,46,0,2 monster The Archant 1060,1,100000,30000 +002-5,99,38,0,2 monster The Archant 1060,1,100000,30000 +002-5,93,38,4,1 monster The YellowSlime 1007,2,100000,30000 +002-5,62,62,2,21 monster The AngryFireGoblin 1108,3,100000,30000 diff --git a/npc/003-4/_mobs.txt b/npc/003-4/_mobs.txt index be8279c6..c53298d1 100644 --- a/npc/003-4/_mobs.txt +++ b/npc/003-4/_mobs.txt @@ -1,8 +1,8 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 003-4: Beach mobs -003-4,158,68,14,48 monster Croc 1006,10,100000,30000 -003-4,0,0,0,0 monster Clover Patch 1033,15,100000,30000 -003-4,120,31,11,11 monster Clover Patch 1033,5,100000,30000 -003-4,119,68,52,50 monster Ratto 1005,35,100000,30000 -003-4,134,69,38,35 monster Tortuga 1004,20,100000,30000 -003-4,35,25,5,1 monster Maggot 1026,1,700000,600000 +003-4,158,68,14,48 monster The GiantMaggot 1006,10,100000,30000 +003-4,0,0,0,0 monster The SeaSlime 1033,15,100000,30000 +003-4,120,31,11,11 monster The SeaSlime 1033,5,100000,30000 +003-4,119,68,52,50 monster The GreenSlime 1005,35,100000,30000 +003-4,134,69,38,35 monster The RedScorpionMob 1004,20,100000,30000 +003-4,35,25,5,1 monster The MountainSnake 1026,1,700000,600000 diff --git a/npc/004-1/_mobs.txt b/npc/004-1/_mobs.txt index e45f0d9d..a6b9b3d1 100644 --- a/npc/004-1/_mobs.txt +++ b/npc/004-1/_mobs.txt @@ -1,9 +1,9 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 004-1: Beach mobs -004-1,39,57,4,14 monster Clover Patch 1033,5,100000,30000 -004-1,33,83,4,20 monster Clover Patch 1033,11,100000,30000 -004-1,28,103,5,7 monster Clover Patch 1033,7,100000,30000 -004-1,71,104,13,10 monster Croc 1006,5,100000,30000 -004-1,76,68,10,24 monster Tortuga 1004,13,100000,30000 -004-1,68,25,9,5 monster Croc 1006,2,100000,30000 -004-1,93,27,1,1 monster Toppy Blub 1009,1,120000,60000 +004-1,39,57,4,14 monster The SeaSlime 1033,5,100000,30000 +004-1,33,83,4,20 monster The SeaSlime 1033,11,100000,30000 +004-1,28,103,5,7 monster The SeaSlime 1033,7,100000,30000 +004-1,71,104,13,10 monster The GiantMaggot 1006,5,100000,30000 +004-1,76,68,10,24 monster The RedScorpionMob 1004,13,100000,30000 +004-1,68,25,9,5 monster The GiantMaggot 1006,2,100000,30000 +004-1,93,27,1,1 monster The BlackScorpionMob 1009,1,120000,60000 diff --git a/npc/004-3/_mobs.txt b/npc/004-3/_mobs.txt index 2f345891..89a3546e 100644 --- a/npc/004-3/_mobs.txt +++ b/npc/004-3/_mobs.txt @@ -1,9 +1,9 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 004-3: Pirate Caves First Floor mobs -004-3,43,72,3,4 monster Serqet 1119,2,100000,30000 -004-3,43,72,3,4 monster Tengu 1120,1,100000,30000 -004-3,43,72,3,4 monster Golem 1121,1,100000,30000 -004-3,28,69,4,1 monster Serqet 1119,2,100000,30000 -004-3,71,63,3,4 monster Serqet 1119,2,100000,30000 -004-3,39,39,3,1 monster Tengu 1120,2,100000,30000 -004-3,71,63,3,4 monster Golem 1121,1,100000,30000 +004-3,43,72,3,4 monster The Thug 1119,2,100000,30000 +004-3,43,72,3,4 monster The Swashbuckler 1120,1,100000,30000 +004-3,43,72,3,4 monster The Grenadier 1121,1,100000,30000 +004-3,28,69,4,1 monster The Thug 1119,2,100000,30000 +004-3,71,63,3,4 monster The Thug 1119,2,100000,30000 +004-3,39,39,3,1 monster The Swashbuckler 1120,2,100000,30000 +004-3,71,63,3,4 monster The Grenadier 1121,1,100000,30000 diff --git a/npc/004-4/_mobs.txt b/npc/004-4/_mobs.txt index dc1cd9a3..03ff54ba 100644 --- a/npc/004-4/_mobs.txt +++ b/npc/004-4/_mobs.txt @@ -1,11 +1,11 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 004-4: Pirate Caves Second Floor mobs -004-4,36,62,2,10 monster Golem 1121,1,100000,30000 -004-4,37,61,2,10 monster Tengu 1120,2,100000,30000 -004-4,62,52,6,3 monster Serqet 1119,2,100000,30000 -004-4,34,87,6,3 monster Serqet 1119,2,100000,30000 -004-4,37,62,3,11 monster Serqet 1119,2,100000,30000 -004-4,34,88,5,3 monster Tengu 1120,2,100000,30000 -004-4,63,52,5,3 monster Tengu 1120,2,100000,30000 -004-4,62,52,5,2 monster Golem 1121,1,100000,30000 -004-4,34,88,5,2 monster Golem 1121,1,100000,30000 +004-4,36,62,2,10 monster The Grenadier 1121,1,100000,30000 +004-4,37,61,2,10 monster The Swashbuckler 1120,2,100000,30000 +004-4,62,52,6,3 monster The Thug 1119,2,100000,30000 +004-4,34,87,6,3 monster The Thug 1119,2,100000,30000 +004-4,37,62,3,11 monster The Thug 1119,2,100000,30000 +004-4,34,88,5,3 monster The Swashbuckler 1120,2,100000,30000 +004-4,63,52,5,3 monster The Swashbuckler 1120,2,100000,30000 +004-4,62,52,5,2 monster The Grenadier 1121,1,100000,30000 +004-4,34,88,5,2 monster The Grenadier 1121,1,100000,30000 diff --git a/npc/004-5/_mobs.txt b/npc/004-5/_mobs.txt index 581d2eb9..e033bef0 100644 --- a/npc/004-5/_mobs.txt +++ b/npc/004-5/_mobs.txt @@ -1,14 +1,14 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 004-5: Pirate Den mobs -004-5,41,70,3,2 monster Golem 1121,1,100000,30000 -004-5,41,70,3,1 monster Tengu 1120,2,100000,30000 -004-5,40,70,4,1 monster Serqet 1119,2,100000,30000 -004-5,35,86,3,2 monster Golem 1121,1,100000,30000 -004-5,34,86,4,1 monster Serqet 1119,2,100000,30000 -004-5,35,86,3,1 monster Tengu 1120,2,100000,30000 -004-5,54,38,3,2 monster Golem 1121,1,100000,30000 -004-5,53,38,4,1 monster Serqet 1119,2,100000,30000 -004-5,54,38,3,1 monster Tengu 1120,2,100000,30000 -004-5,81,38,3,2 monster Golem 1121,1,100000,30000 -004-5,80,38,4,1 monster Serqet 1119,2,100000,30000 -004-5,81,38,3,1 monster Tengu 1120,2,100000,30000 +004-5,41,70,3,2 monster The Grenadier 1121,1,100000,30000 +004-5,41,70,3,1 monster The Swashbuckler 1120,2,100000,30000 +004-5,40,70,4,1 monster The Thug 1119,2,100000,30000 +004-5,35,86,3,2 monster The Grenadier 1121,1,100000,30000 +004-5,34,86,4,1 monster The Thug 1119,2,100000,30000 +004-5,35,86,3,1 monster The Swashbuckler 1120,2,100000,30000 +004-5,54,38,3,2 monster The Grenadier 1121,1,100000,30000 +004-5,53,38,4,1 monster The Thug 1119,2,100000,30000 +004-5,54,38,3,1 monster The Swashbuckler 1120,2,100000,30000 +004-5,81,38,3,2 monster The Grenadier 1121,1,100000,30000 +004-5,80,38,4,1 monster The Thug 1119,2,100000,30000 +004-5,81,38,3,1 monster The Swashbuckler 1120,2,100000,30000 diff --git a/npc/005-3/_mobs.txt b/npc/005-3/_mobs.txt index 29d7868d..c3efd8f8 100644 --- a/npc/005-3/_mobs.txt +++ b/npc/005-3/_mobs.txt @@ -1,7 +1,7 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 005-3: Snake Pit mobs -005-3,59,63,24,28 monster Crocotree 1010,50,100000,30000 -005-3,56,64,26,24 monster Toppy Blub 1009,15,100000,30000 -005-3,59,68,29,21 monster Croc 1006,20,100000,30000 -005-3,95,52,5,30 monster Topaz Vein 1054,7,100000,30000 -005-3,53,26,32,6 monster Topaz Vein 1054,5,100000,30000 +005-3,59,63,24,28 monster The Snake 1010,50,100000,30000 +005-3,56,64,26,24 monster The BlackScorpionMob 1009,15,100000,30000 +005-3,59,68,29,21 monster The GiantMaggot 1006,20,100000,30000 +005-3,95,52,5,30 monster The Troll 1054,7,100000,30000 +005-3,53,26,32,6 monster The Troll 1054,5,100000,30000 diff --git a/npc/006-1/_mobs.txt b/npc/006-1/_mobs.txt index ee538196..9b0d5cf1 100644 --- a/npc/006-1/_mobs.txt +++ b/npc/006-1/_mobs.txt @@ -1,23 +1,23 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 006-1: Desert Mountains mobs -006-1,49,52,3,1 monster Crocotree 1010,1,100000,30000 -006-1,53,36,8,6 monster Maggot 1026,3,150000,10000 -006-1,89,26,16,6 monster Maggot 1026,5,15000,75000 -006-1,113,41,6,18 monster Maggot 1026,8,15000,75000 -006-1,113,51,3,1 monster Maggot 1026,3,15000,75000 -006-1,86,46,14,2 monster Maggot 1026,3,15000,75000 -006-1,105,73,10,7 monster Maggot 1026,3,15000,75000 -006-1,73,102,4,6 monster Maggot 1026,4,15000,75000 -006-1,104,100,5,7 monster Maggot 1026,8,15000,75000 -006-1,82,72,12,8 monster Maggot 1026,8,15000,75000 -006-1,95,114,8,2 monster Maggot 1026,5,15000,75000 -006-1,57,119,9,1 monster Maggot 1026,4,15000,75000 -006-1,33,97,13,16 monster Piousse 1003,10,100000,30000 -006-1,58,49,1,1 monster Ratto 1005,3,100000,30000 -006-1,34,50,2,2 monster Crocotree 1010,2,40000,50000 -006-1,96,92,10,24 monster Crocotree 1010,2,40000,50000 -006-1,35,97,14,14 monster Piou 1002,20,100000,30000 -006-1,28,73,1,1 monster Ratto 1005,2,100000,30000 -006-1,33,59,1,1 monster Ratto 1005,2,100000,30000 -006-1,37,73,3,1 monster Crocotree 1010,1,100000,30000 -006-1,100,36,19,12 monster Crocotree 1010,2,40000,50000 +006-1,49,52,3,1 monster The Snake 1010,1,100000,30000 +006-1,53,36,8,6 monster The MountainSnake 1026,3,150000,10000 +006-1,89,26,16,6 monster The MountainSnake 1026,5,15000,75000 +006-1,113,41,6,18 monster The MountainSnake 1026,8,15000,75000 +006-1,113,51,3,1 monster The MountainSnake 1026,3,15000,75000 +006-1,86,46,14,2 monster The MountainSnake 1026,3,15000,75000 +006-1,105,73,10,7 monster The MountainSnake 1026,3,15000,75000 +006-1,73,102,4,6 monster The MountainSnake 1026,4,15000,75000 +006-1,104,100,5,7 monster The MountainSnake 1026,8,15000,75000 +006-1,82,72,12,8 monster The MountainSnake 1026,8,15000,75000 +006-1,95,114,8,2 monster The MountainSnake 1026,5,15000,75000 +006-1,57,119,9,1 monster The MountainSnake 1026,4,15000,75000 +006-1,33,97,13,16 monster The ScorpionMob 1003,10,100000,30000 +006-1,58,49,1,1 monster The GreenSlime 1005,3,100000,30000 +006-1,34,50,2,2 monster The Snake 1010,2,40000,50000 +006-1,96,92,10,24 monster The Snake 1010,2,40000,50000 +006-1,35,97,14,14 monster The Maggot 1002,20,100000,30000 +006-1,28,73,1,1 monster The GreenSlime 1005,2,100000,30000 +006-1,33,59,1,1 monster The GreenSlime 1005,2,100000,30000 +006-1,37,73,3,1 monster The Snake 1010,1,100000,30000 +006-1,100,36,19,12 monster The Snake 1010,2,40000,50000 diff --git a/npc/006-3/_mobs.txt b/npc/006-3/_mobs.txt index 9b122a9e..0e7e3c94 100644 --- a/npc/006-3/_mobs.txt +++ b/npc/006-3/_mobs.txt @@ -1,28 +1,28 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 006-3: Desert Mountain Cave mobs -006-3,108,25,18,4 monster Maggot 1026,3,15000,90000 -006-3,99,50,7,6 monster Maggot 1026,1,15000,90000 -006-3,89,63,7,5 monster Maggot 1026,2,15000,90000 -006-3,86,90,14,4 monster Maggot 1026,3,15000,90000 -006-3,109,78,6,4 monster Maggot 1026,1,15000,90000 -006-3,119,117,7,7 monster Maggot 1026,4,15000,90000 -006-3,106,64,7,8 monster Maggot 1026,3,15000,90000 -006-3,65,71,15,17 monster Maggot 1026,10,15000,90000 -006-3,57,105,13,15 monster Maggot 1026,8,15000,90000 -006-3,73,120,8,2 monster Maggot 1026,3,15000,90000 -006-3,117,54,5,4 monster Maggot 1026,4,15000,90000 -006-3,123,62,5,2 monster Maggot 1026,3,15000,90000 -006-3,72,36,12,12 monster Maggot 1026,10,15000,90000 -006-3,84,27,2,3 monster Maggot 1026,1,15000,90000 -006-3,40,40,18,14 monster Maggot 1026,8,15000,90000 -006-3,34,60,13,5 monster Maggot 1026,3,15000,90000 -006-3,87,74,13,4 monster Blub 1008,3,15000,10000 -006-3,120,76,4,10 monster Blub 1008,3,15000,10000 -006-3,101,85,7,4 monster Blub 1008,4,15000,10000 -006-3,44,124,14,3 monster Maggot 1026,5,15000,90000 -006-3,90,125,8,3 monster Maggot 1026,5,15000,90000 -006-3,30,88,6,10 monster Blub 1008,3,90000,30000 -006-3,122,98,5,8 monster Frostiana 1012,3,90000,30000 -006-3,112,104,3,6 monster Frostiana 1012,1,90000,30000 -006-3,103,108,4,4 monster Frostiana 1012,1,90000,30000 -006-3,83,107,6,7 monster Little Blub 1007,6,90000,30000 +006-3,108,25,18,4 monster The MountainSnake 1026,3,15000,90000 +006-3,99,50,7,6 monster The MountainSnake 1026,1,15000,90000 +006-3,89,63,7,5 monster The MountainSnake 1026,2,15000,90000 +006-3,86,90,14,4 monster The MountainSnake 1026,3,15000,90000 +006-3,109,78,6,4 monster The MountainSnake 1026,1,15000,90000 +006-3,119,117,7,7 monster The MountainSnake 1026,4,15000,90000 +006-3,106,64,7,8 monster The MountainSnake 1026,3,15000,90000 +006-3,65,71,15,17 monster The MountainSnake 1026,10,15000,90000 +006-3,57,105,13,15 monster The MountainSnake 1026,8,15000,90000 +006-3,73,120,8,2 monster The MountainSnake 1026,3,15000,90000 +006-3,117,54,5,4 monster The MountainSnake 1026,4,15000,90000 +006-3,123,62,5,2 monster The MountainSnake 1026,3,15000,90000 +006-3,72,36,12,12 monster The MountainSnake 1026,10,15000,90000 +006-3,84,27,2,3 monster The MountainSnake 1026,1,15000,90000 +006-3,40,40,18,14 monster The MountainSnake 1026,8,15000,90000 +006-3,34,60,13,5 monster The MountainSnake 1026,3,15000,90000 +006-3,87,74,13,4 monster The RedSlime 1008,3,15000,10000 +006-3,120,76,4,10 monster The RedSlime 1008,3,15000,10000 +006-3,101,85,7,4 monster The RedSlime 1008,4,15000,10000 +006-3,44,124,14,3 monster The MountainSnake 1026,5,15000,90000 +006-3,90,125,8,3 monster The MountainSnake 1026,5,15000,90000 +006-3,30,88,6,10 monster The RedSlime 1008,3,90000,30000 +006-3,122,98,5,8 monster The Spider 1012,3,90000,30000 +006-3,112,104,3,6 monster The Spider 1012,1,90000,30000 +006-3,103,108,4,4 monster The Spider 1012,1,90000,30000 +006-3,83,107,6,7 monster The YellowSlime 1007,6,90000,30000 diff --git a/npc/007-1/_mobs.txt b/npc/007-1/_mobs.txt index 8fd1da2c..537cae55 100644 --- a/npc/007-1/_mobs.txt +++ b/npc/007-1/_mobs.txt @@ -1,11 +1,11 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 007-1: Woodland mobs -007-1,0,0,0,0 monster CroconutMob 1014,17,100000,30000 -007-1,0,0,0,0 monster PumpkinMob 1019,15,100000,30000 -007-1,0,0,0,0 monster Squirrel 1041,25,100000,30000 -007-1,0,0,0,0 monster Bee 1029,3,270000,180000 -007-1,0,0,0,0 monster Log Head 1031,1,2700000,1800000 -007-1,0,0,0,0 monster Mana Bug 1035,2,60000,30000 -007-1,0,0,0,0 monster Alizarin Plant 1037,2,0,1000 -007-1,0,0,0,0 monster Gamboge Plant 1038,25,30,20 -007-1,0,0,0,0 monster Amethyst Vein 1055,10,30,20 +007-1,0,0,0,0 monster The PinkFlower 1014,17,100000,30000 +007-1,0,0,0,0 monster The SpikyMushroom 1019,15,100000,30000 +007-1,0,0,0,0 monster The Snail 1041,25,100000,30000 +007-1,0,0,0,0 monster The MauvePlant 1029,3,270000,180000 +007-1,0,0,0,0 monster The GambogePlant 1031,1,2700000,1800000 +007-1,0,0,0,0 monster The Silkworm 1035,2,60000,30000 +007-1,0,0,0,0 monster The CloverPatch 1037,2,0,1000 +007-1,0,0,0,0 monster The Squirrel 1038,25,30,20 +007-1,0,0,0,0 monster The Butterfly 1055,10,30,20 diff --git a/npc/008-1/_mobs.txt b/npc/008-1/_mobs.txt index 06dc1b79..cf2d39cf 100644 --- a/npc/008-1/_mobs.txt +++ b/npc/008-1/_mobs.txt @@ -1,10 +1,11 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 008-1: Hurnscald Outskirts mobs -008-1,0,0,0,0 monster CroconutMob 1014,10,0,0 -008-1,0,0,0,0 monster Crafty 1018,18,0,0 -008-1,0,0,0,0 monster Piou 1002,30,0,0 -008-1,0,0,0,0 monster Bee 1029,2,270000,180000 -008-1,0,0,0,0 monster Mana Bug 1035,2,60000,30000 -008-1,0,0,0,0 monster Alizarin Plant 1037,2,0,1000 -008-1,0,0,0,0 monster Gamboge Plant 1038,10,30,20 -008-1,0,0,0,0 monster Amethyst Vein 1055,10,30,20 +008-1,0,0,0,0 monster The PinkFlower 1014,10,0,0 +008-1,0,0,0,0 monster The Pinkie 1018,18,0,0 +008-1,0,0,0,0 monster The ManaBug 1131,18,0,0 +008-1,0,0,0,0 monster The Maggot 1002,30,0,0 +008-1,0,0,0,0 monster The MauvePlant 1029,2,270000,180000 +008-1,0,0,0,0 monster The Silkworm 1035,2,60000,30000 +008-1,0,0,0,0 monster The CloverPatch 1037,2,0,1000 +008-1,0,0,0,0 monster The Squirrel 1038,10,30,20 +008-1,0,0,0,0 monster The Butterfly 1055,10,30,20 diff --git a/npc/009-1/_mobs.txt b/npc/009-1/_mobs.txt index d7f02ba3..50e1a5f8 100644 --- a/npc/009-1/_mobs.txt +++ b/npc/009-1/_mobs.txt @@ -1,7 +1,7 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 009-1: Hurnscald mobs -009-1,74,32,1,0 monster Alizarin Plant 1037,1,100000,120000 -009-1,29,44,4,6 monster CroconutMob 1014,2,0,250 -009-1,88,51,7,2 monster Gamboge Plant 1038,2,0,5000 -009-1,80,38,2,2 monster Gamboge Plant 1038,1,0,5000 -009-1,0,0,0,0 monster Amethyst Vein 1055,5,30,20 +009-1,74,32,1,0 monster The CloverPatch 1037,1,100000,120000 +009-1,29,44,4,6 monster The PinkFlower 1014,2,0,250 +009-1,88,51,7,2 monster The Squirrel 1038,2,0,5000 +009-1,80,38,2,2 monster The Squirrel 1038,1,0,5000 +009-1,0,0,0,0 monster The Butterfly 1055,5,30,20 diff --git a/npc/009-3/_mobs.txt b/npc/009-3/_mobs.txt index 888cc0f2..dddd0b78 100644 --- a/npc/009-3/_mobs.txt +++ b/npc/009-3/_mobs.txt @@ -1,6 +1,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 009-3: Hurnscald Cave mobs -009-3,0,0,0,0 monster Little Blub 1007,20,0,0 -009-3,62,75,62,75 monster Toppy Blub 1009,25,0,0 -009-3,63,75,63,75 monster Blub 1008,35,0,0 -009-3,145,75,55,75 monster Beehive 1056,20,100000,30000 +009-3,0,0,0,0 monster The YellowSlime 1007,20,0,0 +009-3,62,75,62,75 monster The BlackScorpionMob 1009,25,0,0 +009-3,63,75,63,75 monster The RedSlime 1008,35,0,0 +009-3,145,75,55,75 monster The CaveMaggot 1056,20,100000,30000 diff --git a/npc/009-4/_mobs.txt b/npc/009-4/_mobs.txt index c0080978..35a3c3eb 100644 --- a/npc/009-4/_mobs.txt +++ b/npc/009-4/_mobs.txt @@ -1,9 +1,9 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 009-4: Orum Caves mobs -009-4,117,97,12,7 monster Mana Bug 1035,3,20000,14000 -009-4,115,98,12,7 monster Dummy 1021,5,20000,14000 -009-4,103,28,12,7 monster Dummy 1021,3,20000,14000 -009-4,106,27,12,7 monster Mana Bug 1035,3,20000,14000 -009-4,119,45,6,5 monster Mana Bug 1035,3,20000,14000 -009-4,72,130,12,7 monster Piou 1002,3,20000,14000 -009-4,38,116,12,7 monster Piou 1002,3,20000,14000 +009-4,117,97,12,7 monster The Silkworm 1035,3,20000,14000 +009-4,115,98,12,7 monster The CaveSnake 1021,5,20000,14000 +009-4,103,28,12,7 monster The CaveSnake 1021,3,20000,14000 +009-4,106,27,12,7 monster The Silkworm 1035,3,20000,14000 +009-4,119,45,6,5 monster The Silkworm 1035,3,20000,14000 +009-4,72,130,12,7 monster The Maggot 1002,3,20000,14000 +009-4,38,116,12,7 monster The Maggot 1002,3,20000,14000 diff --git a/npc/010-1/_mobs.txt b/npc/010-1/_mobs.txt index c3967393..3604e0cf 100644 --- a/npc/010-1/_mobs.txt +++ b/npc/010-1/_mobs.txt @@ -1,15 +1,15 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 010-1: Woodland mobs -010-1,82,63,9,9 monster Piousse 1003,1,100000,30000 -010-1,49,71,15,9 monster PumpkinMob 1019,1,100000,30000 -010-1,0,0,0,0 monster CroconutMob 1014,30,0,0 -010-1,0,0,0,0 monster Squirrel 1041,20,0,0 -010-1,0,0,0,0 monster PumpkinMob 1019,45,0,0 -010-1,0,0,0,0 monster Little Green Slime 1025,40,0,0 -010-1,0,0,0,0 monster Forest Maggot 1028,15,0,10 -010-1,0,0,0,0 monster Bee 1029,3,270000,180000 -010-1,0,0,0,0 monster Pinkie 1030,1,2700000,1800000 -010-1,0,0,0,0 monster Mana Bug 1035,2,60000,30000 -010-1,0,0,0,0 monster Alizarin Plant 1037,2,0,1000 -010-1,0,0,0,0 monster Gamboge Plant 1038,25,30,20 -010-1,0,0,0,0 monster Amethyst Vein 1055,10,30,20 +010-1,82,63,9,9 monster The ScorpionMob 1003,1,100000,30000 +010-1,49,71,15,9 monster The SpikyMushroom 1019,1,100000,30000 +010-1,0,0,0,0 monster The PinkFlower 1014,30,0,0 +010-1,0,0,0,0 monster The Snail 1041,20,0,0 +010-1,0,0,0,0 monster The SpikyMushroom 1019,45,0,0 +010-1,0,0,0,0 monster The LogHead 1025,40,0,0 +010-1,0,0,0,0 monster The Mouboo 1028,15,0,10 +010-1,0,0,0,0 monster The MauvePlant 1029,3,270000,180000 +010-1,0,0,0,0 monster The CobaltPlant 1030,1,2700000,1800000 +010-1,0,0,0,0 monster The Silkworm 1035,2,60000,30000 +010-1,0,0,0,0 monster The CloverPatch 1037,2,0,1000 +010-1,0,0,0,0 monster The Squirrel 1038,25,30,20 +010-1,0,0,0,0 monster The Butterfly 1055,10,30,20 diff --git a/npc/011-3/_mobs.txt b/npc/011-3/_mobs.txt index 190bd43c..e489f029 100644 --- a/npc/011-3/_mobs.txt +++ b/npc/011-3/_mobs.txt @@ -1,4 +1,4 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 011-3: Hermit's Cave mobs -011-3,0,0,0,0 monster Manana Tree 1017,10,0,0 -011-3,0,0,0,0 monster Mana Bug 1035,3,60000,30000 +011-3,0,0,0,0 monster The Bat 1017,10,0,0 +011-3,0,0,0,0 monster The Silkworm 1035,3,60000,30000 diff --git a/npc/011-4/_mobs.txt b/npc/011-4/_mobs.txt index 225f623a..1d7d168a 100644 --- a/npc/011-4/_mobs.txt +++ b/npc/011-4/_mobs.txt @@ -1,9 +1,9 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 011-4: Lake Cave mobs -011-4,52,30,19,19 monster PumpkinMob 1019,1,100000,30000 -011-4,93,114,19,19 monster Dummy 1021,1,100000,30000 -011-4,0,0,0,0 monster Dummy 1021,40,0,0 -011-4,0,0,0,0 monster PumpkinMob 1019,15,0,0 -011-4,60,78,28,37 monster Beehive 1056,10,100000,30000 -011-4,63,21,55,17 monster Beehive 1056,10,100000,30000 -011-4,0,0,0,0 monster Manana Tree 1017,20,180000,40000 +011-4,52,30,19,19 monster The SpikyMushroom 1019,1,100000,30000 +011-4,93,114,19,19 monster The CaveSnake 1021,1,100000,30000 +011-4,0,0,0,0 monster The CaveSnake 1021,40,0,0 +011-4,0,0,0,0 monster The SpikyMushroom 1019,15,0,0 +011-4,60,78,28,37 monster The CaveMaggot 1056,10,100000,30000 +011-4,63,21,55,17 monster The CaveMaggot 1056,10,100000,30000 +011-4,0,0,0,0 monster The Bat 1017,20,180000,40000 diff --git a/npc/011-6/_mobs.txt b/npc/011-6/_mobs.txt index 7c62f07f..948bae04 100644 --- a/npc/011-6/_mobs.txt +++ b/npc/011-6/_mobs.txt @@ -1,49 +1,49 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 011-6: Bandit Cave mobs -011-6,152,72,141,63 monster Mana Bug 1035,9,30000,100000 -011-6,263,38,15,17 monster Robin Bandit 1064,1,30000,30000 -011-6,262,114,19,19 monster Robin Bandit 1064,1,30000,30000 -011-6,132,119,8,10 monster Robin Bandit 1064,1,30000,30000 -011-6,170,66,8,10 monster Robin Bandit 1064,1,30000,30000 -011-6,67,70,8,10 monster Robin Bandit 1064,1,30000,30000 -011-6,196,107,8,10 monster Robin Bandit 1064,1,30000,30000 -011-6,196,29,8,10 monster Robin Bandit 1064,1,30000,30000 -011-6,36,37,8,10 monster Robin Bandit 1064,1,30000,30000 -011-6,112,40,22,24 monster Robin Bandit 1064,2,30000,60000 -011-6,31,99,8,10 monster Robin Bandit 1064,1,30000,30000 -011-6,223,250,61,32 monster Manana Tree 1017,5,30000,100000 -011-6,224,175,59,12 monster Manana Tree 1017,3,30000,100000 -011-6,257,77,2,63 monster Manana Tree 1017,6,30000,100000 -011-6,192,77,2,63 monster Manana Tree 1017,9,30000,100000 -011-6,167,110,43,6 monster Manana Tree 1017,9,30000,100000 -011-6,75,70,52,48 monster Manana Tree 1017,23,30000,100000 -011-6,78,195,64,48 monster Manana Tree 1017,9,30000,100000 -011-6,168,109,18,18 monster PumpkinMob 1019,5,30000,100000 -011-6,199,76,18,18 monster PumpkinMob 1019,5,30000,100000 -011-6,88,163,14,13 monster PumpkinMob 1019,5,30000,100000 -011-6,48,113,17,9 monster PumpkinMob 1019,5,30000,100000 -011-6,177,94,10,14 monster Pikpik 1013,4,30000,100000 -011-6,194,49,10,14 monster Pikpik 1013,2,30000,100000 -011-6,51,115,23,12 monster Pikpik 1013,2,30000,100000 -011-6,63,169,6,8 monster Pikpik 1013,2,30000,100000 -011-6,100,226,14,7 monster PumpkinMob 1019,3,30000,100000 -011-6,260,44,26,8 monster PumpkinMob 1019,3,30000,100000 -011-6,272,48,10,14 monster Pikpik 1013,2,30000,100000 -011-6,95,78,15,12 monster Little Blub 1007,5,30000,100000 -011-6,59,36,9,12 monster Little Blub 1007,5,30000,100000 -011-6,26,69,9,12 monster Little Blub 1007,5,30000,100000 -011-6,61,101,7,5 monster Little Blub 1007,3,30000,100000 -011-6,50,61,4,6 monster Little Blub 1007,3,30000,100000 -011-6,128,39,4,6 monster Little Blub 1007,3,30000,100000 -011-6,41,178,4,6 monster Little Blub 1007,1,30000,100000 -011-6,70,229,4,6 monster Little Blub 1007,1,30000,100000 -011-6,20,204,4,6 monster Little Blub 1007,1,30000,100000 -011-6,114,190,4,6 monster Little Blub 1007,4,30000,100000 -011-6,137,205,4,6 monster Little Blub 1007,2,30000,100000 -011-6,79,220,14,7 monster Dummy 1021,3,30000,100000 -011-6,115,210,14,7 monster Dummy 1021,3,30000,100000 -011-6,41,193,15,15 monster Dummy 1021,3,30000,100000 -011-6,70,143,15,15 monster Dummy 1021,3,30000,100000 -011-6,97,183,14,7 monster Dummy 1021,3,30000,100000 -011-6,172,252,4,6 monster Beehive 1056,4,30000,100000 -011-6,263,236,8,2 monster Beehive 1056,3,30000,100000 +011-6,152,72,141,63 monster The Silkworm 1035,9,30000,100000 +011-6,263,38,15,17 monster The Bandit 1064,1,30000,30000 +011-6,262,114,19,19 monster The Bandit 1064,1,30000,30000 +011-6,132,119,8,10 monster The Bandit 1064,1,30000,30000 +011-6,170,66,8,10 monster The Bandit 1064,1,30000,30000 +011-6,67,70,8,10 monster The Bandit 1064,1,30000,30000 +011-6,196,107,8,10 monster The Bandit 1064,1,30000,30000 +011-6,196,29,8,10 monster The Bandit 1064,1,30000,30000 +011-6,36,37,8,10 monster The Bandit 1064,1,30000,30000 +011-6,112,40,22,24 monster The Bandit 1064,2,30000,60000 +011-6,31,99,8,10 monster The Bandit 1064,1,30000,30000 +011-6,223,250,61,32 monster The Bat 1017,5,30000,100000 +011-6,224,175,59,12 monster The Bat 1017,3,30000,100000 +011-6,257,77,2,63 monster The Bat 1017,6,30000,100000 +011-6,192,77,2,63 monster The Bat 1017,9,30000,100000 +011-6,167,110,43,6 monster The Bat 1017,9,30000,100000 +011-6,75,70,52,48 monster The Bat 1017,23,30000,100000 +011-6,78,195,64,48 monster The Bat 1017,9,30000,100000 +011-6,168,109,18,18 monster The SpikyMushroom 1019,5,30000,100000 +011-6,199,76,18,18 monster The SpikyMushroom 1019,5,30000,100000 +011-6,88,163,14,13 monster The SpikyMushroom 1019,5,30000,100000 +011-6,48,113,17,9 monster The SpikyMushroom 1019,5,30000,100000 +011-6,177,94,10,14 monster The EvilMushroom 1013,4,30000,100000 +011-6,194,49,10,14 monster The EvilMushroom 1013,2,30000,100000 +011-6,51,115,23,12 monster The EvilMushroom 1013,2,30000,100000 +011-6,63,169,6,8 monster The EvilMushroom 1013,2,30000,100000 +011-6,100,226,14,7 monster The SpikyMushroom 1019,3,30000,100000 +011-6,260,44,26,8 monster The SpikyMushroom 1019,3,30000,100000 +011-6,272,48,10,14 monster The EvilMushroom 1013,2,30000,100000 +011-6,95,78,15,12 monster The YellowSlime 1007,5,30000,100000 +011-6,59,36,9,12 monster The YellowSlime 1007,5,30000,100000 +011-6,26,69,9,12 monster The YellowSlime 1007,5,30000,100000 +011-6,61,101,7,5 monster The YellowSlime 1007,3,30000,100000 +011-6,50,61,4,6 monster The YellowSlime 1007,3,30000,100000 +011-6,128,39,4,6 monster The YellowSlime 1007,3,30000,100000 +011-6,41,178,4,6 monster The YellowSlime 1007,1,30000,100000 +011-6,70,229,4,6 monster The YellowSlime 1007,1,30000,100000 +011-6,20,204,4,6 monster The YellowSlime 1007,1,30000,100000 +011-6,114,190,4,6 monster The YellowSlime 1007,4,30000,100000 +011-6,137,205,4,6 monster The YellowSlime 1007,2,30000,100000 +011-6,79,220,14,7 monster The CaveSnake 1021,3,30000,100000 +011-6,115,210,14,7 monster The CaveSnake 1021,3,30000,100000 +011-6,41,193,15,15 monster The CaveSnake 1021,3,30000,100000 +011-6,70,143,15,15 monster The CaveSnake 1021,3,30000,100000 +011-6,97,183,14,7 monster The CaveSnake 1021,3,30000,100000 +011-6,172,252,4,6 monster The CaveMaggot 1056,4,30000,100000 +011-6,263,236,8,2 monster The CaveMaggot 1056,3,30000,100000 diff --git a/npc/012-1/_mobs.txt b/npc/012-1/_mobs.txt index bc36c7ab..45f5fb46 100644 --- a/npc/012-1/_mobs.txt +++ b/npc/012-1/_mobs.txt @@ -1,13 +1,13 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 012-1: Woodland Hills mobs -012-1,0,0,0,0 monster CroconutMob 1014,13,0,100 -012-1,0,0,0,0 monster PumpkinMob 1019,25,0,10 -012-1,0,0,0,0 monster Forest Maggot 1028,20,0,10 -012-1,0,0,0,0 monster Bee 1029,5,2700000,1800000 -012-1,0,0,0,0 monster Pinkie 1030,2,2700000,1800000 -012-1,0,0,0,0 monster Log Head 1031,2,2700000,1800000 -012-1,0,0,0,0 monster Butterfly 1032,2,2700000,1800000 -012-1,0,0,0,0 monster Mana Bug 1035,5,60000,30000 -012-1,0,0,0,0 monster Alizarin Plant 1037,2,0,1000 -012-1,0,0,0,0 monster Gamboge Plant 1038,25,30,20 -012-1,0,0,0,0 monster Amethyst Vein 1055,20,30,20 +012-1,0,0,0,0 monster The PinkFlower 1014,13,0,100 +012-1,0,0,0,0 monster The SpikyMushroom 1019,25,0,10 +012-1,0,0,0,0 monster The Mouboo 1028,20,0,10 +012-1,0,0,0,0 monster The MauvePlant 1029,5,2700000,1800000 +012-1,0,0,0,0 monster The CobaltPlant 1030,2,2700000,1800000 +012-1,0,0,0,0 monster The GambogePlant 1031,2,2700000,1800000 +012-1,0,0,0,0 monster The AlizarinPlant 1032,2,2700000,1800000 +012-1,0,0,0,0 monster The Silkworm 1035,5,60000,30000 +012-1,0,0,0,0 monster The CloverPatch 1037,2,0,1000 +012-1,0,0,0,0 monster The Squirrel 1038,25,30,20 +012-1,0,0,0,0 monster The Butterfly 1055,20,30,20 diff --git a/npc/012-3/_mobs.txt b/npc/012-3/_mobs.txt index c0393706..0f0f9e38 100644 --- a/npc/012-3/_mobs.txt +++ b/npc/012-3/_mobs.txt @@ -1,18 +1,18 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 012-3: Moggun Cave mobs -012-3,448,65,9,3 monster Blue Rose 1061,5,100000,30000 -012-3,442,45,9,3 monster Blue Rose 1061,5,100000,30000 -012-3,412,31,9,3 monster Blue Rose 1061,5,100000,30000 -012-3,347,39,4,8 monster Blue Rose 1061,5,100000,30000 -012-3,363,101,8,9 monster Blue Rose 1061,10,100000,30000 -012-3,446,81,9,3 monster Blue Rose 1061,5,100000,30000 -012-3,388,138,8,3 monster Blue Rose 1061,5,100000,30000 -012-3,409,78,4,8 monster Blue Rose 1061,5,100000,30000 -012-3,382,152,8,3 monster Blue Rose 1061,5,100000,30000 -012-3,430,117,4,8 monster Blue Rose 1061,5,100000,30000 -012-3,330,100,4,8 monster Blue Rose 1061,5,100000,30000 -012-3,269,138,8,9 monster Blue Rose 1061,10,100000,30000 -012-3,188,52,8,9 monster Blue Rose 1061,10,100000,30000 -012-3,165,106,8,9 monster Blue Rose 1061,10,100000,30000 -012-3,0,0,0,0 monster Manana Tree 1017,100,0,0 -012-3,0,0,0,0 monster Dummy 1021,75,0,0 +012-3,448,65,9,3 monster The Moggun 1061,5,100000,30000 +012-3,442,45,9,3 monster The Moggun 1061,5,100000,30000 +012-3,412,31,9,3 monster The Moggun 1061,5,100000,30000 +012-3,347,39,4,8 monster The Moggun 1061,5,100000,30000 +012-3,363,101,8,9 monster The Moggun 1061,10,100000,30000 +012-3,446,81,9,3 monster The Moggun 1061,5,100000,30000 +012-3,388,138,8,3 monster The Moggun 1061,5,100000,30000 +012-3,409,78,4,8 monster The Moggun 1061,5,100000,30000 +012-3,382,152,8,3 monster The Moggun 1061,5,100000,30000 +012-3,430,117,4,8 monster The Moggun 1061,5,100000,30000 +012-3,330,100,4,8 monster The Moggun 1061,5,100000,30000 +012-3,269,138,8,9 monster The Moggun 1061,10,100000,30000 +012-3,188,52,8,9 monster The Moggun 1061,10,100000,30000 +012-3,165,106,8,9 monster The Moggun 1061,10,100000,30000 +012-3,0,0,0,0 monster The Bat 1017,100,0,0 +012-3,0,0,0,0 monster The CaveSnake 1021,75,0,0 diff --git a/npc/012-4/_mobs.txt b/npc/012-4/_mobs.txt index aff11e97..2ff3cfda 100644 --- a/npc/012-4/_mobs.txt +++ b/npc/012-4/_mobs.txt @@ -1,66 +1,66 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 012-4: Terranite Cave mobs -012-4,217,45,6,1 monster Blue Rose 1061,3,100000,30000 -012-4,223,30,6,1 monster Blue Rose 1061,3,100000,30000 -012-4,239,48,6,1 monster Blue Rose 1061,3,100000,30000 -012-4,197,39,3,4 monster Blue Rose 1061,3,100000,30000 -012-4,210,35,3,4 monster Manana Tree 1017,5,100000,30000 -012-4,241,38,3,4 monster Manana Tree 1017,5,100000,30000 -012-4,237,59,3,4 monster Manana Tree 1017,5,100000,30000 -012-4,226,73,3,4 monster Manana Tree 1017,5,100000,30000 -012-4,209,94,4,2 monster Manana Tree 1017,5,100000,30000 -012-4,263,29,3,4 monster Manana Tree 1017,5,100000,30000 -012-4,274,48,3,4 monster Manana Tree 1017,5,100000,30000 -012-4,267,70,3,4 monster Manana Tree 1017,5,100000,30000 -012-4,259,79,3,4 monster Manana Tree 1017,5,100000,30000 -012-4,274,79,3,4 monster Manana Tree 1017,5,100000,30000 -012-4,268,91,12,7 monster Blue Rose 1061,10,100000,30000 -012-4,209,146,34,27 monster Frostiana 1012,50,100000,30000 -012-4,254,163,9,23 monster Little Blub 1007,10,100000,30000 -012-4,167,175,8,11 monster Little Blub 1007,10,100000,30000 -012-4,148,176,8,11 monster Blub 1008,20,100000,30000 -012-4,131,88,8,11 monster Blub 1008,15,100000,30000 -012-4,140,131,8,11 monster Little Blub 1007,10,100000,30000 -012-4,42,128,8,4 monster Little Blub 1007,10,100000,30000 -012-4,64,62,12,15 monster Frostiana 1012,20,100000,30000 -012-4,69,89,8,10 monster Little Blub 1007,10,100000,30000 -012-4,34,45,8,16 monster Red Rose 1062,3,100000,30000 -012-4,64,36,12,8 monster Scorpion 1043,3,100000,30000 -012-4,100,115,12,8 monster Scorpion 1043,3,100000,30000 -012-4,90,137,8,11 monster Little Blub 1007,10,100000,30000 -012-4,59,113,7,8 monster Spider 1044,3,100000,30000 -012-4,42,176,7,6 monster Red Rose 1062,3,100000,30000 -012-4,120,177,12,8 monster Spider 1044,3,100000,30000 -012-4,287,180,12,8 monster Spider 1044,3,100000,30000 -012-4,340,175,12,8 monster Scorpion 1043,3,100000,30000 -012-4,390,156,34,27 monster Frostiana 1012,40,100000,30000 -012-4,358,37,10,11 monster Red Rose 1062,3,100000,30000 -012-4,481,110,9,12 monster Red Rose 1062,3,100000,30000 -012-4,435,114,12,8 monster Scorpion 1043,3,100000,30000 -012-4,477,82,12,8 monster Spider 1044,3,100000,30000 -012-4,354,106,9,23 monster Little Blub 1007,10,100000,30000 -012-4,342,139,8,11 monster Blub 1008,15,100000,30000 -012-4,389,81,16,7 monster Blub 1008,20,100000,30000 -012-4,409,35,3,4 monster Manana Tree 1017,5,100000,30000 -012-4,413,73,3,4 monster Manana Tree 1017,5,100000,30000 -012-4,395,63,3,4 monster Manana Tree 1017,5,100000,30000 -012-4,314,182,3,4 monster Manana Tree 1017,5,100000,30000 -012-4,409,121,3,4 monster Manana Tree 1017,5,100000,30000 -012-4,456,99,3,4 monster Manana Tree 1017,5,100000,30000 -012-4,133,153,4,2 monster Manana Tree 1017,5,100000,30000 -012-4,153,98,4,2 monster Manana Tree 1017,5,100000,30000 -012-4,126,65,4,2 monster Manana Tree 1017,5,100000,30000 -012-4,81,180,4,2 monster Manana Tree 1017,5,100000,30000 -012-4,61,159,4,2 monster Manana Tree 1017,5,100000,30000 -012-4,271,157,3,4 monster Manana Tree 1017,5,100000,30000 -012-4,270,182,3,4 monster Manana Tree 1017,5,100000,30000 -012-4,322,141,8,11 monster Blub 1008,20,100000,30000 -012-4,451,111,3,4 monster Manana Tree 1017,5,100000,30000 -012-4,422,50,5,16 monster Frostiana 1012,10,100000,30000 -012-4,380,40,7,11 monster Frostiana 1012,10,100000,30000 -012-4,124,49,4,12 monster Red Rose 1062,1,100000,30000 -012-4,80,110,4,2 monster Manana Tree 1017,5,100000,30000 -012-4,42,142,10,5 monster Scorpion 1043,3,100000,30000 -012-4,41,159,5,10 monster Frostiana 1012,20,100000,30000 -012-4,95,180,4,2 monster Manana Tree 1017,5,100000,30000 -012-4,91,180,11,5 monster Frostiana 1012,20,100000,30000 +012-4,217,45,6,1 monster The Moggun 1061,3,100000,30000 +012-4,223,30,6,1 monster The Moggun 1061,3,100000,30000 +012-4,239,48,6,1 monster The Moggun 1061,3,100000,30000 +012-4,197,39,3,4 monster The Moggun 1061,3,100000,30000 +012-4,210,35,3,4 monster The Bat 1017,5,100000,30000 +012-4,241,38,3,4 monster The Bat 1017,5,100000,30000 +012-4,237,59,3,4 monster The Bat 1017,5,100000,30000 +012-4,226,73,3,4 monster The Bat 1017,5,100000,30000 +012-4,209,94,4,2 monster The Bat 1017,5,100000,30000 +012-4,263,29,3,4 monster The Bat 1017,5,100000,30000 +012-4,274,48,3,4 monster The Bat 1017,5,100000,30000 +012-4,267,70,3,4 monster The Bat 1017,5,100000,30000 +012-4,259,79,3,4 monster The Bat 1017,5,100000,30000 +012-4,274,79,3,4 monster The Bat 1017,5,100000,30000 +012-4,268,91,12,7 monster The Moggun 1061,10,100000,30000 +012-4,209,146,34,27 monster The Spider 1012,50,100000,30000 +012-4,254,163,9,23 monster The YellowSlime 1007,10,100000,30000 +012-4,167,175,8,11 monster The YellowSlime 1007,10,100000,30000 +012-4,148,176,8,11 monster The RedSlime 1008,20,100000,30000 +012-4,131,88,8,11 monster The RedSlime 1008,15,100000,30000 +012-4,140,131,8,11 monster The YellowSlime 1007,10,100000,30000 +012-4,42,128,8,4 monster The YellowSlime 1007,10,100000,30000 +012-4,64,62,12,15 monster The Spider 1012,20,100000,30000 +012-4,69,89,8,10 monster The YellowSlime 1007,10,100000,30000 +012-4,34,45,8,16 monster The Terranite 1062,3,100000,30000 +012-4,64,36,12,8 monster The Skeleton 1043,3,100000,30000 +012-4,100,115,12,8 monster The Skeleton 1043,3,100000,30000 +012-4,90,137,8,11 monster The YellowSlime 1007,10,100000,30000 +012-4,59,113,7,8 monster The LadySkeleton 1044,3,100000,30000 +012-4,42,176,7,6 monster The Terranite 1062,3,100000,30000 +012-4,120,177,12,8 monster The LadySkeleton 1044,3,100000,30000 +012-4,287,180,12,8 monster The LadySkeleton 1044,3,100000,30000 +012-4,340,175,12,8 monster The Skeleton 1043,3,100000,30000 +012-4,390,156,34,27 monster The Spider 1012,40,100000,30000 +012-4,358,37,10,11 monster The Terranite 1062,3,100000,30000 +012-4,481,110,9,12 monster The Terranite 1062,3,100000,30000 +012-4,435,114,12,8 monster The Skeleton 1043,3,100000,30000 +012-4,477,82,12,8 monster The LadySkeleton 1044,3,100000,30000 +012-4,354,106,9,23 monster The YellowSlime 1007,10,100000,30000 +012-4,342,139,8,11 monster The RedSlime 1008,15,100000,30000 +012-4,389,81,16,7 monster The RedSlime 1008,20,100000,30000 +012-4,409,35,3,4 monster The Bat 1017,5,100000,30000 +012-4,413,73,3,4 monster The Bat 1017,5,100000,30000 +012-4,395,63,3,4 monster The Bat 1017,5,100000,30000 +012-4,314,182,3,4 monster The Bat 1017,5,100000,30000 +012-4,409,121,3,4 monster The Bat 1017,5,100000,30000 +012-4,456,99,3,4 monster The Bat 1017,5,100000,30000 +012-4,133,153,4,2 monster The Bat 1017,5,100000,30000 +012-4,153,98,4,2 monster The Bat 1017,5,100000,30000 +012-4,126,65,4,2 monster The Bat 1017,5,100000,30000 +012-4,81,180,4,2 monster The Bat 1017,5,100000,30000 +012-4,61,159,4,2 monster The Bat 1017,5,100000,30000 +012-4,271,157,3,4 monster The Bat 1017,5,100000,30000 +012-4,270,182,3,4 monster The Bat 1017,5,100000,30000 +012-4,322,141,8,11 monster The RedSlime 1008,20,100000,30000 +012-4,451,111,3,4 monster The Bat 1017,5,100000,30000 +012-4,422,50,5,16 monster The Spider 1012,10,100000,30000 +012-4,380,40,7,11 monster The Spider 1012,10,100000,30000 +012-4,124,49,4,12 monster The Terranite 1062,1,100000,30000 +012-4,80,110,4,2 monster The Bat 1017,5,100000,30000 +012-4,42,142,10,5 monster The Skeleton 1043,3,100000,30000 +012-4,41,159,5,10 monster The Spider 1012,20,100000,30000 +012-4,95,180,4,2 monster The Bat 1017,5,100000,30000 +012-4,91,180,11,5 monster The Spider 1012,20,100000,30000 diff --git a/npc/013-1/_mobs.txt b/npc/013-1/_mobs.txt index 07b4861e..f57ef0fc 100644 --- a/npc/013-1/_mobs.txt +++ b/npc/013-1/_mobs.txt @@ -1,17 +1,17 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 013-1: Woodland Hills mobs -013-1,0,0,0,0 monster CroconutMob 1014,13,0,100 -013-1,0,0,0,0 monster PumpkinMob 1019,12,0,100 -013-1,0,0,0,0 monster Forest Maggot 1028,5,0,100 -013-1,0,0,0,0 monster Bee 1029,1,270,180 -013-1,0,0,0,0 monster Bee 1029,4,2700000,1800000 -013-1,0,0,0,0 monster Pinkie 1030,1,270,180 -013-1,0,0,0,0 monster Pinkie 1030,2,2700000,1800000 -013-1,0,0,0,0 monster Log Head 1031,1,270,180 -013-1,0,0,0,0 monster Log Head 1031,2,2700000,1800000 -013-1,0,0,0,0 monster Butterfly 1032,1,270,180 -013-1,0,0,0,0 monster Butterfly 1032,2,2700000,1800000 -013-1,0,0,0,0 monster Mana Bug 1035,4,60000,30000 -013-1,0,0,0,0 monster Alizarin Plant 1037,2,0,1000 -013-1,0,0,0,0 monster Gamboge Plant 1038,25,30,20 -013-1,0,0,0,0 monster Amethyst Vein 1055,10,30,20 +013-1,0,0,0,0 monster The PinkFlower 1014,13,0,100 +013-1,0,0,0,0 monster The SpikyMushroom 1019,12,0,100 +013-1,0,0,0,0 monster The Mouboo 1028,5,0,100 +013-1,0,0,0,0 monster The MauvePlant 1029,1,270,180 +013-1,0,0,0,0 monster The MauvePlant 1029,4,2700000,1800000 +013-1,0,0,0,0 monster The CobaltPlant 1030,1,270,180 +013-1,0,0,0,0 monster The CobaltPlant 1030,2,2700000,1800000 +013-1,0,0,0,0 monster The GambogePlant 1031,1,270,180 +013-1,0,0,0,0 monster The GambogePlant 1031,2,2700000,1800000 +013-1,0,0,0,0 monster The AlizarinPlant 1032,1,270,180 +013-1,0,0,0,0 monster The AlizarinPlant 1032,2,2700000,1800000 +013-1,0,0,0,0 monster The Silkworm 1035,4,60000,30000 +013-1,0,0,0,0 monster The CloverPatch 1037,2,0,1000 +013-1,0,0,0,0 monster The Squirrel 1038,25,30,20 +013-1,0,0,0,0 monster The Butterfly 1055,10,30,20 diff --git a/npc/014-1/_mobs.txt b/npc/014-1/_mobs.txt index 305cf395..1f59cd25 100644 --- a/npc/014-1/_mobs.txt +++ b/npc/014-1/_mobs.txt @@ -1,18 +1,18 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 014-1: Woodland mobs -014-1,0,0,0,0 monster Pikpik 1013,20,0,0 -014-1,0,0,0,0 monster CroconutMob 1014,25,0,0 -014-1,0,0,0,0 monster PumpkinMob 1019,15,0,0 -014-1,0,0,0,0 monster Forest Maggot 1028,5,0,10 -014-1,0,0,0,0 monster Bee 1029,1,270,180 -014-1,0,0,0,0 monster Bee 1029,5,2700000,1800000 -014-1,0,0,0,0 monster Pinkie 1030,1,270,180 -014-1,0,0,0,0 monster Pinkie 1030,2,2700000,1800000 -014-1,0,0,0,0 monster Log Head 1031,1,270,180 -014-1,0,0,0,0 monster Log Head 1031,2,2700000,1800000 -014-1,0,0,0,0 monster Butterfly 1032,1,270,180 -014-1,0,0,0,0 monster Butterfly 1032,2,2700000,1800000 -014-1,0,0,0,0 monster Mana Bug 1035,4,6000,3000 -014-1,0,0,0,0 monster Alizarin Plant 1037,2,0,1000 -014-1,0,0,0,0 monster Gamboge Plant 1038,25,30,20 -014-1,0,0,0,0 monster Amethyst Vein 1055,10,30,20 +014-1,0,0,0,0 monster The EvilMushroom 1013,20,0,0 +014-1,0,0,0,0 monster The PinkFlower 1014,25,0,0 +014-1,0,0,0,0 monster The SpikyMushroom 1019,15,0,0 +014-1,0,0,0,0 monster The Mouboo 1028,5,0,10 +014-1,0,0,0,0 monster The MauvePlant 1029,1,270,180 +014-1,0,0,0,0 monster The MauvePlant 1029,5,2700000,1800000 +014-1,0,0,0,0 monster The CobaltPlant 1030,1,270,180 +014-1,0,0,0,0 monster The CobaltPlant 1030,2,2700000,1800000 +014-1,0,0,0,0 monster The GambogePlant 1031,1,270,180 +014-1,0,0,0,0 monster The GambogePlant 1031,2,2700000,1800000 +014-1,0,0,0,0 monster The AlizarinPlant 1032,1,270,180 +014-1,0,0,0,0 monster The AlizarinPlant 1032,2,2700000,1800000 +014-1,0,0,0,0 monster The Silkworm 1035,4,6000,3000 +014-1,0,0,0,0 monster The CloverPatch 1037,2,0,1000 +014-1,0,0,0,0 monster The Squirrel 1038,25,30,20 +014-1,0,0,0,0 monster The Butterfly 1055,10,30,20 diff --git a/npc/014-3/_mobs.txt b/npc/014-3/_mobs.txt index 566f0e3c..110cb5d7 100644 --- a/npc/014-3/_mobs.txt +++ b/npc/014-3/_mobs.txt @@ -1,3 +1,3 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 014-3: Woodland Cave mobs -014-3,0,0,0,0 monster Manana Tree 1017,50,0,0 +014-3,0,0,0,0 monster The Bat 1017,50,0,0 diff --git a/npc/015-1/_mobs.txt b/npc/015-1/_mobs.txt index 56f77bf6..55c0e038 100644 --- a/npc/015-1/_mobs.txt +++ b/npc/015-1/_mobs.txt @@ -1,12 +1,12 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 015-1: Woodland mobs -015-1,0,0,0,0 monster Alizarin Plant 1037,2,100000,1000 -015-1,0,0,0,0 monster Amethyst Vein 1055,10,30,20 -015-1,0,0,0,0 monster Gamboge Plant 1038,30,20,10 -015-1,0,0,0,0 monster Little Green Slime 1025,40,0,0 -015-1,0,0,0,0 monster PumpkinMob 1019,20,0,0 -015-1,0,0,0,0 monster CroconutMob 1014,20,0,0 -015-1,0,0,0,0 monster Log Head 1031,5,0,0 -015-1,0,0,0,0 monster Butterfly 1032,5,0,0 -015-1,0,0,0,0 monster Mana Bug 1035,7,15000,7000 -015-1,0,0,0,0 monster Bee 1029,4,270000,180000 +015-1,0,0,0,0 monster The CloverPatch 1037,2,100000,1000 +015-1,0,0,0,0 monster The Butterfly 1055,10,30,20 +015-1,0,0,0,0 monster The Squirrel 1038,30,20,10 +015-1,0,0,0,0 monster The LogHead 1025,40,0,0 +015-1,0,0,0,0 monster The SpikyMushroom 1019,20,0,0 +015-1,0,0,0,0 monster The PinkFlower 1014,20,0,0 +015-1,0,0,0,0 monster The GambogePlant 1031,5,0,0 +015-1,0,0,0,0 monster The AlizarinPlant 1032,5,0,0 +015-1,0,0,0,0 monster The Silkworm 1035,7,15000,7000 +015-1,0,0,0,0 monster The MauvePlant 1029,4,270000,180000 diff --git a/npc/015-3/_mobs.txt b/npc/015-3/_mobs.txt index 0e700948..94dba765 100644 --- a/npc/015-3/_mobs.txt +++ b/npc/015-3/_mobs.txt @@ -1,6 +1,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 015-3: Cat's Cave mobs -015-3,22,25,1,2 monster Manana Tree 1017,2,100000,30000 -015-3,29,31,1,1 monster Piou 1002,2,100000,30000 -015-3,23,19,0,0 monster Piou 1002,1,100000,30000 -015-3,40,19,0,0 monster Frostiana 1012,1,100000,30000 +015-3,22,25,1,2 monster The Bat 1017,2,100000,30000 +015-3,29,31,1,1 monster The Maggot 1002,2,100000,30000 +015-3,23,19,0,0 monster The Maggot 1002,1,100000,30000 +015-3,40,19,0,0 monster The Spider 1012,1,100000,30000 diff --git a/npc/016-1/_mobs.txt b/npc/016-1/_mobs.txt index 73aad7ee..519a555d 100644 --- a/npc/016-1/_mobs.txt +++ b/npc/016-1/_mobs.txt @@ -1,11 +1,11 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 016-1: Woodland mobs -016-1,0,0,0,0 monster Alizarin Plant 1037,2,100000,30000 -016-1,0,0,0,0 monster Amethyst Vein 1055,10,30,20 -016-1,0,0,0,0 monster Gamboge Plant 1038,30,20,10 -016-1,0,0,0,0 monster Forest Maggot 1028,5,0,0 -016-1,0,0,0,0 monster Bee 1029,3,0,0 -016-1,0,0,0,0 monster Bee 1029,4,270000,180000 -016-1,0,0,0,0 monster Pinkie 1030,3,0,0 -016-1,0,0,0,0 monster Bee 1029,4,270000,180000 -016-1,0,0,0,0 monster Mana Bug 1035,7,150000,7000 +016-1,0,0,0,0 monster The CloverPatch 1037,2,100000,30000 +016-1,0,0,0,0 monster The Butterfly 1055,10,30,20 +016-1,0,0,0,0 monster The Squirrel 1038,30,20,10 +016-1,0,0,0,0 monster The Mouboo 1028,5,0,0 +016-1,0,0,0,0 monster The MauvePlant 1029,3,0,0 +016-1,0,0,0,0 monster The MauvePlant 1029,4,270000,180000 +016-1,0,0,0,0 monster The CobaltPlant 1030,3,0,0 +016-1,0,0,0,0 monster The MauvePlant 1029,4,270000,180000 +016-1,0,0,0,0 monster The Silkworm 1035,7,150000,7000 diff --git a/npc/017-1/_mobs.txt b/npc/017-1/_mobs.txt index 435da977..6729e956 100644 --- a/npc/017-1/_mobs.txt +++ b/npc/017-1/_mobs.txt @@ -1,20 +1,20 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 017-1: Woodland Hills mobs -017-1,0,0,0,0 monster Alizarin Plant 1037,2,0,1000 -017-1,99,30,1,0 monster Alizarin Plant 1037,1,150000,50000 -017-1,29,29,9,6 monster Log Head 1031,1,0,25000 -017-1,91,25,38,4 monster Little Green Slime 1025,3,5000,60000 -017-1,31,48,9,6 monster Little Green Slime 1025,3,5000,60000 -017-1,0,0,0,0 monster Amethyst Vein 1055,10,30,20 -017-1,0,0,0,0 monster Manana Tree 1017,5,0,0 -017-1,0,0,0,0 monster Plushroom Field 1011,5,0,0 -017-1,0,0,0,0 monster Forest Maggot 1028,5,0,0 -017-1,0,0,0,0 monster CroconutMob 1014,5,0,0 -017-1,0,0,0,0 monster PumpkinMob 1019,5,0,0 -017-1,0,0,0,0 monster Pikpik 1013,10,0,0 -017-1,0,0,0,0 monster Butterfly 1032,3,0,0 -017-1,0,0,0,0 monster Log Head 1031,3,0,0 -017-1,0,0,0,0 monster Pinkie 1030,3,0,0 -017-1,0,0,0,0 monster Bee 1029,5,0,0 -017-1,0,0,0,0 monster Mana Bug 1035,10,0,0 -017-1,0,0,0,0 monster Gamboge Plant 1038,30,20,10 +017-1,0,0,0,0 monster The CloverPatch 1037,2,0,1000 +017-1,99,30,1,0 monster The CloverPatch 1037,1,150000,50000 +017-1,29,29,9,6 monster The GambogePlant 1031,1,0,25000 +017-1,91,25,38,4 monster The LogHead 1025,3,5000,60000 +017-1,31,48,9,6 monster The LogHead 1025,3,5000,60000 +017-1,0,0,0,0 monster The Butterfly 1055,10,30,20 +017-1,0,0,0,0 monster The Bat 1017,5,0,0 +017-1,0,0,0,0 monster The FireGoblin 1011,5,0,0 +017-1,0,0,0,0 monster The Mouboo 1028,5,0,0 +017-1,0,0,0,0 monster The PinkFlower 1014,5,0,0 +017-1,0,0,0,0 monster The SpikyMushroom 1019,5,0,0 +017-1,0,0,0,0 monster The EvilMushroom 1013,10,0,0 +017-1,0,0,0,0 monster The AlizarinPlant 1032,3,0,0 +017-1,0,0,0,0 monster The GambogePlant 1031,3,0,0 +017-1,0,0,0,0 monster The CobaltPlant 1030,3,0,0 +017-1,0,0,0,0 monster The MauvePlant 1029,5,0,0 +017-1,0,0,0,0 monster The Silkworm 1035,10,0,0 +017-1,0,0,0,0 monster The Squirrel 1038,30,20,10 diff --git a/npc/018-1/_mobs.txt b/npc/018-1/_mobs.txt index d32b0c37..3fe1ecb0 100644 --- a/npc/018-1/_mobs.txt +++ b/npc/018-1/_mobs.txt @@ -1,28 +1,29 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 018-1: Woodland Mining Camp mobs -018-1,136,79,4,20 monster Clover Patch 1033,10,100000,30000 -018-1,116,44,3,3 monster Clover Patch 1033,3,100000,30000 -018-1,119,56,6,3 monster CroconutMob 1014,2,100000,30000 -018-1,175,28,8,9 monster Fluffy 1022,1,180000,120000 -018-1,78,59,1,0 monster Little Blub 1007,1,100000,30000 -018-1,57,63,7,3 monster Mana Bug 1035,2,100000,30000 -018-1,43,63,15,14 monster Manana Tree 1017,10,100000,30000 -018-1,134,39,9,5 monster Pink Flower 1034,4,100000,50000 -018-1,124,42,4,5 monster Pink Flower 1034,2,100000,50000 -018-1,124,19,11,4 monster Pink Flower 1034,3,100000,50000 -018-1,122,29,9,4 monster Pink Flower 1034,2,100000,50000 -018-1,149,45,5,4 monster Manana Tree 1017,5,100000,30000 -018-1,169,47,10,5 monster Blub 1008,4,120000,30000 -018-1,136,49,6,4 monster Manana Tree 1017,4,100000,30000 -018-1,166,49,6,4 monster Alizarin Plant 1037,1,100000,30000 -018-1,111,62,2,1 monster Mana Bug 1035,1,60000,30000 -018-1,117,50,2,1 monster Clover Patch 1033,1,120000,60000 -018-1,96,47,9,5 monster Blub 1008,3,100000,50000 -018-1,106,52,7,3 monster Pinkie 1030,1,240000,120000 -018-1,78,55,18,3 monster Blub 1008,7,100000,50000 -018-1,145,24,5,4 monster Blub 1008,3,100000,50000 -018-1,68,89,7,8 monster Manana Tree 1017,3,100000,50000 -018-1,160,31,5,9 monster Blub 1008,5,100000,50000 -018-1,0,0,0,0 monster Alizarin Plant 1037,2,0,1000 -018-1,0,0,0,0 monster Amethyst Vein 1055,20,30,20 -018-1,134,80,7,19 monster Piou 1002,15,0,0 +018-1,136,79,4,20 monster The SeaSlime 1033,10,100000,30000 +018-1,108,87,26,12 monster The ManaBug 1131,10,100000,30000 +018-1,116,44,3,3 monster The SeaSlime 1033,3,100000,30000 +018-1,119,56,6,3 monster The PinkFlower 1014,2,100000,30000 +018-1,175,28,8,9 monster The JackO 1022,1,180000,120000 +018-1,78,59,1,0 monster The YellowSlime 1007,1,100000,30000 +018-1,57,63,7,3 monster The Silkworm 1035,2,100000,30000 +018-1,43,63,15,14 monster The Bat 1017,10,100000,30000 +018-1,134,39,9,5 monster The GrassSnake 1034,4,100000,50000 +018-1,124,42,4,5 monster The GrassSnake 1034,2,100000,50000 +018-1,124,19,11,4 monster The GrassSnake 1034,3,100000,50000 +018-1,122,29,9,4 monster The GrassSnake 1034,2,100000,50000 +018-1,149,45,5,4 monster The Bat 1017,5,100000,30000 +018-1,169,47,10,5 monster The RedSlime 1008,4,120000,30000 +018-1,136,49,6,4 monster The Bat 1017,4,100000,30000 +018-1,166,49,6,4 monster The CloverPatch 1037,1,100000,30000 +018-1,111,62,2,1 monster The Silkworm 1035,1,60000,30000 +018-1,117,50,2,1 monster The SeaSlime 1033,1,120000,60000 +018-1,96,47,9,5 monster The RedSlime 1008,3,100000,50000 +018-1,106,52,7,3 monster The CobaltPlant 1030,1,240000,120000 +018-1,78,55,18,3 monster The RedSlime 1008,7,100000,50000 +018-1,145,24,5,4 monster The RedSlime 1008,3,100000,50000 +018-1,68,89,7,8 monster The Bat 1017,3,100000,50000 +018-1,160,31,5,9 monster The RedSlime 1008,5,100000,50000 +018-1,0,0,0,0 monster The CloverPatch 1037,2,0,1000 +018-1,0,0,0,0 monster The Butterfly 1055,20,30,20 +018-1,134,80,7,19 monster The Maggot 1002,15,0,0 diff --git a/npc/018-2/_mobs.txt b/npc/018-2/_mobs.txt index 39b25c49..11755802 100644 --- a/npc/018-2/_mobs.txt +++ b/npc/018-2/_mobs.txt @@ -1,3 +1,3 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 018-2: Woodland Mining Camp Indoor mobs -018-2,114,21,2,1 monster Little Blub 1007,1,100000,30000 +018-2,114,21,2,1 monster The YellowSlime 1007,1,100000,30000 diff --git a/npc/018-3/_mobs.txt b/npc/018-3/_mobs.txt index b2240514..6d4f148a 100644 --- a/npc/018-3/_mobs.txt +++ b/npc/018-3/_mobs.txt @@ -1,25 +1,25 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 018-3: Northern Mines mobs -018-3,48,29,28,9 monster Manana Tree 1017,10,100000,30000 -018-3,35,144,15,24 monster Pikpik 1013,10,120000,30000 -018-3,35,65,14,11 monster Frostiana 1012,20,100000,50000 -018-3,28,157,1,1 monster CroconutMob 1014,1,60000,30000 -018-3,99,111,8,20 monster Little Blub 1007,10,90000,30000 -018-3,134,140,6,4 monster Piou 1002,3,80000,40000 -018-3,82,149,36,13 monster Frostiana 1012,8,300000,120000 -018-3,102,172,65,6 monster Toppy Blub 1009,20,60000,10000 -018-3,174,37,5,15 monster Little Blub 1007,5,180000,120000 -018-3,148,148,6,12 monster Manana Tree 1017,3,180000,40000 -018-3,136,87,10,3 monster Little Blub 1007,6,80000,40000 -018-3,81,77,13,10 monster Blub 1008,15,80000,40000 -018-3,111,80,2,3 monster Toppy Blub 1009,10,80000,40000 -018-3,175,122,2,20 monster Crocotree 1010,15,40000,20000 -018-3,172,94,8,8 monster Blub 1008,10,60000,30000 -018-3,59,95,5,4 monster Frostiana 1012,15,60000,30000 -018-3,77,92,11,3 monster Toppy Blub 1009,15,60000,30000 -018-3,94,55,8,4 monster Crocotree 1010,5,60000,30000 -018-3,133,39,6,8 monster Frostiana 1012,10,60000,30000 -018-3,111,33,15,8 monster Crocotree 1010,15,60000,30000 -018-3,68,101,2,2 monster Dummy 1021,4,60000,30000 -018-3,153,96,9,8 monster Beehive 1056,4,100000,30000 -018-3,99,99,8,8 monster Beehive 1056,4,100000,30000 +018-3,48,29,28,9 monster The Bat 1017,10,100000,30000 +018-3,35,144,15,24 monster The EvilMushroom 1013,10,120000,30000 +018-3,35,65,14,11 monster The Spider 1012,20,100000,50000 +018-3,28,157,1,1 monster The PinkFlower 1014,1,60000,30000 +018-3,99,111,8,20 monster The YellowSlime 1007,10,90000,30000 +018-3,134,140,6,4 monster The Maggot 1002,3,80000,40000 +018-3,82,149,36,13 monster The Spider 1012,8,300000,120000 +018-3,102,172,65,6 monster The BlackScorpionMob 1009,20,60000,10000 +018-3,174,37,5,15 monster The YellowSlime 1007,5,180000,120000 +018-3,148,148,6,12 monster The Bat 1017,3,180000,40000 +018-3,136,87,10,3 monster The YellowSlime 1007,6,80000,40000 +018-3,81,77,13,10 monster The RedSlime 1008,15,80000,40000 +018-3,111,80,2,3 monster The BlackScorpionMob 1009,10,80000,40000 +018-3,175,122,2,20 monster The Snake 1010,15,40000,20000 +018-3,172,94,8,8 monster The RedSlime 1008,10,60000,30000 +018-3,59,95,5,4 monster The Spider 1012,15,60000,30000 +018-3,77,92,11,3 monster The BlackScorpionMob 1009,15,60000,30000 +018-3,94,55,8,4 monster The Snake 1010,5,60000,30000 +018-3,133,39,6,8 monster The Spider 1012,10,60000,30000 +018-3,111,33,15,8 monster The Snake 1010,15,60000,30000 +018-3,68,101,2,2 monster The CaveSnake 1021,4,60000,30000 +018-3,153,96,9,8 monster The CaveMaggot 1056,4,100000,30000 +018-3,99,99,8,8 monster The CaveMaggot 1056,4,100000,30000 diff --git a/npc/019-1/_mobs.txt b/npc/019-1/_mobs.txt index 77b1dc7e..1f6a4838 100644 --- a/npc/019-1/_mobs.txt +++ b/npc/019-1/_mobs.txt @@ -1,6 +1,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 019-1: snow Field mobs -019-1,0,0,0,0 monster Cuco 1020,50,100000,30000 -019-1,0,0,0,0 monster Penguin 1094,4,100000,30000 -019-1,0,0,0,0 monster Reaper 1095,5,100000,30000 -019-1,0,0,0,0 monster Demonic Spirit 1112,4,100000,30000 +019-1,0,0,0,0 monster The Fluffy 1020,50,100000,30000 +019-1,0,0,0,0 monster The Reinboo 1094,4,100000,30000 +019-1,0,0,0,0 monster The WhiteBell 1095,5,100000,30000 +019-1,0,0,0,0 monster The Santaboo 1112,4,100000,30000 diff --git a/npc/019-3/_mobs.txt b/npc/019-3/_mobs.txt index 7a1f091e..790ee608 100644 --- a/npc/019-3/_mobs.txt +++ b/npc/019-3/_mobs.txt @@ -1,4 +1,4 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 019-3: Snow Cave mobs -019-3,0,4,0,0 monster Blue Rose 1061,10,100000,30000 -019-3,0,4,0,0 monster Manana Tree 1017,50,100000,30000 +019-3,0,4,0,0 monster The Moggun 1061,10,100000,30000 +019-3,0,4,0,0 monster The Bat 1017,50,100000,30000 diff --git a/npc/019-4/_mobs.txt b/npc/019-4/_mobs.txt index 0067630b..a426b2c7 100644 --- a/npc/019-4/_mobs.txt +++ b/npc/019-4/_mobs.txt @@ -1,6 +1,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 019-4: Snow Cave mobs -019-4,0,0,0,0 monster Blue Rose 1061,12,45000,30000 -019-4,47,67,7,4 monster Nutcracker 1093,5,45000,45000 -019-4,0,0,0,0 monster Manana Tree 1017,15,45000,25000 -019-4,0,0,0,0 monster Jack-O 1091,7,45000,30000 +019-4,0,0,0,0 monster The Moggun 1061,12,45000,30000 +019-4,47,67,7,4 monster The WhiteSlime 1093,5,45000,45000 +019-4,0,0,0,0 monster The Bat 1017,15,45000,25000 +019-4,0,0,0,0 monster The BlueSlime 1091,7,45000,30000 diff --git a/npc/020-1/_mobs.txt b/npc/020-1/_mobs.txt index 65faf287..6244a13e 100644 --- a/npc/020-1/_mobs.txt +++ b/npc/020-1/_mobs.txt @@ -1,3 +1,3 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 020-1: Nivalis mobs -020-1,0,0,0,0 monster Reaper 1095,3,100000,30000 +020-1,0,0,0,0 monster The WhiteBell 1095,3,100000,30000 diff --git a/npc/020-3/_mobs.txt b/npc/020-3/_mobs.txt index 7ad8ca6b..7af4f76c 100644 --- a/npc/020-3/_mobs.txt +++ b/npc/020-3/_mobs.txt @@ -1,6 +1,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 020-3: Ice cave mobs -020-3,40,36,14,2 monster Manana Tree 1017,1,100000,30000 -020-3,40,49,17,3 monster Crafty 1018,1,100000,30000 -020-3,0,0,0,0 monster Manana Tree 1017,20,0,0 -020-3,0,0,0,0 monster Crafty 1018,10,0,0 +020-3,40,36,14,2 monster The Bat 1017,1,100000,30000 +020-3,40,49,17,3 monster The Pinkie 1018,1,100000,30000 +020-3,0,0,0,0 monster The Bat 1017,20,0,0 +020-3,0,0,0,0 monster The Pinkie 1018,10,0,0 diff --git a/npc/021-3/_mobs.txt b/npc/021-3/_mobs.txt index 2b7542fc..2da6c8cc 100644 --- a/npc/021-3/_mobs.txt +++ b/npc/021-3/_mobs.txt @@ -1,12 +1,12 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 021-3: Central Tulimshar Sewers mobs -021-3,120,38,5,4 monster Beehive 1056,5,100000,30000 -021-3,103,58,4,1 monster Beehive 1056,5,100000,30000 -021-3,80,98,17,15 monster Beehive 1056,5,100000,30000 -021-3,129,82,4,1 monster Beehive 1056,5,100000,30000 -021-3,140,38,8,4 monster AngryFireGoblin 1108,3,100000,30000 -021-3,79,98,16,15 monster Toppy Blub 1009,4,100000,1800000 -021-3,52,53,1,8 monster Ratto 1005,4,40000,50000 -021-3,93,31,14,11 monster Clover Patch 1033,6,100000,30000 -021-3,121,128,4,1 monster Beehive 1056,5,100000,30000 -021-3,47,139,4,1 monster Beehive 1056,5,100000,30000 +021-3,120,38,5,4 monster The CaveMaggot 1056,5,100000,30000 +021-3,103,58,4,1 monster The CaveMaggot 1056,5,100000,30000 +021-3,80,98,17,15 monster The CaveMaggot 1056,5,100000,30000 +021-3,129,82,4,1 monster The CaveMaggot 1056,5,100000,30000 +021-3,140,38,8,4 monster The AngryFireGoblin 1108,3,100000,30000 +021-3,79,98,16,15 monster The BlackScorpionMob 1009,4,100000,1800000 +021-3,52,53,1,8 monster The GreenSlime 1005,4,40000,50000 +021-3,93,31,14,11 monster The SeaSlime 1033,6,100000,30000 +021-3,121,128,4,1 monster The CaveMaggot 1056,5,100000,30000 +021-3,47,139,4,1 monster The CaveMaggot 1056,5,100000,30000 diff --git a/npc/023-1/_mobs.txt b/npc/023-1/_mobs.txt index f2dbf4c1..86746b59 100644 --- a/npc/023-1/_mobs.txt +++ b/npc/023-1/_mobs.txt @@ -1,15 +1,15 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 023-1: Tulimshar Lighthouse Beach mobs -023-1,70,41,3,3 monster Serqet 1119,1,100000,30000 -023-1,84,33,5,3 monster Tengu 1120,1,100000,30000 -023-1,58,28,3,3 monster Golem 1121,1,100000,30000 -023-1,80,99,5,3 monster Tengu 1120,1,100000,30000 -023-1,86,117,9,1 monster Golem 1121,1,100000,30000 -023-1,55,126,3,3 monster Serqet 1119,1,100000,30000 -023-1,47,86,3,3 monster Serqet 1119,1,100000,30000 -023-1,102,67,5,3 monster Tengu 1120,1,100000,30000 -023-1,105,90,3,3 monster Serqet 1119,1,100000,30000 -023-1,62,60,3,3 monster Serqet 1119,1,100000,30000 -023-1,93,49,6,5 monster Golem 1121,1,100000,30000 -023-1,64,95,0,23 monster Swampling 1109,3,150000,100000 -023-1,45,54,2,19 monster Swampling 1109,3,150000,100000 +023-1,70,41,3,3 monster The Thug 1119,1,100000,30000 +023-1,84,33,5,3 monster The Swashbuckler 1120,1,100000,30000 +023-1,58,28,3,3 monster The Grenadier 1121,1,100000,30000 +023-1,80,99,5,3 monster The Swashbuckler 1120,1,100000,30000 +023-1,86,117,9,1 monster The Grenadier 1121,1,100000,30000 +023-1,55,126,3,3 monster The Thug 1119,1,100000,30000 +023-1,47,86,3,3 monster The Thug 1119,1,100000,30000 +023-1,102,67,5,3 monster The Swashbuckler 1120,1,100000,30000 +023-1,105,90,3,3 monster The Thug 1119,1,100000,30000 +023-1,62,60,3,3 monster The Thug 1119,1,100000,30000 +023-1,93,49,6,5 monster The Grenadier 1121,1,100000,30000 +023-1,64,95,0,23 monster The AngrySeaSlime 1109,3,150000,100000 +023-1,45,54,2,19 monster The AngrySeaSlime 1109,3,150000,100000 diff --git a/npc/023-3/_mobs.txt b/npc/023-3/_mobs.txt index aef09567..89ab12fb 100644 --- a/npc/023-3/_mobs.txt +++ b/npc/023-3/_mobs.txt @@ -1,8 +1,8 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 023-3: Tulimshar Beach Caves mobs -023-3,91,77,3,3 monster Serqet 1119,1,100000,30000 -023-3,127,85,3,3 monster Tengu 1120,1,100000,30000 -023-3,98,28,3,3 monster Tengu 1120,1,100000,30000 -023-3,120,45,3,3 monster Serqet 1119,1,100000,30000 -023-3,51,107,6,2 monster Tengu 1120,1,100000,30000 -023-3,69,52,33,4 monster Serqet 1119,1,100000,30000 +023-3,91,77,3,3 monster The Thug 1119,1,100000,30000 +023-3,127,85,3,3 monster The Swashbuckler 1120,1,100000,30000 +023-3,98,28,3,3 monster The Swashbuckler 1120,1,100000,30000 +023-3,120,45,3,3 monster The Thug 1119,1,100000,30000 +023-3,51,107,6,2 monster The Swashbuckler 1120,1,100000,30000 +023-3,69,52,33,4 monster The Thug 1119,1,100000,30000 diff --git a/npc/025-1/_mobs.txt b/npc/025-1/_mobs.txt index c8810f07..08f6f989 100644 --- a/npc/025-1/_mobs.txt +++ b/npc/025-1/_mobs.txt @@ -1,12 +1,12 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 025-1: Woodland Swamp mobs -025-1,100,60,28,39 monster Alizarin Plant 1037,3,30000,10000 -025-1,56,96,6,2 monster Alizarin Plant 1037,1,1200000,10000 -025-1,56,35,38,16 monster Butterfly 1032,2,240000,12000 -025-1,38,84,18,15 monster Mana Bug 1035,18,40000,300 -025-1,96,47,31,27 monster Little Green Slime 1025,14,18000,3000 -025-1,0,0,0,0 monster CroconutMob 1014,34,20000,5000 -025-1,41,86,17,13 monster Pink Flower 1034,3,100000,50000 -025-1,78,46,11,14 monster Pink Flower 1034,3,100000,50000 -025-1,73,84,19,8 monster Pink Flower 1034,3,100000,50000 -025-1,53,33,29,8 monster Pink Flower 1034,4,100000,50000 +025-1,100,60,28,39 monster The CloverPatch 1037,3,30000,10000 +025-1,56,96,6,2 monster The CloverPatch 1037,1,1200000,10000 +025-1,56,35,38,16 monster The AlizarinPlant 1032,2,240000,12000 +025-1,38,84,18,15 monster The Silkworm 1035,18,40000,300 +025-1,96,47,31,27 monster The LogHead 1025,14,18000,3000 +025-1,0,0,0,0 monster The PinkFlower 1014,34,20000,5000 +025-1,41,86,17,13 monster The GrassSnake 1034,3,100000,50000 +025-1,78,46,11,14 monster The GrassSnake 1034,3,100000,50000 +025-1,73,84,19,8 monster The GrassSnake 1034,3,100000,50000 +025-1,53,33,29,8 monster The GrassSnake 1034,4,100000,50000 diff --git a/npc/025-3/_mobs.txt b/npc/025-3/_mobs.txt index 8d98606b..d391bd08 100644 --- a/npc/025-3/_mobs.txt +++ b/npc/025-3/_mobs.txt @@ -1,6 +1,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 025-3: Rossy Main Hall mobs -025-3,0,0,0,0 monster Beehive 1056,100,0,100 -025-3,0,0,0,0 monster Yellow Rose 1060,20,0,100 -025-3,0,0,0,0 monster AngryScorpion 1057,25,0,100 -025-3,69,153,6,0 monster Scorpion 1043,1,0,30000 +025-3,0,0,0,0 monster The CaveMaggot 1056,100,0,100 +025-3,0,0,0,0 monster The Archant 1060,20,0,100 +025-3,0,0,0,0 monster The AngryScorpionMob 1057,25,0,100 +025-3,69,153,6,0 monster The Skeleton 1043,1,0,30000 diff --git a/npc/025-4/_mobs.txt b/npc/025-4/_mobs.txt index b7c7dd1a..2e3dbd8b 100644 --- a/npc/025-4/_mobs.txt +++ b/npc/025-4/_mobs.txt @@ -1,4 +1,4 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 025-4: Rossy Battle Caves mobs -025-4,29,31,10,7 monster Beehive 1056,3,0,100 -025-4,94,24,10,10 monster Beehive 1056,5,0,100 +025-4,29,31,10,7 monster The CaveMaggot 1056,3,0,100 +025-4,94,24,10,10 monster The CaveMaggot 1056,5,0,100 diff --git a/npc/026-1/_mobs.txt b/npc/026-1/_mobs.txt index 307e8b45..3ee7f55f 100644 --- a/npc/026-1/_mobs.txt +++ b/npc/026-1/_mobs.txt @@ -1,16 +1,16 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 026-1: Asphodel Moor mobs -026-1,0,0,0,0 monster Silkworm 1040,34,120000,40000 -026-1,0,0,0,0 monster Grass Snake 1042,34,120000,40000 -026-1,0,0,0,0 monster Iron Vein 1047,34,120000,40000 -026-1,0,0,0,0 monster Mana Bug 1035,10,300000,60000 -026-1,0,0,0,0 monster Little Green Slime 1025,8,300000,40000 -026-1,49,31,28,7 monster Desert Snake 1077,4,100000,30000 -026-1,50,31,26,5 monster Desert Scorpion 1078,4,100000,30000 -026-1,56,77,33,15 monster Desert Snake 1077,4,100000,30000 -026-1,57,77,29,11 monster Desert Scorpion 1078,4,100000,30000 -026-1,110,59,15,37 monster Desert Snake 1077,4,100000,30000 -026-1,110,59,14,35 monster Desert Scorpion 1078,4,100000,30000 -026-1,110,59,15,37 monster Black Slime 1079,4,100000,30000 -026-1,57,79,34,16 monster Black Slime 1079,4,100000,30000 -026-1,48,31,27,6 monster Black Slime 1079,4,100000,30000 +026-1,0,0,0,0 monster The Wisp 1040,34,120000,40000 +026-1,0,0,0,0 monster The Spectre 1042,34,120000,40000 +026-1,0,0,0,0 monster The Poltergeist 1047,34,120000,40000 +026-1,0,0,0,0 monster The Silkworm 1035,10,300000,60000 +026-1,0,0,0,0 monster The LogHead 1025,8,300000,40000 +026-1,49,31,28,7 monster The DrunkenSkeleton 1077,4,100000,30000 +026-1,50,31,26,5 monster The TipsySkeleton 1078,4,100000,30000 +026-1,56,77,33,15 monster The DrunkenSkeleton 1077,4,100000,30000 +026-1,57,77,29,11 monster The TipsySkeleton 1078,4,100000,30000 +026-1,110,59,15,37 monster The DrunkenSkeleton 1077,4,100000,30000 +026-1,110,59,14,35 monster The TipsySkeleton 1078,4,100000,30000 +026-1,110,59,15,37 monster The DrunkenLadySkeleton 1079,4,100000,30000 +026-1,57,79,34,16 monster The DrunkenLadySkeleton 1079,4,100000,30000 +026-1,48,31,27,6 monster The DrunkenLadySkeleton 1079,4,100000,30000 diff --git a/npc/027-1/_mobs.txt b/npc/027-1/_mobs.txt index fac92097..9104cdb0 100644 --- a/npc/027-1/_mobs.txt +++ b/npc/027-1/_mobs.txt @@ -1,18 +1,18 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 027-1: Graveyard mobs -027-1,81,91,47,13 monster Iron Vein 1047,4,900000,60000 -027-1,81,91,48,12 monster Grass Snake 1042,4,900000,60000 -027-1,81,91,49,11 monster Silkworm 1040,4,900000,60000 -027-1,37,64,16,10 monster Scorpion 1043,2,60000,8000 -027-1,37,64,16,10 monster Spider 1044,2,60000,8000 -027-1,71,41,15,11 monster Scorpion 1043,1,175000,20000 -027-1,71,41,15,11 monster Spider 1044,1,175000,20000 -027-1,37,41,16,11 monster Scorpion 1043,4,180000,20000 -027-1,37,41,16,11 monster Spider 1044,4,180000,20000 -027-1,105,40,16,10 monster Scorpion 1043,2,35000,20000 -027-1,105,40,16,10 monster Spider 1044,3,33000,25000 -027-1,70,64,15,10 monster Scorpion 1043,1,60000,8000 -027-1,70,64,15,10 monster Spider 1044,1,60000,8000 -027-1,104,64,15,10 monster Scorpion 1043,2,60000,8000 -027-1,104,64,15,10 monster Spider 1044,2,60000,8000 -027-1,70,40,50,10 monster Legion Swordswoman 1066,15,100000,30000 +027-1,81,91,47,13 monster The Poltergeist 1047,4,900000,60000 +027-1,81,91,48,12 monster The Spectre 1042,4,900000,60000 +027-1,81,91,49,11 monster The Wisp 1040,4,900000,60000 +027-1,37,64,16,10 monster The Skeleton 1043,2,60000,8000 +027-1,37,64,16,10 monster The LadySkeleton 1044,2,60000,8000 +027-1,71,41,15,11 monster The Skeleton 1043,1,175000,20000 +027-1,71,41,15,11 monster The LadySkeleton 1044,1,175000,20000 +027-1,37,41,16,11 monster The Skeleton 1043,4,180000,20000 +027-1,37,41,16,11 monster The LadySkeleton 1044,4,180000,20000 +027-1,105,40,16,10 monster The Skeleton 1043,2,35000,20000 +027-1,105,40,16,10 monster The LadySkeleton 1044,3,33000,25000 +027-1,70,64,15,10 monster The Skeleton 1043,1,60000,8000 +027-1,70,64,15,10 monster The LadySkeleton 1044,1,60000,8000 +027-1,104,64,15,10 monster The Skeleton 1043,2,60000,8000 +027-1,104,64,15,10 monster The LadySkeleton 1044,2,60000,8000 +027-1,70,40,50,10 monster The VampireBat 1066,15,100000,30000 diff --git a/npc/027-2/_mobs.txt b/npc/027-2/_mobs.txt index 3c5d7bfc..f35e2471 100644 --- a/npc/027-2/_mobs.txt +++ b/npc/027-2/_mobs.txt @@ -1,6 +1,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 027-2: Graveyard Indoor mobs -027-2,25,99,4,9 monster Desert Scorpion 1078,1,100000,30000 -027-2,35,88,14,19 monster Legion Swordswoman 1066,15,100000,30000 -027-2,25,99,4,9 monster Desert Snake 1077,1,100000,30000 -027-2,25,99,4,9 monster Desert Scorpion 1078,1,100000,30000 +027-2,25,99,4,9 monster The TipsySkeleton 1078,1,100000,30000 +027-2,35,88,14,19 monster The VampireBat 1066,15,100000,30000 +027-2,25,99,4,9 monster The DrunkenSkeleton 1077,1,100000,30000 +027-2,25,99,4,9 monster The TipsySkeleton 1078,1,100000,30000 diff --git a/npc/027-3/_mobs.txt b/npc/027-3/_mobs.txt index c5f3a324..74475c2a 100644 --- a/npc/027-3/_mobs.txt +++ b/npc/027-3/_mobs.txt @@ -1,10 +1,10 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 027-3: Crypt Basement mobs -027-3,34,63,14,34 monster Scorpion 1043,6,60000,8000 -027-3,97,43,29,15 monster Scorpion 1043,6,60000,8000 -027-3,34,63,14,34 monster Spider 1044,4,60000,8000 -027-3,113,78,14,13 monster Spider 1044,4,60000,8000 -027-3,113,78,13,13 monster Scorpion 1043,4,60000,8000 -027-3,81,87,14,11 monster Legion Swordswoman 1066,15,100000,30000 -027-3,74,45,53,16 monster Green Slime 1024,1,60000,20000 -027-3,98,84,30,7 monster Mouboo 1023,2,60000,20000 +027-3,34,63,14,34 monster The Skeleton 1043,6,60000,8000 +027-3,97,43,29,15 monster The Skeleton 1043,6,60000,8000 +027-3,34,63,14,34 monster The LadySkeleton 1044,4,60000,8000 +027-3,113,78,14,13 monster The LadySkeleton 1044,4,60000,8000 +027-3,113,78,13,13 monster The Skeleton 1043,4,60000,8000 +027-3,81,87,14,11 monster The VampireBat 1066,15,100000,30000 +027-3,74,45,53,16 monster The PoisonSkull 1024,1,60000,20000 +027-3,98,84,30,7 monster The FireSkull 1023,2,60000,20000 diff --git a/npc/027-4/_mobs.txt b/npc/027-4/_mobs.txt index 7d85bace..f87bff00 100644 --- a/npc/027-4/_mobs.txt +++ b/npc/027-4/_mobs.txt @@ -1,7 +1,7 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 027-4: Crypt Sub-Basement One mobs -027-4,39,84,19,11 monster Scorpion 1043,2,60000,8000 -027-4,27,57,7,11 monster Spider 1044,2,60000,8000 -027-4,108,77,19,7 monster Scorpion 1043,2,60000,8000 -027-4,61,37,19,15 monster Spider 1044,2,60000,8000 -027-4,101,36,19,15 monster Spider 1044,2,60000,8000 +027-4,39,84,19,11 monster The Skeleton 1043,2,60000,8000 +027-4,27,57,7,11 monster The LadySkeleton 1044,2,60000,8000 +027-4,108,77,19,7 monster The Skeleton 1043,2,60000,8000 +027-4,61,37,19,15 monster The LadySkeleton 1044,2,60000,8000 +027-4,101,36,19,15 monster The LadySkeleton 1044,2,60000,8000 diff --git a/npc/027-5/_mobs.txt b/npc/027-5/_mobs.txt index 905e8cc4..58e2a994 100644 --- a/npc/027-5/_mobs.txt +++ b/npc/027-5/_mobs.txt @@ -1,9 +1,9 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 027-5: Crypt Sub-Basement Two mobs -027-5,69,42,48,20 monster General Terogan 1124,6,60000,8000 -027-5,69,56,48,34 monster Legion Swordswoman 1066,30,100000,30000 -027-5,69,42,49,20 monster Scorpion 1043,8,60000,8000 -027-5,69,41,49,19 monster Spider 1044,8,60000,8000 -027-5,68,42,48,20 monster Red Slime 1074,6,60000,8000 -027-5,70,80,49,17 monster Scorpion 1043,8,60000,8000 -027-5,69,80,49,18 monster Spider 1044,8,60000,8000 +027-5,69,42,48,20 monster The Wight 1124,6,60000,8000 +027-5,69,56,48,34 monster The VampireBat 1066,30,100000,30000 +027-5,69,42,49,20 monster The Skeleton 1043,8,60000,8000 +027-5,69,41,49,19 monster The LadySkeleton 1044,8,60000,8000 +027-5,68,42,48,20 monster The RedBone 1074,6,60000,8000 +027-5,70,80,49,17 monster The Skeleton 1043,8,60000,8000 +027-5,69,80,49,18 monster The LadySkeleton 1044,8,60000,8000 diff --git a/npc/029-1/_mobs.txt b/npc/029-1/_mobs.txt index a1a75148..df3bf339 100644 --- a/npc/029-1/_mobs.txt +++ b/npc/029-1/_mobs.txt @@ -1,7 +1,8 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 029-1: Candor Island mobs -029-1,46,48,2,0 monster Alizarin Plant 1037,1,10000,120000 -029-1,73,93,7,6 monster Piou 1002,8,100000,30000 -029-1,90,35,7,5 monster Gold Vein 1046,16,100000,30000 -029-1,93,100,10,9 monster Gold Vein 1046,8,100000,30000 -029-1,43,43,15,11 monster Piousse 1003,2,100000,30000 +029-1,46,48,2,0 monster The CloverPatch 1037,1,10000,120000 +029-1,73,93,7,6 monster The Maggot 1002,8,100000,30000 +029-1,90,35,7,5 monster The TameScorpionMob 1046,16,100000,30000 +029-1,93,100,10,9 monster The TameScorpionMob 1046,8,100000,30000 +029-1,43,43,15,11 monster The ScorpionMob 1003,2,100000,30000 +029-1,76,42,26,12 monster The ManaBug 1131,3,0,0 diff --git a/npc/029-2/_import.txt b/npc/029-2/_import.txt index 1a254643..8e47f044 100644 --- a/npc/029-2/_import.txt +++ b/npc/029-2/_import.txt @@ -2,7 +2,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/029-2/_mobs.txt", "npc/029-2/_warps.txt", -"npc/029-2/alchemy.txt", "npc/029-2/bankroom.txt", "npc/029-2/barrels.txt", "npc/029-2/barrels_config.txt", diff --git a/npc/029-2/_mobs.txt b/npc/029-2/_mobs.txt index 46230226..750efa5c 100644 --- a/npc/029-2/_mobs.txt +++ b/npc/029-2/_mobs.txt @@ -1,3 +1,3 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 029-2: Candor Island Indoor mobs -029-2,33,57,12,3 monster Wicked Mushroom 1050,7,100000,30000 +029-2,33,57,12,3 monster The HouseMaggot 1050,7,100000,30000 diff --git a/npc/029-4/_mobs.txt b/npc/029-4/_mobs.txt index dd894eb5..e2ae9482 100644 --- a/npc/029-4/_mobs.txt +++ b/npc/029-4/_mobs.txt @@ -1,8 +1,8 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 029-4: 2014 Candor mobs -029-4,69,65,6,6 monster Pikpik 1013,4,20000,60000 -029-4,32,33,6,6 monster Gamboge Plant 1038,3,30000,60000 -029-4,46,48,2,0 monster Alizarin Plant 1037,1,10000,120000 -029-4,37,60,11,10 monster PumpkinMob 1019,5,10000,30000 -029-4,54,36,8,9 monster Manana Tree 1017,4,25000,30000 -029-4,59,51,6,4 monster Little Green Slime 1025,2,25000,30000 +029-4,69,65,6,6 monster The EvilMushroom 1013,4,20000,60000 +029-4,32,33,6,6 monster The Squirrel 1038,3,30000,60000 +029-4,46,48,2,0 monster The CloverPatch 1037,1,10000,120000 +029-4,37,60,11,10 monster The SpikyMushroom 1019,5,10000,30000 +029-4,54,36,8,9 monster The Bat 1017,4,25000,30000 +029-4,59,51,6,4 monster The LogHead 1025,2,25000,30000 diff --git a/npc/030-1/_mobs.txt b/npc/030-1/_mobs.txt index 58115429..32eb53b2 100644 --- a/npc/030-1/_mobs.txt +++ b/npc/030-1/_mobs.txt @@ -1,6 +1,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 030-1: Romantic Place mobs -030-1,0,0,0,0 monster Terranite 1113,7,100000,30000 -030-1,0,0,0,0 monster Reaper 1095,4,100000,30000 -030-1,71,67,0,0 monster Demonic Spirit 1112,2,100000,30000 -030-1,71,67,0,0 monster Penguin 1094,2,100000,30000 +030-1,0,0,0,0 monster The Pollett 1113,7,100000,30000 +030-1,0,0,0,0 monster The WhiteBell 1095,4,100000,30000 +030-1,71,67,0,0 monster The Santaboo 1112,2,100000,30000 +030-1,71,67,0,0 monster The Reinboo 1094,2,100000,30000 diff --git a/npc/031-1/_mobs.txt b/npc/031-1/_mobs.txt index bedd297f..1cd1aab7 100644 --- a/npc/031-1/_mobs.txt +++ b/npc/031-1/_mobs.txt @@ -1,6 +1,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 031-1: Nivalis Port mobs -031-1,0,0,0,0 monster Cuco 1020,10,100000,30000 -031-1,0,0,0,0 monster Terranite 1113,14,100000,30000 -031-1,76,26,5,2 monster Nutcracker 1093,7,100000,30000 -031-1,0,0,0,0 monster Reaper 1095,4,100000,30000 +031-1,0,0,0,0 monster The Fluffy 1020,10,100000,30000 +031-1,0,0,0,0 monster The Pollett 1113,14,100000,30000 +031-1,76,26,5,2 monster The WhiteSlime 1093,7,100000,30000 +031-1,0,0,0,0 monster The WhiteBell 1095,4,100000,30000 diff --git a/npc/031-3/_mobs.txt b/npc/031-3/_mobs.txt index ea875340..eaa7029c 100644 --- a/npc/031-3/_mobs.txt +++ b/npc/031-3/_mobs.txt @@ -1,91 +1,91 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 031-3: Ice Labyrinth mobs -031-3,230,279,12,13 monster Bad Bee 1058,5,100000,30000 -031-3,195,277,12,13 monster Bad Bee 1058,3,100000,30000 -031-3,213,282,33,21 monster Manana Tree 1017,5,100000,30000 -031-3,37,213,13,11 monster Moubi 1072,2,100000,30000 -031-3,35,212,13,11 monster Manana Tree 1017,11,100000,30000 -031-3,38,147,22,34 monster Blue Rose 1061,19,100000,30000 -031-3,97,261,21,11 monster Blue Rose 1061,5,100000,30000 -031-3,97,291,21,11 monster Blue Rose 1061,5,100000,30000 -031-3,36,148,32,21 monster Manana Tree 1017,11,100000,30000 -031-3,97,277,11,21 monster Manana Tree 1017,11,100000,30000 -031-3,148,282,11,21 monster Manana Tree 1017,11,100000,30000 -031-3,145,293,12,13 monster Bad Bee 1058,6,100000,30000 -031-3,98,214,19,22 monster Coal Veinbloc 1071,2,100000,30000 -031-3,99,214,12,13 monster Bad Bee 1058,3,100000,30000 -031-3,198,144,14,26 monster Bad Bee 1058,4,100000,30000 -031-3,97,291,21,11 monster Blue Rose 1061,5,100000,30000 -031-3,278,282,16,7 monster Bad Bee 1058,5,100000,30000 -031-3,98,214,19,22 monster Coal Veinbloc 1071,2,100000,30000 -031-3,285,218,4,37 monster Coal Veinbloc 1071,2,100000,30000 -031-3,283,217,20,32 monster Manana Tree 1017,15,100000,30000 -031-3,282,237,31,10 monster Blue Rose 1061,3,100000,30000 -031-3,282,196,31,8 monster Blue Rose 1061,3,100000,30000 -031-3,229,226,13,17 monster Moubi 1072,3,100000,30000 -031-3,230,227,6,21 monster Bad Bee 1058,5,100000,30000 -031-3,209,199,6,8 monster Moubi 1072,2,100000,30000 -031-3,193,216,6,8 monster Moubi 1072,1,100000,30000 -031-3,213,282,33,21 monster Manana Tree 1017,5,100000,30000 -031-3,213,282,33,21 monster Terranite 1113,5,100000,30000 -031-3,199,200,22,7 monster Manana Tree 1017,13,100000,30000 -031-3,209,199,6,8 monster Moubi 1072,2,100000,30000 -031-3,234,141,9,9 monster Moubi 1072,2,100000,30000 -031-3,282,196,31,8 monster Blue Rose 1061,3,100000,30000 -031-3,212,159,31,8 monster Blue Rose 1061,7,100000,30000 -031-3,212,159,31,8 monster Blue Rose 1061,7,100000,30000 -031-3,212,130,31,8 monster Blue Rose 1061,7,100000,30000 -031-3,284,143,20,24 monster Blue Rose 1061,7,100000,30000 -031-3,283,84,18,15 monster Manana Tree 1017,15,100000,30000 -031-3,283,84,18,15 monster Manana Tree 1017,15,100000,30000 -031-3,274,81,7,16 monster Moubi 1072,2,100000,30000 -031-3,40,53,22,34 monster Blue Rose 1061,10,100000,30000 -031-3,120,160,42,15 monster Moubi 1072,4,100000,30000 -031-3,121,131,41,12 monster Moubi 1072,8,100000,30000 -031-3,107,130,12,13 monster Bad Bee 1058,6,100000,30000 -031-3,145,160,12,12 monster Bad Bee 1058,6,100000,30000 -031-3,94,167,12,12 monster Bad Bee 1058,6,100000,30000 -031-3,282,37,15,14 monster Coal Veinbloc 1071,5,100000,30000 -031-3,213,36,32,16 monster Coal Veinbloc 1071,5,100000,30000 -031-3,228,83,15,14 monster Coal Veinbloc 1071,3,100000,30000 -031-3,283,138,7,6 monster Coal Veinbloc 1071,1,100000,30000 -031-3,198,83,15,14 monster Coal Veinbloc 1071,3,100000,30000 -031-3,214,75,12,13 monster Bad Bee 1058,3,100000,30000 -031-3,217,37,33,21 monster Manana Tree 1017,10,100000,30000 -031-3,39,52,32,28 monster Manana Tree 1017,5,100000,30000 -031-3,39,274,32,28 monster Manana Tree 1017,10,100000,30000 -031-3,119,51,19,32 monster Manana Tree 1017,10,100000,30000 -031-3,119,50,28,25 monster Coal Veinbloc 1071,5,100000,30000 -031-3,120,79,10,8 monster Moubi 1072,2,100000,30000 -031-3,37,284,3,2 monster Nutcracker 1093,7,100000,30000 -031-3,28,255,7,4 monster Jack-O 1091,2,100000,30000 -031-3,212,277,7,4 monster Nutcracker 1093,7,100000,30000 -031-3,289,295,3,2 monster Nutcracker 1093,7,100000,30000 -031-3,292,288,7,4 monster Jack-O 1091,2,100000,30000 -031-3,296,233,3,3 monster Nutcracker 1093,7,100000,30000 -031-3,271,222,3,3 monster Nutcracker 1093,7,100000,30000 -031-3,281,215,27,10 monster Jack-O 1091,5,100000,30000 -031-3,126,35,3,2 monster Nutcracker 1093,7,100000,30000 -031-3,143,124,17,11 monster Jack-O 1091,2,100000,30000 -031-3,48,65,7,4 monster Nutcracker 1093,7,100000,30000 -031-3,37,113,2,6 monster Jack-O 1091,1,100000,30000 -031-3,136,227,7,4 monster Nutcracker 1093,7,100000,30000 -031-3,152,218,6,8 monster Jack-O 1091,4,100000,30000 -031-3,135,206,4,3 monster Nutcracker 1093,7,100000,30000 -031-3,154,202,3,3 monster Nutcracker 1093,7,100000,30000 -031-3,136,216,3,2 monster Jack-O 1091,2,100000,30000 -031-3,112,276,3,2 monster Nutcracker 1093,7,100000,30000 -031-3,143,294,3,2 monster Nutcracker 1093,7,100000,30000 -031-3,149,268,3,2 monster Nutcracker 1093,7,100000,30000 -031-3,136,264,3,2 monster Nutcracker 1093,7,100000,30000 -031-3,157,283,3,2 monster Nutcracker 1093,7,100000,30000 -031-3,139,264,12,9 monster Jack-O 1091,4,100000,30000 -031-3,24,265,3,2 monster Nutcracker 1093,7,100000,30000 -031-3,52,280,3,2 monster Nutcracker 1093,7,100000,30000 -031-3,37,254,3,2 monster Nutcracker 1093,7,100000,30000 -031-3,24,290,3,2 monster Nutcracker 1093,7,100000,30000 -031-3,48,298,3,2 monster Nutcracker 1093,7,100000,30000 -031-3,53,260,3,2 monster Nutcracker 1093,7,100000,30000 -031-3,23,275,7,4 monster Jack-O 1091,2,100000,30000 -031-3,37,272,7,4 monster Jack-O 1091,2,100000,30000 -031-3,52,285,7,4 monster Jack-O 1091,2,100000,30000 +031-3,230,279,12,13 monster The IceGoblin 1058,5,100000,30000 +031-3,195,277,12,13 monster The IceGoblin 1058,3,100000,30000 +031-3,213,282,33,21 monster The Bat 1017,5,100000,30000 +031-3,37,213,13,11 monster The Yeti 1072,2,100000,30000 +031-3,35,212,13,11 monster The Bat 1017,11,100000,30000 +031-3,38,147,22,34 monster The Moggun 1061,19,100000,30000 +031-3,97,261,21,11 monster The Moggun 1061,5,100000,30000 +031-3,97,291,21,11 monster The Moggun 1061,5,100000,30000 +031-3,36,148,32,21 monster The Bat 1017,11,100000,30000 +031-3,97,277,11,21 monster The Bat 1017,11,100000,30000 +031-3,148,282,11,21 monster The Bat 1017,11,100000,30000 +031-3,145,293,12,13 monster The IceGoblin 1058,6,100000,30000 +031-3,98,214,19,22 monster The IceElement 1071,2,100000,30000 +031-3,99,214,12,13 monster The IceGoblin 1058,3,100000,30000 +031-3,198,144,14,26 monster The IceGoblin 1058,4,100000,30000 +031-3,97,291,21,11 monster The Moggun 1061,5,100000,30000 +031-3,278,282,16,7 monster The IceGoblin 1058,5,100000,30000 +031-3,98,214,19,22 monster The IceElement 1071,2,100000,30000 +031-3,285,218,4,37 monster The IceElement 1071,2,100000,30000 +031-3,283,217,20,32 monster The Bat 1017,15,100000,30000 +031-3,282,237,31,10 monster The Moggun 1061,3,100000,30000 +031-3,282,196,31,8 monster The Moggun 1061,3,100000,30000 +031-3,229,226,13,17 monster The Yeti 1072,3,100000,30000 +031-3,230,227,6,21 monster The IceGoblin 1058,5,100000,30000 +031-3,209,199,6,8 monster The Yeti 1072,2,100000,30000 +031-3,193,216,6,8 monster The Yeti 1072,1,100000,30000 +031-3,213,282,33,21 monster The Bat 1017,5,100000,30000 +031-3,213,282,33,21 monster The Pollett 1113,5,100000,30000 +031-3,199,200,22,7 monster The Bat 1017,13,100000,30000 +031-3,209,199,6,8 monster The Yeti 1072,2,100000,30000 +031-3,234,141,9,9 monster The Yeti 1072,2,100000,30000 +031-3,282,196,31,8 monster The Moggun 1061,3,100000,30000 +031-3,212,159,31,8 monster The Moggun 1061,7,100000,30000 +031-3,212,159,31,8 monster The Moggun 1061,7,100000,30000 +031-3,212,130,31,8 monster The Moggun 1061,7,100000,30000 +031-3,284,143,20,24 monster The Moggun 1061,7,100000,30000 +031-3,283,84,18,15 monster The Bat 1017,15,100000,30000 +031-3,283,84,18,15 monster The Bat 1017,15,100000,30000 +031-3,274,81,7,16 monster The Yeti 1072,2,100000,30000 +031-3,40,53,22,34 monster The Moggun 1061,10,100000,30000 +031-3,120,160,42,15 monster The Yeti 1072,4,100000,30000 +031-3,121,131,41,12 monster The Yeti 1072,8,100000,30000 +031-3,107,130,12,13 monster The IceGoblin 1058,6,100000,30000 +031-3,145,160,12,12 monster The IceGoblin 1058,6,100000,30000 +031-3,94,167,12,12 monster The IceGoblin 1058,6,100000,30000 +031-3,282,37,15,14 monster The IceElement 1071,5,100000,30000 +031-3,213,36,32,16 monster The IceElement 1071,5,100000,30000 +031-3,228,83,15,14 monster The IceElement 1071,3,100000,30000 +031-3,283,138,7,6 monster The IceElement 1071,1,100000,30000 +031-3,198,83,15,14 monster The IceElement 1071,3,100000,30000 +031-3,214,75,12,13 monster The IceGoblin 1058,3,100000,30000 +031-3,217,37,33,21 monster The Bat 1017,10,100000,30000 +031-3,39,52,32,28 monster The Bat 1017,5,100000,30000 +031-3,39,274,32,28 monster The Bat 1017,10,100000,30000 +031-3,119,51,19,32 monster The Bat 1017,10,100000,30000 +031-3,119,50,28,25 monster The IceElement 1071,5,100000,30000 +031-3,120,79,10,8 monster The Yeti 1072,2,100000,30000 +031-3,37,284,3,2 monster The WhiteSlime 1093,7,100000,30000 +031-3,28,255,7,4 monster The BlueSlime 1091,2,100000,30000 +031-3,212,277,7,4 monster The WhiteSlime 1093,7,100000,30000 +031-3,289,295,3,2 monster The WhiteSlime 1093,7,100000,30000 +031-3,292,288,7,4 monster The BlueSlime 1091,2,100000,30000 +031-3,296,233,3,3 monster The WhiteSlime 1093,7,100000,30000 +031-3,271,222,3,3 monster The WhiteSlime 1093,7,100000,30000 +031-3,281,215,27,10 monster The BlueSlime 1091,5,100000,30000 +031-3,126,35,3,2 monster The WhiteSlime 1093,7,100000,30000 +031-3,143,124,17,11 monster The BlueSlime 1091,2,100000,30000 +031-3,48,65,7,4 monster The WhiteSlime 1093,7,100000,30000 +031-3,37,113,2,6 monster The BlueSlime 1091,1,100000,30000 +031-3,136,227,7,4 monster The WhiteSlime 1093,7,100000,30000 +031-3,152,218,6,8 monster The BlueSlime 1091,4,100000,30000 +031-3,135,206,4,3 monster The WhiteSlime 1093,7,100000,30000 +031-3,154,202,3,3 monster The WhiteSlime 1093,7,100000,30000 +031-3,136,216,3,2 monster The BlueSlime 1091,2,100000,30000 +031-3,112,276,3,2 monster The WhiteSlime 1093,7,100000,30000 +031-3,143,294,3,2 monster The WhiteSlime 1093,7,100000,30000 +031-3,149,268,3,2 monster The WhiteSlime 1093,7,100000,30000 +031-3,136,264,3,2 monster The WhiteSlime 1093,7,100000,30000 +031-3,157,283,3,2 monster The WhiteSlime 1093,7,100000,30000 +031-3,139,264,12,9 monster The BlueSlime 1091,4,100000,30000 +031-3,24,265,3,2 monster The WhiteSlime 1093,7,100000,30000 +031-3,52,280,3,2 monster The WhiteSlime 1093,7,100000,30000 +031-3,37,254,3,2 monster The WhiteSlime 1093,7,100000,30000 +031-3,24,290,3,2 monster The WhiteSlime 1093,7,100000,30000 +031-3,48,298,3,2 monster The WhiteSlime 1093,7,100000,30000 +031-3,53,260,3,2 monster The WhiteSlime 1093,7,100000,30000 +031-3,23,275,7,4 monster The BlueSlime 1091,2,100000,30000 +031-3,37,272,7,4 monster The BlueSlime 1091,2,100000,30000 +031-3,52,285,7,4 monster The BlueSlime 1091,2,100000,30000 diff --git a/npc/032-3/_mobs.txt b/npc/032-3/_mobs.txt index 0d96000c..8d7cea35 100644 --- a/npc/032-3/_mobs.txt +++ b/npc/032-3/_mobs.txt @@ -1,12 +1,12 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 032-3: Outback Cave mobs -032-3,90,44,4,5 monster Scorpion 1043,3,30000,100000 -032-3,44,23,14,11 monster Maggot 1026,7,30000,100000 -032-3,125,46,17,37 monster Crocotree 1010,13,30000,100000 -032-3,80,44,4,5 monster Toppy Blub 1009,5,30000,100000 -032-3,85,33,4,5 monster Frostiana 1012,5,30000,100000 -032-3,83,18,18,4 monster Yellow Rose 1060,8,30000,100000 -032-3,78,76,12,10 monster Yellow Rose 1060,8,30000,100000 -032-3,25,76,12,10 monster Little Blub 1007,11,300000,1000000 -032-3,46,51,17,9 monster Beehive 1056,11,30000,100000 -032-3,0,0,0,0 monster Manana Tree 1017,25,30000,100000 +032-3,90,44,4,5 monster The Skeleton 1043,3,30000,100000 +032-3,44,23,14,11 monster The MountainSnake 1026,7,30000,100000 +032-3,125,46,17,37 monster The Snake 1010,13,30000,100000 +032-3,80,44,4,5 monster The BlackScorpionMob 1009,5,30000,100000 +032-3,85,33,4,5 monster The Spider 1012,5,30000,100000 +032-3,83,18,18,4 monster The Archant 1060,8,30000,100000 +032-3,78,76,12,10 monster The Archant 1060,8,30000,100000 +032-3,25,76,12,10 monster The YellowSlime 1007,11,300000,1000000 +032-3,46,51,17,9 monster The CaveMaggot 1056,11,30000,100000 +032-3,0,0,0,0 monster The Bat 1017,25,30000,100000 diff --git a/npc/033-1/_mobs.txt b/npc/033-1/_mobs.txt index 3fe7b330..ea14fd0c 100644 --- a/npc/033-1/_mobs.txt +++ b/npc/033-1/_mobs.txt @@ -1,6 +1,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 033-1: snow Path mobs -033-1,73,49,5,9 monster Wolvern 1117,2,100000,30000 -033-1,33,38,7,24 monster Penguin 1094,3,100000,30000 -033-1,56,87,25,21 monster Gamboge Plant 1038,15,100000,30000 -033-1,0,0,0,0 monster Reaper 1095,3,100000,30000 +033-1,73,49,5,9 monster The Wolvern 1090,2,100000,30000 +033-1,33,38,7,24 monster The Reinboo 1094,3,100000,30000 +033-1,56,87,25,21 monster The Squirrel 1038,15,100000,30000 +033-1,0,0,0,0 monster The WhiteBell 1095,3,100000,30000 diff --git a/npc/034-1/_mobs.txt b/npc/034-1/_mobs.txt index 4bf39ccd..4f2e6386 100644 --- a/npc/034-1/_mobs.txt +++ b/npc/034-1/_mobs.txt @@ -1,8 +1,8 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 034-1: Snow Forest mobs -034-1,0,0,0,0 monster Penguin 1094,4,100000,30000 -034-1,0,0,0,0 monster Cuco 1020,25,100000,30000 -034-1,0,0,0,0 monster Reaper 1095,5,100000,30000 -034-1,0,0,0,0 monster Gamboge Plant 1038,25,100000,30000 -034-1,0,0,0,0 monster Demonic Spirit 1112,4,100000,30000 -034-1,1,1,0,0 monster Bad Bee 1058,25,100000,30000 +034-1,0,0,0,0 monster The Reinboo 1094,4,100000,30000 +034-1,0,0,0,0 monster The Fluffy 1020,25,100000,30000 +034-1,0,0,0,0 monster The WhiteBell 1095,5,100000,30000 +034-1,0,0,0,0 monster The Squirrel 1038,25,100000,30000 +034-1,0,0,0,0 monster The Santaboo 1112,4,100000,30000 +034-1,1,1,0,0 monster The IceGoblin 1058,25,100000,30000 diff --git a/npc/041-1/_mobs.txt b/npc/041-1/_mobs.txt index d04fc566..0327fb97 100644 --- a/npc/041-1/_mobs.txt +++ b/npc/041-1/_mobs.txt @@ -1,13 +1,13 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 041-1: Beach mobs -041-1,81,55,9,4 monster Piousse 1003,3,100000,30000 -041-1,101,67,9,4 monster Piousse 1003,3,100000,30000 -041-1,100,84,9,4 monster Piousse 1003,3,100000,30000 -041-1,61,34,6,10 monster Piousse 1003,3,100000,30000 -041-1,55,30,5,24 monster Clover Patch 1033,3,100000,30000 -041-1,59,13,5,4 monster Piousse 1003,3,100000,30000 -041-1,60,7,1,1 monster Gold Vein 1046,1,100000,30000 -041-1,66,49,1,1 monster Gold Vein 1046,1,100000,30000 -041-1,95,75,10,4 monster Gold Vein 1046,1,100000,30000 -041-1,100,57,9,4 monster Tortuga 1004,3,100000,30000 -041-1,83,64,9,4 monster Tortuga 1004,3,100000,30000 +041-1,81,55,9,4 monster The ScorpionMob 1003,3,100000,30000 +041-1,101,67,9,4 monster The ScorpionMob 1003,3,100000,30000 +041-1,100,84,9,4 monster The ScorpionMob 1003,3,100000,30000 +041-1,61,34,6,10 monster The ScorpionMob 1003,3,100000,30000 +041-1,55,30,5,24 monster The SeaSlime 1033,3,100000,30000 +041-1,59,13,5,4 monster The ScorpionMob 1003,3,100000,30000 +041-1,60,7,1,1 monster The TameScorpionMob 1046,1,100000,30000 +041-1,66,49,1,1 monster The TameScorpionMob 1046,1,100000,30000 +041-1,95,75,10,4 monster The TameScorpionMob 1046,1,100000,30000 +041-1,100,57,9,4 monster The RedScorpionMob 1004,3,100000,30000 +041-1,83,64,9,4 monster The RedScorpionMob 1004,3,100000,30000 diff --git a/npc/042-1/_mobs.txt b/npc/042-1/_mobs.txt index c63537cd..7e7d788f 100644 --- a/npc/042-1/_mobs.txt +++ b/npc/042-1/_mobs.txt @@ -1,12 +1,12 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 042-1: Tulimshar Suburbs mobs -042-1,101,69,15,7 monster Piou 1002,5,100000,30000 -042-1,65,59,13,7 monster Piou 1002,7,100000,30000 -042-1,68,102,3,4 monster Toppy Blub 1009,5,100000,30000 -042-1,98,88,2,4 monster Piousse 1003,4,100000,30000 -042-1,63,63,18,15 monster Gold Vein 1046,6,100000,30000 -042-1,85,102,2,4 monster Piousse 1003,5,100000,30000 -042-1,98,99,2,2 monster Piousse 1003,3,100000,30000 -042-1,82,87,3,1 monster Piousse 1003,2,100000,30000 -042-1,70,88,2,4 monster Toppy Blub 1009,5,100000,30000 -042-1,80,35,5,2 monster Toppy Blub 1009,5,100000,30000 +042-1,101,69,15,7 monster The Maggot 1002,5,100000,30000 +042-1,65,59,13,7 monster The Maggot 1002,7,100000,30000 +042-1,68,102,3,4 monster The BlackScorpionMob 1009,5,100000,30000 +042-1,98,88,2,4 monster The ScorpionMob 1003,4,100000,30000 +042-1,63,63,18,15 monster The TameScorpionMob 1046,6,100000,30000 +042-1,85,102,2,4 monster The ScorpionMob 1003,5,100000,30000 +042-1,98,99,2,2 monster The ScorpionMob 1003,3,100000,30000 +042-1,82,87,3,1 monster The ScorpionMob 1003,2,100000,30000 +042-1,70,88,2,4 monster The BlackScorpionMob 1009,5,100000,30000 +042-1,80,35,5,2 monster The BlackScorpionMob 1009,5,100000,30000 diff --git a/npc/043-1/_mobs.txt b/npc/043-1/_mobs.txt index 03d38606..8e7739b8 100644 --- a/npc/043-1/_mobs.txt +++ b/npc/043-1/_mobs.txt @@ -1,5 +1,5 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 043-1: Beach mobs -043-1,0,0,0,0 monster Clover Patch 1033,17,40000,30000 -043-1,0,0,0,0 monster Little Blub 1007,15,60000,60000 -043-1,0,0,0,0 monster Ratto 1005,20,60000,60000 +043-1,0,0,0,0 monster The SeaSlime 1033,17,40000,30000 +043-1,0,0,0,0 monster The YellowSlime 1007,15,60000,60000 +043-1,0,0,0,0 monster The GreenSlime 1005,20,60000,60000 diff --git a/npc/043-3/_mobs.txt b/npc/043-3/_mobs.txt index 7201f970..286ece9f 100644 --- a/npc/043-3/_mobs.txt +++ b/npc/043-3/_mobs.txt @@ -1,11 +1,11 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 043-3: Sandy Dungeon Level 1 mobs -043-3,39,45,12,8 monster Beehive 1056,6,20000,20000 -043-3,44,60,12,8 monster Beehive 1056,6,20000,20000 -043-3,41,96,17,13 monster Beehive 1056,10,20000,20000 -043-3,52,91,3,3 monster AngryScorpion 1057,5,30000,30000 -043-3,102,116,13,9 monster AngryFireGoblin 1108,10,30000,30000 -043-3,33,99,3,3 monster AngryScorpion 1057,5,30000,30000 -043-3,116,78,12,9 monster AngryFireGoblin 1108,8,30000,30000 -043-3,113,47,15,11 monster Blub 1008,15,45000,35000 -043-3,94,44,20,9 monster Ratto 1005,5,30000,15000 +043-3,39,45,12,8 monster The CaveMaggot 1056,6,20000,20000 +043-3,44,60,12,8 monster The CaveMaggot 1056,6,20000,20000 +043-3,41,96,17,13 monster The CaveMaggot 1056,10,20000,20000 +043-3,52,91,3,3 monster The AngryScorpionMob 1057,5,30000,30000 +043-3,102,116,13,9 monster The AngryFireGoblin 1108,10,30000,30000 +043-3,33,99,3,3 monster The AngryScorpionMob 1057,5,30000,30000 +043-3,116,78,12,9 monster The AngryFireGoblin 1108,8,30000,30000 +043-3,113,47,15,11 monster The RedSlime 1008,15,45000,35000 +043-3,94,44,20,9 monster The GreenSlime 1005,5,30000,15000 diff --git a/npc/043-4/_mobs.txt b/npc/043-4/_mobs.txt index a8c181a0..61e47f68 100644 --- a/npc/043-4/_mobs.txt +++ b/npc/043-4/_mobs.txt @@ -1,24 +1,24 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 043-4: Troll Cave mobs -043-4,139,163,3,3 monster Red Rose 1062,2,240000,120000 -043-4,133,45,7,8 monster Wolvern 1117,4,100000,50000 -043-4,91,139,5,5 monster Wolvern 1117,2,100000,50000 -043-4,35,120,5,5 monster Wolvern 1117,2,100000,50000 -043-4,43,143,6,5 monster Water Wisp 1116,2,120000,60000 -043-4,102,153,4,4 monster Water Wisp 1116,2,120000,60000 -043-4,142,159,7,6 monster Water Wisp 1116,2,120000,60000 -043-4,150,33,8,7 monster Water Wisp 1116,1,120000,60000 -043-4,103,54,4,11 monster Wolvern 1117,3,100000,50000 -043-4,47,38,10,5 monster Topaz Vein 1054,7,100000,50000 -043-4,98,85,4,7 monster Crocotree 1010,5,100000,50000 -043-4,104,57,7,13 monster Topaz Vein 1054,7,100000,50000 -043-4,89,64,4,5 monster Toppy Blub 1009,5,100000,50000 -043-4,143,46,16,14 monster Topaz Vein 1054,7,100000,50000 -043-4,154,106,13,14 monster Toppy Blub 1009,8,100000,50000 -043-4,162,77,7,11 monster Crocotree 1010,6,100000,50000 -043-4,152,143,5,5 monster Toppy Blub 1009,6,100000,50000 -043-4,159,161,5,4 monster Crocotree 1010,6,100000,50000 -043-4,98,138,10,10 monster Topaz Vein 1054,5,100000,50000 -043-4,45,106,9,12 monster Topaz Vein 1054,5,100000,50000 -043-4,39,138,9,8 monster Toppy Blub 1009,5,100000,50000 -043-4,133,123,15,11 monster Topaz Vein 1054,3,100000,50000 +043-4,139,163,3,3 monster The Terranite 1062,2,240000,120000 +043-4,133,45,7,8 monster The UndeadTroll 1117,4,100000,50000 +043-4,91,139,5,5 monster The UndeadTroll 1117,2,100000,50000 +043-4,35,120,5,5 monster The UndeadTroll 1117,2,100000,50000 +043-4,43,143,6,5 monster The UndeadWitch 1116,2,120000,60000 +043-4,102,153,4,4 monster The UndeadWitch 1116,2,120000,60000 +043-4,142,159,7,6 monster The UndeadWitch 1116,2,120000,60000 +043-4,150,33,8,7 monster The UndeadWitch 1116,1,120000,60000 +043-4,103,54,4,11 monster The UndeadTroll 1117,3,100000,50000 +043-4,47,38,10,5 monster The Troll 1054,7,100000,50000 +043-4,98,85,4,7 monster The Snake 1010,5,100000,50000 +043-4,104,57,7,13 monster The Troll 1054,7,100000,50000 +043-4,89,64,4,5 monster The BlackScorpionMob 1009,5,100000,50000 +043-4,143,46,16,14 monster The Troll 1054,7,100000,50000 +043-4,154,106,13,14 monster The BlackScorpionMob 1009,8,100000,50000 +043-4,162,77,7,11 monster The Snake 1010,6,100000,50000 +043-4,152,143,5,5 monster The BlackScorpionMob 1009,6,100000,50000 +043-4,159,161,5,4 monster The Snake 1010,6,100000,50000 +043-4,98,138,10,10 monster The Troll 1054,5,100000,50000 +043-4,45,106,9,12 monster The Troll 1054,5,100000,50000 +043-4,39,138,9,8 monster The BlackScorpionMob 1009,5,100000,50000 +043-4,133,123,15,11 monster The Troll 1054,3,100000,50000 diff --git a/npc/045-1/_mobs.txt b/npc/045-1/_mobs.txt index d8c8047e..db54f053 100644 --- a/npc/045-1/_mobs.txt +++ b/npc/045-1/_mobs.txt @@ -1,17 +1,17 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 045-1: Deep Snow Forest mobs -045-1,102,122,11,11 monster Wolvern 1117,10,100000,30000 -045-1,98,77,11,11 monster Wolvern 1117,5,100000,30000 -045-1,147,63,11,11 monster Wolvern 1117,5,100000,30000 -045-1,60,97,11,11 monster Wolvern 1117,5,100000,30000 -045-1,106,44,11,11 monster Wolvern 1117,5,100000,30000 -045-1,133,93,11,11 monster Wolvern 1117,5,100000,30000 -045-1,38,76,9,7 monster Wolvern 1117,5,100000,30000 -045-1,60,59,9,7 monster Wolvern 1117,5,100000,30000 -045-1,0,0,0,0 monster Gamboge Plant 1038,40,100000,30000 -045-1,0,0,0,0 monster Penguin 1094,30,100000,30000 -045-1,0,0,0,0 monster Cuco 1020,40,100000,30000 -045-1,0,0,0,0 monster Reaper 1095,5,100000,30000 -045-1,47,145,12,12 monster Bad Bee 1058,4,100000,30000 -045-1,150,126,12,12 monster Bad Bee 1058,4,100000,30000 -045-1,104,149,39,5 monster Bad Bee 1058,4,100000,30000 +045-1,102,122,11,11 monster The Wolvern 1090,10,100000,30000 +045-1,98,77,11,11 monster The Wolvern 1090,5,100000,30000 +045-1,147,63,11,11 monster The Wolvern 1090,5,100000,30000 +045-1,60,97,11,11 monster The Wolvern 1090,5,100000,30000 +045-1,106,44,11,11 monster The Wolvern 1090,5,100000,30000 +045-1,133,93,11,11 monster The Wolvern 1090,5,100000,30000 +045-1,38,76,9,7 monster The Wolvern 1090,5,100000,30000 +045-1,60,59,9,7 monster The Wolvern 1090,5,100000,30000 +045-1,0,0,0,0 monster The Squirrel 1038,40,100000,30000 +045-1,0,0,0,0 monster The Reinboo 1094,30,100000,30000 +045-1,0,0,0,0 monster The Fluffy 1020,40,100000,30000 +045-1,0,0,0,0 monster The WhiteBell 1095,5,100000,30000 +045-1,47,145,12,12 monster The IceGoblin 1058,4,100000,30000 +045-1,150,126,12,12 monster The IceGoblin 1058,4,100000,30000 +045-1,104,149,39,5 monster The IceGoblin 1058,4,100000,30000 diff --git a/npc/046-1/_mobs.txt b/npc/046-1/_mobs.txt index a631840e..a3a8188c 100644 --- a/npc/046-1/_mobs.txt +++ b/npc/046-1/_mobs.txt @@ -1,13 +1,13 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 046-1: Rock Plateau mobs -046-1,0,7,0,0 monster Penguin 1094,40,100000,30000 -046-1,0,7,0,0 monster Cuco 1020,50,100000,30000 -046-1,0,7,0,0 monster Gamboge Plant 1038,50,100000,30000 -046-1,44,35,26,10 monster Blue Rose 1061,12,100000,30000 -046-1,0,7,0,0 monster Moubi 1072,2,100000,30000 -046-1,87,101,11,6 monster Wolvern 1117,5,100000,30000 -046-1,0,7,0,0 monster Reaper 1095,9,100000,30000 -046-1,72,59,7,6 monster Wolvern 1117,2,100000,30000 -046-1,36,112,5,4 monster Wolvern 1117,2,100000,30000 -046-1,115,40,22,16 monster Wolvern 1117,7,100000,30000 -046-1,145,67,5,4 monster Wolvern 1117,2,100000,30000 +046-1,0,7,0,0 monster The Reinboo 1094,40,100000,30000 +046-1,0,7,0,0 monster The Fluffy 1020,50,100000,30000 +046-1,0,7,0,0 monster The Squirrel 1038,50,100000,30000 +046-1,44,35,26,10 monster The Moggun 1061,12,100000,30000 +046-1,0,7,0,0 monster The Yeti 1072,2,100000,30000 +046-1,87,101,11,6 monster The Wolvern 1090,5,100000,30000 +046-1,0,7,0,0 monster The WhiteBell 1095,9,100000,30000 +046-1,72,59,7,6 monster The Wolvern 1090,2,100000,30000 +046-1,36,112,5,4 monster The Wolvern 1090,2,100000,30000 +046-1,115,40,22,16 monster The Wolvern 1090,7,100000,30000 +046-1,145,67,5,4 monster The Wolvern 1090,2,100000,30000 diff --git a/npc/046-3/_mobs.txt b/npc/046-3/_mobs.txt index 6aee898a..19a4ffdc 100644 --- a/npc/046-3/_mobs.txt +++ b/npc/046-3/_mobs.txt @@ -1,17 +1,17 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 046-3: Frosty Underground mobs -046-3,68,101,6,4 monster Moubi 1072,2,100000,30000 -046-3,0,0,0,0 monster Bad Bee 1058,20,100000,30000 -046-3,55,61,12,13 monster Blue Rose 1061,14,100000,30000 -046-3,119,104,2,2 monster Coal Veinbloc 1071,1,100000,30000 -046-3,132,71,4,3 monster Nutcracker 1093,4,100000,30000 -046-3,107,85,7,4 monster Jack-O 1091,2,100000,30000 -046-3,98,77,3,2 monster Nutcracker 1093,4,100000,30000 -046-3,70,82,3,2 monster Nutcracker 1093,6,100000,30000 -046-3,106,34,3,2 monster Nutcracker 1093,4,100000,30000 -046-3,33,37,3,2 monster Nutcracker 1093,4,100000,30000 -046-3,144,105,7,4 monster Jack-O 1091,2,100000,30000 -046-3,152,55,7,4 monster Jack-O 1091,2,100000,30000 -046-3,84,53,7,4 monster Jack-O 1091,2,100000,30000 -046-3,47,23,7,5 monster Coal Veinbloc 1071,2,100000,30000 -046-3,113,48,6,4 monster Moubi 1072,2,100000,30000 +046-3,68,101,6,4 monster The Yeti 1072,2,100000,30000 +046-3,0,0,0,0 monster The IceGoblin 1058,20,100000,30000 +046-3,55,61,12,13 monster The Moggun 1061,14,100000,30000 +046-3,119,104,2,2 monster The IceElement 1071,1,100000,30000 +046-3,132,71,4,3 monster The WhiteSlime 1093,4,100000,30000 +046-3,107,85,7,4 monster The BlueSlime 1091,2,100000,30000 +046-3,98,77,3,2 monster The WhiteSlime 1093,4,100000,30000 +046-3,70,82,3,2 monster The WhiteSlime 1093,6,100000,30000 +046-3,106,34,3,2 monster The WhiteSlime 1093,4,100000,30000 +046-3,33,37,3,2 monster The WhiteSlime 1093,4,100000,30000 +046-3,144,105,7,4 monster The BlueSlime 1091,2,100000,30000 +046-3,152,55,7,4 monster The BlueSlime 1091,2,100000,30000 +046-3,84,53,7,4 monster The BlueSlime 1091,2,100000,30000 +046-3,47,23,7,5 monster The IceElement 1071,2,100000,30000 +046-3,113,48,6,4 monster The Yeti 1072,2,100000,30000 diff --git a/npc/047-1/_mobs.txt b/npc/047-1/_mobs.txt index cbdfaa50..06fe3a94 100644 --- a/npc/047-1/_mobs.txt +++ b/npc/047-1/_mobs.txt @@ -1,24 +1,24 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 047-1: snow Hills mobs -047-1,37,175,1,1 monster Nutcracker 1093,7,100000,30000 -047-1,45,75,1,1 monster Jack-O 1091,1,100000,30000 -047-1,0,0,0,0 monster Penguin 1094,50,100000,30000 -047-1,0,0,0,0 monster Cuco 1020,60,100000,30000 -047-1,0,0,0,0 monster Gamboge Plant 1038,60,100000,30000 -047-1,81,125,51,28 monster Blue Rose 1061,25,100000,30000 -047-1,189,123,12,18 monster Wolvern 1117,6,100000,30000 -047-1,160,115,12,10 monster Wolvern 1117,6,100000,30000 -047-1,169,163,24,15 monster Wolvern 1117,6,100000,30000 -047-1,58,71,24,15 monster Wolvern 1117,6,100000,30000 -047-1,122,116,10,12 monster Wolvern 1117,6,100000,30000 -047-1,110,173,12,10 monster Wolvern 1117,6,100000,30000 -047-1,108,168,1,1 monster Nutcracker 1093,7,100000,30000 -047-1,108,158,1,1 monster Jack-O 1091,1,100000,30000 -047-1,0,0,0,0 monster Reaper 1095,10,100000,30000 -047-1,87,119,18,17 monster Moubi 1072,2,100000,30000 -047-1,138,22,1,1 monster Nutcracker 1093,4,100000,30000 -047-1,157,66,1,1 monster Nutcracker 1093,4,100000,30000 -047-1,174,46,2,2 monster Jack-O 1091,2,100000,30000 -047-1,143,43,2,2 monster Jack-O 1091,2,100000,30000 -047-1,122,61,1,1 monster Nutcracker 1093,4,100000,30000 -047-1,132,70,2,2 monster Jack-O 1091,2,100000,30000 +047-1,37,175,1,1 monster The WhiteSlime 1093,7,100000,30000 +047-1,45,75,1,1 monster The BlueSlime 1091,1,100000,30000 +047-1,0,0,0,0 monster The Reinboo 1094,50,100000,30000 +047-1,0,0,0,0 monster The Fluffy 1020,60,100000,30000 +047-1,0,0,0,0 monster The Squirrel 1038,60,100000,30000 +047-1,81,125,51,28 monster The Moggun 1061,25,100000,30000 +047-1,189,123,12,18 monster The Wolvern 1090,6,100000,30000 +047-1,160,115,12,10 monster The Wolvern 1090,6,100000,30000 +047-1,169,163,24,15 monster The Wolvern 1090,6,100000,30000 +047-1,58,71,24,15 monster The Wolvern 1090,6,100000,30000 +047-1,122,116,10,12 monster The Wolvern 1090,6,100000,30000 +047-1,110,173,12,10 monster The Wolvern 1090,6,100000,30000 +047-1,108,168,1,1 monster The WhiteSlime 1093,7,100000,30000 +047-1,108,158,1,1 monster The BlueSlime 1091,1,100000,30000 +047-1,0,0,0,0 monster The WhiteBell 1095,10,100000,30000 +047-1,87,119,18,17 monster The Yeti 1072,2,100000,30000 +047-1,138,22,1,1 monster The WhiteSlime 1093,4,100000,30000 +047-1,157,66,1,1 monster The WhiteSlime 1093,4,100000,30000 +047-1,174,46,2,2 monster The BlueSlime 1091,2,100000,30000 +047-1,143,43,2,2 monster The BlueSlime 1091,2,100000,30000 +047-1,122,61,1,1 monster The WhiteSlime 1093,4,100000,30000 +047-1,132,70,2,2 monster The BlueSlime 1091,2,100000,30000 diff --git a/npc/047-3/_mobs.txt b/npc/047-3/_mobs.txt index b5c44b2f..5b9ff168 100644 --- a/npc/047-3/_mobs.txt +++ b/npc/047-3/_mobs.txt @@ -1,23 +1,23 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 047-3: Snow Hills Cave mobs -047-3,56,135,4,4 monster Nutcracker 1093,7,100000,30000 -047-3,35,153,3,3 monster Nutcracker 1093,7,100000,30000 -047-3,39,104,4,4 monster Nutcracker 1093,7,100000,30000 -047-3,73,153,4,4 monster Nutcracker 1093,7,100000,30000 -047-3,64,104,1,1 monster Nutcracker 1093,7,100000,30000 -047-3,24,168,3,2 monster Jack-O 1091,2,100000,30000 -047-3,87,134,2,1 monster Jack-O 1091,2,100000,30000 -047-3,55,122,2,1 monster Jack-O 1091,2,100000,30000 -047-3,35,128,2,1 monster Jack-O 1091,2,100000,30000 -047-3,53,84,2,1 monster Jack-O 1091,2,100000,30000 -047-3,75,136,10,13 monster Blue Rose 1061,5,100000,30000 -047-3,39,31,21,10 monster Blue Rose 1061,12,100000,30000 -047-3,40,31,2,1 monster Mister Prickel 1085,2,100000,30000 -047-3,122,157,10,8 monster Moubi 1072,2,100000,30000 -047-3,102,166,7,6 monster Mister Prickel 1085,5,100000,30000 -047-3,109,81,7,6 monster Coal Veinbloc 1071,1,100000,30000 -047-3,123,90,2,1 monster Jack-O 1091,2,100000,30000 -047-3,109,97,4,4 monster Nutcracker 1093,7,100000,30000 -047-3,119,41,21,10 monster Blue Rose 1061,8,100000,30000 -047-3,51,94,19,7 monster Mister Prickel 1085,5,100000,30000 -047-3,121,172,4,4 monster Nutcracker 1093,7,100000,30000 +047-3,56,135,4,4 monster The WhiteSlime 1093,7,100000,30000 +047-3,35,153,3,3 monster The WhiteSlime 1093,7,100000,30000 +047-3,39,104,4,4 monster The WhiteSlime 1093,7,100000,30000 +047-3,73,153,4,4 monster The WhiteSlime 1093,7,100000,30000 +047-3,64,104,1,1 monster The WhiteSlime 1093,7,100000,30000 +047-3,24,168,3,2 monster The BlueSlime 1091,2,100000,30000 +047-3,87,134,2,1 monster The BlueSlime 1091,2,100000,30000 +047-3,55,122,2,1 monster The BlueSlime 1091,2,100000,30000 +047-3,35,128,2,1 monster The BlueSlime 1091,2,100000,30000 +047-3,53,84,2,1 monster The BlueSlime 1091,2,100000,30000 +047-3,75,136,10,13 monster The Moggun 1061,5,100000,30000 +047-3,39,31,21,10 monster The Moggun 1061,12,100000,30000 +047-3,40,31,2,1 monster The IceSkull 1085,2,100000,30000 +047-3,122,157,10,8 monster The Yeti 1072,2,100000,30000 +047-3,102,166,7,6 monster The IceSkull 1085,5,100000,30000 +047-3,109,81,7,6 monster The IceElement 1071,1,100000,30000 +047-3,123,90,2,1 monster The BlueSlime 1091,2,100000,30000 +047-3,109,97,4,4 monster The WhiteSlime 1093,7,100000,30000 +047-3,119,41,21,10 monster The Moggun 1061,8,100000,30000 +047-3,51,94,19,7 monster The IceSkull 1085,5,100000,30000 +047-3,121,172,4,4 monster The WhiteSlime 1093,7,100000,30000 diff --git a/npc/051-1/_mobs.txt b/npc/051-1/_mobs.txt index 36c1b0f0..b69bc17d 100644 --- a/npc/051-1/_mobs.txt +++ b/npc/051-1/_mobs.txt @@ -1,4 +1,4 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 051-1: Illia outskirts mobs -051-1,42,35,21,12 monster Little Green Slime 1025,30,100000,30000 -051-1,42,35,20,11 monster PumpkinMob 1019,10,100000,30000 +051-1,42,35,21,12 monster The LogHead 1025,30,100000,30000 +051-1,42,35,20,11 monster The SpikyMushroom 1019,10,100000,30000 diff --git a/npc/051-3/_mobs.txt b/npc/051-3/_mobs.txt index e471d49b..6b390b5a 100644 --- a/npc/051-3/_mobs.txt +++ b/npc/051-3/_mobs.txt @@ -1,18 +1,18 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 051-3: Illia Bandit Cave mobs -051-3,31,52,10,6 monster Blub 1008,8,100000,30000 -051-3,31,52,9,7 monster Beehive 1056,3,100000,30000 -051-3,56,102,1,1 monster Frostiana 1012,1,100000,250000 -051-3,61,102,1,1 monster Frostiana 1012,1,100000,250000 -051-3,65,102,1,1 monster Frostiana 1012,1,100000,250000 -051-3,71,109,2,1 monster Toppy Blub 1009,1,100000,250000 -051-3,59,56,6,18 monster Robin Bandit 1064,47,100000,10000 -051-3,59,44,6,6 monster Bandit Lord 1065,4,100000,20000 -051-3,60,69,9,4 monster Bandit Lord 1065,4,100000,20000 -051-3,63,94,0,0 monster Yellow Slime Progenitor 1099,1,100000,60000 -051-3,53,93,0,0 monster Yellow Slime Progenitor 1099,1,100000,60000 -051-3,48,71,0,0 monster Yellow Slime Progenitor 1099,1,100000,60000 -051-3,38,30,8,6 monster Robin Bandit 1064,12,100000,10000 -051-3,39,33,5,4 monster Bandit Lord 1065,2,100000,20000 -051-3,80,101,5,6 monster Mud Slime Progenitor 1098,7,100000,60000 -051-3,60,94,9,2 monster Mud Slime Progenitor 1098,7,100000,60000 +051-3,31,52,10,6 monster The RedSlime 1008,8,100000,30000 +051-3,31,52,9,7 monster The CaveMaggot 1056,3,100000,30000 +051-3,56,102,1,1 monster The Spider 1012,1,100000,250000 +051-3,61,102,1,1 monster The Spider 1012,1,100000,250000 +051-3,65,102,1,1 monster The Spider 1012,1,100000,250000 +051-3,71,109,2,1 monster The BlackScorpionMob 1009,1,100000,250000 +051-3,59,56,6,18 monster The Bandit 1064,47,100000,10000 +051-3,59,44,6,6 monster The BanditLord 1065,4,100000,20000 +051-3,60,69,9,4 monster The BanditLord 1065,4,100000,20000 +051-3,63,94,0,0 monster The SleepingBandit 1099,1,100000,60000 +051-3,53,93,0,0 monster The SleepingBandit 1099,1,100000,60000 +051-3,48,71,0,0 monster The SleepingBandit 1099,1,100000,60000 +051-3,38,30,8,6 monster The Bandit 1064,12,100000,10000 +051-3,39,33,5,4 monster The BanditLord 1065,2,100000,20000 +051-3,80,101,5,6 monster The CopperSlime 1098,7,100000,60000 +051-3,60,94,9,2 monster The CopperSlime 1098,7,100000,60000 diff --git a/npc/052-1/_mobs.txt b/npc/052-1/_mobs.txt index 57fd7bd7..9b64940c 100644 --- a/npc/052-1/_mobs.txt +++ b/npc/052-1/_mobs.txt @@ -1,3 +1,3 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 052-1: Illia archipelago mobs -052-1,55,29,21,19 monster Poison Skull 1100,18,100000,20000 +052-1,55,29,21,19 monster The AzulSlime 1100,18,100000,20000 diff --git a/npc/055-1/_mobs.txt b/npc/055-1/_mobs.txt index 7a165d71..1239192f 100644 --- a/npc/055-1/_mobs.txt +++ b/npc/055-1/_mobs.txt @@ -1,19 +1,19 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 055-1: Woodland Hills mobs -055-1,68,72,11,9 monster Amethyst Vein 1055,16,10000,85000 -055-1,87,29,27,7 monster Mana Bug 1035,15,10000,85000 -055-1,79,30,42,8 monster Gamboge Plant 1038,10,10000,45000 -055-1,0,0,0,0 monster Forest Maggot 1028,15,10000,85000 -055-1,91,49,3,2 monster Alizarin Plant 1037,1,10000,180000 -055-1,103,54,2,1 monster Alizarin Plant 1037,1,10000,180000 -055-1,64,75,13,8 monster Alizarin Plant 1037,1,10000,120000 -055-1,80,34,41,12 monster Squirrel 1041,3,10000,85000 -055-1,70,72,8,12 monster Butterfly 1032,2,10000,60000 -055-1,81,32,40,11 monster Butterfly 1032,2,10000,60000 -055-1,0,0,0,0 monster Bee 1029,7,10000,55000 -055-1,0,0,0,0 monster Pinkie 1030,3,10000,60000 -055-1,0,0,0,0 monster Log Head 1031,2,10000,60000 -055-1,116,60,2,1 monster CroconutMob 1014,1,10000,45000 -055-1,97,60,2,1 monster CroconutMob 1014,1,10000,45000 -055-1,64,73,11,8 monster CroconutMob 1014,1,10000,45000 -055-1,0,0,0,0 monster PumpkinMob 1019,7,10000,60000 +055-1,68,72,11,9 monster The Butterfly 1055,16,10000,85000 +055-1,87,29,27,7 monster The Silkworm 1035,15,10000,85000 +055-1,79,30,42,8 monster The Squirrel 1038,10,10000,45000 +055-1,0,0,0,0 monster The Mouboo 1028,15,10000,85000 +055-1,91,49,3,2 monster The CloverPatch 1037,1,10000,180000 +055-1,103,54,2,1 monster The CloverPatch 1037,1,10000,180000 +055-1,64,75,13,8 monster The CloverPatch 1037,1,10000,120000 +055-1,80,34,41,12 monster The Snail 1041,3,10000,85000 +055-1,70,72,8,12 monster The AlizarinPlant 1032,2,10000,60000 +055-1,81,32,40,11 monster The AlizarinPlant 1032,2,10000,60000 +055-1,0,0,0,0 monster The MauvePlant 1029,7,10000,55000 +055-1,0,0,0,0 monster The CobaltPlant 1030,3,10000,60000 +055-1,0,0,0,0 monster The GambogePlant 1031,2,10000,60000 +055-1,116,60,2,1 monster The PinkFlower 1014,1,10000,45000 +055-1,97,60,2,1 monster The PinkFlower 1014,1,10000,45000 +055-1,64,73,11,8 monster The PinkFlower 1014,1,10000,45000 +055-1,0,0,0,0 monster The SpikyMushroom 1019,7,10000,60000 diff --git a/npc/055-3/_mobs.txt b/npc/055-3/_mobs.txt index 7a94ebc6..e9d8e146 100644 --- a/npc/055-3/_mobs.txt +++ b/npc/055-3/_mobs.txt @@ -1,10 +1,10 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 055-3: Cave mobs -055-3,45,44,10,7 monster Blub 1008,10,10000,60000 -055-3,0,0,0,0 monster Manana Tree 1017,20,10000,45000 -055-3,53,75,14,20 monster Little Blub 1007,10,10000,60000 -055-3,0,0,0,0 monster Toppy Blub 1009,8,10000,35000 -055-3,0,0,0,0 monster Frostiana 1012,8,10000,35000 -055-3,0,0,0,0 monster Crocotree 1010,3,10000,20000 -055-3,46,44,7,9 monster Frostiana 1012,3,50000,100000 -055-3,52,78,18,11 monster Toppy Blub 1009,3,50000,100000 +055-3,45,44,10,7 monster The RedSlime 1008,10,10000,60000 +055-3,0,0,0,0 monster The Bat 1017,20,10000,45000 +055-3,53,75,14,20 monster The YellowSlime 1007,10,10000,60000 +055-3,0,0,0,0 monster The BlackScorpionMob 1009,8,10000,35000 +055-3,0,0,0,0 monster The Spider 1012,8,10000,35000 +055-3,0,0,0,0 monster The Snake 1010,3,10000,20000 +055-3,46,44,7,9 monster The Spider 1012,3,50000,100000 +055-3,52,78,18,11 monster The BlackScorpionMob 1009,3,50000,100000 diff --git a/npc/057-1/_mobs.txt b/npc/057-1/_mobs.txt index 13b747f6..f124d7e4 100644 --- a/npc/057-1/_mobs.txt +++ b/npc/057-1/_mobs.txt @@ -1,20 +1,20 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 057-1: Woodland mobs -057-1,0,0,0,0 monster Bee 1029,5,45000,45000 -057-1,0,0,0,0 monster Pinkie 1030,3,10000,65000 -057-1,0,0,0,0 monster Log Head 1031,5,10000,45000 -057-1,0,0,0,0 monster Butterfly 1032,7,10000,70000 -057-1,0,0,0,0 monster Forest Maggot 1028,14,10000,45000 -057-1,95,42,14,4 monster Amethyst Vein 1055,3,10000,40000 -057-1,25,48,5,23 monster Mana Bug 1035,7,10000,15000 -057-1,99,40,11,8 monster CroconutMob 1014,2,10000,45000 -057-1,100,30,9,5 monster Amethyst Vein 1055,2,10000,40000 -057-1,83,64,6,6 monster Amethyst Vein 1055,2,10000,40000 -057-1,59,34,4,5 monster Amethyst Vein 1055,2,10000,40000 -057-1,32,45,4,5 monster Amethyst Vein 1055,2,10000,40000 -057-1,144,35,6,6 monster Amethyst Vein 1055,2,10000,40000 -057-1,104,67,6,5 monster CroconutMob 1014,2,10000,45000 -057-1,135,53,6,5 monster CroconutMob 1014,2,10000,45000 -057-1,0,0,0,0 monster PumpkinMob 1019,10,10000,45000 -057-1,0,0,0,0 monster Alizarin Plant 1037,3,10000,180000 -057-1,27,46,7,26 monster Gamboge Plant 1038,6,10000,50000 +057-1,0,0,0,0 monster The MauvePlant 1029,5,45000,45000 +057-1,0,0,0,0 monster The CobaltPlant 1030,3,10000,65000 +057-1,0,0,0,0 monster The GambogePlant 1031,5,10000,45000 +057-1,0,0,0,0 monster The AlizarinPlant 1032,7,10000,70000 +057-1,0,0,0,0 monster The Mouboo 1028,14,10000,45000 +057-1,95,42,14,4 monster The Butterfly 1055,3,10000,40000 +057-1,25,48,5,23 monster The Silkworm 1035,7,10000,15000 +057-1,99,40,11,8 monster The PinkFlower 1014,2,10000,45000 +057-1,100,30,9,5 monster The Butterfly 1055,2,10000,40000 +057-1,83,64,6,6 monster The Butterfly 1055,2,10000,40000 +057-1,59,34,4,5 monster The Butterfly 1055,2,10000,40000 +057-1,32,45,4,5 monster The Butterfly 1055,2,10000,40000 +057-1,144,35,6,6 monster The Butterfly 1055,2,10000,40000 +057-1,104,67,6,5 monster The PinkFlower 1014,2,10000,45000 +057-1,135,53,6,5 monster The PinkFlower 1014,2,10000,45000 +057-1,0,0,0,0 monster The SpikyMushroom 1019,10,10000,45000 +057-1,0,0,0,0 monster The CloverPatch 1037,3,10000,180000 +057-1,27,46,7,26 monster The Squirrel 1038,6,10000,50000 -- cgit v1.2.3-70-g09d2 From 6b99a6ec6e09edca97675e9745a5e02abf496881 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sat, 10 Apr 2021 03:12:46 -0300 Subject: Flag -x --- npc/001-1/adrian.txt | 0 npc/001-1/ched.txt | 0 npc/001-1/children.txt | 0 npc/001-1/constable.txt | 0 npc/001-1/dock.txt | 0 npc/001-1/eomie.txt | 0 npc/001-1/ferry_master.txt | 0 npc/001-1/gate_guards.txt | 0 npc/001-1/gossip.txt | 0 npc/001-1/guards.txt | 0 npc/001-1/inac.txt | 0 npc/001-1/mapflags.txt | 0 npc/001-1/north_shops.txt | 0 npc/001-1/npcs.txt | 0 npc/001-1/sewer_east.txt | 0 npc/001-1/sewer_north.txt | 0 npc/001-1/stat_reset.txt | 0 npc/001-1/tinris.txt | 0 npc/001-1/tombstones.txt | 0 npc/001-1/weellos.txt | 0 npc/001-2/bank.txt | 0 npc/001-2/david.txt | 0 npc/001-2/fieri.txt | 0 npc/001-2/forge_shops.txt | 0 npc/001-2/government_building.txt | 0 npc/001-2/heathin.txt | 0 npc/001-2/jhedia.txt | 0 npc/001-2/manakins.txt | 0 npc/001-2/mapflags.txt | 0 npc/001-2/pauline.txt | 0 npc/001-2/sandra.txt | 0 npc/001-2/tathin.txt | 0 npc/001-2/tondar.txt | 0 npc/001-2/wizards.txt | 0 npc/001-2/yanis.txt | 0 npc/001-3/guards.txt | 0 npc/001-3/mapflags.txt | 0 npc/001-3/pvpflag.txt | 0 npc/002-1/anwar.txt | 0 npc/002-1/bard.txt | 0 npc/002-1/elanore.txt | 0 npc/002-1/gaurds.txt | 0 npc/002-1/itka.txt | 0 npc/002-1/lieutenant_dausen.txt | 0 npc/002-1/luca.txt | 0 npc/002-1/mapflags.txt | 0 npc/002-1/mine_debug.txt | 0 npc/002-1/nickos.txt | 0 npc/002-1/nomads.txt | 0 npc/002-1/npcs.txt | 0 npc/002-1/sarah.txt | 0 npc/002-1/soul-menhir.txt | 0 npc/002-1/stewen.txt | 0 npc/002-1/traveler.txt | 0 npc/002-2/bakery.txt | 0 npc/002-2/barber.txt | 0 npc/002-2/bleacher.txt | 0 npc/002-2/casino.txt | 0 npc/002-2/dedication.txt | 0 npc/002-2/hetchel.txt | 0 npc/002-2/imec.txt | 0 npc/002-2/inya.txt | 0 npc/002-2/kps.txt | 0 npc/002-2/kylian.txt | 0 npc/002-2/latoy.txt | 0 npc/002-2/mapflags.txt | 0 npc/002-2/omar.txt | 0 npc/002-2/phaet.txt | 0 npc/002-2/rebecca.txt | 0 npc/002-2/shops.txt | 0 npc/002-2/stranger.txt | 0 npc/002-2/troupe_leader.txt | 0 npc/002-3/mapflags.txt | 0 npc/002-3/merchant.txt | 0 npc/002-3/mining_camp_barrier.txt | 0 npc/002-3/nathan.txt | 0 npc/002-3/traveler.txt | 0 npc/002-4/mapflags.txt | 0 npc/002-4/mine_triggerone.txt | 0 npc/002-4/mine_triggerthree.txt | 0 npc/002-4/mine_triggertwo.txt | 0 npc/002-4/naem.txt | 0 npc/002-4/underground_palace_barrier.txt | 0 npc/002-5/chest.txt | 0 npc/002-5/mapflags.txt | 0 npc/002-5/sema.txt | 0 npc/004-3/mapflags.txt | 0 npc/004-4/mapflags.txt | 0 npc/004-5/chest.txt | 0 npc/004-5/mapflags.txt | 0 npc/005-3/mapflags.txt | 0 npc/006-1/mapflags.txt | 0 npc/006-1/mika.txt | 0 npc/006-1/miriam.txt | 0 npc/006-1/pachua.txt | 0 npc/006-1/spirit.txt | 0 npc/006-1/traveler.txt | 0 npc/006-1/tree.txt | 0 npc/006-2/mapflags.txt | 0 npc/006-2/npcs.txt | 0 npc/006-2/shops.txt | 0 npc/006-3/mapflags.txt | 0 npc/007-1/mapflags.txt | 0 npc/007-1/voltain.txt | 0 npc/007-2/witch.txt | 0 npc/008-1/andra.txt | 0 npc/008-1/annualeaster.txt | 0 npc/008-1/banu.txt | 0 npc/008-1/diryn.txt | 0 npc/008-1/dock.txt | 0 npc/008-1/george.txt | 0 npc/008-1/hinnak.txt | 0 npc/008-1/mapflags.txt | 0 npc/008-1/mikhail.txt | 0 npc/009-1/constable.txt | 0 npc/009-1/guide.txt | 0 npc/009-1/jack.txt | 0 npc/009-1/mapflags.txt | 0 npc/009-1/milly.txt | 0 npc/009-1/old_man.txt | 0 npc/009-1/old_woman.txt | 0 npc/009-1/sabine.txt | 0 npc/009-1/soul-menhir.txt | 0 npc/009-1/water_pump.txt | 0 npc/009-2/airlia.txt | 0 npc/009-2/alan.txt | 0 npc/009-2/bernard.txt | 0 npc/009-2/doctor.txt | 0 npc/009-2/drunks.txt | 0 npc/009-2/entertainer.txt | 0 npc/009-2/inspector.txt | 0 npc/009-2/kfahr.txt | 0 npc/009-2/lena.txt | 0 npc/009-2/mapflags.txt | 0 npc/009-2/misc.txt | 0 npc/009-2/nicholas.txt | 0 npc/009-2/nurse.txt | 0 npc/009-2/olana.txt | 0 npc/009-2/peter.txt | 0 npc/009-2/richard.txt | 0 npc/009-2/selim.txt | 0 npc/009-2/shops.txt | 0 npc/009-2/trader.txt | 0 npc/009-2/waitress.txt | 0 npc/009-2/wyara.txt | 0 npc/009-2/yalina.txt | 0 npc/009-3/mapflags.txt | 0 npc/009-3/sword.txt | 0 npc/009-3/warp.txt | 0 npc/009-4/barriers.txt | 0 npc/009-4/mapflags.txt | 0 npc/009-4/orum.txt | 0 npc/009-4/orum_warps.txt | 0 npc/009-4/torches.txt | 0 npc/009-4/waric.txt | 0 npc/009-5/mapflags.txt | 0 npc/009-6/brodomir.txt | 0 npc/009-6/mapflags.txt | 0 npc/009-7/battlemaster.txt | 0 npc/009-7/core.txt | 0 npc/009-7/debug.txt | 0 npc/009-7/eventHandler.txt | 0 npc/009-7/mapflags.txt | 0 npc/009-7/rouge.txt | 0 npc/009-7/shops.txt | 0 npc/009-7/trapdoor.txt | 0 npc/009-8/celestia.txt | 0 npc/009-8/mapflags.txt | 0 npc/010-1/mapflags.txt | 0 npc/010-2/band.txt | 0 npc/010-2/chef.txt | 0 npc/010-2/dimonds.txt | 0 npc/010-2/doug.txt | 0 npc/010-2/loratay.txt | 0 npc/010-2/mapflags.txt | 0 npc/010-2/workers.txt | 0 npc/011-1/alchemist.txt | 0 npc/011-1/auldsbel.txt | 0 npc/011-1/mapflags.txt | 0 npc/011-1/oscar.txt | 0 npc/011-1/shops.txt | 0 npc/011-3/hermit.txt | 0 npc/011-3/mapflags.txt | 0 npc/011-4/bl_barrier.txt | 0 npc/011-4/mapflags.txt | 0 npc/011-6/barrier.txt | 0 npc/011-6/bryant.txt | 0 npc/011-6/crastur.txt | 0 npc/011-6/mapflags.txt | 0 npc/012-1/amrak.txt | 0 npc/012-1/flowerpentagram2.txt | 0 npc/012-1/injured-mouboo.txt | 0 npc/012-1/mapflags.txt | 0 npc/012-1/shops.txt | 0 npc/012-3/mana-seed.txt | 0 npc/012-3/mapflags.txt | 0 npc/012-3/traveler.txt | 0 npc/012-3/warningsigns.txt | 0 npc/012-4/mapflags.txt | 0 npc/012-4/pvpflag.txt | 0 npc/013-1/flowerpentagram.txt | 0 npc/013-1/mapflags.txt | 0 npc/013-1/sagatha.txt | 0 npc/013-1/traveler.txt | 0 npc/013-2/apprentice.txt | 0 npc/013-2/mapflags.txt | 0 npc/013-2/notes.txt | 0 npc/013-2/wizard.txt | 0 npc/013-3/barrier.txt | 0 npc/013-3/mapflags.txt | 0 npc/013-3/mask_chest.txt | 0 npc/013-3/misc.txt | 0 npc/013-3/sword_chest.txt | 0 npc/014-1/mapflags.txt | 0 npc/014-1/wedding-officiator.txt | 0 npc/014-3/mapflags.txt | 0 npc/015-1/alice.txt | 0 npc/015-1/barrier.txt | 0 npc/015-1/mapflags.txt | 0 npc/015-1/sword.txt | 0 npc/015-3/barrier.txt | 0 npc/015-3/katze.txt | 0 npc/015-3/mapflags.txt | 0 npc/015-3/pot.txt | 0 npc/016-1/gwendolyn.txt | 0 npc/016-1/mapflags.txt | 0 npc/016-1/rossy.txt | 0 npc/017-1/flowerpentagram1.txt | 0 npc/017-1/flowerpentagram5.txt | 0 npc/017-1/mapflags.txt | 0 npc/017-2/mapflags.txt | 0 npc/017-3/mapflags.txt | 0 npc/017-4/guardingspirit.txt | 0 npc/017-4/mapflags.txt | 0 npc/017-4/orum.txt | 0 npc/017-4/waric.txt | 0 npc/017-9/mapflags.txt | 0 npc/017-9/npcs.txt | 0 npc/018-1/flowerpentagram3.txt | 0 npc/018-1/mapflags.txt | 0 npc/018-1/mike.txt | 0 npc/018-1/miners.txt | 0 npc/018-1/sword.txt | 0 npc/018-2/angus.txt | 0 npc/018-2/books.txt | 0 npc/018-2/caul.txt | 0 npc/018-2/mapflags.txt | 0 npc/018-2/miners.txt | 0 npc/018-2/receptionist.txt | 0 npc/018-3/bookcase.txt | 0 npc/018-3/evil-obelisk.txt | 0 npc/018-3/mapflags.txt | 0 npc/018-3/sword.txt | 0 npc/019-1/mapflags.txt | 0 npc/019-1/santa_helper.txt | 0 npc/019-1/snowman.txt | 0 npc/019-3/mapflags.txt | 0 npc/019-4/mapflags.txt | 0 npc/020-1/KrickKrackKrock.txt | 0 npc/020-1/mapflags.txt | 0 npc/020-1/rockscissor.txt | 0 npc/020-1/soul-menhir.txt | 0 npc/020-1/traveler.txt | 0 npc/020-1/well.txt | 0 npc/020-2/baktar.txt | 0 npc/020-2/banker.txt | 0 npc/020-2/furquest.txt | 0 npc/020-2/mapflags.txt | 0 npc/020-2/shops.txt | 0 npc/020-3/mapflags.txt | 0 npc/021-3/mapflags.txt | 0 npc/025-1/barrier.txt | 0 npc/025-1/mapflags.txt | 0 npc/025-1/reset.txt | 0 npc/025-3/barriers.txt | 0 npc/025-3/mapflags.txt | 0 npc/025-4/battlecaves.txt | 0 npc/025-4/clauquer.txt | 0 npc/025-4/julia.txt | 0 npc/025-4/mapflags.txt | 0 npc/026-1/evil_guard.txt | 0 npc/026-1/headless_man.txt | 0 npc/026-1/husband.txt | 0 npc/026-1/mapflags.txt | 0 npc/026-1/sign.txt | 0 npc/026-1/soul-menhir.txt | 0 npc/026-1/traveler.txt | 0 npc/026-2/barman.txt | 0 npc/026-2/cerhan.txt | 0 npc/026-2/crying_child.txt | 0 npc/026-2/diary.txt | 0 npc/026-2/door.txt | 0 npc/026-2/eurni.txt | 0 npc/026-2/golbenez.txt | 0 npc/026-2/gy_inn_shops.txt | 0 npc/026-2/innkeeper.txt | 0 npc/026-2/lover.txt | 0 npc/026-2/mapflags.txt | 0 npc/026-2/testnpcs.txt | 0 npc/026-2/werewolf.txt | 0 npc/027-1/crypt.txt | 0 npc/027-1/graves.txt | 0 npc/027-1/mapflags.txt | 0 npc/027-2/alacrius.txt | 0 npc/027-2/caretaker.txt | 0 npc/027-2/mapflags.txt | 0 npc/027-2/thurston.txt | 0 npc/027-3/casket_traps.txt | 0 npc/027-3/general_krukan_door.txt | 0 npc/027-3/mapflags.txt | 0 npc/027-3/monsters.txt | 0 npc/027-4/casket_traps.txt | 0 npc/027-4/general_razha_door.txt | 0 npc/027-4/mapflags.txt | 0 npc/027-4/monsters.txt | 0 npc/027-5/casket_traps.txt | 0 npc/027-5/general_terogan_door.txt | 0 npc/027-5/mapflags.txt | 0 npc/027-6/casket_traps.txt | 0 npc/027-6/general_krukan.txt | 0 npc/027-6/general_krukan_exitdoor.txt | 0 npc/027-6/mapflags.txt | 0 npc/027-7/general_razha.txt | 0 npc/027-7/general_razha_exitdoor.txt | 0 npc/027-7/mapflags.txt | 0 npc/027-8/general_terogan.txt | 0 npc/027-8/general_terogan_exitdoor.txt | 0 npc/027-8/mapflags.txt | 0 npc/028-1/mapflags.txt | 0 npc/028-1/portal.txt | 0 npc/028-3/mapflags.txt | 0 npc/029-1/aahna.txt | 0 npc/029-1/barrier.txt | 0 npc/029-1/dock.txt | 0 npc/029-1/ferry_master.txt | 0 npc/029-1/hasan.txt | 0 npc/029-1/hideandseek.txt | 0 npc/029-1/kaan.txt | 0 npc/029-1/liana.txt | 0 npc/029-1/mapflags.txt | 0 npc/029-1/monster_guide.txt | 0 npc/029-1/rewards_master.txt | 0 npc/029-1/soul-menhir.txt | 0 npc/029-1/traveler.txt | 0 npc/029-1/tutorial.txt | 0 npc/029-1/valon.txt | 0 npc/029-1/vincent.txt | 0 npc/029-1/zegas.txt | 0 npc/029-2/bankroom.txt | 0 npc/029-2/barrels.txt | 0 npc/029-2/barrels_config.txt | 0 npc/029-2/cynric.txt | 0 npc/029-2/mapflags.txt | 0 npc/029-2/morgan.txt | 0 npc/029-2/nyle.txt | 0 npc/029-2/sorfina.txt | 0 npc/029-2/stat_reset.txt | 0 npc/029-2/tanisha.txt | 0 npc/029-2/two_arms.txt | 0 npc/029-3/barrier.txt | 0 npc/029-3/mapflags.txt | 0 npc/029-3/parua.txt | 0 npc/030-2/avalia.txt | 0 npc/030-2/basic_npcs.txt | 0 npc/030-2/bedding_helper.txt | 0 npc/030-2/chief_helper.txt | 0 npc/030-2/eljas.txt | 0 npc/030-2/empty_boxes_helper.txt | 0 npc/030-2/glitter_helper.txt | 0 npc/030-2/guards.txt | 0 npc/030-2/mapflags.txt | 0 npc/030-2/present_helper.txt | 0 npc/030-2/roasted_acorns_helper.txt | 0 npc/030-2/shipping_helper.txt | 0 npc/030-2/storage_helper.txt | 0 npc/030-2/wrapping_paper_helper.txt | 0 npc/030-3/mapflags.txt | 0 npc/030-3/orum_homunculus.txt | 0 npc/030-4/mana_battery.txt | 0 npc/030-4/mapflags.txt | 0 npc/031-1/angelaOutside.txt | 0 npc/031-1/dock.txt | 0 npc/031-1/frozenbeard.txt | 0 npc/031-1/house.txt | 0 npc/031-1/mapflags.txt | 0 npc/031-2/angelaHouse.txt | 0 npc/031-2/cindyHouse.txt | 0 npc/031-2/mapflags.txt | 0 npc/031-3/labyrinth.txt | 0 npc/031-3/mapflags.txt | 0 npc/031-4/barrier.txt | 0 npc/031-4/cindyCave.txt | 0 npc/031-4/mapflags.txt | 0 npc/032-3/mapflags.txt | 0 npc/033-1/backDoor.txt | 0 npc/033-1/barbarianinit.txt | 0 npc/033-1/birrod.txt | 0 npc/033-1/kimarr.txt | 0 npc/033-1/mapflags.txt | 0 npc/033-1/traveler.txt | 0 npc/033-1/yerrnk.txt | 0 npc/034-1/ambushs.txt | 0 npc/034-1/mapflags.txt | 0 npc/034-1/yetiSpawn.txt | 0 npc/034-2/mapflags.txt | 0 npc/035-2/casino.txt | 0 npc/035-2/emblems.txt | 0 npc/035-2/koga.txt | 0 npc/035-2/mapflags.txt | 0 npc/035-2/shops.txt | 0 npc/036-2/casino.txt | 0 npc/036-2/emblems.txt | 0 npc/036-2/koga-candor.txt | 0 npc/036-2/mapflags.txt | 0 npc/036-2/shops.txt | 0 npc/043-3/mapflags.txt | 0 npc/043-4/mapflags.txt | 0 npc/045-1/mapflags.txt | 0 npc/046-1/mapflags.txt | 0 npc/046-3/mapflags.txt | 0 npc/047-1/mapflags.txt | 0 npc/047-3/mapflags.txt | 0 npc/048-2/bluesageConfig.txt | 0 npc/048-2/helperAccused.txt | 0 npc/048-2/helperBookpages1.txt | 0 npc/048-2/helperBookpages2.txt | 0 npc/048-2/helperBookpages3.txt | 0 npc/048-2/helperChief.txt | 0 npc/048-2/helperCleaning1.txt | 0 npc/048-2/helperCleaning2.txt | 0 npc/048-2/helperCleaning3.txt | 0 npc/048-2/helperCleaning4.txt | 0 npc/048-2/helperCleaning5.txt | 0 npc/048-2/helperJanitor.txt | 0 npc/048-2/helperMInk.txt | 0 npc/048-2/helperMReed.txt | 0 npc/048-2/helperMSilk.txt | 0 npc/048-2/helperMYetiClaw.txt | 0 npc/048-2/helperResting1.txt | 0 npc/048-2/helperResting2.txt | 0 npc/048-2/mapflags.txt | 0 npc/048-2/sageNikolai.txt | 0 npc/048-2/slimes.txt | 0 npc/048-2/traveler.txt | 0 npc/048-2/visitors.txt | 0 npc/051-1/desert.txt | 0 npc/051-1/desertmonsters.txt | 0 npc/051-1/forest.txt | 0 npc/051-1/forestmonsters.txt | 0 npc/051-1/janitor.txt | 0 npc/051-1/mapflags.txt | 0 npc/051-3/ambush.txt | 0 npc/051-3/jailslimes.txt | 0 npc/051-3/janitor.txt | 0 npc/051-3/locks.txt | 0 npc/051-3/mapflags.txt | 0 npc/051-3/reinforcements.txt | 0 npc/052-1/channelling.txt | 0 npc/052-1/janitor.txt | 0 npc/052-1/mapflags.txt | 0 npc/052-2/chest.txt | 0 npc/052-2/janitor.txt | 0 npc/052-2/lobby.txt | 0 npc/052-2/mapflags.txt | 0 npc/052-2/partyroom.txt | 0 npc/052-2/storage.txt | 0 npc/055-1/flowerpentagram4.txt | 0 npc/055-1/mapflags.txt | 0 npc/055-1/pumpkins.txt | 0 npc/055-1/traveler.txt | 0 npc/055-3/mapflags.txt | 0 npc/056-2/barrier.txt | 0 npc/056-2/mapflags.txt | 0 npc/056-2/mirak.txt | 0 npc/056-2/notes.txt | 0 npc/057-1/mapflags.txt | 0 npc/_import.txt | 0 npc/annuals/check_time.txt | 0 npc/annuals/fathertime.txt | 0 npc/annuals/halloween/config.txt | 0 npc/annuals/halloween/debug.txt | 0 npc/annuals/halloween/munro.txt | 0 npc/annuals/halloween/trick_or_treat.txt | 0 npc/annuals/tree_beard.txt | 0 npc/annuals/xmas/barriers.txt | 0 npc/annuals/xmas/config.txt | 0 npc/annuals/xmas/core.txt | 0 npc/annuals/xmas/debug.txt | 0 npc/annuals/xmas/helpers.txt | 0 npc/annuals/xmas/list.txt | 0 npc/annuals/xmas/mobmanager.txt | 0 npc/annuals/xmas/reagents.txt | 0 npc/annuals/xmas/states.txt | 0 npc/botcheck/mapflags.txt | 0 npc/commands/debug.txt | 0 npc/commands/numa.txt | 0 npc/functions/DyeConfig.txt | 0 npc/functions/announcements.txt | 0 npc/functions/banker.txt | 0 npc/functions/barber.txt | 0 npc/functions/clear_vars.txt | 0 npc/functions/dailyquest.txt | 0 npc/functions/default_npc_checks.txt | 0 npc/functions/dynamic_menu.txt | 0 npc/functions/evil_obelisk.txt | 0 npc/functions/ferry.txt | 0 npc/functions/game_rules.txt | 0 npc/functions/global_event_handler.txt | 0 npc/functions/gm_island.txt | 0 npc/functions/headstyles.txt | 0 npc/functions/inn.txt | 0 npc/functions/jesusalvatr.txt | 0 npc/functions/lockpicking.txt | 0 npc/functions/magic.txt | 0 npc/functions/mob_points.txt | 0 npc/functions/motd.txt | 0 npc/functions/motdconfig.txt | 0 npc/functions/process_equip.txt | 0 npc/functions/quiz.txt | 0 npc/functions/slot_machine.txt | 0 npc/functions/soul_menhir.txt | 0 npc/functions/stat_reset.txt | 0 npc/functions/time.txt | 0 npc/functions/travelers.txt | 0 npc/functions/undead_debug.txt | 0 npc/functions/water_bottle.txt | 0 npc/items/check_wand.txt | 0 npc/items/launcher_ammo.txt | 0 npc/items/mirror.txt | 0 npc/items/pickled_beets.txt | 0 npc/items/purification_potion.txt | 0 npc/items/require_stat.txt | 0 npc/items/restricted_item.txt | 0 npc/items/rubber_bat.txt | 0 npc/items/scissors.txt | 0 npc/items/shock_sweet.txt | 0 npc/items/unequipcb.txt | 0 npc/items/unreleased_item.txt | 0 npc/items/warpTowels.txt | 0 npc/pre-re/scripts_main.conf | 0 540 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 npc/001-1/adrian.txt mode change 100755 => 100644 npc/001-1/ched.txt mode change 100755 => 100644 npc/001-1/children.txt mode change 100755 => 100644 npc/001-1/constable.txt mode change 100755 => 100644 npc/001-1/dock.txt mode change 100755 => 100644 npc/001-1/eomie.txt mode change 100755 => 100644 npc/001-1/ferry_master.txt mode change 100755 => 100644 npc/001-1/gate_guards.txt mode change 100755 => 100644 npc/001-1/gossip.txt mode change 100755 => 100644 npc/001-1/guards.txt mode change 100755 => 100644 npc/001-1/inac.txt mode change 100755 => 100644 npc/001-1/mapflags.txt mode change 100755 => 100644 npc/001-1/north_shops.txt mode change 100755 => 100644 npc/001-1/npcs.txt mode change 100755 => 100644 npc/001-1/sewer_east.txt mode change 100755 => 100644 npc/001-1/sewer_north.txt mode change 100755 => 100644 npc/001-1/stat_reset.txt mode change 100755 => 100644 npc/001-1/tinris.txt mode change 100755 => 100644 npc/001-1/tombstones.txt mode change 100755 => 100644 npc/001-1/weellos.txt mode change 100755 => 100644 npc/001-2/bank.txt mode change 100755 => 100644 npc/001-2/david.txt mode change 100755 => 100644 npc/001-2/fieri.txt mode change 100755 => 100644 npc/001-2/forge_shops.txt mode change 100755 => 100644 npc/001-2/government_building.txt mode change 100755 => 100644 npc/001-2/heathin.txt mode change 100755 => 100644 npc/001-2/jhedia.txt mode change 100755 => 100644 npc/001-2/manakins.txt mode change 100755 => 100644 npc/001-2/mapflags.txt mode change 100755 => 100644 npc/001-2/pauline.txt mode change 100755 => 100644 npc/001-2/sandra.txt mode change 100755 => 100644 npc/001-2/tathin.txt mode change 100755 => 100644 npc/001-2/tondar.txt mode change 100755 => 100644 npc/001-2/wizards.txt mode change 100755 => 100644 npc/001-2/yanis.txt mode change 100755 => 100644 npc/001-3/guards.txt mode change 100755 => 100644 npc/001-3/mapflags.txt mode change 100755 => 100644 npc/001-3/pvpflag.txt mode change 100755 => 100644 npc/002-1/anwar.txt mode change 100755 => 100644 npc/002-1/bard.txt mode change 100755 => 100644 npc/002-1/elanore.txt mode change 100755 => 100644 npc/002-1/gaurds.txt mode change 100755 => 100644 npc/002-1/itka.txt mode change 100755 => 100644 npc/002-1/lieutenant_dausen.txt mode change 100755 => 100644 npc/002-1/luca.txt mode change 100755 => 100644 npc/002-1/mapflags.txt mode change 100755 => 100644 npc/002-1/mine_debug.txt mode change 100755 => 100644 npc/002-1/nickos.txt mode change 100755 => 100644 npc/002-1/nomads.txt mode change 100755 => 100644 npc/002-1/npcs.txt mode change 100755 => 100644 npc/002-1/sarah.txt mode change 100755 => 100644 npc/002-1/soul-menhir.txt mode change 100755 => 100644 npc/002-1/stewen.txt mode change 100755 => 100644 npc/002-1/traveler.txt mode change 100755 => 100644 npc/002-2/bakery.txt mode change 100755 => 100644 npc/002-2/barber.txt mode change 100755 => 100644 npc/002-2/bleacher.txt mode change 100755 => 100644 npc/002-2/casino.txt mode change 100755 => 100644 npc/002-2/dedication.txt mode change 100755 => 100644 npc/002-2/hetchel.txt mode change 100755 => 100644 npc/002-2/imec.txt mode change 100755 => 100644 npc/002-2/inya.txt mode change 100755 => 100644 npc/002-2/kps.txt mode change 100755 => 100644 npc/002-2/kylian.txt mode change 100755 => 100644 npc/002-2/latoy.txt mode change 100755 => 100644 npc/002-2/mapflags.txt mode change 100755 => 100644 npc/002-2/omar.txt mode change 100755 => 100644 npc/002-2/phaet.txt mode change 100755 => 100644 npc/002-2/rebecca.txt mode change 100755 => 100644 npc/002-2/shops.txt mode change 100755 => 100644 npc/002-2/stranger.txt mode change 100755 => 100644 npc/002-2/troupe_leader.txt mode change 100755 => 100644 npc/002-3/mapflags.txt mode change 100755 => 100644 npc/002-3/merchant.txt mode change 100755 => 100644 npc/002-3/mining_camp_barrier.txt mode change 100755 => 100644 npc/002-3/nathan.txt mode change 100755 => 100644 npc/002-3/traveler.txt mode change 100755 => 100644 npc/002-4/mapflags.txt mode change 100755 => 100644 npc/002-4/mine_triggerone.txt mode change 100755 => 100644 npc/002-4/mine_triggerthree.txt mode change 100755 => 100644 npc/002-4/mine_triggertwo.txt mode change 100755 => 100644 npc/002-4/naem.txt mode change 100755 => 100644 npc/002-4/underground_palace_barrier.txt mode change 100755 => 100644 npc/002-5/chest.txt mode change 100755 => 100644 npc/002-5/mapflags.txt mode change 100755 => 100644 npc/002-5/sema.txt mode change 100755 => 100644 npc/004-3/mapflags.txt mode change 100755 => 100644 npc/004-4/mapflags.txt mode change 100755 => 100644 npc/004-5/chest.txt mode change 100755 => 100644 npc/004-5/mapflags.txt mode change 100755 => 100644 npc/005-3/mapflags.txt mode change 100755 => 100644 npc/006-1/mapflags.txt mode change 100755 => 100644 npc/006-1/mika.txt mode change 100755 => 100644 npc/006-1/miriam.txt mode change 100755 => 100644 npc/006-1/pachua.txt mode change 100755 => 100644 npc/006-1/spirit.txt mode change 100755 => 100644 npc/006-1/traveler.txt mode change 100755 => 100644 npc/006-1/tree.txt mode change 100755 => 100644 npc/006-2/mapflags.txt mode change 100755 => 100644 npc/006-2/npcs.txt mode change 100755 => 100644 npc/006-2/shops.txt mode change 100755 => 100644 npc/006-3/mapflags.txt mode change 100755 => 100644 npc/007-1/mapflags.txt mode change 100755 => 100644 npc/007-1/voltain.txt mode change 100755 => 100644 npc/007-2/witch.txt mode change 100755 => 100644 npc/008-1/andra.txt mode change 100755 => 100644 npc/008-1/annualeaster.txt mode change 100755 => 100644 npc/008-1/banu.txt mode change 100755 => 100644 npc/008-1/diryn.txt mode change 100755 => 100644 npc/008-1/dock.txt mode change 100755 => 100644 npc/008-1/george.txt mode change 100755 => 100644 npc/008-1/hinnak.txt mode change 100755 => 100644 npc/008-1/mapflags.txt mode change 100755 => 100644 npc/008-1/mikhail.txt mode change 100755 => 100644 npc/009-1/constable.txt mode change 100755 => 100644 npc/009-1/guide.txt mode change 100755 => 100644 npc/009-1/jack.txt mode change 100755 => 100644 npc/009-1/mapflags.txt mode change 100755 => 100644 npc/009-1/milly.txt mode change 100755 => 100644 npc/009-1/old_man.txt mode change 100755 => 100644 npc/009-1/old_woman.txt mode change 100755 => 100644 npc/009-1/sabine.txt mode change 100755 => 100644 npc/009-1/soul-menhir.txt mode change 100755 => 100644 npc/009-1/water_pump.txt mode change 100755 => 100644 npc/009-2/airlia.txt mode change 100755 => 100644 npc/009-2/alan.txt mode change 100755 => 100644 npc/009-2/bernard.txt mode change 100755 => 100644 npc/009-2/doctor.txt mode change 100755 => 100644 npc/009-2/drunks.txt mode change 100755 => 100644 npc/009-2/entertainer.txt mode change 100755 => 100644 npc/009-2/inspector.txt mode change 100755 => 100644 npc/009-2/kfahr.txt mode change 100755 => 100644 npc/009-2/lena.txt mode change 100755 => 100644 npc/009-2/mapflags.txt mode change 100755 => 100644 npc/009-2/misc.txt mode change 100755 => 100644 npc/009-2/nicholas.txt mode change 100755 => 100644 npc/009-2/nurse.txt mode change 100755 => 100644 npc/009-2/olana.txt mode change 100755 => 100644 npc/009-2/peter.txt mode change 100755 => 100644 npc/009-2/richard.txt mode change 100755 => 100644 npc/009-2/selim.txt mode change 100755 => 100644 npc/009-2/shops.txt mode change 100755 => 100644 npc/009-2/trader.txt mode change 100755 => 100644 npc/009-2/waitress.txt mode change 100755 => 100644 npc/009-2/wyara.txt mode change 100755 => 100644 npc/009-2/yalina.txt mode change 100755 => 100644 npc/009-3/mapflags.txt mode change 100755 => 100644 npc/009-3/sword.txt mode change 100755 => 100644 npc/009-3/warp.txt mode change 100755 => 100644 npc/009-4/barriers.txt mode change 100755 => 100644 npc/009-4/mapflags.txt mode change 100755 => 100644 npc/009-4/orum.txt mode change 100755 => 100644 npc/009-4/orum_warps.txt mode change 100755 => 100644 npc/009-4/torches.txt mode change 100755 => 100644 npc/009-4/waric.txt mode change 100755 => 100644 npc/009-5/mapflags.txt mode change 100755 => 100644 npc/009-6/brodomir.txt mode change 100755 => 100644 npc/009-6/mapflags.txt mode change 100755 => 100644 npc/009-7/battlemaster.txt mode change 100755 => 100644 npc/009-7/core.txt mode change 100755 => 100644 npc/009-7/debug.txt mode change 100755 => 100644 npc/009-7/eventHandler.txt mode change 100755 => 100644 npc/009-7/mapflags.txt mode change 100755 => 100644 npc/009-7/rouge.txt mode change 100755 => 100644 npc/009-7/shops.txt mode change 100755 => 100644 npc/009-7/trapdoor.txt mode change 100755 => 100644 npc/009-8/celestia.txt mode change 100755 => 100644 npc/009-8/mapflags.txt mode change 100755 => 100644 npc/010-1/mapflags.txt mode change 100755 => 100644 npc/010-2/band.txt mode change 100755 => 100644 npc/010-2/chef.txt mode change 100755 => 100644 npc/010-2/dimonds.txt mode change 100755 => 100644 npc/010-2/doug.txt mode change 100755 => 100644 npc/010-2/loratay.txt mode change 100755 => 100644 npc/010-2/mapflags.txt mode change 100755 => 100644 npc/010-2/workers.txt mode change 100755 => 100644 npc/011-1/alchemist.txt mode change 100755 => 100644 npc/011-1/auldsbel.txt mode change 100755 => 100644 npc/011-1/mapflags.txt mode change 100755 => 100644 npc/011-1/oscar.txt mode change 100755 => 100644 npc/011-1/shops.txt mode change 100755 => 100644 npc/011-3/hermit.txt mode change 100755 => 100644 npc/011-3/mapflags.txt mode change 100755 => 100644 npc/011-4/bl_barrier.txt mode change 100755 => 100644 npc/011-4/mapflags.txt mode change 100755 => 100644 npc/011-6/barrier.txt mode change 100755 => 100644 npc/011-6/bryant.txt mode change 100755 => 100644 npc/011-6/crastur.txt mode change 100755 => 100644 npc/011-6/mapflags.txt mode change 100755 => 100644 npc/012-1/amrak.txt mode change 100755 => 100644 npc/012-1/flowerpentagram2.txt mode change 100755 => 100644 npc/012-1/injured-mouboo.txt mode change 100755 => 100644 npc/012-1/mapflags.txt mode change 100755 => 100644 npc/012-1/shops.txt mode change 100755 => 100644 npc/012-3/mana-seed.txt mode change 100755 => 100644 npc/012-3/mapflags.txt mode change 100755 => 100644 npc/012-3/traveler.txt mode change 100755 => 100644 npc/012-3/warningsigns.txt mode change 100755 => 100644 npc/012-4/mapflags.txt mode change 100755 => 100644 npc/012-4/pvpflag.txt mode change 100755 => 100644 npc/013-1/flowerpentagram.txt mode change 100755 => 100644 npc/013-1/mapflags.txt mode change 100755 => 100644 npc/013-1/sagatha.txt mode change 100755 => 100644 npc/013-1/traveler.txt mode change 100755 => 100644 npc/013-2/apprentice.txt mode change 100755 => 100644 npc/013-2/mapflags.txt mode change 100755 => 100644 npc/013-2/notes.txt mode change 100755 => 100644 npc/013-2/wizard.txt mode change 100755 => 100644 npc/013-3/barrier.txt mode change 100755 => 100644 npc/013-3/mapflags.txt mode change 100755 => 100644 npc/013-3/mask_chest.txt mode change 100755 => 100644 npc/013-3/misc.txt mode change 100755 => 100644 npc/013-3/sword_chest.txt mode change 100755 => 100644 npc/014-1/mapflags.txt mode change 100755 => 100644 npc/014-1/wedding-officiator.txt mode change 100755 => 100644 npc/014-3/mapflags.txt mode change 100755 => 100644 npc/015-1/alice.txt mode change 100755 => 100644 npc/015-1/barrier.txt mode change 100755 => 100644 npc/015-1/mapflags.txt mode change 100755 => 100644 npc/015-1/sword.txt mode change 100755 => 100644 npc/015-3/barrier.txt mode change 100755 => 100644 npc/015-3/katze.txt mode change 100755 => 100644 npc/015-3/mapflags.txt mode change 100755 => 100644 npc/015-3/pot.txt mode change 100755 => 100644 npc/016-1/gwendolyn.txt mode change 100755 => 100644 npc/016-1/mapflags.txt mode change 100755 => 100644 npc/016-1/rossy.txt mode change 100755 => 100644 npc/017-1/flowerpentagram1.txt mode change 100755 => 100644 npc/017-1/flowerpentagram5.txt mode change 100755 => 100644 npc/017-1/mapflags.txt mode change 100755 => 100644 npc/017-2/mapflags.txt mode change 100755 => 100644 npc/017-3/mapflags.txt mode change 100755 => 100644 npc/017-4/guardingspirit.txt mode change 100755 => 100644 npc/017-4/mapflags.txt mode change 100755 => 100644 npc/017-4/orum.txt mode change 100755 => 100644 npc/017-4/waric.txt mode change 100755 => 100644 npc/017-9/mapflags.txt mode change 100755 => 100644 npc/017-9/npcs.txt mode change 100755 => 100644 npc/018-1/flowerpentagram3.txt mode change 100755 => 100644 npc/018-1/mapflags.txt mode change 100755 => 100644 npc/018-1/mike.txt mode change 100755 => 100644 npc/018-1/miners.txt mode change 100755 => 100644 npc/018-1/sword.txt mode change 100755 => 100644 npc/018-2/angus.txt mode change 100755 => 100644 npc/018-2/books.txt mode change 100755 => 100644 npc/018-2/caul.txt mode change 100755 => 100644 npc/018-2/mapflags.txt mode change 100755 => 100644 npc/018-2/miners.txt mode change 100755 => 100644 npc/018-2/receptionist.txt mode change 100755 => 100644 npc/018-3/bookcase.txt mode change 100755 => 100644 npc/018-3/evil-obelisk.txt mode change 100755 => 100644 npc/018-3/mapflags.txt mode change 100755 => 100644 npc/018-3/sword.txt mode change 100755 => 100644 npc/019-1/mapflags.txt mode change 100755 => 100644 npc/019-1/santa_helper.txt mode change 100755 => 100644 npc/019-1/snowman.txt mode change 100755 => 100644 npc/019-3/mapflags.txt mode change 100755 => 100644 npc/019-4/mapflags.txt mode change 100755 => 100644 npc/020-1/KrickKrackKrock.txt mode change 100755 => 100644 npc/020-1/mapflags.txt mode change 100755 => 100644 npc/020-1/rockscissor.txt mode change 100755 => 100644 npc/020-1/soul-menhir.txt mode change 100755 => 100644 npc/020-1/traveler.txt mode change 100755 => 100644 npc/020-1/well.txt mode change 100755 => 100644 npc/020-2/baktar.txt mode change 100755 => 100644 npc/020-2/banker.txt mode change 100755 => 100644 npc/020-2/furquest.txt mode change 100755 => 100644 npc/020-2/mapflags.txt mode change 100755 => 100644 npc/020-2/shops.txt mode change 100755 => 100644 npc/020-3/mapflags.txt mode change 100755 => 100644 npc/021-3/mapflags.txt mode change 100755 => 100644 npc/025-1/barrier.txt mode change 100755 => 100644 npc/025-1/mapflags.txt mode change 100755 => 100644 npc/025-1/reset.txt mode change 100755 => 100644 npc/025-3/barriers.txt mode change 100755 => 100644 npc/025-3/mapflags.txt mode change 100755 => 100644 npc/025-4/battlecaves.txt mode change 100755 => 100644 npc/025-4/clauquer.txt mode change 100755 => 100644 npc/025-4/julia.txt mode change 100755 => 100644 npc/025-4/mapflags.txt mode change 100755 => 100644 npc/026-1/evil_guard.txt mode change 100755 => 100644 npc/026-1/headless_man.txt mode change 100755 => 100644 npc/026-1/husband.txt mode change 100755 => 100644 npc/026-1/mapflags.txt mode change 100755 => 100644 npc/026-1/sign.txt mode change 100755 => 100644 npc/026-1/soul-menhir.txt mode change 100755 => 100644 npc/026-1/traveler.txt mode change 100755 => 100644 npc/026-2/barman.txt mode change 100755 => 100644 npc/026-2/cerhan.txt mode change 100755 => 100644 npc/026-2/crying_child.txt mode change 100755 => 100644 npc/026-2/diary.txt mode change 100755 => 100644 npc/026-2/door.txt mode change 100755 => 100644 npc/026-2/eurni.txt mode change 100755 => 100644 npc/026-2/golbenez.txt mode change 100755 => 100644 npc/026-2/gy_inn_shops.txt mode change 100755 => 100644 npc/026-2/innkeeper.txt mode change 100755 => 100644 npc/026-2/lover.txt mode change 100755 => 100644 npc/026-2/mapflags.txt mode change 100755 => 100644 npc/026-2/testnpcs.txt mode change 100755 => 100644 npc/026-2/werewolf.txt mode change 100755 => 100644 npc/027-1/crypt.txt mode change 100755 => 100644 npc/027-1/graves.txt mode change 100755 => 100644 npc/027-1/mapflags.txt mode change 100755 => 100644 npc/027-2/alacrius.txt mode change 100755 => 100644 npc/027-2/caretaker.txt mode change 100755 => 100644 npc/027-2/mapflags.txt mode change 100755 => 100644 npc/027-2/thurston.txt mode change 100755 => 100644 npc/027-3/casket_traps.txt mode change 100755 => 100644 npc/027-3/general_krukan_door.txt mode change 100755 => 100644 npc/027-3/mapflags.txt mode change 100755 => 100644 npc/027-3/monsters.txt mode change 100755 => 100644 npc/027-4/casket_traps.txt mode change 100755 => 100644 npc/027-4/general_razha_door.txt mode change 100755 => 100644 npc/027-4/mapflags.txt mode change 100755 => 100644 npc/027-4/monsters.txt mode change 100755 => 100644 npc/027-5/casket_traps.txt mode change 100755 => 100644 npc/027-5/general_terogan_door.txt mode change 100755 => 100644 npc/027-5/mapflags.txt mode change 100755 => 100644 npc/027-6/casket_traps.txt mode change 100755 => 100644 npc/027-6/general_krukan.txt mode change 100755 => 100644 npc/027-6/general_krukan_exitdoor.txt mode change 100755 => 100644 npc/027-6/mapflags.txt mode change 100755 => 100644 npc/027-7/general_razha.txt mode change 100755 => 100644 npc/027-7/general_razha_exitdoor.txt mode change 100755 => 100644 npc/027-7/mapflags.txt mode change 100755 => 100644 npc/027-8/general_terogan.txt mode change 100755 => 100644 npc/027-8/general_terogan_exitdoor.txt mode change 100755 => 100644 npc/027-8/mapflags.txt mode change 100755 => 100644 npc/028-1/mapflags.txt mode change 100755 => 100644 npc/028-1/portal.txt mode change 100755 => 100644 npc/028-3/mapflags.txt mode change 100755 => 100644 npc/029-1/aahna.txt mode change 100755 => 100644 npc/029-1/barrier.txt mode change 100755 => 100644 npc/029-1/dock.txt mode change 100755 => 100644 npc/029-1/ferry_master.txt mode change 100755 => 100644 npc/029-1/hasan.txt mode change 100755 => 100644 npc/029-1/hideandseek.txt mode change 100755 => 100644 npc/029-1/kaan.txt mode change 100755 => 100644 npc/029-1/liana.txt mode change 100755 => 100644 npc/029-1/mapflags.txt mode change 100755 => 100644 npc/029-1/monster_guide.txt mode change 100755 => 100644 npc/029-1/rewards_master.txt mode change 100755 => 100644 npc/029-1/soul-menhir.txt mode change 100755 => 100644 npc/029-1/traveler.txt mode change 100755 => 100644 npc/029-1/tutorial.txt mode change 100755 => 100644 npc/029-1/valon.txt mode change 100755 => 100644 npc/029-1/vincent.txt mode change 100755 => 100644 npc/029-1/zegas.txt mode change 100755 => 100644 npc/029-2/bankroom.txt mode change 100755 => 100644 npc/029-2/barrels.txt mode change 100755 => 100644 npc/029-2/barrels_config.txt mode change 100755 => 100644 npc/029-2/cynric.txt mode change 100755 => 100644 npc/029-2/mapflags.txt mode change 100755 => 100644 npc/029-2/morgan.txt mode change 100755 => 100644 npc/029-2/nyle.txt mode change 100755 => 100644 npc/029-2/sorfina.txt mode change 100755 => 100644 npc/029-2/stat_reset.txt mode change 100755 => 100644 npc/029-2/tanisha.txt mode change 100755 => 100644 npc/029-2/two_arms.txt mode change 100755 => 100644 npc/029-3/barrier.txt mode change 100755 => 100644 npc/029-3/mapflags.txt mode change 100755 => 100644 npc/029-3/parua.txt mode change 100755 => 100644 npc/030-2/avalia.txt mode change 100755 => 100644 npc/030-2/basic_npcs.txt mode change 100755 => 100644 npc/030-2/bedding_helper.txt mode change 100755 => 100644 npc/030-2/chief_helper.txt mode change 100755 => 100644 npc/030-2/eljas.txt mode change 100755 => 100644 npc/030-2/empty_boxes_helper.txt mode change 100755 => 100644 npc/030-2/glitter_helper.txt mode change 100755 => 100644 npc/030-2/guards.txt mode change 100755 => 100644 npc/030-2/mapflags.txt mode change 100755 => 100644 npc/030-2/present_helper.txt mode change 100755 => 100644 npc/030-2/roasted_acorns_helper.txt mode change 100755 => 100644 npc/030-2/shipping_helper.txt mode change 100755 => 100644 npc/030-2/storage_helper.txt mode change 100755 => 100644 npc/030-2/wrapping_paper_helper.txt mode change 100755 => 100644 npc/030-3/mapflags.txt mode change 100755 => 100644 npc/030-3/orum_homunculus.txt mode change 100755 => 100644 npc/030-4/mana_battery.txt mode change 100755 => 100644 npc/030-4/mapflags.txt mode change 100755 => 100644 npc/031-1/angelaOutside.txt mode change 100755 => 100644 npc/031-1/dock.txt mode change 100755 => 100644 npc/031-1/frozenbeard.txt mode change 100755 => 100644 npc/031-1/house.txt mode change 100755 => 100644 npc/031-1/mapflags.txt mode change 100755 => 100644 npc/031-2/angelaHouse.txt mode change 100755 => 100644 npc/031-2/cindyHouse.txt mode change 100755 => 100644 npc/031-2/mapflags.txt mode change 100755 => 100644 npc/031-3/labyrinth.txt mode change 100755 => 100644 npc/031-3/mapflags.txt mode change 100755 => 100644 npc/031-4/barrier.txt mode change 100755 => 100644 npc/031-4/cindyCave.txt mode change 100755 => 100644 npc/031-4/mapflags.txt mode change 100755 => 100644 npc/032-3/mapflags.txt mode change 100755 => 100644 npc/033-1/backDoor.txt mode change 100755 => 100644 npc/033-1/barbarianinit.txt mode change 100755 => 100644 npc/033-1/birrod.txt mode change 100755 => 100644 npc/033-1/kimarr.txt mode change 100755 => 100644 npc/033-1/mapflags.txt mode change 100755 => 100644 npc/033-1/traveler.txt mode change 100755 => 100644 npc/033-1/yerrnk.txt mode change 100755 => 100644 npc/034-1/ambushs.txt mode change 100755 => 100644 npc/034-1/mapflags.txt mode change 100755 => 100644 npc/034-1/yetiSpawn.txt mode change 100755 => 100644 npc/034-2/mapflags.txt mode change 100755 => 100644 npc/035-2/casino.txt mode change 100755 => 100644 npc/035-2/emblems.txt mode change 100755 => 100644 npc/035-2/koga.txt mode change 100755 => 100644 npc/035-2/mapflags.txt mode change 100755 => 100644 npc/035-2/shops.txt mode change 100755 => 100644 npc/036-2/casino.txt mode change 100755 => 100644 npc/036-2/emblems.txt mode change 100755 => 100644 npc/036-2/koga-candor.txt mode change 100755 => 100644 npc/036-2/mapflags.txt mode change 100755 => 100644 npc/036-2/shops.txt mode change 100755 => 100644 npc/043-3/mapflags.txt mode change 100755 => 100644 npc/043-4/mapflags.txt mode change 100755 => 100644 npc/045-1/mapflags.txt mode change 100755 => 100644 npc/046-1/mapflags.txt mode change 100755 => 100644 npc/046-3/mapflags.txt mode change 100755 => 100644 npc/047-1/mapflags.txt mode change 100755 => 100644 npc/047-3/mapflags.txt mode change 100755 => 100644 npc/048-2/bluesageConfig.txt mode change 100755 => 100644 npc/048-2/helperAccused.txt mode change 100755 => 100644 npc/048-2/helperBookpages1.txt mode change 100755 => 100644 npc/048-2/helperBookpages2.txt mode change 100755 => 100644 npc/048-2/helperBookpages3.txt mode change 100755 => 100644 npc/048-2/helperChief.txt mode change 100755 => 100644 npc/048-2/helperCleaning1.txt mode change 100755 => 100644 npc/048-2/helperCleaning2.txt mode change 100755 => 100644 npc/048-2/helperCleaning3.txt mode change 100755 => 100644 npc/048-2/helperCleaning4.txt mode change 100755 => 100644 npc/048-2/helperCleaning5.txt mode change 100755 => 100644 npc/048-2/helperJanitor.txt mode change 100755 => 100644 npc/048-2/helperMInk.txt mode change 100755 => 100644 npc/048-2/helperMReed.txt mode change 100755 => 100644 npc/048-2/helperMSilk.txt mode change 100755 => 100644 npc/048-2/helperMYetiClaw.txt mode change 100755 => 100644 npc/048-2/helperResting1.txt mode change 100755 => 100644 npc/048-2/helperResting2.txt mode change 100755 => 100644 npc/048-2/mapflags.txt mode change 100755 => 100644 npc/048-2/sageNikolai.txt mode change 100755 => 100644 npc/048-2/slimes.txt mode change 100755 => 100644 npc/048-2/traveler.txt mode change 100755 => 100644 npc/048-2/visitors.txt mode change 100755 => 100644 npc/051-1/desert.txt mode change 100755 => 100644 npc/051-1/desertmonsters.txt mode change 100755 => 100644 npc/051-1/forest.txt mode change 100755 => 100644 npc/051-1/forestmonsters.txt mode change 100755 => 100644 npc/051-1/janitor.txt mode change 100755 => 100644 npc/051-1/mapflags.txt mode change 100755 => 100644 npc/051-3/ambush.txt mode change 100755 => 100644 npc/051-3/jailslimes.txt mode change 100755 => 100644 npc/051-3/janitor.txt mode change 100755 => 100644 npc/051-3/locks.txt mode change 100755 => 100644 npc/051-3/mapflags.txt mode change 100755 => 100644 npc/051-3/reinforcements.txt mode change 100755 => 100644 npc/052-1/channelling.txt mode change 100755 => 100644 npc/052-1/janitor.txt mode change 100755 => 100644 npc/052-1/mapflags.txt mode change 100755 => 100644 npc/052-2/chest.txt mode change 100755 => 100644 npc/052-2/janitor.txt mode change 100755 => 100644 npc/052-2/lobby.txt mode change 100755 => 100644 npc/052-2/mapflags.txt mode change 100755 => 100644 npc/052-2/partyroom.txt mode change 100755 => 100644 npc/052-2/storage.txt mode change 100755 => 100644 npc/055-1/flowerpentagram4.txt mode change 100755 => 100644 npc/055-1/mapflags.txt mode change 100755 => 100644 npc/055-1/pumpkins.txt mode change 100755 => 100644 npc/055-1/traveler.txt mode change 100755 => 100644 npc/055-3/mapflags.txt mode change 100755 => 100644 npc/056-2/barrier.txt mode change 100755 => 100644 npc/056-2/mapflags.txt mode change 100755 => 100644 npc/056-2/mirak.txt mode change 100755 => 100644 npc/056-2/notes.txt mode change 100755 => 100644 npc/057-1/mapflags.txt mode change 100755 => 100644 npc/_import.txt mode change 100755 => 100644 npc/annuals/check_time.txt mode change 100755 => 100644 npc/annuals/fathertime.txt mode change 100755 => 100644 npc/annuals/halloween/config.txt mode change 100755 => 100644 npc/annuals/halloween/debug.txt mode change 100755 => 100644 npc/annuals/halloween/munro.txt mode change 100755 => 100644 npc/annuals/halloween/trick_or_treat.txt mode change 100755 => 100644 npc/annuals/tree_beard.txt mode change 100755 => 100644 npc/annuals/xmas/barriers.txt mode change 100755 => 100644 npc/annuals/xmas/config.txt mode change 100755 => 100644 npc/annuals/xmas/core.txt mode change 100755 => 100644 npc/annuals/xmas/debug.txt mode change 100755 => 100644 npc/annuals/xmas/helpers.txt mode change 100755 => 100644 npc/annuals/xmas/list.txt mode change 100755 => 100644 npc/annuals/xmas/mobmanager.txt mode change 100755 => 100644 npc/annuals/xmas/reagents.txt mode change 100755 => 100644 npc/annuals/xmas/states.txt mode change 100755 => 100644 npc/botcheck/mapflags.txt mode change 100755 => 100644 npc/commands/debug.txt mode change 100755 => 100644 npc/commands/numa.txt mode change 100755 => 100644 npc/functions/DyeConfig.txt mode change 100755 => 100644 npc/functions/announcements.txt mode change 100755 => 100644 npc/functions/banker.txt mode change 100755 => 100644 npc/functions/barber.txt mode change 100755 => 100644 npc/functions/clear_vars.txt mode change 100755 => 100644 npc/functions/dailyquest.txt mode change 100755 => 100644 npc/functions/default_npc_checks.txt mode change 100755 => 100644 npc/functions/dynamic_menu.txt mode change 100755 => 100644 npc/functions/evil_obelisk.txt mode change 100755 => 100644 npc/functions/ferry.txt mode change 100755 => 100644 npc/functions/game_rules.txt mode change 100755 => 100644 npc/functions/global_event_handler.txt mode change 100755 => 100644 npc/functions/gm_island.txt mode change 100755 => 100644 npc/functions/headstyles.txt mode change 100755 => 100644 npc/functions/inn.txt mode change 100755 => 100644 npc/functions/jesusalvatr.txt mode change 100755 => 100644 npc/functions/lockpicking.txt mode change 100755 => 100644 npc/functions/magic.txt mode change 100755 => 100644 npc/functions/mob_points.txt mode change 100755 => 100644 npc/functions/motd.txt mode change 100755 => 100644 npc/functions/motdconfig.txt mode change 100755 => 100644 npc/functions/process_equip.txt mode change 100755 => 100644 npc/functions/quiz.txt mode change 100755 => 100644 npc/functions/slot_machine.txt mode change 100755 => 100644 npc/functions/soul_menhir.txt mode change 100755 => 100644 npc/functions/stat_reset.txt mode change 100755 => 100644 npc/functions/time.txt mode change 100755 => 100644 npc/functions/travelers.txt mode change 100755 => 100644 npc/functions/undead_debug.txt mode change 100755 => 100644 npc/functions/water_bottle.txt mode change 100755 => 100644 npc/items/check_wand.txt mode change 100755 => 100644 npc/items/launcher_ammo.txt mode change 100755 => 100644 npc/items/mirror.txt mode change 100755 => 100644 npc/items/pickled_beets.txt mode change 100755 => 100644 npc/items/purification_potion.txt mode change 100755 => 100644 npc/items/require_stat.txt mode change 100755 => 100644 npc/items/restricted_item.txt mode change 100755 => 100644 npc/items/rubber_bat.txt mode change 100755 => 100644 npc/items/scissors.txt mode change 100755 => 100644 npc/items/shock_sweet.txt mode change 100755 => 100644 npc/items/unequipcb.txt mode change 100755 => 100644 npc/items/unreleased_item.txt mode change 100755 => 100644 npc/items/warpTowels.txt mode change 100644 => 100755 npc/pre-re/scripts_main.conf (limited to 'npc/029-2') diff --git a/npc/001-1/adrian.txt b/npc/001-1/adrian.txt old mode 100755 new mode 100644 diff --git a/npc/001-1/ched.txt b/npc/001-1/ched.txt old mode 100755 new mode 100644 diff --git a/npc/001-1/children.txt b/npc/001-1/children.txt old mode 100755 new mode 100644 diff --git a/npc/001-1/constable.txt b/npc/001-1/constable.txt old mode 100755 new mode 100644 diff --git a/npc/001-1/dock.txt b/npc/001-1/dock.txt old mode 100755 new mode 100644 diff --git a/npc/001-1/eomie.txt b/npc/001-1/eomie.txt old mode 100755 new mode 100644 diff --git a/npc/001-1/ferry_master.txt b/npc/001-1/ferry_master.txt old mode 100755 new mode 100644 diff --git a/npc/001-1/gate_guards.txt b/npc/001-1/gate_guards.txt old mode 100755 new mode 100644 diff --git a/npc/001-1/gossip.txt b/npc/001-1/gossip.txt old mode 100755 new mode 100644 diff --git a/npc/001-1/guards.txt b/npc/001-1/guards.txt old mode 100755 new mode 100644 diff --git a/npc/001-1/inac.txt b/npc/001-1/inac.txt old mode 100755 new mode 100644 diff --git a/npc/001-1/mapflags.txt b/npc/001-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/001-1/north_shops.txt b/npc/001-1/north_shops.txt old mode 100755 new mode 100644 diff --git a/npc/001-1/npcs.txt b/npc/001-1/npcs.txt old mode 100755 new mode 100644 diff --git a/npc/001-1/sewer_east.txt b/npc/001-1/sewer_east.txt old mode 100755 new mode 100644 diff --git a/npc/001-1/sewer_north.txt b/npc/001-1/sewer_north.txt old mode 100755 new mode 100644 diff --git a/npc/001-1/stat_reset.txt b/npc/001-1/stat_reset.txt old mode 100755 new mode 100644 diff --git a/npc/001-1/tinris.txt b/npc/001-1/tinris.txt old mode 100755 new mode 100644 diff --git a/npc/001-1/tombstones.txt b/npc/001-1/tombstones.txt old mode 100755 new mode 100644 diff --git a/npc/001-1/weellos.txt b/npc/001-1/weellos.txt old mode 100755 new mode 100644 diff --git a/npc/001-2/bank.txt b/npc/001-2/bank.txt old mode 100755 new mode 100644 diff --git a/npc/001-2/david.txt b/npc/001-2/david.txt old mode 100755 new mode 100644 diff --git a/npc/001-2/fieri.txt b/npc/001-2/fieri.txt old mode 100755 new mode 100644 diff --git a/npc/001-2/forge_shops.txt b/npc/001-2/forge_shops.txt old mode 100755 new mode 100644 diff --git a/npc/001-2/government_building.txt b/npc/001-2/government_building.txt old mode 100755 new mode 100644 diff --git a/npc/001-2/heathin.txt b/npc/001-2/heathin.txt old mode 100755 new mode 100644 diff --git a/npc/001-2/jhedia.txt b/npc/001-2/jhedia.txt old mode 100755 new mode 100644 diff --git a/npc/001-2/manakins.txt b/npc/001-2/manakins.txt old mode 100755 new mode 100644 diff --git a/npc/001-2/mapflags.txt b/npc/001-2/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/001-2/pauline.txt b/npc/001-2/pauline.txt old mode 100755 new mode 100644 diff --git a/npc/001-2/sandra.txt b/npc/001-2/sandra.txt old mode 100755 new mode 100644 diff --git a/npc/001-2/tathin.txt b/npc/001-2/tathin.txt old mode 100755 new mode 100644 diff --git a/npc/001-2/tondar.txt b/npc/001-2/tondar.txt old mode 100755 new mode 100644 diff --git a/npc/001-2/wizards.txt b/npc/001-2/wizards.txt old mode 100755 new mode 100644 diff --git a/npc/001-2/yanis.txt b/npc/001-2/yanis.txt old mode 100755 new mode 100644 diff --git a/npc/001-3/guards.txt b/npc/001-3/guards.txt old mode 100755 new mode 100644 diff --git a/npc/001-3/mapflags.txt b/npc/001-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/001-3/pvpflag.txt b/npc/001-3/pvpflag.txt old mode 100755 new mode 100644 diff --git a/npc/002-1/anwar.txt b/npc/002-1/anwar.txt old mode 100755 new mode 100644 diff --git a/npc/002-1/bard.txt b/npc/002-1/bard.txt old mode 100755 new mode 100644 diff --git a/npc/002-1/elanore.txt b/npc/002-1/elanore.txt old mode 100755 new mode 100644 diff --git a/npc/002-1/gaurds.txt b/npc/002-1/gaurds.txt old mode 100755 new mode 100644 diff --git a/npc/002-1/itka.txt b/npc/002-1/itka.txt old mode 100755 new mode 100644 diff --git a/npc/002-1/lieutenant_dausen.txt b/npc/002-1/lieutenant_dausen.txt old mode 100755 new mode 100644 diff --git a/npc/002-1/luca.txt b/npc/002-1/luca.txt old mode 100755 new mode 100644 diff --git a/npc/002-1/mapflags.txt b/npc/002-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/002-1/mine_debug.txt b/npc/002-1/mine_debug.txt old mode 100755 new mode 100644 diff --git a/npc/002-1/nickos.txt b/npc/002-1/nickos.txt old mode 100755 new mode 100644 diff --git a/npc/002-1/nomads.txt b/npc/002-1/nomads.txt old mode 100755 new mode 100644 diff --git a/npc/002-1/npcs.txt b/npc/002-1/npcs.txt old mode 100755 new mode 100644 diff --git a/npc/002-1/sarah.txt b/npc/002-1/sarah.txt old mode 100755 new mode 100644 diff --git a/npc/002-1/soul-menhir.txt b/npc/002-1/soul-menhir.txt old mode 100755 new mode 100644 diff --git a/npc/002-1/stewen.txt b/npc/002-1/stewen.txt old mode 100755 new mode 100644 diff --git a/npc/002-1/traveler.txt b/npc/002-1/traveler.txt old mode 100755 new mode 100644 diff --git a/npc/002-2/bakery.txt b/npc/002-2/bakery.txt old mode 100755 new mode 100644 diff --git a/npc/002-2/barber.txt b/npc/002-2/barber.txt old mode 100755 new mode 100644 diff --git a/npc/002-2/bleacher.txt b/npc/002-2/bleacher.txt old mode 100755 new mode 100644 diff --git a/npc/002-2/casino.txt b/npc/002-2/casino.txt old mode 100755 new mode 100644 diff --git a/npc/002-2/dedication.txt b/npc/002-2/dedication.txt old mode 100755 new mode 100644 diff --git a/npc/002-2/hetchel.txt b/npc/002-2/hetchel.txt old mode 100755 new mode 100644 diff --git a/npc/002-2/imec.txt b/npc/002-2/imec.txt old mode 100755 new mode 100644 diff --git a/npc/002-2/inya.txt b/npc/002-2/inya.txt old mode 100755 new mode 100644 diff --git a/npc/002-2/kps.txt b/npc/002-2/kps.txt old mode 100755 new mode 100644 diff --git a/npc/002-2/kylian.txt b/npc/002-2/kylian.txt old mode 100755 new mode 100644 diff --git a/npc/002-2/latoy.txt b/npc/002-2/latoy.txt old mode 100755 new mode 100644 diff --git a/npc/002-2/mapflags.txt b/npc/002-2/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/002-2/omar.txt b/npc/002-2/omar.txt old mode 100755 new mode 100644 diff --git a/npc/002-2/phaet.txt b/npc/002-2/phaet.txt old mode 100755 new mode 100644 diff --git a/npc/002-2/rebecca.txt b/npc/002-2/rebecca.txt old mode 100755 new mode 100644 diff --git a/npc/002-2/shops.txt b/npc/002-2/shops.txt old mode 100755 new mode 100644 diff --git a/npc/002-2/stranger.txt b/npc/002-2/stranger.txt old mode 100755 new mode 100644 diff --git a/npc/002-2/troupe_leader.txt b/npc/002-2/troupe_leader.txt old mode 100755 new mode 100644 diff --git a/npc/002-3/mapflags.txt b/npc/002-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/002-3/merchant.txt b/npc/002-3/merchant.txt old mode 100755 new mode 100644 diff --git a/npc/002-3/mining_camp_barrier.txt b/npc/002-3/mining_camp_barrier.txt old mode 100755 new mode 100644 diff --git a/npc/002-3/nathan.txt b/npc/002-3/nathan.txt old mode 100755 new mode 100644 diff --git a/npc/002-3/traveler.txt b/npc/002-3/traveler.txt old mode 100755 new mode 100644 diff --git a/npc/002-4/mapflags.txt b/npc/002-4/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/002-4/mine_triggerone.txt b/npc/002-4/mine_triggerone.txt old mode 100755 new mode 100644 diff --git a/npc/002-4/mine_triggerthree.txt b/npc/002-4/mine_triggerthree.txt old mode 100755 new mode 100644 diff --git a/npc/002-4/mine_triggertwo.txt b/npc/002-4/mine_triggertwo.txt old mode 100755 new mode 100644 diff --git a/npc/002-4/naem.txt b/npc/002-4/naem.txt old mode 100755 new mode 100644 diff --git a/npc/002-4/underground_palace_barrier.txt b/npc/002-4/underground_palace_barrier.txt old mode 100755 new mode 100644 diff --git a/npc/002-5/chest.txt b/npc/002-5/chest.txt old mode 100755 new mode 100644 diff --git a/npc/002-5/mapflags.txt b/npc/002-5/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/002-5/sema.txt b/npc/002-5/sema.txt old mode 100755 new mode 100644 diff --git a/npc/004-3/mapflags.txt b/npc/004-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/004-4/mapflags.txt b/npc/004-4/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/004-5/chest.txt b/npc/004-5/chest.txt old mode 100755 new mode 100644 diff --git a/npc/004-5/mapflags.txt b/npc/004-5/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/005-3/mapflags.txt b/npc/005-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/006-1/mapflags.txt b/npc/006-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/006-1/mika.txt b/npc/006-1/mika.txt old mode 100755 new mode 100644 diff --git a/npc/006-1/miriam.txt b/npc/006-1/miriam.txt old mode 100755 new mode 100644 diff --git a/npc/006-1/pachua.txt b/npc/006-1/pachua.txt old mode 100755 new mode 100644 diff --git a/npc/006-1/spirit.txt b/npc/006-1/spirit.txt old mode 100755 new mode 100644 diff --git a/npc/006-1/traveler.txt b/npc/006-1/traveler.txt old mode 100755 new mode 100644 diff --git a/npc/006-1/tree.txt b/npc/006-1/tree.txt old mode 100755 new mode 100644 diff --git a/npc/006-2/mapflags.txt b/npc/006-2/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/006-2/npcs.txt b/npc/006-2/npcs.txt old mode 100755 new mode 100644 diff --git a/npc/006-2/shops.txt b/npc/006-2/shops.txt old mode 100755 new mode 100644 diff --git a/npc/006-3/mapflags.txt b/npc/006-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/007-1/mapflags.txt b/npc/007-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/007-1/voltain.txt b/npc/007-1/voltain.txt old mode 100755 new mode 100644 diff --git a/npc/007-2/witch.txt b/npc/007-2/witch.txt old mode 100755 new mode 100644 diff --git a/npc/008-1/andra.txt b/npc/008-1/andra.txt old mode 100755 new mode 100644 diff --git a/npc/008-1/annualeaster.txt b/npc/008-1/annualeaster.txt old mode 100755 new mode 100644 diff --git a/npc/008-1/banu.txt b/npc/008-1/banu.txt old mode 100755 new mode 100644 diff --git a/npc/008-1/diryn.txt b/npc/008-1/diryn.txt old mode 100755 new mode 100644 diff --git a/npc/008-1/dock.txt b/npc/008-1/dock.txt old mode 100755 new mode 100644 diff --git a/npc/008-1/george.txt b/npc/008-1/george.txt old mode 100755 new mode 100644 diff --git a/npc/008-1/hinnak.txt b/npc/008-1/hinnak.txt old mode 100755 new mode 100644 diff --git a/npc/008-1/mapflags.txt b/npc/008-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/008-1/mikhail.txt b/npc/008-1/mikhail.txt old mode 100755 new mode 100644 diff --git a/npc/009-1/constable.txt b/npc/009-1/constable.txt old mode 100755 new mode 100644 diff --git a/npc/009-1/guide.txt b/npc/009-1/guide.txt old mode 100755 new mode 100644 diff --git a/npc/009-1/jack.txt b/npc/009-1/jack.txt old mode 100755 new mode 100644 diff --git a/npc/009-1/mapflags.txt b/npc/009-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/009-1/milly.txt b/npc/009-1/milly.txt old mode 100755 new mode 100644 diff --git a/npc/009-1/old_man.txt b/npc/009-1/old_man.txt old mode 100755 new mode 100644 diff --git a/npc/009-1/old_woman.txt b/npc/009-1/old_woman.txt old mode 100755 new mode 100644 diff --git a/npc/009-1/sabine.txt b/npc/009-1/sabine.txt old mode 100755 new mode 100644 diff --git a/npc/009-1/soul-menhir.txt b/npc/009-1/soul-menhir.txt old mode 100755 new mode 100644 diff --git a/npc/009-1/water_pump.txt b/npc/009-1/water_pump.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/airlia.txt b/npc/009-2/airlia.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/alan.txt b/npc/009-2/alan.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/bernard.txt b/npc/009-2/bernard.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/doctor.txt b/npc/009-2/doctor.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/drunks.txt b/npc/009-2/drunks.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/entertainer.txt b/npc/009-2/entertainer.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/inspector.txt b/npc/009-2/inspector.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/kfahr.txt b/npc/009-2/kfahr.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/lena.txt b/npc/009-2/lena.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/mapflags.txt b/npc/009-2/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/misc.txt b/npc/009-2/misc.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/nicholas.txt b/npc/009-2/nicholas.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/nurse.txt b/npc/009-2/nurse.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/olana.txt b/npc/009-2/olana.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/peter.txt b/npc/009-2/peter.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/richard.txt b/npc/009-2/richard.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/selim.txt b/npc/009-2/selim.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/shops.txt b/npc/009-2/shops.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/trader.txt b/npc/009-2/trader.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/waitress.txt b/npc/009-2/waitress.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/wyara.txt b/npc/009-2/wyara.txt old mode 100755 new mode 100644 diff --git a/npc/009-2/yalina.txt b/npc/009-2/yalina.txt old mode 100755 new mode 100644 diff --git a/npc/009-3/mapflags.txt b/npc/009-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/009-3/sword.txt b/npc/009-3/sword.txt old mode 100755 new mode 100644 diff --git a/npc/009-3/warp.txt b/npc/009-3/warp.txt old mode 100755 new mode 100644 diff --git a/npc/009-4/barriers.txt b/npc/009-4/barriers.txt old mode 100755 new mode 100644 diff --git a/npc/009-4/mapflags.txt b/npc/009-4/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/009-4/orum.txt b/npc/009-4/orum.txt old mode 100755 new mode 100644 diff --git a/npc/009-4/orum_warps.txt b/npc/009-4/orum_warps.txt old mode 100755 new mode 100644 diff --git a/npc/009-4/torches.txt b/npc/009-4/torches.txt old mode 100755 new mode 100644 diff --git a/npc/009-4/waric.txt b/npc/009-4/waric.txt old mode 100755 new mode 100644 diff --git a/npc/009-5/mapflags.txt b/npc/009-5/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/009-6/brodomir.txt b/npc/009-6/brodomir.txt old mode 100755 new mode 100644 diff --git a/npc/009-6/mapflags.txt b/npc/009-6/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/009-7/battlemaster.txt b/npc/009-7/battlemaster.txt old mode 100755 new mode 100644 diff --git a/npc/009-7/core.txt b/npc/009-7/core.txt old mode 100755 new mode 100644 diff --git a/npc/009-7/debug.txt b/npc/009-7/debug.txt old mode 100755 new mode 100644 diff --git a/npc/009-7/eventHandler.txt b/npc/009-7/eventHandler.txt old mode 100755 new mode 100644 diff --git a/npc/009-7/mapflags.txt b/npc/009-7/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/009-7/rouge.txt b/npc/009-7/rouge.txt old mode 100755 new mode 100644 diff --git a/npc/009-7/shops.txt b/npc/009-7/shops.txt old mode 100755 new mode 100644 diff --git a/npc/009-7/trapdoor.txt b/npc/009-7/trapdoor.txt old mode 100755 new mode 100644 diff --git a/npc/009-8/celestia.txt b/npc/009-8/celestia.txt old mode 100755 new mode 100644 diff --git a/npc/009-8/mapflags.txt b/npc/009-8/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/010-1/mapflags.txt b/npc/010-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/010-2/band.txt b/npc/010-2/band.txt old mode 100755 new mode 100644 diff --git a/npc/010-2/chef.txt b/npc/010-2/chef.txt old mode 100755 new mode 100644 diff --git a/npc/010-2/dimonds.txt b/npc/010-2/dimonds.txt old mode 100755 new mode 100644 diff --git a/npc/010-2/doug.txt b/npc/010-2/doug.txt old mode 100755 new mode 100644 diff --git a/npc/010-2/loratay.txt b/npc/010-2/loratay.txt old mode 100755 new mode 100644 diff --git a/npc/010-2/mapflags.txt b/npc/010-2/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/010-2/workers.txt b/npc/010-2/workers.txt old mode 100755 new mode 100644 diff --git a/npc/011-1/alchemist.txt b/npc/011-1/alchemist.txt old mode 100755 new mode 100644 diff --git a/npc/011-1/auldsbel.txt b/npc/011-1/auldsbel.txt old mode 100755 new mode 100644 diff --git a/npc/011-1/mapflags.txt b/npc/011-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/011-1/oscar.txt b/npc/011-1/oscar.txt old mode 100755 new mode 100644 diff --git a/npc/011-1/shops.txt b/npc/011-1/shops.txt old mode 100755 new mode 100644 diff --git a/npc/011-3/hermit.txt b/npc/011-3/hermit.txt old mode 100755 new mode 100644 diff --git a/npc/011-3/mapflags.txt b/npc/011-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/011-4/bl_barrier.txt b/npc/011-4/bl_barrier.txt old mode 100755 new mode 100644 diff --git a/npc/011-4/mapflags.txt b/npc/011-4/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/011-6/barrier.txt b/npc/011-6/barrier.txt old mode 100755 new mode 100644 diff --git a/npc/011-6/bryant.txt b/npc/011-6/bryant.txt old mode 100755 new mode 100644 diff --git a/npc/011-6/crastur.txt b/npc/011-6/crastur.txt old mode 100755 new mode 100644 diff --git a/npc/011-6/mapflags.txt b/npc/011-6/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/012-1/amrak.txt b/npc/012-1/amrak.txt old mode 100755 new mode 100644 diff --git a/npc/012-1/flowerpentagram2.txt b/npc/012-1/flowerpentagram2.txt old mode 100755 new mode 100644 diff --git a/npc/012-1/injured-mouboo.txt b/npc/012-1/injured-mouboo.txt old mode 100755 new mode 100644 diff --git a/npc/012-1/mapflags.txt b/npc/012-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/012-1/shops.txt b/npc/012-1/shops.txt old mode 100755 new mode 100644 diff --git a/npc/012-3/mana-seed.txt b/npc/012-3/mana-seed.txt old mode 100755 new mode 100644 diff --git a/npc/012-3/mapflags.txt b/npc/012-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/012-3/traveler.txt b/npc/012-3/traveler.txt old mode 100755 new mode 100644 diff --git a/npc/012-3/warningsigns.txt b/npc/012-3/warningsigns.txt old mode 100755 new mode 100644 diff --git a/npc/012-4/mapflags.txt b/npc/012-4/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/012-4/pvpflag.txt b/npc/012-4/pvpflag.txt old mode 100755 new mode 100644 diff --git a/npc/013-1/flowerpentagram.txt b/npc/013-1/flowerpentagram.txt old mode 100755 new mode 100644 diff --git a/npc/013-1/mapflags.txt b/npc/013-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/013-1/sagatha.txt b/npc/013-1/sagatha.txt old mode 100755 new mode 100644 diff --git a/npc/013-1/traveler.txt b/npc/013-1/traveler.txt old mode 100755 new mode 100644 diff --git a/npc/013-2/apprentice.txt b/npc/013-2/apprentice.txt old mode 100755 new mode 100644 diff --git a/npc/013-2/mapflags.txt b/npc/013-2/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/013-2/notes.txt b/npc/013-2/notes.txt old mode 100755 new mode 100644 diff --git a/npc/013-2/wizard.txt b/npc/013-2/wizard.txt old mode 100755 new mode 100644 diff --git a/npc/013-3/barrier.txt b/npc/013-3/barrier.txt old mode 100755 new mode 100644 diff --git a/npc/013-3/mapflags.txt b/npc/013-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/013-3/mask_chest.txt b/npc/013-3/mask_chest.txt old mode 100755 new mode 100644 diff --git a/npc/013-3/misc.txt b/npc/013-3/misc.txt old mode 100755 new mode 100644 diff --git a/npc/013-3/sword_chest.txt b/npc/013-3/sword_chest.txt old mode 100755 new mode 100644 diff --git a/npc/014-1/mapflags.txt b/npc/014-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/014-1/wedding-officiator.txt b/npc/014-1/wedding-officiator.txt old mode 100755 new mode 100644 diff --git a/npc/014-3/mapflags.txt b/npc/014-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/015-1/alice.txt b/npc/015-1/alice.txt old mode 100755 new mode 100644 diff --git a/npc/015-1/barrier.txt b/npc/015-1/barrier.txt old mode 100755 new mode 100644 diff --git a/npc/015-1/mapflags.txt b/npc/015-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/015-1/sword.txt b/npc/015-1/sword.txt old mode 100755 new mode 100644 diff --git a/npc/015-3/barrier.txt b/npc/015-3/barrier.txt old mode 100755 new mode 100644 diff --git a/npc/015-3/katze.txt b/npc/015-3/katze.txt old mode 100755 new mode 100644 diff --git a/npc/015-3/mapflags.txt b/npc/015-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/015-3/pot.txt b/npc/015-3/pot.txt old mode 100755 new mode 100644 diff --git a/npc/016-1/gwendolyn.txt b/npc/016-1/gwendolyn.txt old mode 100755 new mode 100644 diff --git a/npc/016-1/mapflags.txt b/npc/016-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/016-1/rossy.txt b/npc/016-1/rossy.txt old mode 100755 new mode 100644 diff --git a/npc/017-1/flowerpentagram1.txt b/npc/017-1/flowerpentagram1.txt old mode 100755 new mode 100644 diff --git a/npc/017-1/flowerpentagram5.txt b/npc/017-1/flowerpentagram5.txt old mode 100755 new mode 100644 diff --git a/npc/017-1/mapflags.txt b/npc/017-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/017-2/mapflags.txt b/npc/017-2/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/017-3/mapflags.txt b/npc/017-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/017-4/guardingspirit.txt b/npc/017-4/guardingspirit.txt old mode 100755 new mode 100644 diff --git a/npc/017-4/mapflags.txt b/npc/017-4/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/017-4/orum.txt b/npc/017-4/orum.txt old mode 100755 new mode 100644 diff --git a/npc/017-4/waric.txt b/npc/017-4/waric.txt old mode 100755 new mode 100644 diff --git a/npc/017-9/mapflags.txt b/npc/017-9/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/017-9/npcs.txt b/npc/017-9/npcs.txt old mode 100755 new mode 100644 diff --git a/npc/018-1/flowerpentagram3.txt b/npc/018-1/flowerpentagram3.txt old mode 100755 new mode 100644 diff --git a/npc/018-1/mapflags.txt b/npc/018-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/018-1/mike.txt b/npc/018-1/mike.txt old mode 100755 new mode 100644 diff --git a/npc/018-1/miners.txt b/npc/018-1/miners.txt old mode 100755 new mode 100644 diff --git a/npc/018-1/sword.txt b/npc/018-1/sword.txt old mode 100755 new mode 100644 diff --git a/npc/018-2/angus.txt b/npc/018-2/angus.txt old mode 100755 new mode 100644 diff --git a/npc/018-2/books.txt b/npc/018-2/books.txt old mode 100755 new mode 100644 diff --git a/npc/018-2/caul.txt b/npc/018-2/caul.txt old mode 100755 new mode 100644 diff --git a/npc/018-2/mapflags.txt b/npc/018-2/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/018-2/miners.txt b/npc/018-2/miners.txt old mode 100755 new mode 100644 diff --git a/npc/018-2/receptionist.txt b/npc/018-2/receptionist.txt old mode 100755 new mode 100644 diff --git a/npc/018-3/bookcase.txt b/npc/018-3/bookcase.txt old mode 100755 new mode 100644 diff --git a/npc/018-3/evil-obelisk.txt b/npc/018-3/evil-obelisk.txt old mode 100755 new mode 100644 diff --git a/npc/018-3/mapflags.txt b/npc/018-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/018-3/sword.txt b/npc/018-3/sword.txt old mode 100755 new mode 100644 diff --git a/npc/019-1/mapflags.txt b/npc/019-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/019-1/santa_helper.txt b/npc/019-1/santa_helper.txt old mode 100755 new mode 100644 diff --git a/npc/019-1/snowman.txt b/npc/019-1/snowman.txt old mode 100755 new mode 100644 diff --git a/npc/019-3/mapflags.txt b/npc/019-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/019-4/mapflags.txt b/npc/019-4/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/020-1/KrickKrackKrock.txt b/npc/020-1/KrickKrackKrock.txt old mode 100755 new mode 100644 diff --git a/npc/020-1/mapflags.txt b/npc/020-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/020-1/rockscissor.txt b/npc/020-1/rockscissor.txt old mode 100755 new mode 100644 diff --git a/npc/020-1/soul-menhir.txt b/npc/020-1/soul-menhir.txt old mode 100755 new mode 100644 diff --git a/npc/020-1/traveler.txt b/npc/020-1/traveler.txt old mode 100755 new mode 100644 diff --git a/npc/020-1/well.txt b/npc/020-1/well.txt old mode 100755 new mode 100644 diff --git a/npc/020-2/baktar.txt b/npc/020-2/baktar.txt old mode 100755 new mode 100644 diff --git a/npc/020-2/banker.txt b/npc/020-2/banker.txt old mode 100755 new mode 100644 diff --git a/npc/020-2/furquest.txt b/npc/020-2/furquest.txt old mode 100755 new mode 100644 diff --git a/npc/020-2/mapflags.txt b/npc/020-2/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/020-2/shops.txt b/npc/020-2/shops.txt old mode 100755 new mode 100644 diff --git a/npc/020-3/mapflags.txt b/npc/020-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/021-3/mapflags.txt b/npc/021-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/025-1/barrier.txt b/npc/025-1/barrier.txt old mode 100755 new mode 100644 diff --git a/npc/025-1/mapflags.txt b/npc/025-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/025-1/reset.txt b/npc/025-1/reset.txt old mode 100755 new mode 100644 diff --git a/npc/025-3/barriers.txt b/npc/025-3/barriers.txt old mode 100755 new mode 100644 diff --git a/npc/025-3/mapflags.txt b/npc/025-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/025-4/battlecaves.txt b/npc/025-4/battlecaves.txt old mode 100755 new mode 100644 diff --git a/npc/025-4/clauquer.txt b/npc/025-4/clauquer.txt old mode 100755 new mode 100644 diff --git a/npc/025-4/julia.txt b/npc/025-4/julia.txt old mode 100755 new mode 100644 diff --git a/npc/025-4/mapflags.txt b/npc/025-4/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/026-1/evil_guard.txt b/npc/026-1/evil_guard.txt old mode 100755 new mode 100644 diff --git a/npc/026-1/headless_man.txt b/npc/026-1/headless_man.txt old mode 100755 new mode 100644 diff --git a/npc/026-1/husband.txt b/npc/026-1/husband.txt old mode 100755 new mode 100644 diff --git a/npc/026-1/mapflags.txt b/npc/026-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/026-1/sign.txt b/npc/026-1/sign.txt old mode 100755 new mode 100644 diff --git a/npc/026-1/soul-menhir.txt b/npc/026-1/soul-menhir.txt old mode 100755 new mode 100644 diff --git a/npc/026-1/traveler.txt b/npc/026-1/traveler.txt old mode 100755 new mode 100644 diff --git a/npc/026-2/barman.txt b/npc/026-2/barman.txt old mode 100755 new mode 100644 diff --git a/npc/026-2/cerhan.txt b/npc/026-2/cerhan.txt old mode 100755 new mode 100644 diff --git a/npc/026-2/crying_child.txt b/npc/026-2/crying_child.txt old mode 100755 new mode 100644 diff --git a/npc/026-2/diary.txt b/npc/026-2/diary.txt old mode 100755 new mode 100644 diff --git a/npc/026-2/door.txt b/npc/026-2/door.txt old mode 100755 new mode 100644 diff --git a/npc/026-2/eurni.txt b/npc/026-2/eurni.txt old mode 100755 new mode 100644 diff --git a/npc/026-2/golbenez.txt b/npc/026-2/golbenez.txt old mode 100755 new mode 100644 diff --git a/npc/026-2/gy_inn_shops.txt b/npc/026-2/gy_inn_shops.txt old mode 100755 new mode 100644 diff --git a/npc/026-2/innkeeper.txt b/npc/026-2/innkeeper.txt old mode 100755 new mode 100644 diff --git a/npc/026-2/lover.txt b/npc/026-2/lover.txt old mode 100755 new mode 100644 diff --git a/npc/026-2/mapflags.txt b/npc/026-2/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/026-2/testnpcs.txt b/npc/026-2/testnpcs.txt old mode 100755 new mode 100644 diff --git a/npc/026-2/werewolf.txt b/npc/026-2/werewolf.txt old mode 100755 new mode 100644 diff --git a/npc/027-1/crypt.txt b/npc/027-1/crypt.txt old mode 100755 new mode 100644 diff --git a/npc/027-1/graves.txt b/npc/027-1/graves.txt old mode 100755 new mode 100644 diff --git a/npc/027-1/mapflags.txt b/npc/027-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/027-2/alacrius.txt b/npc/027-2/alacrius.txt old mode 100755 new mode 100644 diff --git a/npc/027-2/caretaker.txt b/npc/027-2/caretaker.txt old mode 100755 new mode 100644 diff --git a/npc/027-2/mapflags.txt b/npc/027-2/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/027-2/thurston.txt b/npc/027-2/thurston.txt old mode 100755 new mode 100644 diff --git a/npc/027-3/casket_traps.txt b/npc/027-3/casket_traps.txt old mode 100755 new mode 100644 diff --git a/npc/027-3/general_krukan_door.txt b/npc/027-3/general_krukan_door.txt old mode 100755 new mode 100644 diff --git a/npc/027-3/mapflags.txt b/npc/027-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/027-3/monsters.txt b/npc/027-3/monsters.txt old mode 100755 new mode 100644 diff --git a/npc/027-4/casket_traps.txt b/npc/027-4/casket_traps.txt old mode 100755 new mode 100644 diff --git a/npc/027-4/general_razha_door.txt b/npc/027-4/general_razha_door.txt old mode 100755 new mode 100644 diff --git a/npc/027-4/mapflags.txt b/npc/027-4/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/027-4/monsters.txt b/npc/027-4/monsters.txt old mode 100755 new mode 100644 diff --git a/npc/027-5/casket_traps.txt b/npc/027-5/casket_traps.txt old mode 100755 new mode 100644 diff --git a/npc/027-5/general_terogan_door.txt b/npc/027-5/general_terogan_door.txt old mode 100755 new mode 100644 diff --git a/npc/027-5/mapflags.txt b/npc/027-5/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/027-6/casket_traps.txt b/npc/027-6/casket_traps.txt old mode 100755 new mode 100644 diff --git a/npc/027-6/general_krukan.txt b/npc/027-6/general_krukan.txt old mode 100755 new mode 100644 diff --git a/npc/027-6/general_krukan_exitdoor.txt b/npc/027-6/general_krukan_exitdoor.txt old mode 100755 new mode 100644 diff --git a/npc/027-6/mapflags.txt b/npc/027-6/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/027-7/general_razha.txt b/npc/027-7/general_razha.txt old mode 100755 new mode 100644 diff --git a/npc/027-7/general_razha_exitdoor.txt b/npc/027-7/general_razha_exitdoor.txt old mode 100755 new mode 100644 diff --git a/npc/027-7/mapflags.txt b/npc/027-7/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/027-8/general_terogan.txt b/npc/027-8/general_terogan.txt old mode 100755 new mode 100644 diff --git a/npc/027-8/general_terogan_exitdoor.txt b/npc/027-8/general_terogan_exitdoor.txt old mode 100755 new mode 100644 diff --git a/npc/027-8/mapflags.txt b/npc/027-8/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/028-1/mapflags.txt b/npc/028-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/028-1/portal.txt b/npc/028-1/portal.txt old mode 100755 new mode 100644 diff --git a/npc/028-3/mapflags.txt b/npc/028-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/029-1/aahna.txt b/npc/029-1/aahna.txt old mode 100755 new mode 100644 diff --git a/npc/029-1/barrier.txt b/npc/029-1/barrier.txt old mode 100755 new mode 100644 diff --git a/npc/029-1/dock.txt b/npc/029-1/dock.txt old mode 100755 new mode 100644 diff --git a/npc/029-1/ferry_master.txt b/npc/029-1/ferry_master.txt old mode 100755 new mode 100644 diff --git a/npc/029-1/hasan.txt b/npc/029-1/hasan.txt old mode 100755 new mode 100644 diff --git a/npc/029-1/hideandseek.txt b/npc/029-1/hideandseek.txt old mode 100755 new mode 100644 diff --git a/npc/029-1/kaan.txt b/npc/029-1/kaan.txt old mode 100755 new mode 100644 diff --git a/npc/029-1/liana.txt b/npc/029-1/liana.txt old mode 100755 new mode 100644 diff --git a/npc/029-1/mapflags.txt b/npc/029-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/029-1/monster_guide.txt b/npc/029-1/monster_guide.txt old mode 100755 new mode 100644 diff --git a/npc/029-1/rewards_master.txt b/npc/029-1/rewards_master.txt old mode 100755 new mode 100644 diff --git a/npc/029-1/soul-menhir.txt b/npc/029-1/soul-menhir.txt old mode 100755 new mode 100644 diff --git a/npc/029-1/traveler.txt b/npc/029-1/traveler.txt old mode 100755 new mode 100644 diff --git a/npc/029-1/tutorial.txt b/npc/029-1/tutorial.txt old mode 100755 new mode 100644 diff --git a/npc/029-1/valon.txt b/npc/029-1/valon.txt old mode 100755 new mode 100644 diff --git a/npc/029-1/vincent.txt b/npc/029-1/vincent.txt old mode 100755 new mode 100644 diff --git a/npc/029-1/zegas.txt b/npc/029-1/zegas.txt old mode 100755 new mode 100644 diff --git a/npc/029-2/bankroom.txt b/npc/029-2/bankroom.txt old mode 100755 new mode 100644 diff --git a/npc/029-2/barrels.txt b/npc/029-2/barrels.txt old mode 100755 new mode 100644 diff --git a/npc/029-2/barrels_config.txt b/npc/029-2/barrels_config.txt old mode 100755 new mode 100644 diff --git a/npc/029-2/cynric.txt b/npc/029-2/cynric.txt old mode 100755 new mode 100644 diff --git a/npc/029-2/mapflags.txt b/npc/029-2/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/029-2/morgan.txt b/npc/029-2/morgan.txt old mode 100755 new mode 100644 diff --git a/npc/029-2/nyle.txt b/npc/029-2/nyle.txt old mode 100755 new mode 100644 diff --git a/npc/029-2/sorfina.txt b/npc/029-2/sorfina.txt old mode 100755 new mode 100644 diff --git a/npc/029-2/stat_reset.txt b/npc/029-2/stat_reset.txt old mode 100755 new mode 100644 diff --git a/npc/029-2/tanisha.txt b/npc/029-2/tanisha.txt old mode 100755 new mode 100644 diff --git a/npc/029-2/two_arms.txt b/npc/029-2/two_arms.txt old mode 100755 new mode 100644 diff --git a/npc/029-3/barrier.txt b/npc/029-3/barrier.txt old mode 100755 new mode 100644 diff --git a/npc/029-3/mapflags.txt b/npc/029-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/029-3/parua.txt b/npc/029-3/parua.txt old mode 100755 new mode 100644 diff --git a/npc/030-2/avalia.txt b/npc/030-2/avalia.txt old mode 100755 new mode 100644 diff --git a/npc/030-2/basic_npcs.txt b/npc/030-2/basic_npcs.txt old mode 100755 new mode 100644 diff --git a/npc/030-2/bedding_helper.txt b/npc/030-2/bedding_helper.txt old mode 100755 new mode 100644 diff --git a/npc/030-2/chief_helper.txt b/npc/030-2/chief_helper.txt old mode 100755 new mode 100644 diff --git a/npc/030-2/eljas.txt b/npc/030-2/eljas.txt old mode 100755 new mode 100644 diff --git a/npc/030-2/empty_boxes_helper.txt b/npc/030-2/empty_boxes_helper.txt old mode 100755 new mode 100644 diff --git a/npc/030-2/glitter_helper.txt b/npc/030-2/glitter_helper.txt old mode 100755 new mode 100644 diff --git a/npc/030-2/guards.txt b/npc/030-2/guards.txt old mode 100755 new mode 100644 diff --git a/npc/030-2/mapflags.txt b/npc/030-2/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/030-2/present_helper.txt b/npc/030-2/present_helper.txt old mode 100755 new mode 100644 diff --git a/npc/030-2/roasted_acorns_helper.txt b/npc/030-2/roasted_acorns_helper.txt old mode 100755 new mode 100644 diff --git a/npc/030-2/shipping_helper.txt b/npc/030-2/shipping_helper.txt old mode 100755 new mode 100644 diff --git a/npc/030-2/storage_helper.txt b/npc/030-2/storage_helper.txt old mode 100755 new mode 100644 diff --git a/npc/030-2/wrapping_paper_helper.txt b/npc/030-2/wrapping_paper_helper.txt old mode 100755 new mode 100644 diff --git a/npc/030-3/mapflags.txt b/npc/030-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/030-3/orum_homunculus.txt b/npc/030-3/orum_homunculus.txt old mode 100755 new mode 100644 diff --git a/npc/030-4/mana_battery.txt b/npc/030-4/mana_battery.txt old mode 100755 new mode 100644 diff --git a/npc/030-4/mapflags.txt b/npc/030-4/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/031-1/angelaOutside.txt b/npc/031-1/angelaOutside.txt old mode 100755 new mode 100644 diff --git a/npc/031-1/dock.txt b/npc/031-1/dock.txt old mode 100755 new mode 100644 diff --git a/npc/031-1/frozenbeard.txt b/npc/031-1/frozenbeard.txt old mode 100755 new mode 100644 diff --git a/npc/031-1/house.txt b/npc/031-1/house.txt old mode 100755 new mode 100644 diff --git a/npc/031-1/mapflags.txt b/npc/031-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/031-2/angelaHouse.txt b/npc/031-2/angelaHouse.txt old mode 100755 new mode 100644 diff --git a/npc/031-2/cindyHouse.txt b/npc/031-2/cindyHouse.txt old mode 100755 new mode 100644 diff --git a/npc/031-2/mapflags.txt b/npc/031-2/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/031-3/labyrinth.txt b/npc/031-3/labyrinth.txt old mode 100755 new mode 100644 diff --git a/npc/031-3/mapflags.txt b/npc/031-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/031-4/barrier.txt b/npc/031-4/barrier.txt old mode 100755 new mode 100644 diff --git a/npc/031-4/cindyCave.txt b/npc/031-4/cindyCave.txt old mode 100755 new mode 100644 diff --git a/npc/031-4/mapflags.txt b/npc/031-4/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/032-3/mapflags.txt b/npc/032-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/033-1/backDoor.txt b/npc/033-1/backDoor.txt old mode 100755 new mode 100644 diff --git a/npc/033-1/barbarianinit.txt b/npc/033-1/barbarianinit.txt old mode 100755 new mode 100644 diff --git a/npc/033-1/birrod.txt b/npc/033-1/birrod.txt old mode 100755 new mode 100644 diff --git a/npc/033-1/kimarr.txt b/npc/033-1/kimarr.txt old mode 100755 new mode 100644 diff --git a/npc/033-1/mapflags.txt b/npc/033-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/033-1/traveler.txt b/npc/033-1/traveler.txt old mode 100755 new mode 100644 diff --git a/npc/033-1/yerrnk.txt b/npc/033-1/yerrnk.txt old mode 100755 new mode 100644 diff --git a/npc/034-1/ambushs.txt b/npc/034-1/ambushs.txt old mode 100755 new mode 100644 diff --git a/npc/034-1/mapflags.txt b/npc/034-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/034-1/yetiSpawn.txt b/npc/034-1/yetiSpawn.txt old mode 100755 new mode 100644 diff --git a/npc/034-2/mapflags.txt b/npc/034-2/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/035-2/casino.txt b/npc/035-2/casino.txt old mode 100755 new mode 100644 diff --git a/npc/035-2/emblems.txt b/npc/035-2/emblems.txt old mode 100755 new mode 100644 diff --git a/npc/035-2/koga.txt b/npc/035-2/koga.txt old mode 100755 new mode 100644 diff --git a/npc/035-2/mapflags.txt b/npc/035-2/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/035-2/shops.txt b/npc/035-2/shops.txt old mode 100755 new mode 100644 diff --git a/npc/036-2/casino.txt b/npc/036-2/casino.txt old mode 100755 new mode 100644 diff --git a/npc/036-2/emblems.txt b/npc/036-2/emblems.txt old mode 100755 new mode 100644 diff --git a/npc/036-2/koga-candor.txt b/npc/036-2/koga-candor.txt old mode 100755 new mode 100644 diff --git a/npc/036-2/mapflags.txt b/npc/036-2/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/036-2/shops.txt b/npc/036-2/shops.txt old mode 100755 new mode 100644 diff --git a/npc/043-3/mapflags.txt b/npc/043-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/043-4/mapflags.txt b/npc/043-4/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/045-1/mapflags.txt b/npc/045-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/046-1/mapflags.txt b/npc/046-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/046-3/mapflags.txt b/npc/046-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/047-1/mapflags.txt b/npc/047-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/047-3/mapflags.txt b/npc/047-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/bluesageConfig.txt b/npc/048-2/bluesageConfig.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/helperAccused.txt b/npc/048-2/helperAccused.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/helperBookpages1.txt b/npc/048-2/helperBookpages1.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/helperBookpages2.txt b/npc/048-2/helperBookpages2.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/helperBookpages3.txt b/npc/048-2/helperBookpages3.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/helperChief.txt b/npc/048-2/helperChief.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/helperCleaning1.txt b/npc/048-2/helperCleaning1.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/helperCleaning2.txt b/npc/048-2/helperCleaning2.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/helperCleaning3.txt b/npc/048-2/helperCleaning3.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/helperCleaning4.txt b/npc/048-2/helperCleaning4.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/helperCleaning5.txt b/npc/048-2/helperCleaning5.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/helperJanitor.txt b/npc/048-2/helperJanitor.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/helperMInk.txt b/npc/048-2/helperMInk.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/helperMReed.txt b/npc/048-2/helperMReed.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/helperMSilk.txt b/npc/048-2/helperMSilk.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/helperMYetiClaw.txt b/npc/048-2/helperMYetiClaw.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/helperResting1.txt b/npc/048-2/helperResting1.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/helperResting2.txt b/npc/048-2/helperResting2.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/mapflags.txt b/npc/048-2/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/sageNikolai.txt b/npc/048-2/sageNikolai.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/slimes.txt b/npc/048-2/slimes.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/traveler.txt b/npc/048-2/traveler.txt old mode 100755 new mode 100644 diff --git a/npc/048-2/visitors.txt b/npc/048-2/visitors.txt old mode 100755 new mode 100644 diff --git a/npc/051-1/desert.txt b/npc/051-1/desert.txt old mode 100755 new mode 100644 diff --git a/npc/051-1/desertmonsters.txt b/npc/051-1/desertmonsters.txt old mode 100755 new mode 100644 diff --git a/npc/051-1/forest.txt b/npc/051-1/forest.txt old mode 100755 new mode 100644 diff --git a/npc/051-1/forestmonsters.txt b/npc/051-1/forestmonsters.txt old mode 100755 new mode 100644 diff --git a/npc/051-1/janitor.txt b/npc/051-1/janitor.txt old mode 100755 new mode 100644 diff --git a/npc/051-1/mapflags.txt b/npc/051-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/051-3/ambush.txt b/npc/051-3/ambush.txt old mode 100755 new mode 100644 diff --git a/npc/051-3/jailslimes.txt b/npc/051-3/jailslimes.txt old mode 100755 new mode 100644 diff --git a/npc/051-3/janitor.txt b/npc/051-3/janitor.txt old mode 100755 new mode 100644 diff --git a/npc/051-3/locks.txt b/npc/051-3/locks.txt old mode 100755 new mode 100644 diff --git a/npc/051-3/mapflags.txt b/npc/051-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/051-3/reinforcements.txt b/npc/051-3/reinforcements.txt old mode 100755 new mode 100644 diff --git a/npc/052-1/channelling.txt b/npc/052-1/channelling.txt old mode 100755 new mode 100644 diff --git a/npc/052-1/janitor.txt b/npc/052-1/janitor.txt old mode 100755 new mode 100644 diff --git a/npc/052-1/mapflags.txt b/npc/052-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/052-2/chest.txt b/npc/052-2/chest.txt old mode 100755 new mode 100644 diff --git a/npc/052-2/janitor.txt b/npc/052-2/janitor.txt old mode 100755 new mode 100644 diff --git a/npc/052-2/lobby.txt b/npc/052-2/lobby.txt old mode 100755 new mode 100644 diff --git a/npc/052-2/mapflags.txt b/npc/052-2/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/052-2/partyroom.txt b/npc/052-2/partyroom.txt old mode 100755 new mode 100644 diff --git a/npc/052-2/storage.txt b/npc/052-2/storage.txt old mode 100755 new mode 100644 diff --git a/npc/055-1/flowerpentagram4.txt b/npc/055-1/flowerpentagram4.txt old mode 100755 new mode 100644 diff --git a/npc/055-1/mapflags.txt b/npc/055-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/055-1/pumpkins.txt b/npc/055-1/pumpkins.txt old mode 100755 new mode 100644 diff --git a/npc/055-1/traveler.txt b/npc/055-1/traveler.txt old mode 100755 new mode 100644 diff --git a/npc/055-3/mapflags.txt b/npc/055-3/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/056-2/barrier.txt b/npc/056-2/barrier.txt old mode 100755 new mode 100644 diff --git a/npc/056-2/mapflags.txt b/npc/056-2/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/056-2/mirak.txt b/npc/056-2/mirak.txt old mode 100755 new mode 100644 diff --git a/npc/056-2/notes.txt b/npc/056-2/notes.txt old mode 100755 new mode 100644 diff --git a/npc/057-1/mapflags.txt b/npc/057-1/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/_import.txt b/npc/_import.txt old mode 100755 new mode 100644 diff --git a/npc/annuals/check_time.txt b/npc/annuals/check_time.txt old mode 100755 new mode 100644 diff --git a/npc/annuals/fathertime.txt b/npc/annuals/fathertime.txt old mode 100755 new mode 100644 diff --git a/npc/annuals/halloween/config.txt b/npc/annuals/halloween/config.txt old mode 100755 new mode 100644 diff --git a/npc/annuals/halloween/debug.txt b/npc/annuals/halloween/debug.txt old mode 100755 new mode 100644 diff --git a/npc/annuals/halloween/munro.txt b/npc/annuals/halloween/munro.txt old mode 100755 new mode 100644 diff --git a/npc/annuals/halloween/trick_or_treat.txt b/npc/annuals/halloween/trick_or_treat.txt old mode 100755 new mode 100644 diff --git a/npc/annuals/tree_beard.txt b/npc/annuals/tree_beard.txt old mode 100755 new mode 100644 diff --git a/npc/annuals/xmas/barriers.txt b/npc/annuals/xmas/barriers.txt old mode 100755 new mode 100644 diff --git a/npc/annuals/xmas/config.txt b/npc/annuals/xmas/config.txt old mode 100755 new mode 100644 diff --git a/npc/annuals/xmas/core.txt b/npc/annuals/xmas/core.txt old mode 100755 new mode 100644 diff --git a/npc/annuals/xmas/debug.txt b/npc/annuals/xmas/debug.txt old mode 100755 new mode 100644 diff --git a/npc/annuals/xmas/helpers.txt b/npc/annuals/xmas/helpers.txt old mode 100755 new mode 100644 diff --git a/npc/annuals/xmas/list.txt b/npc/annuals/xmas/list.txt old mode 100755 new mode 100644 diff --git a/npc/annuals/xmas/mobmanager.txt b/npc/annuals/xmas/mobmanager.txt old mode 100755 new mode 100644 diff --git a/npc/annuals/xmas/reagents.txt b/npc/annuals/xmas/reagents.txt old mode 100755 new mode 100644 diff --git a/npc/annuals/xmas/states.txt b/npc/annuals/xmas/states.txt old mode 100755 new mode 100644 diff --git a/npc/botcheck/mapflags.txt b/npc/botcheck/mapflags.txt old mode 100755 new mode 100644 diff --git a/npc/commands/debug.txt b/npc/commands/debug.txt old mode 100755 new mode 100644 diff --git a/npc/commands/numa.txt b/npc/commands/numa.txt old mode 100755 new mode 100644 diff --git a/npc/functions/DyeConfig.txt b/npc/functions/DyeConfig.txt old mode 100755 new mode 100644 diff --git a/npc/functions/announcements.txt b/npc/functions/announcements.txt old mode 100755 new mode 100644 diff --git a/npc/functions/banker.txt b/npc/functions/banker.txt old mode 100755 new mode 100644 diff --git a/npc/functions/barber.txt b/npc/functions/barber.txt old mode 100755 new mode 100644 diff --git a/npc/functions/clear_vars.txt b/npc/functions/clear_vars.txt old mode 100755 new mode 100644 diff --git a/npc/functions/dailyquest.txt b/npc/functions/dailyquest.txt old mode 100755 new mode 100644 diff --git a/npc/functions/default_npc_checks.txt b/npc/functions/default_npc_checks.txt old mode 100755 new mode 100644 diff --git a/npc/functions/dynamic_menu.txt b/npc/functions/dynamic_menu.txt old mode 100755 new mode 100644 diff --git a/npc/functions/evil_obelisk.txt b/npc/functions/evil_obelisk.txt old mode 100755 new mode 100644 diff --git a/npc/functions/ferry.txt b/npc/functions/ferry.txt old mode 100755 new mode 100644 diff --git a/npc/functions/game_rules.txt b/npc/functions/game_rules.txt old mode 100755 new mode 100644 diff --git a/npc/functions/global_event_handler.txt b/npc/functions/global_event_handler.txt old mode 100755 new mode 100644 diff --git a/npc/functions/gm_island.txt b/npc/functions/gm_island.txt old mode 100755 new mode 100644 diff --git a/npc/functions/headstyles.txt b/npc/functions/headstyles.txt old mode 100755 new mode 100644 diff --git a/npc/functions/inn.txt b/npc/functions/inn.txt old mode 100755 new mode 100644 diff --git a/npc/functions/jesusalvatr.txt b/npc/functions/jesusalvatr.txt old mode 100755 new mode 100644 diff --git a/npc/functions/lockpicking.txt b/npc/functions/lockpicking.txt old mode 100755 new mode 100644 diff --git a/npc/functions/magic.txt b/npc/functions/magic.txt old mode 100755 new mode 100644 diff --git a/npc/functions/mob_points.txt b/npc/functions/mob_points.txt old mode 100755 new mode 100644 diff --git a/npc/functions/motd.txt b/npc/functions/motd.txt old mode 100755 new mode 100644 diff --git a/npc/functions/motdconfig.txt b/npc/functions/motdconfig.txt old mode 100755 new mode 100644 diff --git a/npc/functions/process_equip.txt b/npc/functions/process_equip.txt old mode 100755 new mode 100644 diff --git a/npc/functions/quiz.txt b/npc/functions/quiz.txt old mode 100755 new mode 100644 diff --git a/npc/functions/slot_machine.txt b/npc/functions/slot_machine.txt old mode 100755 new mode 100644 diff --git a/npc/functions/soul_menhir.txt b/npc/functions/soul_menhir.txt old mode 100755 new mode 100644 diff --git a/npc/functions/stat_reset.txt b/npc/functions/stat_reset.txt old mode 100755 new mode 100644 diff --git a/npc/functions/time.txt b/npc/functions/time.txt old mode 100755 new mode 100644 diff --git a/npc/functions/travelers.txt b/npc/functions/travelers.txt old mode 100755 new mode 100644 diff --git a/npc/functions/undead_debug.txt b/npc/functions/undead_debug.txt old mode 100755 new mode 100644 diff --git a/npc/functions/water_bottle.txt b/npc/functions/water_bottle.txt old mode 100755 new mode 100644 diff --git a/npc/items/check_wand.txt b/npc/items/check_wand.txt old mode 100755 new mode 100644 diff --git a/npc/items/launcher_ammo.txt b/npc/items/launcher_ammo.txt old mode 100755 new mode 100644 diff --git a/npc/items/mirror.txt b/npc/items/mirror.txt old mode 100755 new mode 100644 diff --git a/npc/items/pickled_beets.txt b/npc/items/pickled_beets.txt old mode 100755 new mode 100644 diff --git a/npc/items/purification_potion.txt b/npc/items/purification_potion.txt old mode 100755 new mode 100644 diff --git a/npc/items/require_stat.txt b/npc/items/require_stat.txt old mode 100755 new mode 100644 diff --git a/npc/items/restricted_item.txt b/npc/items/restricted_item.txt old mode 100755 new mode 100644 diff --git a/npc/items/rubber_bat.txt b/npc/items/rubber_bat.txt old mode 100755 new mode 100644 diff --git a/npc/items/scissors.txt b/npc/items/scissors.txt old mode 100755 new mode 100644 diff --git a/npc/items/shock_sweet.txt b/npc/items/shock_sweet.txt old mode 100755 new mode 100644 diff --git a/npc/items/unequipcb.txt b/npc/items/unequipcb.txt old mode 100755 new mode 100644 diff --git a/npc/items/unreleased_item.txt b/npc/items/unreleased_item.txt old mode 100755 new mode 100644 diff --git a/npc/items/warpTowels.txt b/npc/items/warpTowels.txt old mode 100755 new mode 100644 diff --git a/npc/pre-re/scripts_main.conf b/npc/pre-re/scripts_main.conf old mode 100644 new mode 100755 -- cgit v1.2.3-70-g09d2 From 7679e5994642ef019d850b92ee74e564fefd2e57 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sat, 10 Apr 2021 11:45:37 -0300 Subject: Cleanup all shops. This makes CI passable! (At least in a real environment) --- db/pre-re/item_db.conf | 4 +-- npc/001-1/north_shops.txt | 41 +++++++++++++++++++++++-- npc/001-2/forge_shops.txt | 37 +++++++++++++++++++++-- npc/002-2/bakery.txt | 20 ++++++++++++- npc/002-2/inya.txt | 12 +++++++- npc/002-2/shops.txt | 18 ++++++++++- npc/002-3/merchant.txt | 19 +++++++++++- npc/006-2/shops.txt | 35 ++++++++++++++++++++-- npc/009-2/peter.txt | 14 ++++++++- npc/009-2/shops.txt | 75 +++++++++++++++++++++++++++++++++++++++++----- npc/009-7/shops.txt | 37 +++++++++++++++++++++-- npc/010-2/dimonds.txt | 61 ++++++++++++++++++++++++++++++++++--- npc/011-1/shops.txt | 18 ++++++++++- npc/012-1/shops.txt | 22 +++++++++++++- npc/020-2/shops.txt | 34 +++++++++++++++++++-- npc/026-2/gy_inn_shops.txt | 69 ++++++++++++++++++++++++++++++++++++++---- npc/029-2/morgan.txt | 15 +++++++++- npc/029-2/two_arms.txt | 33 ++++++++++++++++++-- npc/035-2/shops.txt | 14 ++++++++- npc/036-2/shops.txt | 28 +++++++++++++++-- 20 files changed, 565 insertions(+), 41 deletions(-) (limited to 'npc/029-2') diff --git a/db/pre-re/item_db.conf b/db/pre-re/item_db.conf index d4b46dd2..94f7b83f 100644 --- a/db/pre-re/item_db.conf +++ b/db/pre-re/item_db.conf @@ -190,7 +190,7 @@ item_db: ( AegisName: "ShortBow" Name: "ShortBow" Type: "IT_WEAPON" - Buy: 2000 + Buy: 2500 Sell: 1000 Weight: 600 Atk: 50 @@ -15372,7 +15372,7 @@ item_db: ( AegisName: "PickledBeets" Name: "PickledBeets" Type: "IT_USABLE" - Buy: 100 + Buy: 1500 Sell: 50 Weight: 150 Def: 0 diff --git a/npc/001-1/north_shops.txt b/npc/001-1/north_shops.txt index 88d4c306..36d7df47 100644 --- a/npc/001-1/north_shops.txt +++ b/npc/001-1/north_shops.txt @@ -1,5 +1,42 @@ -001-1,106,105,0 shop Neko NPC101,3006:10,501:25,502:35,533:55,539:87,562:250 -001-1,111,108,0 shop Inar NPC108,1202:5,656:100,586:500,735:500,546:1000,724:500,723:2400 +// The Mana World Script +// (C) Jesusalva, 2021 +// Licensed under GPLv2 or later + +001-1,106,105,0 script Neko NPC101,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem TonoriDelight; + sellitem CactusDrink; + sellitem CactusPotion; + sellitem RoastedMaggot; + sellitem Beer; + sellitem ChickenLeg; + .distance = 5; + end; +} + +001-1,111,108,0 script Inar NPC108,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem CottonShirt; + sellitem SerfHat; + sellitem CottonShorts; + sellitem CottonBoots; + sellitem DesertShirt; + sellitem CottonHeadband; + sellitem DesertHat; + .distance = 5; + end; +} + 001-1,48,79,0 script Well NPC400,{ callfunc "WaterBottle"; end; diff --git a/npc/001-2/forge_shops.txt b/npc/001-2/forge_shops.txt index 0e39af21..cdbece0a 100644 --- a/npc/001-2/forge_shops.txt +++ b/npc/001-2/forge_shops.txt @@ -1,3 +1,36 @@ +// The Mana World Script +// (C) Jesusalva, 2021 +// Licensed under GPLv2 or later + +001-2,30,60,0 script Gungnir NPC311,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem SlingShot; + sellitem SlingBullet; + sellitem ShortBow; + sellitem Arrow; + sellitem IronArrow; + .distance = 5; + end; +} + + +001-2,25,59,0 script Mjolnir NPC377,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Knife; + sellitem SharpKnife; + sellitem Dagger; + sellitem LeatherShield; + .distance = 5; + end; +} -001-2,30,60,0 shop Gungnir NPC311,903:50,904:0,530:8000,1199:1,529:2 -001-2,25,59,0 shop Mjolnir NPC377,1201:25,522:50,521:500,523:1000,603:1000 diff --git a/npc/002-2/bakery.txt b/npc/002-2/bakery.txt index c1e9ebbe..74c5663f 100644 --- a/npc/002-2/bakery.txt +++ b/npc/002-2/bakery.txt @@ -124,7 +124,25 @@ L_End: close; } -002-2,25,22,0 shop Drabur NPC112,736:100,737:125,738:150,739:150,513:15,519:50,534:45,527:150,508:10 +002-2,25,22,0 script Drabur NPC112,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem WhiteCake; + sellitem ChocolateCake; + sellitem OrangeCake; + sellitem AppleCake; + sellitem Cake; + sellitem CherryCake; + sellitem OrangeCupcake; + sellitem Milk; + sellitem XmasCake; + .distance = 5; + end; +} 002-2,21,28,0 script Iormo NPC160,{ mes "[Iormo]"; diff --git a/npc/002-2/inya.txt b/npc/002-2/inya.txt index 787f8a56..aa68fb14 100644 --- a/npc/002-2/inya.txt +++ b/npc/002-2/inya.txt @@ -1,5 +1,15 @@ -002-2,116,61,0 shop #InyaShop NPC32767,4014:2500 +002-2,116,61,0 script #InyaShop NPC32767,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem SimpleRing; + .distance = 5; + end; +} 002-2,116,61,0 script Inya NPC106,{ mes "[Inya]"; diff --git a/npc/002-2/shops.txt b/npc/002-2/shops.txt index 23bb9a57..0054c290 100644 --- a/npc/002-2/shops.txt +++ b/npc/002-2/shops.txt @@ -1,2 +1,18 @@ +// The Mana World Script +// (C) Jesusalva, 2021 +// Licensed under GPLv2 or later + +002-2,68,25,0 script Bartender#Casino NPC112,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Beer; + sellitem Cake; + sellitem CherryCake; + .distance = 5; + end; +} -002-2,68,25,0 shop Bartender#Casino NPC112,539:87,513:15,519:50 diff --git a/npc/002-3/merchant.txt b/npc/002-3/merchant.txt index 9f7c67e9..0b6bebfb 100644 --- a/npc/002-3/merchant.txt +++ b/npc/002-3/merchant.txt @@ -1,2 +1,19 @@ +// The Mana World Script +// (C) Jesusalva, 2021 +// Licensed under GPLv2 or later -002-3,60,47,0 shop Ishyah NPC109,525:400,531:1000,530:8000,1199:2,603:1000 +002-3,60,47,0 script Ishyah NPC109,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem MinersHat; + sellitem MinerGloves; + sellitem ShortBow; + sellitem Arrow, 2; + sellitem LeatherShield; + .distance = 5; + end; +} diff --git a/npc/006-2/shops.txt b/npc/006-2/shops.txt index d7a4766b..9322272b 100644 --- a/npc/006-2/shops.txt +++ b/npc/006-2/shops.txt @@ -1,3 +1,34 @@ -006-2,81,36,0 shop Reathe NPC179,1215:125,654:2500,721:25000,722:15000 +// The Mana World Script +// (C) Jesusalva, 2021 +// Licensed under GPLv2 or later + +006-2,81,36,0 script Reathe NPC179,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem ToySabre; + sellitem Cap; + sellitem HighPriestCrown; + sellitem MonsterSkullHelmet; + .distance = 5; + end; +} + +006-2,30,35,0 script Ardra NPC179,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem CactusDrink; + sellitem CactusPotion; + sellitem BottleOfWater; + sellitem RoastedMaggot; + .distance = 5; + end; +} -006-2,30,35,0 shop Ardra NPC179,501:25,502:35,541:100,533:55 diff --git a/npc/009-2/peter.txt b/npc/009-2/peter.txt index e73740e5..b48ebe4a 100644 --- a/npc/009-2/peter.txt +++ b/npc/009-2/peter.txt @@ -1,4 +1,16 @@ -009-2,183,57,0 shop #PeterShop NPC32767,1201:25,522:50,521:500 +009-2,183,57,0 script #PeterShop NPC32767,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Knife; + sellitem SharpKnife; + sellitem Dagger; + .distance = 5; + end; +} 009-2,183,57,0 script Peter NPC157,{ @peter_chain_mail_coal = 10; diff --git a/npc/009-2/shops.txt b/npc/009-2/shops.txt index a50d2d7a..5269ab9b 100644 --- a/npc/009-2/shops.txt +++ b/npc/009-2/shops.txt @@ -1,4 +1,71 @@ -009-2,65,49,0 shop Barkeeper NPC112,539:87,513:15,676:100 +// The Mana World Script +// (C) Jesusalva, 2021 +// Licensed under GPLv2 or later + +009-2,65,49,0 script Barkeeper NPC112,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Beer; + sellitem Cake; + sellitem Steak; + .distance = 5; + end; +} + +009-2,97,24,0 script Donald NPC120,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem SlingBullet; + sellitem Arrow, 2; + sellitem IronArrow; + sellitem Bow; + sellitem ShortBow, 4000; + .distance = 5; + end; +} + +009-2,123,22,0 script Potions#_M NPC400,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem CactusDrink; + sellitem CactusPotion; + sellitem IronPotion; + sellitem ConcentrationPotion; + sellitem SlowPoisonPotion; + .distance = 5; + end; +} + +009-2,32,99,0 script General Store#hurnscald NPC112,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Milk; + sellitem BottleOfWater; + sellitem CottonShirt; + sellitem CottonShorts; + sellitem Boots; + sellitem SerfHat; + sellitem CottonHeadband; + sellitem CottonGloves; + .distance = 5; + end; +} 009-2,50,48,0 script Receptionist#inn NPC108,{ @npcname$ = "Receptionist"; @@ -6,9 +73,3 @@ callfunc "Inn"; end; } - -009-2,97,24,0 shop Apprentice NPC120,904:0,1199:2,529:2,1200:500,530:4000 - -009-2,123,22,0 shop Potions#_M NPC400,501:25,502:35,567:250,568:250,750:200 - -009-2,32,99,0 shop General Store#hurnscald NPC112,527:150,541:100,1202:5,586:500,528:500,656:100,724:500,741:500 diff --git a/npc/009-7/shops.txt b/npc/009-7/shops.txt index ace80a3c..1d08d55b 100644 --- a/npc/009-7/shops.txt +++ b/npc/009-7/shops.txt @@ -1,3 +1,36 @@ -009-7,34,23,0 shop Bartender#Duels NPC177,539:87,567:250,568:250,541:100,527:150 +// The Mana World Script +// (C) Jesusalva, 2021 +// Licensed under GPLv2 or later + +009-7,34,23,0 script Bartender#Duels NPC177,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Beer; + sellitem IronPotion; + sellitem ConcentrationPotion; + sellitem BottleOfWater; + sellitem Milk; + .distance = 5; + end; +} + +009-7,27,26,0 script Garcon#Duels NPC180,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem RoastedMaggot; + sellitem PickledBeets; + sellitem ChickenLeg; + sellitem Steak; + sellitem Beer; + .distance = 5; + end; +} -009-7,27,26,0 shop Garcon#Duels NPC180,533:55,4035:1500,562:125,676:100,539:87 diff --git a/npc/010-2/dimonds.txt b/npc/010-2/dimonds.txt index 6fcaa1f4..6d3c729c 100644 --- a/npc/010-2/dimonds.txt +++ b/npc/010-2/dimonds.txt @@ -526,13 +526,66 @@ L_close: } -010-2,24,27,0 shop Bartender NPC112,539:87,567:250,568:250 +010-2,24,27,0 script Bartender NPC112,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Beer; + sellitem IronPotion; + sellitem ConcentrationPotion; + .distance = 5; + end; +} + +010-2,32,34,0 script Waitress NPC139,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem CherryCake; + sellitem RoastedMaggot; + sellitem OrangeCupcake; + sellitem ChickenLeg; + sellitem Steak; + .distance = 5; + end; +} + +010-2,85,41,0 script Blacksmith NPC146,{ + shop .name$; + goodbye; + close; -010-2,32,34,0 shop Waitress NPC139,519:50,533:55,534:45,562:125,676:100 +OnInit: + tradertype(NST_ZENY); + sellitem ForestBow; + sellitem IronArrow; + sellitem LeatherShield; + .distance = 5; + end; +} -010-2,85,41,0 shop Blacksmith NPC146,545:5000,529:2,603:1000 +010-2,65,41,0 script General Store#dimond NPC137,{ + shop .name$; + goodbye; + close; -010-2,65,41,0 shop General Store#dimond NPC137,586:500,524:800,544:2000,632:500,528:500,735:500 +OnInit: + tradertype(NST_ZENY); + sellitem CottonShorts; + sellitem FancyHat; + sellitem SilkHeadband; + sellitem CottonSkirt; + sellitem Boots; + sellitem CottonBoots; + .distance = 5; + end; +} 010-2,75,68,0 script Basil NPC107,{ @npcname$ = "Basil the Inn Keeper"; diff --git a/npc/011-1/shops.txt b/npc/011-1/shops.txt index ce409917..8fd551b4 100644 --- a/npc/011-1/shops.txt +++ b/npc/011-1/shops.txt @@ -1,2 +1,18 @@ +// The Mana World Script +// (C) Jesusalva, 2021 +// Licensed under GPLv2 or later + +011-1,80,33,0 script Fruit Store NPC400,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem GreenApple; + sellitem RedApple; + sellitem Orange; + .distance = 5; + end; +} -011-1,80,33,0 shop Fruit Store NPC400,719:5,535:6,657:10 diff --git a/npc/012-1/shops.txt b/npc/012-1/shops.txt index 909e70c6..aa411c97 100644 --- a/npc/012-1/shops.txt +++ b/npc/012-1/shops.txt @@ -1,5 +1,25 @@ -012-1,36,99,0 shop #FlowerShop NPC32767,661:20,664:20,665:20,662:20,667:20,663:20,671:20,673:20,669:20,672:20,674:20 +012-1,36,99,0 script #FlowerShop NPC32767,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem RedRose; + sellitem PinkRose; + sellitem YellowRose; + sellitem WhiteRose; + sellitem OrangeRose; + sellitem DarkRedRose; + sellitem RedTulip; + sellitem PinkTulip; + sellitem YellowTulip; + sellitem WhiteTulip; + sellitem OrangeTulip; + .distance = 5; + end; +} 012-1,36,99,0 script Blossom NPC163,{ mes "[Blossom]"; diff --git a/npc/020-2/shops.txt b/npc/020-2/shops.txt index b940e99f..74a8315d 100644 --- a/npc/020-2/shops.txt +++ b/npc/020-2/shops.txt @@ -10,8 +10,38 @@ mes "\"Well, pleasant journeys and I hope I haven't been too much of a bother. Good chatting with you.\""; close; } -020-2,25,65,0 shop Bracco NPC135,529:2,530:8000,521:500,603:1000 -020-2,75,24,0 shop Mede NPC103,501:25,502:35,567:250,568:250,826:120,827:240,828:480 +020-2,25,65,0 script Bracco NPC135,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem IronArrow; + sellitem ShortBow; + sellitem Dagger; + sellitem LeatherShield; + .distance = 5; + end; +} + +020-2,75,24,0 script Mede NPC103,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem CactusDrink; + sellitem CactusPotion; + sellitem IronPotion; + sellitem ConcentrationPotion; + sellitem SmallManaElixir, 120; + sellitem MediumManaElixir, 240; + sellitem LargeManaElixir, 480; + .distance = 5; + end; +} 020-2,111,23,0 script Kane NPC120,{ @npcname$ = "Kane the Inn Keeper"; diff --git a/npc/026-2/gy_inn_shops.txt b/npc/026-2/gy_inn_shops.txt index 532fe9da..be7f9fcd 100644 --- a/npc/026-2/gy_inn_shops.txt +++ b/npc/026-2/gy_inn_shops.txt @@ -1,6 +1,68 @@ -026-2,30,56,0 shop Chef#graveyard NPC300,784:30,785:25,786:30,787:55 -026-2,38,30,0 shop Estrilda NPC301,788:30,789:30,790:50 +026-2,30,56,0 script Chef#graveyard NPC300,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem ZombieNachos; + sellitem LadyFingers; + sellitem JellAhh; + sellitem Snapple; + .distance = 5; + end; +} + +026-2,38,30,0 script Estrilda NPC301,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem BeetleJuice; + sellitem GutBuster; + sellitem BloodWine; + .distance = 5; + end; +} + +026-2,31,119,0 script Leofwin NPC304,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem CactusDrink; + sellitem CactusPotion; + sellitem BugLeg; + sellitem SmallMushroom; + sellitem IronPotion; + sellitem ConcentrationPotion; + sellitem HardSpike; + sellitem DarkCrystal; + sellitem Root; + sellitem WispPowder; + sellitem SpectrePowder; + sellitem PoltergeistPowder; + .distance = 5; + end; +} + +026-2,22,120,0 script Umfrey NPC302,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem BoneArrows; + sellitem ShockSweet; + .distance = 5; + end; +} 026-2,40,24,0 script Edwin NPC309,{ @npcname$ = "Edwin"; @@ -24,9 +86,6 @@ close; } -026-2,31,119,0 shop Leofwin NPC304,501:25,502:35,518:25,566:50,567:250,568:250,613:10,631:250,740:200,772:350,773:350,774:350 - -026-2,22,120,0 shop Umfrey NPC302,1282:20,1281:500 026-2,25,120,0 script J.P. Morbid NPC321,{ @npcname$ = "J.P. Morbid"; callfunc "Banker"; diff --git a/npc/029-2/morgan.txt b/npc/029-2/morgan.txt index 5c12dfc3..bd45df7e 100644 --- a/npc/029-2/morgan.txt +++ b/npc/029-2/morgan.txt @@ -110,4 +110,17 @@ L_close: close; } -029-2,113,59,0 shop Zitoni NPC103,501:25,502:35,825:50,826:100 +029-2,113,59,0 script Zitoni NPC103,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem CactusDrink; + sellitem CactusPotion; + sellitem TinyManaElixir, 50; + sellitem SmallManaElixir, 100; + .distance = 5; + end; +} diff --git a/npc/029-2/two_arms.txt b/npc/029-2/two_arms.txt index 48dec1cb..f01cf644 100644 --- a/npc/029-2/two_arms.txt +++ b/npc/029-2/two_arms.txt @@ -1,3 +1,32 @@ -029-2,99,25,0 shop Rosen NPC311,903:50,904:0,530:8000,1199:2,529:2 -029-2,112,24,0 shop Toichi NPC377,1201:25,522:50,521:500,523:1000,603:1000 +029-2,99,25,0 script Rosen NPC311,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem SlingShot; + sellitem SlingBullet; + sellitem ShortBow; + sellitem Arrow, 2; + sellitem IronArrow; + .distance = 5; + end; +} + +029-2,112,24,0 script Toichi NPC377,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Knife; + sellitem SharpKnife; + sellitem Dagger; + sellitem LeatherShirt; + sellitem LeatherShield; + .distance = 5; + end; +} diff --git a/npc/035-2/shops.txt b/npc/035-2/shops.txt index 05a2987e..b864996a 100644 --- a/npc/035-2/shops.txt +++ b/npc/035-2/shops.txt @@ -1,5 +1,17 @@ -035-2,23,38,0 shop Cooky NPC213,539:87,657:10,503:10 +035-2,23,38,0 script Cooky NPC213,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Beer; + sellitem Orange; + sellitem CasinoCoins; + .distance = 5; + end; +} 035-2,23,35,0 script Bunkmaster Phict NPC212,{ @npcname$ = "Bunkmaster Phict"; diff --git a/npc/036-2/shops.txt b/npc/036-2/shops.txt index de381bd8..15292e15 100644 --- a/npc/036-2/shops.txt +++ b/npc/036-2/shops.txt @@ -1,6 +1,30 @@ -036-2,23,38,0 shop Chef Armand NPC211,539:87,676:200,503:10 -036-2,35,22,0 shop Gunney NPC138,1199:4,529:4 +036-2,23,38,0 script Chef Armand NPC211,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Beer; + sellitem Steak, 250; + sellitem CasinoCoins; + .distance = 5; + end; +} + +036-2,35,22,0 script Gunney NPC138,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Arrow, 3; + sellitem IronArrow, 4; + .distance = 5; + end; +} 036-2,23,35,0 script Bunkmaster Daban NPC212,{ @npcname$ = "Bunkmaster Daban"; -- cgit v1.2.3-70-g09d2 From 9431abfcaa22101e740ed90186917bf17842fd79 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Tue, 13 Apr 2021 11:52:52 -0300 Subject: Seems like make maps will override the clientdata name with serverdata name... --- npc/001-1/_mobs.txt | 10 +-- npc/001-3/_mobs.txt | 2 +- npc/002-1/_mobs.txt | 26 ++++---- npc/002-4/_mobs.txt | 28 ++++----- npc/002-5/_mobs.txt | 34 +++++----- npc/003-4/_mobs.txt | 12 ++-- npc/004-1/_mobs.txt | 14 ++--- npc/004-3/_mobs.txt | 14 ++--- npc/004-4/_mobs.txt | 18 +++--- npc/004-5/_mobs.txt | 24 +++---- npc/005-3/_mobs.txt | 10 +-- npc/006-1/_mobs.txt | 42 ++++++------- npc/006-3/_mobs.txt | 52 +++++++-------- npc/007-1/_mobs.txt | 18 +++--- npc/008-1/_mobs.txt | 18 +++--- npc/009-1/_mobs.txt | 10 +-- npc/009-3/_mobs.txt | 8 +-- npc/009-4/_mobs.txt | 14 ++--- npc/010-1/_mobs.txt | 26 ++++---- npc/011-1/_mobs.txt | 28 ++++----- npc/011-3/_mobs.txt | 4 +- npc/011-4/_mobs.txt | 14 ++--- npc/011-6/_mobs.txt | 94 +++++++++++++-------------- npc/012-1/_mobs.txt | 22 +++---- npc/012-3/_mobs.txt | 32 +++++----- npc/012-4/_mobs.txt | 128 ++++++++++++++++++------------------- npc/013-1/_mobs.txt | 30 ++++----- npc/013-3/_mobs.txt | 56 ++++++++--------- npc/014-1/_mobs.txt | 32 +++++----- npc/014-3/_mobs.txt | 2 +- npc/015-1/_mobs.txt | 20 +++--- npc/015-3/_mobs.txt | 8 +-- npc/016-1/_mobs.txt | 18 +++--- npc/017-1/_mobs.txt | 36 +++++------ npc/018-1/_mobs.txt | 54 ++++++++-------- npc/018-2/_mobs.txt | 2 +- npc/018-3/_mobs.txt | 46 +++++++------- npc/019-1/_mobs.txt | 8 +-- npc/019-3/_mobs.txt | 4 +- npc/019-4/_mobs.txt | 8 +-- npc/020-1/_mobs.txt | 2 +- npc/020-3/_mobs.txt | 8 +-- npc/021-3/_mobs.txt | 20 +++--- npc/023-1/_mobs.txt | 26 ++++---- npc/023-3/_mobs.txt | 12 ++-- npc/025-1/_mobs.txt | 20 +++--- npc/025-3/_mobs.txt | 8 +-- npc/025-4/_mobs.txt | 4 +- npc/026-1/_mobs.txt | 28 ++++----- npc/027-1/_mobs.txt | 32 +++++----- npc/027-2/_mobs.txt | 8 +-- npc/027-3/_mobs.txt | 16 ++--- npc/027-4/_mobs.txt | 10 +-- npc/027-5/_mobs.txt | 14 ++--- npc/029-1/_mobs.txt | 12 ++-- npc/029-2/_mobs.txt | 2 +- npc/029-4/_mobs.txt | 12 ++-- npc/030-1/_mobs.txt | 8 +-- npc/031-1/_mobs.txt | 8 +-- npc/031-3/_mobs.txt | 178 ++++++++++++++++++++++++++-------------------------- npc/032-3/_mobs.txt | 20 +++--- npc/033-1/_mobs.txt | 8 +-- npc/034-1/_mobs.txt | 12 ++-- npc/041-1/_mobs.txt | 22 +++---- npc/042-1/_mobs.txt | 20 +++--- npc/043-1/_mobs.txt | 6 +- npc/043-3/_mobs.txt | 18 +++--- npc/043-4/_mobs.txt | 44 ++++++------- npc/045-1/_mobs.txt | 30 ++++----- npc/046-1/_mobs.txt | 22 +++---- npc/046-3/_mobs.txt | 30 ++++----- npc/047-1/_mobs.txt | 44 ++++++------- npc/047-3/_mobs.txt | 42 ++++++------- npc/051-1/_mobs.txt | 4 +- npc/051-3/_mobs.txt | 32 +++++----- npc/052-1/_mobs.txt | 2 +- npc/055-1/_mobs.txt | 34 +++++----- npc/055-3/_mobs.txt | 16 ++--- npc/057-1/_mobs.txt | 36 +++++------ 79 files changed, 948 insertions(+), 948 deletions(-) (limited to 'npc/029-2') diff --git a/npc/001-1/_mobs.txt b/npc/001-1/_mobs.txt index 192ea6a5..bc0d50f6 100644 --- a/npc/001-1/_mobs.txt +++ b/npc/001-1/_mobs.txt @@ -1,7 +1,7 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 001-1: Tulimshar Port mobs -001-1,32,59,5,5 monster The GreenSlime 1005,8,100000,30000 -001-1,45,100,5,5 monster The GreenSlime 1005,8,100000,30000 -001-1,37,75,4,17 monster The SeaSlime 1033,8,100000,30000 -001-1,86,84,32,27 monster The Maggot 1002,11,100000,30000 -001-1,86,84,32,27 monster The SeaSlime 1033,8,100000,30000 +001-1,32,59,5,5 monster Green Slime 1005,8,100000,30000 +001-1,45,100,5,5 monster Green Slime 1005,8,100000,30000 +001-1,37,75,4,17 monster Sea Slime 1033,8,100000,30000 +001-1,86,84,32,27 monster Maggot 1002,11,100000,30000 +001-1,86,84,32,27 monster Sea Slime 1033,8,100000,30000 diff --git a/npc/001-3/_mobs.txt b/npc/001-3/_mobs.txt index a347e41d..3fc96876 100644 --- a/npc/001-3/_mobs.txt +++ b/npc/001-3/_mobs.txt @@ -1,3 +1,3 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 001-3: Tulimshar Arena mobs -001-3,0,0,0,0 monster The Maggot 1002,10,0,0 +001-3,0,0,0,0 monster Maggot 1002,10,0,0 diff --git a/npc/002-1/_mobs.txt b/npc/002-1/_mobs.txt index 2ee1797c..353552ca 100644 --- a/npc/002-1/_mobs.txt +++ b/npc/002-1/_mobs.txt @@ -1,15 +1,15 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 002-1: Tulimshar South mobs -002-1,93,62,12,4 monster The Maggot 1002,11,100000,30000 -002-1,112,62,5,4 monster The Maggot 1002,11,100000,30000 -002-1,108,73,5,4 monster The Maggot 1002,11,100000,30000 -002-1,62,28,1,7 monster The Maggot 1002,6,100000,30000 -002-1,74,96,12,16 monster The ScorpionMob 1003,12,100000,30000 -002-1,113,114,5,3 monster The Maggot 1002,11,100000,30000 -002-1,43,61,5,35 monster The ScorpionMob 1003,6,100000,30000 -002-1,70,92,24,9 monster The ScorpionMob 1003,10,100000,30000 -002-1,40,93,9,10 monster The RedScorpionMob 1004,10,100000,30000 -002-1,42,40,4,14 monster The SeaSlime 1033,8,100000,30000 -002-1,33,75,4,20 monster The SeaSlime 1033,8,100000,30000 -002-1,99,62,18,4 monster The ScorpionMob 1003,6,100000,30000 -002-1,73,105,10,10 monster The FireGoblin 1011,6,100000,30000 +002-1,93,62,12,4 monster Maggot 1002,11,100000,30000 +002-1,112,62,5,4 monster Maggot 1002,11,100000,30000 +002-1,108,73,5,4 monster Maggot 1002,11,100000,30000 +002-1,62,28,1,7 monster Maggot 1002,6,100000,30000 +002-1,74,96,12,16 monster Scorpion 1003,12,100000,30000 +002-1,113,114,5,3 monster Maggot 1002,11,100000,30000 +002-1,43,61,5,35 monster Scorpion 1003,6,100000,30000 +002-1,70,92,24,9 monster Scorpion 1003,10,100000,30000 +002-1,40,93,9,10 monster Red Scorpion 1004,10,100000,30000 +002-1,42,40,4,14 monster Sea Slime 1033,8,100000,30000 +002-1,33,75,4,20 monster Sea Slime 1033,8,100000,30000 +002-1,99,62,18,4 monster Scorpion 1003,6,100000,30000 +002-1,73,105,10,10 monster Fire Goblin 1011,6,100000,30000 diff --git a/npc/002-4/_mobs.txt b/npc/002-4/_mobs.txt index 63e94d2f..28c543d4 100644 --- a/npc/002-4/_mobs.txt +++ b/npc/002-4/_mobs.txt @@ -1,16 +1,16 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 002-4: Desert Mines mobs -002-4,39,37,7,5 monster The CaveMaggot 1056,5,100000,30000 -002-4,91,41,8,10 monster The AngryFireGoblin 1108,3,100000,30000 -002-4,71,35,12,8 monster The CaveMaggot 1056,4,100000,30000 -002-4,69,100,4,2 monster The AngryFireGoblin 1108,2,100000,30000 -002-4,68,57,13,12 monster The AngryScorpionMob 1057,5,100000,30000 -002-4,49,58,2,7 monster The AngryScorpionMob 1057,5,100000,30000 -002-4,38,76,7,11 monster The AngryScorpionMob 1057,4,100000,30000 -002-4,58,78,3,8 monster The CaveMaggot 1056,4,100000,30000 -002-4,89,68,5,16 monster The AngryScorpionMob 1057,4,100000,30000 -002-4,84,93,9,8 monster The CaveMaggot 1056,4,100000,30000 -002-4,72,77,10,7 monster The AngryFireGoblin 1108,3,100000,30000 -002-4,67,91,5,6 monster The AngryScorpionMob 1057,4,100000,30000 -002-4,58,95,3,6 monster The CaveMaggot 1056,4,100000,30000 -002-4,63,100,1,2 monster The AngryScorpionMob 1057,3,100000,30000 +002-4,39,37,7,5 monster Cave Maggot 1056,5,100000,30000 +002-4,91,41,8,10 monster Angry Fire Goblin 1108,3,100000,30000 +002-4,71,35,12,8 monster Cave Maggot 1056,4,100000,30000 +002-4,69,100,4,2 monster Angry Fire Goblin 1108,2,100000,30000 +002-4,68,57,13,12 monster Angry Scorpion 1057,5,100000,30000 +002-4,49,58,2,7 monster Angry Scorpion 1057,5,100000,30000 +002-4,38,76,7,11 monster Angry Scorpion 1057,4,100000,30000 +002-4,58,78,3,8 monster Cave Maggot 1056,4,100000,30000 +002-4,89,68,5,16 monster Angry Scorpion 1057,4,100000,30000 +002-4,84,93,9,8 monster Cave Maggot 1056,4,100000,30000 +002-4,72,77,10,7 monster Angry Fire Goblin 1108,3,100000,30000 +002-4,67,91,5,6 monster Angry Scorpion 1057,4,100000,30000 +002-4,58,95,3,6 monster Cave Maggot 1056,4,100000,30000 +002-4,63,100,1,2 monster Angry Scorpion 1057,3,100000,30000 diff --git a/npc/002-5/_mobs.txt b/npc/002-5/_mobs.txt index ecbadd56..8d66439b 100644 --- a/npc/002-5/_mobs.txt +++ b/npc/002-5/_mobs.txt @@ -1,19 +1,19 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 002-5: Deep Desert Mines mobs -002-5,37,89,6,3 monster The AngryFireGoblin 1108,3,100000,30000 -002-5,33,76,1,5 monster The CaveMaggot 1056,3,100000,30000 -002-5,40,68,3,2 monster The AngryScorpionMob 1057,3,100000,30000 -002-5,40,38,9,2 monster The Archant 1060,3,100000,30000 -002-5,56,97,1,2 monster The Archant 1060,1,100000,30000 -002-5,68,100,6,1 monster The YellowSlime 1007,4,100000,30000 -002-5,91,80,0,2 monster The Archant 1060,1,100000,30000 -002-5,89,94,0,2 monster The Archant 1060,1,100000,30000 -002-5,74,78,0,2 monster The Archant 1060,2,100000,30000 -002-5,94,72,1,2 monster The Archant 1060,1,100000,30000 -002-5,90,61,3,1 monster The YellowSlime 1007,1,100000,30000 -002-5,74,35,0,2 monster The Archant 1060,1,100000,30000 -002-5,84,33,0,2 monster The Archant 1060,1,100000,30000 -002-5,84,46,0,2 monster The Archant 1060,1,100000,30000 -002-5,99,38,0,2 monster The Archant 1060,1,100000,30000 -002-5,93,38,4,1 monster The YellowSlime 1007,2,100000,30000 -002-5,62,62,2,21 monster The AngryFireGoblin 1108,3,100000,30000 +002-5,37,89,6,3 monster Angry Fire Goblin 1108,3,100000,30000 +002-5,33,76,1,5 monster Cave Maggot 1056,3,100000,30000 +002-5,40,68,3,2 monster Angry Scorpion 1057,3,100000,30000 +002-5,40,38,9,2 monster Archant 1060,3,100000,30000 +002-5,56,97,1,2 monster Archant 1060,1,100000,30000 +002-5,68,100,6,1 monster Yellow Slime 1007,4,100000,30000 +002-5,91,80,0,2 monster Archant 1060,1,100000,30000 +002-5,89,94,0,2 monster Archant 1060,1,100000,30000 +002-5,74,78,0,2 monster Archant 1060,2,100000,30000 +002-5,94,72,1,2 monster Archant 1060,1,100000,30000 +002-5,90,61,3,1 monster Yellow Slime 1007,1,100000,30000 +002-5,74,35,0,2 monster Archant 1060,1,100000,30000 +002-5,84,33,0,2 monster Archant 1060,1,100000,30000 +002-5,84,46,0,2 monster Archant 1060,1,100000,30000 +002-5,99,38,0,2 monster Archant 1060,1,100000,30000 +002-5,93,38,4,1 monster Yellow Slime 1007,2,100000,30000 +002-5,62,62,2,21 monster Angry Fire Goblin 1108,3,100000,30000 diff --git a/npc/003-4/_mobs.txt b/npc/003-4/_mobs.txt index c53298d1..60145412 100644 --- a/npc/003-4/_mobs.txt +++ b/npc/003-4/_mobs.txt @@ -1,8 +1,8 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 003-4: Beach mobs -003-4,158,68,14,48 monster The GiantMaggot 1006,10,100000,30000 -003-4,0,0,0,0 monster The SeaSlime 1033,15,100000,30000 -003-4,120,31,11,11 monster The SeaSlime 1033,5,100000,30000 -003-4,119,68,52,50 monster The GreenSlime 1005,35,100000,30000 -003-4,134,69,38,35 monster The RedScorpionMob 1004,20,100000,30000 -003-4,35,25,5,1 monster The MountainSnake 1026,1,700000,600000 +003-4,158,68,14,48 monster Giant Maggot 1006,10,100000,30000 +003-4,0,0,0,0 monster Sea Slime 1033,15,100000,30000 +003-4,120,31,11,11 monster Sea Slime 1033,5,100000,30000 +003-4,119,68,52,50 monster Green Slime 1005,35,100000,30000 +003-4,134,69,38,35 monster Red Scorpion 1004,20,100000,30000 +003-4,35,25,5,1 monster Mountain Snake 1026,1,700000,600000 diff --git a/npc/004-1/_mobs.txt b/npc/004-1/_mobs.txt index a6b9b3d1..40b51e2d 100644 --- a/npc/004-1/_mobs.txt +++ b/npc/004-1/_mobs.txt @@ -1,9 +1,9 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 004-1: Beach mobs -004-1,39,57,4,14 monster The SeaSlime 1033,5,100000,30000 -004-1,33,83,4,20 monster The SeaSlime 1033,11,100000,30000 -004-1,28,103,5,7 monster The SeaSlime 1033,7,100000,30000 -004-1,71,104,13,10 monster The GiantMaggot 1006,5,100000,30000 -004-1,76,68,10,24 monster The RedScorpionMob 1004,13,100000,30000 -004-1,68,25,9,5 monster The GiantMaggot 1006,2,100000,30000 -004-1,93,27,1,1 monster The BlackScorpionMob 1009,1,120000,60000 +004-1,39,57,4,14 monster Sea Slime 1033,5,100000,30000 +004-1,33,83,4,20 monster Sea Slime 1033,11,100000,30000 +004-1,28,103,5,7 monster Sea Slime 1033,7,100000,30000 +004-1,71,104,13,10 monster Giant Maggot 1006,5,100000,30000 +004-1,76,68,10,24 monster Red Scorpion 1004,13,100000,30000 +004-1,68,25,9,5 monster Giant Maggot 1006,2,100000,30000 +004-1,93,27,1,1 monster Black Scorpion 1009,1,120000,60000 diff --git a/npc/004-3/_mobs.txt b/npc/004-3/_mobs.txt index 89a3546e..0df35e88 100644 --- a/npc/004-3/_mobs.txt +++ b/npc/004-3/_mobs.txt @@ -1,9 +1,9 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 004-3: Pirate Caves First Floor mobs -004-3,43,72,3,4 monster The Thug 1119,2,100000,30000 -004-3,43,72,3,4 monster The Swashbuckler 1120,1,100000,30000 -004-3,43,72,3,4 monster The Grenadier 1121,1,100000,30000 -004-3,28,69,4,1 monster The Thug 1119,2,100000,30000 -004-3,71,63,3,4 monster The Thug 1119,2,100000,30000 -004-3,39,39,3,1 monster The Swashbuckler 1120,2,100000,30000 -004-3,71,63,3,4 monster The Grenadier 1121,1,100000,30000 +004-3,43,72,3,4 monster Thug 1119,2,100000,30000 +004-3,43,72,3,4 monster Swashbuckler 1120,1,100000,30000 +004-3,43,72,3,4 monster Grenadier 1121,1,100000,30000 +004-3,28,69,4,1 monster Thug 1119,2,100000,30000 +004-3,71,63,3,4 monster Thug 1119,2,100000,30000 +004-3,39,39,3,1 monster Swashbuckler 1120,2,100000,30000 +004-3,71,63,3,4 monster Grenadier 1121,1,100000,30000 diff --git a/npc/004-4/_mobs.txt b/npc/004-4/_mobs.txt index 03ff54ba..9e4a9e43 100644 --- a/npc/004-4/_mobs.txt +++ b/npc/004-4/_mobs.txt @@ -1,11 +1,11 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 004-4: Pirate Caves Second Floor mobs -004-4,36,62,2,10 monster The Grenadier 1121,1,100000,30000 -004-4,37,61,2,10 monster The Swashbuckler 1120,2,100000,30000 -004-4,62,52,6,3 monster The Thug 1119,2,100000,30000 -004-4,34,87,6,3 monster The Thug 1119,2,100000,30000 -004-4,37,62,3,11 monster The Thug 1119,2,100000,30000 -004-4,34,88,5,3 monster The Swashbuckler 1120,2,100000,30000 -004-4,63,52,5,3 monster The Swashbuckler 1120,2,100000,30000 -004-4,62,52,5,2 monster The Grenadier 1121,1,100000,30000 -004-4,34,88,5,2 monster The Grenadier 1121,1,100000,30000 +004-4,36,62,2,10 monster Grenadier 1121,1,100000,30000 +004-4,37,61,2,10 monster Swashbuckler 1120,2,100000,30000 +004-4,62,52,6,3 monster Thug 1119,2,100000,30000 +004-4,34,87,6,3 monster Thug 1119,2,100000,30000 +004-4,37,62,3,11 monster Thug 1119,2,100000,30000 +004-4,34,88,5,3 monster Swashbuckler 1120,2,100000,30000 +004-4,63,52,5,3 monster Swashbuckler 1120,2,100000,30000 +004-4,62,52,5,2 monster Grenadier 1121,1,100000,30000 +004-4,34,88,5,2 monster Grenadier 1121,1,100000,30000 diff --git a/npc/004-5/_mobs.txt b/npc/004-5/_mobs.txt index e033bef0..f8fd77fb 100644 --- a/npc/004-5/_mobs.txt +++ b/npc/004-5/_mobs.txt @@ -1,14 +1,14 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 004-5: Pirate Den mobs -004-5,41,70,3,2 monster The Grenadier 1121,1,100000,30000 -004-5,41,70,3,1 monster The Swashbuckler 1120,2,100000,30000 -004-5,40,70,4,1 monster The Thug 1119,2,100000,30000 -004-5,35,86,3,2 monster The Grenadier 1121,1,100000,30000 -004-5,34,86,4,1 monster The Thug 1119,2,100000,30000 -004-5,35,86,3,1 monster The Swashbuckler 1120,2,100000,30000 -004-5,54,38,3,2 monster The Grenadier 1121,1,100000,30000 -004-5,53,38,4,1 monster The Thug 1119,2,100000,30000 -004-5,54,38,3,1 monster The Swashbuckler 1120,2,100000,30000 -004-5,81,38,3,2 monster The Grenadier 1121,1,100000,30000 -004-5,80,38,4,1 monster The Thug 1119,2,100000,30000 -004-5,81,38,3,1 monster The Swashbuckler 1120,2,100000,30000 +004-5,41,70,3,2 monster Grenadier 1121,1,100000,30000 +004-5,41,70,3,1 monster Swashbuckler 1120,2,100000,30000 +004-5,40,70,4,1 monster Thug 1119,2,100000,30000 +004-5,35,86,3,2 monster Grenadier 1121,1,100000,30000 +004-5,34,86,4,1 monster Thug 1119,2,100000,30000 +004-5,35,86,3,1 monster Swashbuckler 1120,2,100000,30000 +004-5,54,38,3,2 monster Grenadier 1121,1,100000,30000 +004-5,53,38,4,1 monster Thug 1119,2,100000,30000 +004-5,54,38,3,1 monster Swashbuckler 1120,2,100000,30000 +004-5,81,38,3,2 monster Grenadier 1121,1,100000,30000 +004-5,80,38,4,1 monster Thug 1119,2,100000,30000 +004-5,81,38,3,1 monster Swashbuckler 1120,2,100000,30000 diff --git a/npc/005-3/_mobs.txt b/npc/005-3/_mobs.txt index c3efd8f8..ec889d0c 100644 --- a/npc/005-3/_mobs.txt +++ b/npc/005-3/_mobs.txt @@ -1,7 +1,7 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 005-3: Snake Pit mobs -005-3,59,63,24,28 monster The Snake 1010,50,100000,30000 -005-3,56,64,26,24 monster The BlackScorpionMob 1009,15,100000,30000 -005-3,59,68,29,21 monster The GiantMaggot 1006,20,100000,30000 -005-3,95,52,5,30 monster The Troll 1054,7,100000,30000 -005-3,53,26,32,6 monster The Troll 1054,5,100000,30000 +005-3,59,63,24,28 monster Snake 1010,50,100000,30000 +005-3,56,64,26,24 monster Black Scorpion 1009,15,100000,30000 +005-3,59,68,29,21 monster Giant Maggot 1006,20,100000,30000 +005-3,95,52,5,30 monster Troll 1054,7,100000,30000 +005-3,53,26,32,6 monster Troll 1054,5,100000,30000 diff --git a/npc/006-1/_mobs.txt b/npc/006-1/_mobs.txt index 9b0d5cf1..77463890 100644 --- a/npc/006-1/_mobs.txt +++ b/npc/006-1/_mobs.txt @@ -1,23 +1,23 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 006-1: Desert Mountains mobs -006-1,49,52,3,1 monster The Snake 1010,1,100000,30000 -006-1,53,36,8,6 monster The MountainSnake 1026,3,150000,10000 -006-1,89,26,16,6 monster The MountainSnake 1026,5,15000,75000 -006-1,113,41,6,18 monster The MountainSnake 1026,8,15000,75000 -006-1,113,51,3,1 monster The MountainSnake 1026,3,15000,75000 -006-1,86,46,14,2 monster The MountainSnake 1026,3,15000,75000 -006-1,105,73,10,7 monster The MountainSnake 1026,3,15000,75000 -006-1,73,102,4,6 monster The MountainSnake 1026,4,15000,75000 -006-1,104,100,5,7 monster The MountainSnake 1026,8,15000,75000 -006-1,82,72,12,8 monster The MountainSnake 1026,8,15000,75000 -006-1,95,114,8,2 monster The MountainSnake 1026,5,15000,75000 -006-1,57,119,9,1 monster The MountainSnake 1026,4,15000,75000 -006-1,33,97,13,16 monster The ScorpionMob 1003,10,100000,30000 -006-1,58,49,1,1 monster The GreenSlime 1005,3,100000,30000 -006-1,34,50,2,2 monster The Snake 1010,2,40000,50000 -006-1,96,92,10,24 monster The Snake 1010,2,40000,50000 -006-1,35,97,14,14 monster The Maggot 1002,20,100000,30000 -006-1,28,73,1,1 monster The GreenSlime 1005,2,100000,30000 -006-1,33,59,1,1 monster The GreenSlime 1005,2,100000,30000 -006-1,37,73,3,1 monster The Snake 1010,1,100000,30000 -006-1,100,36,19,12 monster The Snake 1010,2,40000,50000 +006-1,49,52,3,1 monster Snake 1010,1,100000,30000 +006-1,53,36,8,6 monster Mountain Snake 1026,3,150000,10000 +006-1,89,26,16,6 monster Mountain Snake 1026,5,15000,75000 +006-1,113,41,6,18 monster Mountain Snake 1026,8,15000,75000 +006-1,113,51,3,1 monster Mountain Snake 1026,3,15000,75000 +006-1,86,46,14,2 monster Mountain Snake 1026,3,15000,75000 +006-1,105,73,10,7 monster Mountain Snake 1026,3,15000,75000 +006-1,73,102,4,6 monster Mountain Snake 1026,4,15000,75000 +006-1,104,100,5,7 monster Mountain Snake 1026,8,15000,75000 +006-1,82,72,12,8 monster Mountain Snake 1026,8,15000,75000 +006-1,95,114,8,2 monster Mountain Snake 1026,5,15000,75000 +006-1,57,119,9,1 monster Mountain Snake 1026,4,15000,75000 +006-1,33,97,13,16 monster Scorpion 1003,10,100000,30000 +006-1,58,49,1,1 monster Green Slime 1005,3,100000,30000 +006-1,34,50,2,2 monster Snake 1010,2,40000,50000 +006-1,96,92,10,24 monster Snake 1010,2,40000,50000 +006-1,35,97,14,14 monster Maggot 1002,20,100000,30000 +006-1,28,73,1,1 monster Green Slime 1005,2,100000,30000 +006-1,33,59,1,1 monster Green Slime 1005,2,100000,30000 +006-1,37,73,3,1 monster Snake 1010,1,100000,30000 +006-1,100,36,19,12 monster Snake 1010,2,40000,50000 diff --git a/npc/006-3/_mobs.txt b/npc/006-3/_mobs.txt index 0e7e3c94..66280c42 100644 --- a/npc/006-3/_mobs.txt +++ b/npc/006-3/_mobs.txt @@ -1,28 +1,28 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 006-3: Desert Mountain Cave mobs -006-3,108,25,18,4 monster The MountainSnake 1026,3,15000,90000 -006-3,99,50,7,6 monster The MountainSnake 1026,1,15000,90000 -006-3,89,63,7,5 monster The MountainSnake 1026,2,15000,90000 -006-3,86,90,14,4 monster The MountainSnake 1026,3,15000,90000 -006-3,109,78,6,4 monster The MountainSnake 1026,1,15000,90000 -006-3,119,117,7,7 monster The MountainSnake 1026,4,15000,90000 -006-3,106,64,7,8 monster The MountainSnake 1026,3,15000,90000 -006-3,65,71,15,17 monster The MountainSnake 1026,10,15000,90000 -006-3,57,105,13,15 monster The MountainSnake 1026,8,15000,90000 -006-3,73,120,8,2 monster The MountainSnake 1026,3,15000,90000 -006-3,117,54,5,4 monster The MountainSnake 1026,4,15000,90000 -006-3,123,62,5,2 monster The MountainSnake 1026,3,15000,90000 -006-3,72,36,12,12 monster The MountainSnake 1026,10,15000,90000 -006-3,84,27,2,3 monster The MountainSnake 1026,1,15000,90000 -006-3,40,40,18,14 monster The MountainSnake 1026,8,15000,90000 -006-3,34,60,13,5 monster The MountainSnake 1026,3,15000,90000 -006-3,87,74,13,4 monster The RedSlime 1008,3,15000,10000 -006-3,120,76,4,10 monster The RedSlime 1008,3,15000,10000 -006-3,101,85,7,4 monster The RedSlime 1008,4,15000,10000 -006-3,44,124,14,3 monster The MountainSnake 1026,5,15000,90000 -006-3,90,125,8,3 monster The MountainSnake 1026,5,15000,90000 -006-3,30,88,6,10 monster The RedSlime 1008,3,90000,30000 -006-3,122,98,5,8 monster The Spider 1012,3,90000,30000 -006-3,112,104,3,6 monster The Spider 1012,1,90000,30000 -006-3,103,108,4,4 monster The Spider 1012,1,90000,30000 -006-3,83,107,6,7 monster The YellowSlime 1007,6,90000,30000 +006-3,108,25,18,4 monster Mountain Snake 1026,3,15000,90000 +006-3,99,50,7,6 monster Mountain Snake 1026,1,15000,90000 +006-3,89,63,7,5 monster Mountain Snake 1026,2,15000,90000 +006-3,86,90,14,4 monster Mountain Snake 1026,3,15000,90000 +006-3,109,78,6,4 monster Mountain Snake 1026,1,15000,90000 +006-3,119,117,7,7 monster Mountain Snake 1026,4,15000,90000 +006-3,106,64,7,8 monster Mountain Snake 1026,3,15000,90000 +006-3,65,71,15,17 monster Mountain Snake 1026,10,15000,90000 +006-3,57,105,13,15 monster Mountain Snake 1026,8,15000,90000 +006-3,73,120,8,2 monster Mountain Snake 1026,3,15000,90000 +006-3,117,54,5,4 monster Mountain Snake 1026,4,15000,90000 +006-3,123,62,5,2 monster Mountain Snake 1026,3,15000,90000 +006-3,72,36,12,12 monster Mountain Snake 1026,10,15000,90000 +006-3,84,27,2,3 monster Mountain Snake 1026,1,15000,90000 +006-3,40,40,18,14 monster Mountain Snake 1026,8,15000,90000 +006-3,34,60,13,5 monster Mountain Snake 1026,3,15000,90000 +006-3,87,74,13,4 monster Red Slime 1008,3,15000,10000 +006-3,120,76,4,10 monster Red Slime 1008,3,15000,10000 +006-3,101,85,7,4 monster Red Slime 1008,4,15000,10000 +006-3,44,124,14,3 monster Mountain Snake 1026,5,15000,90000 +006-3,90,125,8,3 monster Mountain Snake 1026,5,15000,90000 +006-3,30,88,6,10 monster Red Slime 1008,3,90000,30000 +006-3,122,98,5,8 monster Spider 1012,3,90000,30000 +006-3,112,104,3,6 monster Spider 1012,1,90000,30000 +006-3,103,108,4,4 monster Spider 1012,1,90000,30000 +006-3,83,107,6,7 monster Yellow Slime 1007,6,90000,30000 diff --git a/npc/007-1/_mobs.txt b/npc/007-1/_mobs.txt index 537cae55..b7b12d7a 100644 --- a/npc/007-1/_mobs.txt +++ b/npc/007-1/_mobs.txt @@ -1,11 +1,11 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 007-1: Woodland mobs -007-1,0,0,0,0 monster The PinkFlower 1014,17,100000,30000 -007-1,0,0,0,0 monster The SpikyMushroom 1019,15,100000,30000 -007-1,0,0,0,0 monster The Snail 1041,25,100000,30000 -007-1,0,0,0,0 monster The MauvePlant 1029,3,270000,180000 -007-1,0,0,0,0 monster The GambogePlant 1031,1,2700000,1800000 -007-1,0,0,0,0 monster The Silkworm 1035,2,60000,30000 -007-1,0,0,0,0 monster The CloverPatch 1037,2,0,1000 -007-1,0,0,0,0 monster The Squirrel 1038,25,30,20 -007-1,0,0,0,0 monster The Butterfly 1055,10,30,20 +007-1,0,0,0,0 monster Pink Flower 1014,17,100000,30000 +007-1,0,0,0,0 monster Spiky Mushroom 1019,15,100000,30000 +007-1,0,0,0,0 monster Snail 1041,25,100000,30000 +007-1,0,0,0,0 monster Mauve Plant 1029,3,270000,180000 +007-1,0,0,0,0 monster Gamboge Plant 1031,1,2700000,1800000 +007-1,0,0,0,0 monster Silkworm 1035,2,60000,30000 +007-1,0,0,0,0 monster Clover Patch 1037,2,0,1000 +007-1,0,0,0,0 monster Squirrel 1038,25,30,20 +007-1,0,0,0,0 monster Butterfly 1055,10,30,20 diff --git a/npc/008-1/_mobs.txt b/npc/008-1/_mobs.txt index cf2d39cf..aef0c946 100644 --- a/npc/008-1/_mobs.txt +++ b/npc/008-1/_mobs.txt @@ -1,11 +1,11 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 008-1: Hurnscald Outskirts mobs -008-1,0,0,0,0 monster The PinkFlower 1014,10,0,0 -008-1,0,0,0,0 monster The Pinkie 1018,18,0,0 -008-1,0,0,0,0 monster The ManaBug 1131,18,0,0 -008-1,0,0,0,0 monster The Maggot 1002,30,0,0 -008-1,0,0,0,0 monster The MauvePlant 1029,2,270000,180000 -008-1,0,0,0,0 monster The Silkworm 1035,2,60000,30000 -008-1,0,0,0,0 monster The CloverPatch 1037,2,0,1000 -008-1,0,0,0,0 monster The Squirrel 1038,10,30,20 -008-1,0,0,0,0 monster The Butterfly 1055,10,30,20 +008-1,0,0,0,0 monster Pink Flower 1014,10,0,0 +008-1,0,0,0,0 monster Pinkie 1018,18,0,0 +008-1,0,0,0,0 monster Mana Bug 1131,18,0,0 +008-1,0,0,0,0 monster Maggot 1002,30,0,0 +008-1,0,0,0,0 monster Mauve Plant 1029,2,270000,180000 +008-1,0,0,0,0 monster Silkworm 1035,2,60000,30000 +008-1,0,0,0,0 monster Clover Patch 1037,2,0,1000 +008-1,0,0,0,0 monster Squirrel 1038,10,30,20 +008-1,0,0,0,0 monster Butterfly 1055,10,30,20 diff --git a/npc/009-1/_mobs.txt b/npc/009-1/_mobs.txt index 50e1a5f8..7c53d786 100644 --- a/npc/009-1/_mobs.txt +++ b/npc/009-1/_mobs.txt @@ -1,7 +1,7 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 009-1: Hurnscald mobs -009-1,74,32,1,0 monster The CloverPatch 1037,1,100000,120000 -009-1,29,44,4,6 monster The PinkFlower 1014,2,0,250 -009-1,88,51,7,2 monster The Squirrel 1038,2,0,5000 -009-1,80,38,2,2 monster The Squirrel 1038,1,0,5000 -009-1,0,0,0,0 monster The Butterfly 1055,5,30,20 +009-1,74,32,1,0 monster Clover Patch 1037,1,100000,120000 +009-1,29,44,4,6 monster Pink Flower 1014,2,0,250 +009-1,88,51,7,2 monster Squirrel 1038,2,0,5000 +009-1,80,38,2,2 monster Squirrel 1038,1,0,5000 +009-1,0,0,0,0 monster Butterfly 1055,5,30,20 diff --git a/npc/009-3/_mobs.txt b/npc/009-3/_mobs.txt index dddd0b78..4c43b675 100644 --- a/npc/009-3/_mobs.txt +++ b/npc/009-3/_mobs.txt @@ -1,6 +1,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 009-3: Hurnscald Cave mobs -009-3,0,0,0,0 monster The YellowSlime 1007,20,0,0 -009-3,62,75,62,75 monster The BlackScorpionMob 1009,25,0,0 -009-3,63,75,63,75 monster The RedSlime 1008,35,0,0 -009-3,145,75,55,75 monster The CaveMaggot 1056,20,100000,30000 +009-3,0,0,0,0 monster Yellow Slime 1007,20,0,0 +009-3,62,75,62,75 monster Black Scorpion 1009,25,0,0 +009-3,63,75,63,75 monster Red Slime 1008,35,0,0 +009-3,145,75,55,75 monster Cave Maggot 1056,20,100000,30000 diff --git a/npc/009-4/_mobs.txt b/npc/009-4/_mobs.txt index 35a3c3eb..1ea86fb8 100644 --- a/npc/009-4/_mobs.txt +++ b/npc/009-4/_mobs.txt @@ -1,9 +1,9 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 009-4: Orum Caves mobs -009-4,117,97,12,7 monster The Silkworm 1035,3,20000,14000 -009-4,115,98,12,7 monster The CaveSnake 1021,5,20000,14000 -009-4,103,28,12,7 monster The CaveSnake 1021,3,20000,14000 -009-4,106,27,12,7 monster The Silkworm 1035,3,20000,14000 -009-4,119,45,6,5 monster The Silkworm 1035,3,20000,14000 -009-4,72,130,12,7 monster The Maggot 1002,3,20000,14000 -009-4,38,116,12,7 monster The Maggot 1002,3,20000,14000 +009-4,117,97,12,7 monster Silkworm 1035,3,20000,14000 +009-4,115,98,12,7 monster Cave Snake 1021,5,20000,14000 +009-4,103,28,12,7 monster Cave Snake 1021,3,20000,14000 +009-4,106,27,12,7 monster Silkworm 1035,3,20000,14000 +009-4,119,45,6,5 monster Silkworm 1035,3,20000,14000 +009-4,72,130,12,7 monster Maggot 1002,3,20000,14000 +009-4,38,116,12,7 monster Maggot 1002,3,20000,14000 diff --git a/npc/010-1/_mobs.txt b/npc/010-1/_mobs.txt index 3604e0cf..a379be76 100644 --- a/npc/010-1/_mobs.txt +++ b/npc/010-1/_mobs.txt @@ -1,15 +1,15 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 010-1: Woodland mobs -010-1,82,63,9,9 monster The ScorpionMob 1003,1,100000,30000 -010-1,49,71,15,9 monster The SpikyMushroom 1019,1,100000,30000 -010-1,0,0,0,0 monster The PinkFlower 1014,30,0,0 -010-1,0,0,0,0 monster The Snail 1041,20,0,0 -010-1,0,0,0,0 monster The SpikyMushroom 1019,45,0,0 -010-1,0,0,0,0 monster The LogHead 1025,40,0,0 -010-1,0,0,0,0 monster The Mouboo 1028,15,0,10 -010-1,0,0,0,0 monster The MauvePlant 1029,3,270000,180000 -010-1,0,0,0,0 monster The CobaltPlant 1030,1,2700000,1800000 -010-1,0,0,0,0 monster The Silkworm 1035,2,60000,30000 -010-1,0,0,0,0 monster The CloverPatch 1037,2,0,1000 -010-1,0,0,0,0 monster The Squirrel 1038,25,30,20 -010-1,0,0,0,0 monster The Butterfly 1055,10,30,20 +010-1,82,63,9,9 monster Scorpion 1003,1,100000,30000 +010-1,49,71,15,9 monster Spiky Mushroom 1019,1,100000,30000 +010-1,0,0,0,0 monster Pink Flower 1014,30,0,0 +010-1,0,0,0,0 monster Snail 1041,20,0,0 +010-1,0,0,0,0 monster Spiky Mushroom 1019,45,0,0 +010-1,0,0,0,0 monster Log Head 1025,40,0,0 +010-1,0,0,0,0 monster Mouboo 1028,15,0,10 +010-1,0,0,0,0 monster Mauve Plant 1029,3,270000,180000 +010-1,0,0,0,0 monster Cobalt Plant 1030,1,2700000,1800000 +010-1,0,0,0,0 monster Silkworm 1035,2,60000,30000 +010-1,0,0,0,0 monster Clover Patch 1037,2,0,1000 +010-1,0,0,0,0 monster Squirrel 1038,25,30,20 +010-1,0,0,0,0 monster Butterfly 1055,10,30,20 diff --git a/npc/011-1/_mobs.txt b/npc/011-1/_mobs.txt index 6d259d6e..bae60087 100644 --- a/npc/011-1/_mobs.txt +++ b/npc/011-1/_mobs.txt @@ -1,16 +1,16 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 011-1: Woodland mobs -011-1,0,0,0,0 monster The EvilMushroom 1013,30,0,0 -011-1,0,0,0,0 monster The PinkFlower 1014,20,0,0 -011-1,0,0,0,0 monster The SpikyMushroom 1019,5,0,0 -011-1,0,0,0,0 monster The Snail 1041,1,0,0 -011-1,0,0,0,0 monster The Mouboo 1028,5,0,10 -011-1,0,0,0,0 monster The MauvePlant 1029,3,270000,180000 -011-1,0,0,0,0 monster The AlizarinPlant 1032,1,2700000,1800000 -011-1,0,0,0,0 monster The Silkworm 1035,2,60000,30000 -011-1,0,0,0,0 monster The CloverPatch 1037,2,0,1000 -011-1,0,0,0,0 monster The Squirrel 1038,25,30,20 -011-1,0,0,0,0 monster The Butterfly 1055,10,30,20 -011-1,0,0,0,0 monster The Mouboo 1028,5,0,10 -011-1,1,1,0,0 monster The ManaBug 1131,18,0,0 -011-1,92,44,17,14 monster The Maggot 1002,10,0,0 +011-1,0,0,0,0 monster Evil Mushroom 1013,30,0,0 +011-1,0,0,0,0 monster Pink Flower 1014,20,0,0 +011-1,0,0,0,0 monster Spiky Mushroom 1019,5,0,0 +011-1,0,0,0,0 monster Snail 1041,1,0,0 +011-1,0,0,0,0 monster Mouboo 1028,5,0,10 +011-1,0,0,0,0 monster Mauve Plant 1029,3,270000,180000 +011-1,0,0,0,0 monster Alizarin Plant 1032,1,2700000,1800000 +011-1,0,0,0,0 monster Silkworm 1035,2,60000,30000 +011-1,0,0,0,0 monster Clover Patch 1037,2,0,1000 +011-1,0,0,0,0 monster Squirrel 1038,25,30,20 +011-1,0,0,0,0 monster Butterfly 1055,10,30,20 +011-1,0,0,0,0 monster Mouboo 1028,5,0,10 +011-1,1,1,0,0 monster Mana Bug 1131,18,0,0 +011-1,92,44,17,14 monster Maggot 1002,10,0,0 diff --git a/npc/011-3/_mobs.txt b/npc/011-3/_mobs.txt index e489f029..c3607aac 100644 --- a/npc/011-3/_mobs.txt +++ b/npc/011-3/_mobs.txt @@ -1,4 +1,4 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 011-3: Hermit's Cave mobs -011-3,0,0,0,0 monster The Bat 1017,10,0,0 -011-3,0,0,0,0 monster The Silkworm 1035,3,60000,30000 +011-3,0,0,0,0 monster Bat 1017,10,0,0 +011-3,0,0,0,0 monster Silkworm 1035,3,60000,30000 diff --git a/npc/011-4/_mobs.txt b/npc/011-4/_mobs.txt index 1d7d168a..f8a67a22 100644 --- a/npc/011-4/_mobs.txt +++ b/npc/011-4/_mobs.txt @@ -1,9 +1,9 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 011-4: Lake Cave mobs -011-4,52,30,19,19 monster The SpikyMushroom 1019,1,100000,30000 -011-4,93,114,19,19 monster The CaveSnake 1021,1,100000,30000 -011-4,0,0,0,0 monster The CaveSnake 1021,40,0,0 -011-4,0,0,0,0 monster The SpikyMushroom 1019,15,0,0 -011-4,60,78,28,37 monster The CaveMaggot 1056,10,100000,30000 -011-4,63,21,55,17 monster The CaveMaggot 1056,10,100000,30000 -011-4,0,0,0,0 monster The Bat 1017,20,180000,40000 +011-4,52,30,19,19 monster Spiky Mushroom 1019,1,100000,30000 +011-4,93,114,19,19 monster Cave Snake 1021,1,100000,30000 +011-4,0,0,0,0 monster Cave Snake 1021,40,0,0 +011-4,0,0,0,0 monster Spiky Mushroom 1019,15,0,0 +011-4,60,78,28,37 monster Cave Maggot 1056,10,100000,30000 +011-4,63,21,55,17 monster Cave Maggot 1056,10,100000,30000 +011-4,0,0,0,0 monster Bat 1017,20,180000,40000 diff --git a/npc/011-6/_mobs.txt b/npc/011-6/_mobs.txt index 948bae04..21079b11 100644 --- a/npc/011-6/_mobs.txt +++ b/npc/011-6/_mobs.txt @@ -1,49 +1,49 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 011-6: Bandit Cave mobs -011-6,152,72,141,63 monster The Silkworm 1035,9,30000,100000 -011-6,263,38,15,17 monster The Bandit 1064,1,30000,30000 -011-6,262,114,19,19 monster The Bandit 1064,1,30000,30000 -011-6,132,119,8,10 monster The Bandit 1064,1,30000,30000 -011-6,170,66,8,10 monster The Bandit 1064,1,30000,30000 -011-6,67,70,8,10 monster The Bandit 1064,1,30000,30000 -011-6,196,107,8,10 monster The Bandit 1064,1,30000,30000 -011-6,196,29,8,10 monster The Bandit 1064,1,30000,30000 -011-6,36,37,8,10 monster The Bandit 1064,1,30000,30000 -011-6,112,40,22,24 monster The Bandit 1064,2,30000,60000 -011-6,31,99,8,10 monster The Bandit 1064,1,30000,30000 -011-6,223,250,61,32 monster The Bat 1017,5,30000,100000 -011-6,224,175,59,12 monster The Bat 1017,3,30000,100000 -011-6,257,77,2,63 monster The Bat 1017,6,30000,100000 -011-6,192,77,2,63 monster The Bat 1017,9,30000,100000 -011-6,167,110,43,6 monster The Bat 1017,9,30000,100000 -011-6,75,70,52,48 monster The Bat 1017,23,30000,100000 -011-6,78,195,64,48 monster The Bat 1017,9,30000,100000 -011-6,168,109,18,18 monster The SpikyMushroom 1019,5,30000,100000 -011-6,199,76,18,18 monster The SpikyMushroom 1019,5,30000,100000 -011-6,88,163,14,13 monster The SpikyMushroom 1019,5,30000,100000 -011-6,48,113,17,9 monster The SpikyMushroom 1019,5,30000,100000 -011-6,177,94,10,14 monster The EvilMushroom 1013,4,30000,100000 -011-6,194,49,10,14 monster The EvilMushroom 1013,2,30000,100000 -011-6,51,115,23,12 monster The EvilMushroom 1013,2,30000,100000 -011-6,63,169,6,8 monster The EvilMushroom 1013,2,30000,100000 -011-6,100,226,14,7 monster The SpikyMushroom 1019,3,30000,100000 -011-6,260,44,26,8 monster The SpikyMushroom 1019,3,30000,100000 -011-6,272,48,10,14 monster The EvilMushroom 1013,2,30000,100000 -011-6,95,78,15,12 monster The YellowSlime 1007,5,30000,100000 -011-6,59,36,9,12 monster The YellowSlime 1007,5,30000,100000 -011-6,26,69,9,12 monster The YellowSlime 1007,5,30000,100000 -011-6,61,101,7,5 monster The YellowSlime 1007,3,30000,100000 -011-6,50,61,4,6 monster The YellowSlime 1007,3,30000,100000 -011-6,128,39,4,6 monster The YellowSlime 1007,3,30000,100000 -011-6,41,178,4,6 monster The YellowSlime 1007,1,30000,100000 -011-6,70,229,4,6 monster The YellowSlime 1007,1,30000,100000 -011-6,20,204,4,6 monster The YellowSlime 1007,1,30000,100000 -011-6,114,190,4,6 monster The YellowSlime 1007,4,30000,100000 -011-6,137,205,4,6 monster The YellowSlime 1007,2,30000,100000 -011-6,79,220,14,7 monster The CaveSnake 1021,3,30000,100000 -011-6,115,210,14,7 monster The CaveSnake 1021,3,30000,100000 -011-6,41,193,15,15 monster The CaveSnake 1021,3,30000,100000 -011-6,70,143,15,15 monster The CaveSnake 1021,3,30000,100000 -011-6,97,183,14,7 monster The CaveSnake 1021,3,30000,100000 -011-6,172,252,4,6 monster The CaveMaggot 1056,4,30000,100000 -011-6,263,236,8,2 monster The CaveMaggot 1056,3,30000,100000 +011-6,152,72,141,63 monster Silkworm 1035,9,30000,100000 +011-6,263,38,15,17 monster Bandit 1064,1,30000,30000 +011-6,262,114,19,19 monster Bandit 1064,1,30000,30000 +011-6,132,119,8,10 monster Bandit 1064,1,30000,30000 +011-6,170,66,8,10 monster Bandit 1064,1,30000,30000 +011-6,67,70,8,10 monster Bandit 1064,1,30000,30000 +011-6,196,107,8,10 monster Bandit 1064,1,30000,30000 +011-6,196,29,8,10 monster Bandit 1064,1,30000,30000 +011-6,36,37,8,10 monster Bandit 1064,1,30000,30000 +011-6,112,40,22,24 monster Bandit 1064,2,30000,60000 +011-6,31,99,8,10 monster Bandit 1064,1,30000,30000 +011-6,223,250,61,32 monster Bat 1017,5,30000,100000 +011-6,224,175,59,12 monster Bat 1017,3,30000,100000 +011-6,257,77,2,63 monster Bat 1017,6,30000,100000 +011-6,192,77,2,63 monster Bat 1017,9,30000,100000 +011-6,167,110,43,6 monster Bat 1017,9,30000,100000 +011-6,75,70,52,48 monster Bat 1017,23,30000,100000 +011-6,78,195,64,48 monster Bat 1017,9,30000,100000 +011-6,168,109,18,18 monster Spiky Mushroom 1019,5,30000,100000 +011-6,199,76,18,18 monster Spiky Mushroom 1019,5,30000,100000 +011-6,88,163,14,13 monster Spiky Mushroom 1019,5,30000,100000 +011-6,48,113,17,9 monster Spiky Mushroom 1019,5,30000,100000 +011-6,177,94,10,14 monster Evil Mushroom 1013,4,30000,100000 +011-6,194,49,10,14 monster Evil Mushroom 1013,2,30000,100000 +011-6,51,115,23,12 monster Evil Mushroom 1013,2,30000,100000 +011-6,63,169,6,8 monster Evil Mushroom 1013,2,30000,100000 +011-6,100,226,14,7 monster Spiky Mushroom 1019,3,30000,100000 +011-6,260,44,26,8 monster Spiky Mushroom 1019,3,30000,100000 +011-6,272,48,10,14 monster Evil Mushroom 1013,2,30000,100000 +011-6,95,78,15,12 monster Yellow Slime 1007,5,30000,100000 +011-6,59,36,9,12 monster Yellow Slime 1007,5,30000,100000 +011-6,26,69,9,12 monster Yellow Slime 1007,5,30000,100000 +011-6,61,101,7,5 monster Yellow Slime 1007,3,30000,100000 +011-6,50,61,4,6 monster Yellow Slime 1007,3,30000,100000 +011-6,128,39,4,6 monster Yellow Slime 1007,3,30000,100000 +011-6,41,178,4,6 monster Yellow Slime 1007,1,30000,100000 +011-6,70,229,4,6 monster Yellow Slime 1007,1,30000,100000 +011-6,20,204,4,6 monster Yellow Slime 1007,1,30000,100000 +011-6,114,190,4,6 monster Yellow Slime 1007,4,30000,100000 +011-6,137,205,4,6 monster Yellow Slime 1007,2,30000,100000 +011-6,79,220,14,7 monster Cave Snake 1021,3,30000,100000 +011-6,115,210,14,7 monster Cave Snake 1021,3,30000,100000 +011-6,41,193,15,15 monster Cave Snake 1021,3,30000,100000 +011-6,70,143,15,15 monster Cave Snake 1021,3,30000,100000 +011-6,97,183,14,7 monster Cave Snake 1021,3,30000,100000 +011-6,172,252,4,6 monster Cave Maggot 1056,4,30000,100000 +011-6,263,236,8,2 monster Cave Maggot 1056,3,30000,100000 diff --git a/npc/012-1/_mobs.txt b/npc/012-1/_mobs.txt index 45f5fb46..96d6fef8 100644 --- a/npc/012-1/_mobs.txt +++ b/npc/012-1/_mobs.txt @@ -1,13 +1,13 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 012-1: Woodland Hills mobs -012-1,0,0,0,0 monster The PinkFlower 1014,13,0,100 -012-1,0,0,0,0 monster The SpikyMushroom 1019,25,0,10 -012-1,0,0,0,0 monster The Mouboo 1028,20,0,10 -012-1,0,0,0,0 monster The MauvePlant 1029,5,2700000,1800000 -012-1,0,0,0,0 monster The CobaltPlant 1030,2,2700000,1800000 -012-1,0,0,0,0 monster The GambogePlant 1031,2,2700000,1800000 -012-1,0,0,0,0 monster The AlizarinPlant 1032,2,2700000,1800000 -012-1,0,0,0,0 monster The Silkworm 1035,5,60000,30000 -012-1,0,0,0,0 monster The CloverPatch 1037,2,0,1000 -012-1,0,0,0,0 monster The Squirrel 1038,25,30,20 -012-1,0,0,0,0 monster The Butterfly 1055,20,30,20 +012-1,0,0,0,0 monster Pink Flower 1014,13,0,100 +012-1,0,0,0,0 monster Spiky Mushroom 1019,25,0,10 +012-1,0,0,0,0 monster Mouboo 1028,20,0,10 +012-1,0,0,0,0 monster Mauve Plant 1029,5,2700000,1800000 +012-1,0,0,0,0 monster Cobalt Plant 1030,2,2700000,1800000 +012-1,0,0,0,0 monster Gamboge Plant 1031,2,2700000,1800000 +012-1,0,0,0,0 monster Alizarin Plant 1032,2,2700000,1800000 +012-1,0,0,0,0 monster Silkworm 1035,5,60000,30000 +012-1,0,0,0,0 monster Clover Patch 1037,2,0,1000 +012-1,0,0,0,0 monster Squirrel 1038,25,30,20 +012-1,0,0,0,0 monster Butterfly 1055,20,30,20 diff --git a/npc/012-3/_mobs.txt b/npc/012-3/_mobs.txt index 0f0f9e38..bc4479aa 100644 --- a/npc/012-3/_mobs.txt +++ b/npc/012-3/_mobs.txt @@ -1,18 +1,18 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 012-3: Moggun Cave mobs -012-3,448,65,9,3 monster The Moggun 1061,5,100000,30000 -012-3,442,45,9,3 monster The Moggun 1061,5,100000,30000 -012-3,412,31,9,3 monster The Moggun 1061,5,100000,30000 -012-3,347,39,4,8 monster The Moggun 1061,5,100000,30000 -012-3,363,101,8,9 monster The Moggun 1061,10,100000,30000 -012-3,446,81,9,3 monster The Moggun 1061,5,100000,30000 -012-3,388,138,8,3 monster The Moggun 1061,5,100000,30000 -012-3,409,78,4,8 monster The Moggun 1061,5,100000,30000 -012-3,382,152,8,3 monster The Moggun 1061,5,100000,30000 -012-3,430,117,4,8 monster The Moggun 1061,5,100000,30000 -012-3,330,100,4,8 monster The Moggun 1061,5,100000,30000 -012-3,269,138,8,9 monster The Moggun 1061,10,100000,30000 -012-3,188,52,8,9 monster The Moggun 1061,10,100000,30000 -012-3,165,106,8,9 monster The Moggun 1061,10,100000,30000 -012-3,0,0,0,0 monster The Bat 1017,100,0,0 -012-3,0,0,0,0 monster The CaveSnake 1021,75,0,0 +012-3,448,65,9,3 monster Moggun 1061,5,100000,30000 +012-3,442,45,9,3 monster Moggun 1061,5,100000,30000 +012-3,412,31,9,3 monster Moggun 1061,5,100000,30000 +012-3,347,39,4,8 monster Moggun 1061,5,100000,30000 +012-3,363,101,8,9 monster Moggun 1061,10,100000,30000 +012-3,446,81,9,3 monster Moggun 1061,5,100000,30000 +012-3,388,138,8,3 monster Moggun 1061,5,100000,30000 +012-3,409,78,4,8 monster Moggun 1061,5,100000,30000 +012-3,382,152,8,3 monster Moggun 1061,5,100000,30000 +012-3,430,117,4,8 monster Moggun 1061,5,100000,30000 +012-3,330,100,4,8 monster Moggun 1061,5,100000,30000 +012-3,269,138,8,9 monster Moggun 1061,10,100000,30000 +012-3,188,52,8,9 monster Moggun 1061,10,100000,30000 +012-3,165,106,8,9 monster Moggun 1061,10,100000,30000 +012-3,0,0,0,0 monster Bat 1017,100,0,0 +012-3,0,0,0,0 monster Cave Snake 1021,75,0,0 diff --git a/npc/012-4/_mobs.txt b/npc/012-4/_mobs.txt index 2ff3cfda..7ddd9354 100644 --- a/npc/012-4/_mobs.txt +++ b/npc/012-4/_mobs.txt @@ -1,66 +1,66 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 012-4: Terranite Cave mobs -012-4,217,45,6,1 monster The Moggun 1061,3,100000,30000 -012-4,223,30,6,1 monster The Moggun 1061,3,100000,30000 -012-4,239,48,6,1 monster The Moggun 1061,3,100000,30000 -012-4,197,39,3,4 monster The Moggun 1061,3,100000,30000 -012-4,210,35,3,4 monster The Bat 1017,5,100000,30000 -012-4,241,38,3,4 monster The Bat 1017,5,100000,30000 -012-4,237,59,3,4 monster The Bat 1017,5,100000,30000 -012-4,226,73,3,4 monster The Bat 1017,5,100000,30000 -012-4,209,94,4,2 monster The Bat 1017,5,100000,30000 -012-4,263,29,3,4 monster The Bat 1017,5,100000,30000 -012-4,274,48,3,4 monster The Bat 1017,5,100000,30000 -012-4,267,70,3,4 monster The Bat 1017,5,100000,30000 -012-4,259,79,3,4 monster The Bat 1017,5,100000,30000 -012-4,274,79,3,4 monster The Bat 1017,5,100000,30000 -012-4,268,91,12,7 monster The Moggun 1061,10,100000,30000 -012-4,209,146,34,27 monster The Spider 1012,50,100000,30000 -012-4,254,163,9,23 monster The YellowSlime 1007,10,100000,30000 -012-4,167,175,8,11 monster The YellowSlime 1007,10,100000,30000 -012-4,148,176,8,11 monster The RedSlime 1008,20,100000,30000 -012-4,131,88,8,11 monster The RedSlime 1008,15,100000,30000 -012-4,140,131,8,11 monster The YellowSlime 1007,10,100000,30000 -012-4,42,128,8,4 monster The YellowSlime 1007,10,100000,30000 -012-4,64,62,12,15 monster The Spider 1012,20,100000,30000 -012-4,69,89,8,10 monster The YellowSlime 1007,10,100000,30000 -012-4,34,45,8,16 monster The Terranite 1062,3,100000,30000 -012-4,64,36,12,8 monster The Skeleton 1043,3,100000,30000 -012-4,100,115,12,8 monster The Skeleton 1043,3,100000,30000 -012-4,90,137,8,11 monster The YellowSlime 1007,10,100000,30000 -012-4,59,113,7,8 monster The LadySkeleton 1044,3,100000,30000 -012-4,42,176,7,6 monster The Terranite 1062,3,100000,30000 -012-4,120,177,12,8 monster The LadySkeleton 1044,3,100000,30000 -012-4,287,180,12,8 monster The LadySkeleton 1044,3,100000,30000 -012-4,340,175,12,8 monster The Skeleton 1043,3,100000,30000 -012-4,390,156,34,27 monster The Spider 1012,40,100000,30000 -012-4,358,37,10,11 monster The Terranite 1062,3,100000,30000 -012-4,481,110,9,12 monster The Terranite 1062,3,100000,30000 -012-4,435,114,12,8 monster The Skeleton 1043,3,100000,30000 -012-4,477,82,12,8 monster The LadySkeleton 1044,3,100000,30000 -012-4,354,106,9,23 monster The YellowSlime 1007,10,100000,30000 -012-4,342,139,8,11 monster The RedSlime 1008,15,100000,30000 -012-4,389,81,16,7 monster The RedSlime 1008,20,100000,30000 -012-4,409,35,3,4 monster The Bat 1017,5,100000,30000 -012-4,413,73,3,4 monster The Bat 1017,5,100000,30000 -012-4,395,63,3,4 monster The Bat 1017,5,100000,30000 -012-4,314,182,3,4 monster The Bat 1017,5,100000,30000 -012-4,409,121,3,4 monster The Bat 1017,5,100000,30000 -012-4,456,99,3,4 monster The Bat 1017,5,100000,30000 -012-4,133,153,4,2 monster The Bat 1017,5,100000,30000 -012-4,153,98,4,2 monster The Bat 1017,5,100000,30000 -012-4,126,65,4,2 monster The Bat 1017,5,100000,30000 -012-4,81,180,4,2 monster The Bat 1017,5,100000,30000 -012-4,61,159,4,2 monster The Bat 1017,5,100000,30000 -012-4,271,157,3,4 monster The Bat 1017,5,100000,30000 -012-4,270,182,3,4 monster The Bat 1017,5,100000,30000 -012-4,322,141,8,11 monster The RedSlime 1008,20,100000,30000 -012-4,451,111,3,4 monster The Bat 1017,5,100000,30000 -012-4,422,50,5,16 monster The Spider 1012,10,100000,30000 -012-4,380,40,7,11 monster The Spider 1012,10,100000,30000 -012-4,124,49,4,12 monster The Terranite 1062,1,100000,30000 -012-4,80,110,4,2 monster The Bat 1017,5,100000,30000 -012-4,42,142,10,5 monster The Skeleton 1043,3,100000,30000 -012-4,41,159,5,10 monster The Spider 1012,20,100000,30000 -012-4,95,180,4,2 monster The Bat 1017,5,100000,30000 -012-4,91,180,11,5 monster The Spider 1012,20,100000,30000 +012-4,217,45,6,1 monster Moggun 1061,3,100000,30000 +012-4,223,30,6,1 monster Moggun 1061,3,100000,30000 +012-4,239,48,6,1 monster Moggun 1061,3,100000,30000 +012-4,197,39,3,4 monster Moggun 1061,3,100000,30000 +012-4,210,35,3,4 monster Bat 1017,5,100000,30000 +012-4,241,38,3,4 monster Bat 1017,5,100000,30000 +012-4,237,59,3,4 monster Bat 1017,5,100000,30000 +012-4,226,73,3,4 monster Bat 1017,5,100000,30000 +012-4,209,94,4,2 monster Bat 1017,5,100000,30000 +012-4,263,29,3,4 monster Bat 1017,5,100000,30000 +012-4,274,48,3,4 monster Bat 1017,5,100000,30000 +012-4,267,70,3,4 monster Bat 1017,5,100000,30000 +012-4,259,79,3,4 monster Bat 1017,5,100000,30000 +012-4,274,79,3,4 monster Bat 1017,5,100000,30000 +012-4,268,91,12,7 monster Moggun 1061,10,100000,30000 +012-4,209,146,34,27 monster Spider 1012,50,100000,30000 +012-4,254,163,9,23 monster Yellow Slime 1007,10,100000,30000 +012-4,167,175,8,11 monster Yellow Slime 1007,10,100000,30000 +012-4,148,176,8,11 monster Red Slime 1008,20,100000,30000 +012-4,131,88,8,11 monster Red Slime 1008,15,100000,30000 +012-4,140,131,8,11 monster Yellow Slime 1007,10,100000,30000 +012-4,42,128,8,4 monster Yellow Slime 1007,10,100000,30000 +012-4,64,62,12,15 monster Spider 1012,20,100000,30000 +012-4,69,89,8,10 monster Yellow Slime 1007,10,100000,30000 +012-4,34,45,8,16 monster Terranite 1062,3,100000,30000 +012-4,64,36,12,8 monster Skeleton 1043,3,100000,30000 +012-4,100,115,12,8 monster Skeleton 1043,3,100000,30000 +012-4,90,137,8,11 monster Yellow Slime 1007,10,100000,30000 +012-4,59,113,7,8 monster Lady Skeleton 1044,3,100000,30000 +012-4,42,176,7,6 monster Terranite 1062,3,100000,30000 +012-4,120,177,12,8 monster Lady Skeleton 1044,3,100000,30000 +012-4,287,180,12,8 monster Lady Skeleton 1044,3,100000,30000 +012-4,340,175,12,8 monster Skeleton 1043,3,100000,30000 +012-4,390,156,34,27 monster Spider 1012,40,100000,30000 +012-4,358,37,10,11 monster Terranite 1062,3,100000,30000 +012-4,481,110,9,12 monster Terranite 1062,3,100000,30000 +012-4,435,114,12,8 monster Skeleton 1043,3,100000,30000 +012-4,477,82,12,8 monster Lady Skeleton 1044,3,100000,30000 +012-4,354,106,9,23 monster Yellow Slime 1007,10,100000,30000 +012-4,342,139,8,11 monster Red Slime 1008,15,100000,30000 +012-4,389,81,16,7 monster Red Slime 1008,20,100000,30000 +012-4,409,35,3,4 monster Bat 1017,5,100000,30000 +012-4,413,73,3,4 monster Bat 1017,5,100000,30000 +012-4,395,63,3,4 monster Bat 1017,5,100000,30000 +012-4,314,182,3,4 monster Bat 1017,5,100000,30000 +012-4,409,121,3,4 monster Bat 1017,5,100000,30000 +012-4,456,99,3,4 monster Bat 1017,5,100000,30000 +012-4,133,153,4,2 monster Bat 1017,5,100000,30000 +012-4,153,98,4,2 monster Bat 1017,5,100000,30000 +012-4,126,65,4,2 monster Bat 1017,5,100000,30000 +012-4,81,180,4,2 monster Bat 1017,5,100000,30000 +012-4,61,159,4,2 monster Bat 1017,5,100000,30000 +012-4,271,157,3,4 monster Bat 1017,5,100000,30000 +012-4,270,182,3,4 monster Bat 1017,5,100000,30000 +012-4,322,141,8,11 monster Red Slime 1008,20,100000,30000 +012-4,451,111,3,4 monster Bat 1017,5,100000,30000 +012-4,422,50,5,16 monster Spider 1012,10,100000,30000 +012-4,380,40,7,11 monster Spider 1012,10,100000,30000 +012-4,124,49,4,12 monster Terranite 1062,1,100000,30000 +012-4,80,110,4,2 monster Bat 1017,5,100000,30000 +012-4,42,142,10,5 monster Skeleton 1043,3,100000,30000 +012-4,41,159,5,10 monster Spider 1012,20,100000,30000 +012-4,95,180,4,2 monster Bat 1017,5,100000,30000 +012-4,91,180,11,5 monster Spider 1012,20,100000,30000 diff --git a/npc/013-1/_mobs.txt b/npc/013-1/_mobs.txt index f57ef0fc..462e9d72 100644 --- a/npc/013-1/_mobs.txt +++ b/npc/013-1/_mobs.txt @@ -1,17 +1,17 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 013-1: Woodland Hills mobs -013-1,0,0,0,0 monster The PinkFlower 1014,13,0,100 -013-1,0,0,0,0 monster The SpikyMushroom 1019,12,0,100 -013-1,0,0,0,0 monster The Mouboo 1028,5,0,100 -013-1,0,0,0,0 monster The MauvePlant 1029,1,270,180 -013-1,0,0,0,0 monster The MauvePlant 1029,4,2700000,1800000 -013-1,0,0,0,0 monster The CobaltPlant 1030,1,270,180 -013-1,0,0,0,0 monster The CobaltPlant 1030,2,2700000,1800000 -013-1,0,0,0,0 monster The GambogePlant 1031,1,270,180 -013-1,0,0,0,0 monster The GambogePlant 1031,2,2700000,1800000 -013-1,0,0,0,0 monster The AlizarinPlant 1032,1,270,180 -013-1,0,0,0,0 monster The AlizarinPlant 1032,2,2700000,1800000 -013-1,0,0,0,0 monster The Silkworm 1035,4,60000,30000 -013-1,0,0,0,0 monster The CloverPatch 1037,2,0,1000 -013-1,0,0,0,0 monster The Squirrel 1038,25,30,20 -013-1,0,0,0,0 monster The Butterfly 1055,10,30,20 +013-1,0,0,0,0 monster Pink Flower 1014,13,0,100 +013-1,0,0,0,0 monster Spiky Mushroom 1019,12,0,100 +013-1,0,0,0,0 monster Mouboo 1028,5,0,100 +013-1,0,0,0,0 monster Mauve Plant 1029,1,270,180 +013-1,0,0,0,0 monster Mauve Plant 1029,4,2700000,1800000 +013-1,0,0,0,0 monster Cobalt Plant 1030,1,270,180 +013-1,0,0,0,0 monster Cobalt Plant 1030,2,2700000,1800000 +013-1,0,0,0,0 monster Gamboge Plant 1031,1,270,180 +013-1,0,0,0,0 monster Gamboge Plant 1031,2,2700000,1800000 +013-1,0,0,0,0 monster Alizarin Plant 1032,1,270,180 +013-1,0,0,0,0 monster Alizarin Plant 1032,2,2700000,1800000 +013-1,0,0,0,0 monster Silkworm 1035,4,60000,30000 +013-1,0,0,0,0 monster Clover Patch 1037,2,0,1000 +013-1,0,0,0,0 monster Squirrel 1038,25,30,20 +013-1,0,0,0,0 monster Butterfly 1055,10,30,20 diff --git a/npc/013-3/_mobs.txt b/npc/013-3/_mobs.txt index 9079fa6e..4a0e2ac0 100644 --- a/npc/013-3/_mobs.txt +++ b/npc/013-3/_mobs.txt @@ -1,30 +1,30 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 013-3: Woodland Hills Cave mobs -013-3,28,89,8,26 monster The CaveSnake 1021,10,120000,60000 -013-3,61,22,1,1 monster The FireSkull 1023,1,120000,60000 -013-3,81,22,1,1 monster The PoisonSkull 1024,1,120000,60000 -013-3,109,31,3,11 monster The BlackScorpionMob 1009,20,50000,25000 -013-3,119,84,13,19 monster The Spider 1012,20,120000,40000 -013-3,176,23,2,3 monster The Spider 1012,10,100000,40000 -013-3,82,75,1,1 monster The FireSkull 1023,1,180000,60000 -013-3,142,37,1,1 monster The PoisonSkull 1024,1,180000,60000 -013-3,79,134,10,8 monster The BlackScorpionMob 1009,5,80000,40000 -013-3,71,169,19,8 monster The BlackScorpionMob 1009,5,80000,40000 -013-3,64,85,4,10 monster The BlackScorpionMob 1009,10,80000,40000 -013-3,81,92,1,10 monster The BlackScorpionMob 1009,10,80000,40000 -013-3,163,84,16,18 monster The Snake 1010,30,120000,50000 -013-3,162,85,16,18 monster The Spider 1012,30,120000,50000 -013-3,172,77,9,12 monster The BlackScorpionMob 1009,15,120000,50000 -013-3,145,36,10,7 monster The RedSlime 1008,25,80000,40000 -013-3,167,37,11,5 monster The Snake 1010,20,120000,40000 -013-3,165,25,8,5 monster The BlackScorpionMob 1009,15,120000,40000 -013-3,71,39,1,1 monster The Snake 1010,2,40000,20000 -013-3,159,102,1,2 monster The YellowSlime 1007,2,80000,40000 -013-3,67,22,1,1 monster The Maggot 1002,2,40000,20000 -013-3,75,22,1,1 monster The Maggot 1002,2,40000,20000 -013-3,76,39,3,2 monster The BlackScorpionMob 1009,8,40000,20000 -013-3,65,39,3,2 monster The RedSlime 1008,8,40000,20000 -013-3,62,33,1,0 monster The PoisonSkull 1024,1,120000,60000 -013-3,80,33,1,0 monster The FireSkull 1023,1,120000,60000 -013-3,75,46,1,0 monster The PoisonSkull 1024,1,120000,60000 -013-3,67,46,1,0 monster The FireSkull 1023,1,120000,60000 +013-3,28,89,8,26 monster Cave Snake 1021,10,120000,60000 +013-3,61,22,1,1 monster Fire Skull 1023,1,120000,60000 +013-3,81,22,1,1 monster Poison Skull 1024,1,120000,60000 +013-3,109,31,3,11 monster Black Scorpion 1009,20,50000,25000 +013-3,119,84,13,19 monster Spider 1012,20,120000,40000 +013-3,176,23,2,3 monster Spider 1012,10,100000,40000 +013-3,82,75,1,1 monster Fire Skull 1023,1,180000,60000 +013-3,142,37,1,1 monster Poison Skull 1024,1,180000,60000 +013-3,79,134,10,8 monster Black Scorpion 1009,5,80000,40000 +013-3,71,169,19,8 monster Black Scorpion 1009,5,80000,40000 +013-3,64,85,4,10 monster Black Scorpion 1009,10,80000,40000 +013-3,81,92,1,10 monster Black Scorpion 1009,10,80000,40000 +013-3,163,84,16,18 monster Snake 1010,30,120000,50000 +013-3,162,85,16,18 monster Spider 1012,30,120000,50000 +013-3,172,77,9,12 monster Black Scorpion 1009,15,120000,50000 +013-3,145,36,10,7 monster Red Slime 1008,25,80000,40000 +013-3,167,37,11,5 monster Snake 1010,20,120000,40000 +013-3,165,25,8,5 monster Black Scorpion 1009,15,120000,40000 +013-3,71,39,1,1 monster Snake 1010,2,40000,20000 +013-3,159,102,1,2 monster Yellow Slime 1007,2,80000,40000 +013-3,67,22,1,1 monster Maggot 1002,2,40000,20000 +013-3,75,22,1,1 monster Maggot 1002,2,40000,20000 +013-3,76,39,3,2 monster Black Scorpion 1009,8,40000,20000 +013-3,65,39,3,2 monster Red Slime 1008,8,40000,20000 +013-3,62,33,1,0 monster Poison Skull 1024,1,120000,60000 +013-3,80,33,1,0 monster Fire Skull 1023,1,120000,60000 +013-3,75,46,1,0 monster Poison Skull 1024,1,120000,60000 +013-3,67,46,1,0 monster Fire Skull 1023,1,120000,60000 diff --git a/npc/014-1/_mobs.txt b/npc/014-1/_mobs.txt index 1f59cd25..cd4bc0b0 100644 --- a/npc/014-1/_mobs.txt +++ b/npc/014-1/_mobs.txt @@ -1,18 +1,18 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 014-1: Woodland mobs -014-1,0,0,0,0 monster The EvilMushroom 1013,20,0,0 -014-1,0,0,0,0 monster The PinkFlower 1014,25,0,0 -014-1,0,0,0,0 monster The SpikyMushroom 1019,15,0,0 -014-1,0,0,0,0 monster The Mouboo 1028,5,0,10 -014-1,0,0,0,0 monster The MauvePlant 1029,1,270,180 -014-1,0,0,0,0 monster The MauvePlant 1029,5,2700000,1800000 -014-1,0,0,0,0 monster The CobaltPlant 1030,1,270,180 -014-1,0,0,0,0 monster The CobaltPlant 1030,2,2700000,1800000 -014-1,0,0,0,0 monster The GambogePlant 1031,1,270,180 -014-1,0,0,0,0 monster The GambogePlant 1031,2,2700000,1800000 -014-1,0,0,0,0 monster The AlizarinPlant 1032,1,270,180 -014-1,0,0,0,0 monster The AlizarinPlant 1032,2,2700000,1800000 -014-1,0,0,0,0 monster The Silkworm 1035,4,6000,3000 -014-1,0,0,0,0 monster The CloverPatch 1037,2,0,1000 -014-1,0,0,0,0 monster The Squirrel 1038,25,30,20 -014-1,0,0,0,0 monster The Butterfly 1055,10,30,20 +014-1,0,0,0,0 monster Evil Mushroom 1013,20,0,0 +014-1,0,0,0,0 monster Pink Flower 1014,25,0,0 +014-1,0,0,0,0 monster Spiky Mushroom 1019,15,0,0 +014-1,0,0,0,0 monster Mouboo 1028,5,0,10 +014-1,0,0,0,0 monster Mauve Plant 1029,1,270,180 +014-1,0,0,0,0 monster Mauve Plant 1029,5,2700000,1800000 +014-1,0,0,0,0 monster Cobalt Plant 1030,1,270,180 +014-1,0,0,0,0 monster Cobalt Plant 1030,2,2700000,1800000 +014-1,0,0,0,0 monster Gamboge Plant 1031,1,270,180 +014-1,0,0,0,0 monster Gamboge Plant 1031,2,2700000,1800000 +014-1,0,0,0,0 monster Alizarin Plant 1032,1,270,180 +014-1,0,0,0,0 monster Alizarin Plant 1032,2,2700000,1800000 +014-1,0,0,0,0 monster Silkworm 1035,4,6000,3000 +014-1,0,0,0,0 monster Clover Patch 1037,2,0,1000 +014-1,0,0,0,0 monster Squirrel 1038,25,30,20 +014-1,0,0,0,0 monster Butterfly 1055,10,30,20 diff --git a/npc/014-3/_mobs.txt b/npc/014-3/_mobs.txt index 110cb5d7..b61b1647 100644 --- a/npc/014-3/_mobs.txt +++ b/npc/014-3/_mobs.txt @@ -1,3 +1,3 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 014-3: Woodland Cave mobs -014-3,0,0,0,0 monster The Bat 1017,50,0,0 +014-3,0,0,0,0 monster Bat 1017,50,0,0 diff --git a/npc/015-1/_mobs.txt b/npc/015-1/_mobs.txt index 55c0e038..047641e0 100644 --- a/npc/015-1/_mobs.txt +++ b/npc/015-1/_mobs.txt @@ -1,12 +1,12 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 015-1: Woodland mobs -015-1,0,0,0,0 monster The CloverPatch 1037,2,100000,1000 -015-1,0,0,0,0 monster The Butterfly 1055,10,30,20 -015-1,0,0,0,0 monster The Squirrel 1038,30,20,10 -015-1,0,0,0,0 monster The LogHead 1025,40,0,0 -015-1,0,0,0,0 monster The SpikyMushroom 1019,20,0,0 -015-1,0,0,0,0 monster The PinkFlower 1014,20,0,0 -015-1,0,0,0,0 monster The GambogePlant 1031,5,0,0 -015-1,0,0,0,0 monster The AlizarinPlant 1032,5,0,0 -015-1,0,0,0,0 monster The Silkworm 1035,7,15000,7000 -015-1,0,0,0,0 monster The MauvePlant 1029,4,270000,180000 +015-1,0,0,0,0 monster Clover Patch 1037,2,100000,1000 +015-1,0,0,0,0 monster Butterfly 1055,10,30,20 +015-1,0,0,0,0 monster Squirrel 1038,30,20,10 +015-1,0,0,0,0 monster Log Head 1025,40,0,0 +015-1,0,0,0,0 monster Spiky Mushroom 1019,20,0,0 +015-1,0,0,0,0 monster Pink Flower 1014,20,0,0 +015-1,0,0,0,0 monster Gamboge Plant 1031,5,0,0 +015-1,0,0,0,0 monster Alizarin Plant 1032,5,0,0 +015-1,0,0,0,0 monster Silkworm 1035,7,15000,7000 +015-1,0,0,0,0 monster Mauve Plant 1029,4,270000,180000 diff --git a/npc/015-3/_mobs.txt b/npc/015-3/_mobs.txt index 94dba765..487d124b 100644 --- a/npc/015-3/_mobs.txt +++ b/npc/015-3/_mobs.txt @@ -1,6 +1,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 015-3: Cat's Cave mobs -015-3,22,25,1,2 monster The Bat 1017,2,100000,30000 -015-3,29,31,1,1 monster The Maggot 1002,2,100000,30000 -015-3,23,19,0,0 monster The Maggot 1002,1,100000,30000 -015-3,40,19,0,0 monster The Spider 1012,1,100000,30000 +015-3,22,25,1,2 monster Bat 1017,2,100000,30000 +015-3,29,31,1,1 monster Maggot 1002,2,100000,30000 +015-3,23,19,0,0 monster Maggot 1002,1,100000,30000 +015-3,40,19,0,0 monster Spider 1012,1,100000,30000 diff --git a/npc/016-1/_mobs.txt b/npc/016-1/_mobs.txt index 519a555d..feace23e 100644 --- a/npc/016-1/_mobs.txt +++ b/npc/016-1/_mobs.txt @@ -1,11 +1,11 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 016-1: Woodland mobs -016-1,0,0,0,0 monster The CloverPatch 1037,2,100000,30000 -016-1,0,0,0,0 monster The Butterfly 1055,10,30,20 -016-1,0,0,0,0 monster The Squirrel 1038,30,20,10 -016-1,0,0,0,0 monster The Mouboo 1028,5,0,0 -016-1,0,0,0,0 monster The MauvePlant 1029,3,0,0 -016-1,0,0,0,0 monster The MauvePlant 1029,4,270000,180000 -016-1,0,0,0,0 monster The CobaltPlant 1030,3,0,0 -016-1,0,0,0,0 monster The MauvePlant 1029,4,270000,180000 -016-1,0,0,0,0 monster The Silkworm 1035,7,150000,7000 +016-1,0,0,0,0 monster Clover Patch 1037,2,100000,30000 +016-1,0,0,0,0 monster Butterfly 1055,10,30,20 +016-1,0,0,0,0 monster Squirrel 1038,30,20,10 +016-1,0,0,0,0 monster Mouboo 1028,5,0,0 +016-1,0,0,0,0 monster Mauve Plant 1029,3,0,0 +016-1,0,0,0,0 monster Mauve Plant 1029,4,270000,180000 +016-1,0,0,0,0 monster Cobalt Plant 1030,3,0,0 +016-1,0,0,0,0 monster Mauve Plant 1029,4,270000,180000 +016-1,0,0,0,0 monster Silkworm 1035,7,150000,7000 diff --git a/npc/017-1/_mobs.txt b/npc/017-1/_mobs.txt index 6729e956..2bbf232a 100644 --- a/npc/017-1/_mobs.txt +++ b/npc/017-1/_mobs.txt @@ -1,20 +1,20 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 017-1: Woodland Hills mobs -017-1,0,0,0,0 monster The CloverPatch 1037,2,0,1000 -017-1,99,30,1,0 monster The CloverPatch 1037,1,150000,50000 -017-1,29,29,9,6 monster The GambogePlant 1031,1,0,25000 -017-1,91,25,38,4 monster The LogHead 1025,3,5000,60000 -017-1,31,48,9,6 monster The LogHead 1025,3,5000,60000 -017-1,0,0,0,0 monster The Butterfly 1055,10,30,20 -017-1,0,0,0,0 monster The Bat 1017,5,0,0 -017-1,0,0,0,0 monster The FireGoblin 1011,5,0,0 -017-1,0,0,0,0 monster The Mouboo 1028,5,0,0 -017-1,0,0,0,0 monster The PinkFlower 1014,5,0,0 -017-1,0,0,0,0 monster The SpikyMushroom 1019,5,0,0 -017-1,0,0,0,0 monster The EvilMushroom 1013,10,0,0 -017-1,0,0,0,0 monster The AlizarinPlant 1032,3,0,0 -017-1,0,0,0,0 monster The GambogePlant 1031,3,0,0 -017-1,0,0,0,0 monster The CobaltPlant 1030,3,0,0 -017-1,0,0,0,0 monster The MauvePlant 1029,5,0,0 -017-1,0,0,0,0 monster The Silkworm 1035,10,0,0 -017-1,0,0,0,0 monster The Squirrel 1038,30,20,10 +017-1,0,0,0,0 monster Clover Patch 1037,2,0,1000 +017-1,99,30,1,0 monster Clover Patch 1037,1,150000,50000 +017-1,29,29,9,6 monster Gamboge Plant 1031,1,0,25000 +017-1,91,25,38,4 monster Log Head 1025,3,5000,60000 +017-1,31,48,9,6 monster Log Head 1025,3,5000,60000 +017-1,0,0,0,0 monster Butterfly 1055,10,30,20 +017-1,0,0,0,0 monster Bat 1017,5,0,0 +017-1,0,0,0,0 monster Fire Goblin 1011,5,0,0 +017-1,0,0,0,0 monster Mouboo 1028,5,0,0 +017-1,0,0,0,0 monster Pink Flower 1014,5,0,0 +017-1,0,0,0,0 monster Spiky Mushroom 1019,5,0,0 +017-1,0,0,0,0 monster Evil Mushroom 1013,10,0,0 +017-1,0,0,0,0 monster Alizarin Plant 1032,3,0,0 +017-1,0,0,0,0 monster Gamboge Plant 1031,3,0,0 +017-1,0,0,0,0 monster Cobalt Plant 1030,3,0,0 +017-1,0,0,0,0 monster Mauve Plant 1029,5,0,0 +017-1,0,0,0,0 monster Silkworm 1035,10,0,0 +017-1,0,0,0,0 monster Squirrel 1038,30,20,10 diff --git a/npc/018-1/_mobs.txt b/npc/018-1/_mobs.txt index 3fe1ecb0..0fb8ff31 100644 --- a/npc/018-1/_mobs.txt +++ b/npc/018-1/_mobs.txt @@ -1,29 +1,29 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 018-1: Woodland Mining Camp mobs -018-1,136,79,4,20 monster The SeaSlime 1033,10,100000,30000 -018-1,108,87,26,12 monster The ManaBug 1131,10,100000,30000 -018-1,116,44,3,3 monster The SeaSlime 1033,3,100000,30000 -018-1,119,56,6,3 monster The PinkFlower 1014,2,100000,30000 -018-1,175,28,8,9 monster The JackO 1022,1,180000,120000 -018-1,78,59,1,0 monster The YellowSlime 1007,1,100000,30000 -018-1,57,63,7,3 monster The Silkworm 1035,2,100000,30000 -018-1,43,63,15,14 monster The Bat 1017,10,100000,30000 -018-1,134,39,9,5 monster The GrassSnake 1034,4,100000,50000 -018-1,124,42,4,5 monster The GrassSnake 1034,2,100000,50000 -018-1,124,19,11,4 monster The GrassSnake 1034,3,100000,50000 -018-1,122,29,9,4 monster The GrassSnake 1034,2,100000,50000 -018-1,149,45,5,4 monster The Bat 1017,5,100000,30000 -018-1,169,47,10,5 monster The RedSlime 1008,4,120000,30000 -018-1,136,49,6,4 monster The Bat 1017,4,100000,30000 -018-1,166,49,6,4 monster The CloverPatch 1037,1,100000,30000 -018-1,111,62,2,1 monster The Silkworm 1035,1,60000,30000 -018-1,117,50,2,1 monster The SeaSlime 1033,1,120000,60000 -018-1,96,47,9,5 monster The RedSlime 1008,3,100000,50000 -018-1,106,52,7,3 monster The CobaltPlant 1030,1,240000,120000 -018-1,78,55,18,3 monster The RedSlime 1008,7,100000,50000 -018-1,145,24,5,4 monster The RedSlime 1008,3,100000,50000 -018-1,68,89,7,8 monster The Bat 1017,3,100000,50000 -018-1,160,31,5,9 monster The RedSlime 1008,5,100000,50000 -018-1,0,0,0,0 monster The CloverPatch 1037,2,0,1000 -018-1,0,0,0,0 monster The Butterfly 1055,20,30,20 -018-1,134,80,7,19 monster The Maggot 1002,15,0,0 +018-1,136,79,4,20 monster Sea Slime 1033,10,100000,30000 +018-1,108,87,26,12 monster Mana Bug 1131,10,100000,30000 +018-1,116,44,3,3 monster Sea Slime 1033,3,100000,30000 +018-1,119,56,6,3 monster Pink Flower 1014,2,100000,30000 +018-1,175,28,8,9 monster Jack O 1022,1,180000,120000 +018-1,78,59,1,0 monster Yellow Slime 1007,1,100000,30000 +018-1,57,63,7,3 monster Silkworm 1035,2,100000,30000 +018-1,43,63,15,14 monster Bat 1017,10,100000,30000 +018-1,134,39,9,5 monster Grass Snake 1034,4,100000,50000 +018-1,124,42,4,5 monster Grass Snake 1034,2,100000,50000 +018-1,124,19,11,4 monster Grass Snake 1034,3,100000,50000 +018-1,122,29,9,4 monster Grass Snake 1034,2,100000,50000 +018-1,149,45,5,4 monster Bat 1017,5,100000,30000 +018-1,169,47,10,5 monster Red Slime 1008,4,120000,30000 +018-1,136,49,6,4 monster Bat 1017,4,100000,30000 +018-1,166,49,6,4 monster Clover Patch 1037,1,100000,30000 +018-1,111,62,2,1 monster Silkworm 1035,1,60000,30000 +018-1,117,50,2,1 monster Sea Slime 1033,1,120000,60000 +018-1,96,47,9,5 monster Red Slime 1008,3,100000,50000 +018-1,106,52,7,3 monster Cobalt Plant 1030,1,240000,120000 +018-1,78,55,18,3 monster Red Slime 1008,7,100000,50000 +018-1,145,24,5,4 monster Red Slime 1008,3,100000,50000 +018-1,68,89,7,8 monster Bat 1017,3,100000,50000 +018-1,160,31,5,9 monster Red Slime 1008,5,100000,50000 +018-1,0,0,0,0 monster Clover Patch 1037,2,0,1000 +018-1,0,0,0,0 monster Butterfly 1055,20,30,20 +018-1,134,80,7,19 monster Maggot 1002,15,0,0 diff --git a/npc/018-2/_mobs.txt b/npc/018-2/_mobs.txt index 11755802..9a77c147 100644 --- a/npc/018-2/_mobs.txt +++ b/npc/018-2/_mobs.txt @@ -1,3 +1,3 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 018-2: Woodland Mining Camp Indoor mobs -018-2,114,21,2,1 monster The YellowSlime 1007,1,100000,30000 +018-2,114,21,2,1 monster Yellow Slime 1007,1,100000,30000 diff --git a/npc/018-3/_mobs.txt b/npc/018-3/_mobs.txt index 6d4f148a..b18b4a82 100644 --- a/npc/018-3/_mobs.txt +++ b/npc/018-3/_mobs.txt @@ -1,25 +1,25 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 018-3: Northern Mines mobs -018-3,48,29,28,9 monster The Bat 1017,10,100000,30000 -018-3,35,144,15,24 monster The EvilMushroom 1013,10,120000,30000 -018-3,35,65,14,11 monster The Spider 1012,20,100000,50000 -018-3,28,157,1,1 monster The PinkFlower 1014,1,60000,30000 -018-3,99,111,8,20 monster The YellowSlime 1007,10,90000,30000 -018-3,134,140,6,4 monster The Maggot 1002,3,80000,40000 -018-3,82,149,36,13 monster The Spider 1012,8,300000,120000 -018-3,102,172,65,6 monster The BlackScorpionMob 1009,20,60000,10000 -018-3,174,37,5,15 monster The YellowSlime 1007,5,180000,120000 -018-3,148,148,6,12 monster The Bat 1017,3,180000,40000 -018-3,136,87,10,3 monster The YellowSlime 1007,6,80000,40000 -018-3,81,77,13,10 monster The RedSlime 1008,15,80000,40000 -018-3,111,80,2,3 monster The BlackScorpionMob 1009,10,80000,40000 -018-3,175,122,2,20 monster The Snake 1010,15,40000,20000 -018-3,172,94,8,8 monster The RedSlime 1008,10,60000,30000 -018-3,59,95,5,4 monster The Spider 1012,15,60000,30000 -018-3,77,92,11,3 monster The BlackScorpionMob 1009,15,60000,30000 -018-3,94,55,8,4 monster The Snake 1010,5,60000,30000 -018-3,133,39,6,8 monster The Spider 1012,10,60000,30000 -018-3,111,33,15,8 monster The Snake 1010,15,60000,30000 -018-3,68,101,2,2 monster The CaveSnake 1021,4,60000,30000 -018-3,153,96,9,8 monster The CaveMaggot 1056,4,100000,30000 -018-3,99,99,8,8 monster The CaveMaggot 1056,4,100000,30000 +018-3,48,29,28,9 monster Bat 1017,10,100000,30000 +018-3,35,144,15,24 monster Evil Mushroom 1013,10,120000,30000 +018-3,35,65,14,11 monster Spider 1012,20,100000,50000 +018-3,28,157,1,1 monster Pink Flower 1014,1,60000,30000 +018-3,99,111,8,20 monster Yellow Slime 1007,10,90000,30000 +018-3,134,140,6,4 monster Maggot 1002,3,80000,40000 +018-3,82,149,36,13 monster Spider 1012,8,300000,120000 +018-3,102,172,65,6 monster Black Scorpion 1009,20,60000,10000 +018-3,174,37,5,15 monster Yellow Slime 1007,5,180000,120000 +018-3,148,148,6,12 monster Bat 1017,3,180000,40000 +018-3,136,87,10,3 monster Yellow Slime 1007,6,80000,40000 +018-3,81,77,13,10 monster Red Slime 1008,15,80000,40000 +018-3,111,80,2,3 monster Black Scorpion 1009,10,80000,40000 +018-3,175,122,2,20 monster Snake 1010,15,40000,20000 +018-3,172,94,8,8 monster Red Slime 1008,10,60000,30000 +018-3,59,95,5,4 monster Spider 1012,15,60000,30000 +018-3,77,92,11,3 monster Black Scorpion 1009,15,60000,30000 +018-3,94,55,8,4 monster Snake 1010,5,60000,30000 +018-3,133,39,6,8 monster Spider 1012,10,60000,30000 +018-3,111,33,15,8 monster Snake 1010,15,60000,30000 +018-3,68,101,2,2 monster Cave Snake 1021,4,60000,30000 +018-3,153,96,9,8 monster Cave Maggot 1056,4,100000,30000 +018-3,99,99,8,8 monster Cave Maggot 1056,4,100000,30000 diff --git a/npc/019-1/_mobs.txt b/npc/019-1/_mobs.txt index 1f6a4838..639a42fd 100644 --- a/npc/019-1/_mobs.txt +++ b/npc/019-1/_mobs.txt @@ -1,6 +1,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 019-1: snow Field mobs -019-1,0,0,0,0 monster The Fluffy 1020,50,100000,30000 -019-1,0,0,0,0 monster The Reinboo 1094,4,100000,30000 -019-1,0,0,0,0 monster The WhiteBell 1095,5,100000,30000 -019-1,0,0,0,0 monster The Santaboo 1112,4,100000,30000 +019-1,0,0,0,0 monster Fluffy 1020,50,100000,30000 +019-1,0,0,0,0 monster Reinboo 1094,4,100000,30000 +019-1,0,0,0,0 monster White Bell 1095,5,100000,30000 +019-1,0,0,0,0 monster Santaboo 1112,4,100000,30000 diff --git a/npc/019-3/_mobs.txt b/npc/019-3/_mobs.txt index 790ee608..a8c058eb 100644 --- a/npc/019-3/_mobs.txt +++ b/npc/019-3/_mobs.txt @@ -1,4 +1,4 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 019-3: Snow Cave mobs -019-3,0,4,0,0 monster The Moggun 1061,10,100000,30000 -019-3,0,4,0,0 monster The Bat 1017,50,100000,30000 +019-3,0,4,0,0 monster Moggun 1061,10,100000,30000 +019-3,0,4,0,0 monster Bat 1017,50,100000,30000 diff --git a/npc/019-4/_mobs.txt b/npc/019-4/_mobs.txt index a426b2c7..ad23e627 100644 --- a/npc/019-4/_mobs.txt +++ b/npc/019-4/_mobs.txt @@ -1,6 +1,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 019-4: Snow Cave mobs -019-4,0,0,0,0 monster The Moggun 1061,12,45000,30000 -019-4,47,67,7,4 monster The WhiteSlime 1093,5,45000,45000 -019-4,0,0,0,0 monster The Bat 1017,15,45000,25000 -019-4,0,0,0,0 monster The BlueSlime 1091,7,45000,30000 +019-4,0,0,0,0 monster Moggun 1061,12,45000,30000 +019-4,47,67,7,4 monster White Slime 1093,5,45000,45000 +019-4,0,0,0,0 monster Bat 1017,15,45000,25000 +019-4,0,0,0,0 monster Blue Slime 1091,7,45000,30000 diff --git a/npc/020-1/_mobs.txt b/npc/020-1/_mobs.txt index 6244a13e..bebd0ea2 100644 --- a/npc/020-1/_mobs.txt +++ b/npc/020-1/_mobs.txt @@ -1,3 +1,3 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 020-1: Nivalis mobs -020-1,0,0,0,0 monster The WhiteBell 1095,3,100000,30000 +020-1,0,0,0,0 monster White Bell 1095,3,100000,30000 diff --git a/npc/020-3/_mobs.txt b/npc/020-3/_mobs.txt index 7af4f76c..41d4126d 100644 --- a/npc/020-3/_mobs.txt +++ b/npc/020-3/_mobs.txt @@ -1,6 +1,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 020-3: Ice cave mobs -020-3,40,36,14,2 monster The Bat 1017,1,100000,30000 -020-3,40,49,17,3 monster The Pinkie 1018,1,100000,30000 -020-3,0,0,0,0 monster The Bat 1017,20,0,0 -020-3,0,0,0,0 monster The Pinkie 1018,10,0,0 +020-3,40,36,14,2 monster Bat 1017,1,100000,30000 +020-3,40,49,17,3 monster Pinkie 1018,1,100000,30000 +020-3,0,0,0,0 monster Bat 1017,20,0,0 +020-3,0,0,0,0 monster Pinkie 1018,10,0,0 diff --git a/npc/021-3/_mobs.txt b/npc/021-3/_mobs.txt index 2da6c8cc..7b568aa6 100644 --- a/npc/021-3/_mobs.txt +++ b/npc/021-3/_mobs.txt @@ -1,12 +1,12 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 021-3: Central Tulimshar Sewers mobs -021-3,120,38,5,4 monster The CaveMaggot 1056,5,100000,30000 -021-3,103,58,4,1 monster The CaveMaggot 1056,5,100000,30000 -021-3,80,98,17,15 monster The CaveMaggot 1056,5,100000,30000 -021-3,129,82,4,1 monster The CaveMaggot 1056,5,100000,30000 -021-3,140,38,8,4 monster The AngryFireGoblin 1108,3,100000,30000 -021-3,79,98,16,15 monster The BlackScorpionMob 1009,4,100000,1800000 -021-3,52,53,1,8 monster The GreenSlime 1005,4,40000,50000 -021-3,93,31,14,11 monster The SeaSlime 1033,6,100000,30000 -021-3,121,128,4,1 monster The CaveMaggot 1056,5,100000,30000 -021-3,47,139,4,1 monster The CaveMaggot 1056,5,100000,30000 +021-3,120,38,5,4 monster Cave Maggot 1056,5,100000,30000 +021-3,103,58,4,1 monster Cave Maggot 1056,5,100000,30000 +021-3,80,98,17,15 monster Cave Maggot 1056,5,100000,30000 +021-3,129,82,4,1 monster Cave Maggot 1056,5,100000,30000 +021-3,140,38,8,4 monster Angry Fire Goblin 1108,3,100000,30000 +021-3,79,98,16,15 monster Black Scorpion 1009,4,100000,1800000 +021-3,52,53,1,8 monster Green Slime 1005,4,40000,50000 +021-3,93,31,14,11 monster Sea Slime 1033,6,100000,30000 +021-3,121,128,4,1 monster Cave Maggot 1056,5,100000,30000 +021-3,47,139,4,1 monster Cave Maggot 1056,5,100000,30000 diff --git a/npc/023-1/_mobs.txt b/npc/023-1/_mobs.txt index 86746b59..a2dc766d 100644 --- a/npc/023-1/_mobs.txt +++ b/npc/023-1/_mobs.txt @@ -1,15 +1,15 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 023-1: Tulimshar Lighthouse Beach mobs -023-1,70,41,3,3 monster The Thug 1119,1,100000,30000 -023-1,84,33,5,3 monster The Swashbuckler 1120,1,100000,30000 -023-1,58,28,3,3 monster The Grenadier 1121,1,100000,30000 -023-1,80,99,5,3 monster The Swashbuckler 1120,1,100000,30000 -023-1,86,117,9,1 monster The Grenadier 1121,1,100000,30000 -023-1,55,126,3,3 monster The Thug 1119,1,100000,30000 -023-1,47,86,3,3 monster The Thug 1119,1,100000,30000 -023-1,102,67,5,3 monster The Swashbuckler 1120,1,100000,30000 -023-1,105,90,3,3 monster The Thug 1119,1,100000,30000 -023-1,62,60,3,3 monster The Thug 1119,1,100000,30000 -023-1,93,49,6,5 monster The Grenadier 1121,1,100000,30000 -023-1,64,95,0,23 monster The AngrySeaSlime 1109,3,150000,100000 -023-1,45,54,2,19 monster The AngrySeaSlime 1109,3,150000,100000 +023-1,70,41,3,3 monster Thug 1119,1,100000,30000 +023-1,84,33,5,3 monster Swashbuckler 1120,1,100000,30000 +023-1,58,28,3,3 monster Grenadier 1121,1,100000,30000 +023-1,80,99,5,3 monster Swashbuckler 1120,1,100000,30000 +023-1,86,117,9,1 monster Grenadier 1121,1,100000,30000 +023-1,55,126,3,3 monster Thug 1119,1,100000,30000 +023-1,47,86,3,3 monster Thug 1119,1,100000,30000 +023-1,102,67,5,3 monster Swashbuckler 1120,1,100000,30000 +023-1,105,90,3,3 monster Thug 1119,1,100000,30000 +023-1,62,60,3,3 monster Thug 1119,1,100000,30000 +023-1,93,49,6,5 monster Grenadier 1121,1,100000,30000 +023-1,64,95,0,23 monster Angry Sea Slime 1109,3,150000,100000 +023-1,45,54,2,19 monster Angry Sea Slime 1109,3,150000,100000 diff --git a/npc/023-3/_mobs.txt b/npc/023-3/_mobs.txt index 89ab12fb..474a1f1a 100644 --- a/npc/023-3/_mobs.txt +++ b/npc/023-3/_mobs.txt @@ -1,8 +1,8 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 023-3: Tulimshar Beach Caves mobs -023-3,91,77,3,3 monster The Thug 1119,1,100000,30000 -023-3,127,85,3,3 monster The Swashbuckler 1120,1,100000,30000 -023-3,98,28,3,3 monster The Swashbuckler 1120,1,100000,30000 -023-3,120,45,3,3 monster The Thug 1119,1,100000,30000 -023-3,51,107,6,2 monster The Swashbuckler 1120,1,100000,30000 -023-3,69,52,33,4 monster The Thug 1119,1,100000,30000 +023-3,91,77,3,3 monster Thug 1119,1,100000,30000 +023-3,127,85,3,3 monster Swashbuckler 1120,1,100000,30000 +023-3,98,28,3,3 monster Swashbuckler 1120,1,100000,30000 +023-3,120,45,3,3 monster Thug 1119,1,100000,30000 +023-3,51,107,6,2 monster Swashbuckler 1120,1,100000,30000 +023-3,69,52,33,4 monster Thug 1119,1,100000,30000 diff --git a/npc/025-1/_mobs.txt b/npc/025-1/_mobs.txt index 08f6f989..053e55b3 100644 --- a/npc/025-1/_mobs.txt +++ b/npc/025-1/_mobs.txt @@ -1,12 +1,12 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 025-1: Woodland Swamp mobs -025-1,100,60,28,39 monster The CloverPatch 1037,3,30000,10000 -025-1,56,96,6,2 monster The CloverPatch 1037,1,1200000,10000 -025-1,56,35,38,16 monster The AlizarinPlant 1032,2,240000,12000 -025-1,38,84,18,15 monster The Silkworm 1035,18,40000,300 -025-1,96,47,31,27 monster The LogHead 1025,14,18000,3000 -025-1,0,0,0,0 monster The PinkFlower 1014,34,20000,5000 -025-1,41,86,17,13 monster The GrassSnake 1034,3,100000,50000 -025-1,78,46,11,14 monster The GrassSnake 1034,3,100000,50000 -025-1,73,84,19,8 monster The GrassSnake 1034,3,100000,50000 -025-1,53,33,29,8 monster The GrassSnake 1034,4,100000,50000 +025-1,100,60,28,39 monster Clover Patch 1037,3,30000,10000 +025-1,56,96,6,2 monster Clover Patch 1037,1,1200000,10000 +025-1,56,35,38,16 monster Alizarin Plant 1032,2,240000,12000 +025-1,38,84,18,15 monster Silkworm 1035,18,40000,300 +025-1,96,47,31,27 monster Log Head 1025,14,18000,3000 +025-1,0,0,0,0 monster Pink Flower 1014,34,20000,5000 +025-1,41,86,17,13 monster Grass Snake 1034,3,100000,50000 +025-1,78,46,11,14 monster Grass Snake 1034,3,100000,50000 +025-1,73,84,19,8 monster Grass Snake 1034,3,100000,50000 +025-1,53,33,29,8 monster Grass Snake 1034,4,100000,50000 diff --git a/npc/025-3/_mobs.txt b/npc/025-3/_mobs.txt index d391bd08..41aea3e6 100644 --- a/npc/025-3/_mobs.txt +++ b/npc/025-3/_mobs.txt @@ -1,6 +1,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 025-3: Rossy Main Hall mobs -025-3,0,0,0,0 monster The CaveMaggot 1056,100,0,100 -025-3,0,0,0,0 monster The Archant 1060,20,0,100 -025-3,0,0,0,0 monster The AngryScorpionMob 1057,25,0,100 -025-3,69,153,6,0 monster The Skeleton 1043,1,0,30000 +025-3,0,0,0,0 monster Cave Maggot 1056,100,0,100 +025-3,0,0,0,0 monster Archant 1060,20,0,100 +025-3,0,0,0,0 monster Angry Scorpion 1057,25,0,100 +025-3,69,153,6,0 monster Skeleton 1043,1,0,30000 diff --git a/npc/025-4/_mobs.txt b/npc/025-4/_mobs.txt index 2e3dbd8b..d672ad40 100644 --- a/npc/025-4/_mobs.txt +++ b/npc/025-4/_mobs.txt @@ -1,4 +1,4 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 025-4: Rossy Battle Caves mobs -025-4,29,31,10,7 monster The CaveMaggot 1056,3,0,100 -025-4,94,24,10,10 monster The CaveMaggot 1056,5,0,100 +025-4,29,31,10,7 monster Cave Maggot 1056,3,0,100 +025-4,94,24,10,10 monster Cave Maggot 1056,5,0,100 diff --git a/npc/026-1/_mobs.txt b/npc/026-1/_mobs.txt index 3ee7f55f..fa52d840 100644 --- a/npc/026-1/_mobs.txt +++ b/npc/026-1/_mobs.txt @@ -1,16 +1,16 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 026-1: Asphodel Moor mobs -026-1,0,0,0,0 monster The Wisp 1040,34,120000,40000 -026-1,0,0,0,0 monster The Spectre 1042,34,120000,40000 -026-1,0,0,0,0 monster The Poltergeist 1047,34,120000,40000 -026-1,0,0,0,0 monster The Silkworm 1035,10,300000,60000 -026-1,0,0,0,0 monster The LogHead 1025,8,300000,40000 -026-1,49,31,28,7 monster The DrunkenSkeleton 1077,4,100000,30000 -026-1,50,31,26,5 monster The TipsySkeleton 1078,4,100000,30000 -026-1,56,77,33,15 monster The DrunkenSkeleton 1077,4,100000,30000 -026-1,57,77,29,11 monster The TipsySkeleton 1078,4,100000,30000 -026-1,110,59,15,37 monster The DrunkenSkeleton 1077,4,100000,30000 -026-1,110,59,14,35 monster The TipsySkeleton 1078,4,100000,30000 -026-1,110,59,15,37 monster The DrunkenLadySkeleton 1079,4,100000,30000 -026-1,57,79,34,16 monster The DrunkenLadySkeleton 1079,4,100000,30000 -026-1,48,31,27,6 monster The DrunkenLadySkeleton 1079,4,100000,30000 +026-1,0,0,0,0 monster Wisp 1040,34,120000,40000 +026-1,0,0,0,0 monster Spectre 1042,34,120000,40000 +026-1,0,0,0,0 monster Poltergeist 1047,34,120000,40000 +026-1,0,0,0,0 monster Silkworm 1035,10,300000,60000 +026-1,0,0,0,0 monster Log Head 1025,8,300000,40000 +026-1,49,31,28,7 monster Drunken Skeleton 1077,4,100000,30000 +026-1,50,31,26,5 monster Tipsy Skeleton 1078,4,100000,30000 +026-1,56,77,33,15 monster Drunken Skeleton 1077,4,100000,30000 +026-1,57,77,29,11 monster Tipsy Skeleton 1078,4,100000,30000 +026-1,110,59,15,37 monster Drunken Skeleton 1077,4,100000,30000 +026-1,110,59,14,35 monster Tipsy Skeleton 1078,4,100000,30000 +026-1,110,59,15,37 monster Drunken Lady Skeleton 1079,4,100000,30000 +026-1,57,79,34,16 monster Drunken Lady Skeleton 1079,4,100000,30000 +026-1,48,31,27,6 monster Drunken Lady Skeleton 1079,4,100000,30000 diff --git a/npc/027-1/_mobs.txt b/npc/027-1/_mobs.txt index 9104cdb0..16e2912c 100644 --- a/npc/027-1/_mobs.txt +++ b/npc/027-1/_mobs.txt @@ -1,18 +1,18 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 027-1: Graveyard mobs -027-1,81,91,47,13 monster The Poltergeist 1047,4,900000,60000 -027-1,81,91,48,12 monster The Spectre 1042,4,900000,60000 -027-1,81,91,49,11 monster The Wisp 1040,4,900000,60000 -027-1,37,64,16,10 monster The Skeleton 1043,2,60000,8000 -027-1,37,64,16,10 monster The LadySkeleton 1044,2,60000,8000 -027-1,71,41,15,11 monster The Skeleton 1043,1,175000,20000 -027-1,71,41,15,11 monster The LadySkeleton 1044,1,175000,20000 -027-1,37,41,16,11 monster The Skeleton 1043,4,180000,20000 -027-1,37,41,16,11 monster The LadySkeleton 1044,4,180000,20000 -027-1,105,40,16,10 monster The Skeleton 1043,2,35000,20000 -027-1,105,40,16,10 monster The LadySkeleton 1044,3,33000,25000 -027-1,70,64,15,10 monster The Skeleton 1043,1,60000,8000 -027-1,70,64,15,10 monster The LadySkeleton 1044,1,60000,8000 -027-1,104,64,15,10 monster The Skeleton 1043,2,60000,8000 -027-1,104,64,15,10 monster The LadySkeleton 1044,2,60000,8000 -027-1,70,40,50,10 monster The VampireBat 1066,15,100000,30000 +027-1,81,91,47,13 monster Poltergeist 1047,4,900000,60000 +027-1,81,91,48,12 monster Spectre 1042,4,900000,60000 +027-1,81,91,49,11 monster Wisp 1040,4,900000,60000 +027-1,37,64,16,10 monster Skeleton 1043,2,60000,8000 +027-1,37,64,16,10 monster Lady Skeleton 1044,2,60000,8000 +027-1,71,41,15,11 monster Skeleton 1043,1,175000,20000 +027-1,71,41,15,11 monster Lady Skeleton 1044,1,175000,20000 +027-1,37,41,16,11 monster Skeleton 1043,4,180000,20000 +027-1,37,41,16,11 monster Lady Skeleton 1044,4,180000,20000 +027-1,105,40,16,10 monster Skeleton 1043,2,35000,20000 +027-1,105,40,16,10 monster Lady Skeleton 1044,3,33000,25000 +027-1,70,64,15,10 monster Skeleton 1043,1,60000,8000 +027-1,70,64,15,10 monster Lady Skeleton 1044,1,60000,8000 +027-1,104,64,15,10 monster Skeleton 1043,2,60000,8000 +027-1,104,64,15,10 monster Lady Skeleton 1044,2,60000,8000 +027-1,70,40,50,10 monster Vampire Bat 1066,15,100000,30000 diff --git a/npc/027-2/_mobs.txt b/npc/027-2/_mobs.txt index f35e2471..10a2f89a 100644 --- a/npc/027-2/_mobs.txt +++ b/npc/027-2/_mobs.txt @@ -1,6 +1,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 027-2: Graveyard Indoor mobs -027-2,25,99,4,9 monster The TipsySkeleton 1078,1,100000,30000 -027-2,35,88,14,19 monster The VampireBat 1066,15,100000,30000 -027-2,25,99,4,9 monster The DrunkenSkeleton 1077,1,100000,30000 -027-2,25,99,4,9 monster The TipsySkeleton 1078,1,100000,30000 +027-2,25,99,4,9 monster Tipsy Skeleton 1078,1,100000,30000 +027-2,35,88,14,19 monster Vampire Bat 1066,15,100000,30000 +027-2,25,99,4,9 monster Drunken Skeleton 1077,1,100000,30000 +027-2,25,99,4,9 monster Tipsy Skeleton 1078,1,100000,30000 diff --git a/npc/027-3/_mobs.txt b/npc/027-3/_mobs.txt index 74475c2a..4f81ed7f 100644 --- a/npc/027-3/_mobs.txt +++ b/npc/027-3/_mobs.txt @@ -1,10 +1,10 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 027-3: Crypt Basement mobs -027-3,34,63,14,34 monster The Skeleton 1043,6,60000,8000 -027-3,97,43,29,15 monster The Skeleton 1043,6,60000,8000 -027-3,34,63,14,34 monster The LadySkeleton 1044,4,60000,8000 -027-3,113,78,14,13 monster The LadySkeleton 1044,4,60000,8000 -027-3,113,78,13,13 monster The Skeleton 1043,4,60000,8000 -027-3,81,87,14,11 monster The VampireBat 1066,15,100000,30000 -027-3,74,45,53,16 monster The PoisonSkull 1024,1,60000,20000 -027-3,98,84,30,7 monster The FireSkull 1023,2,60000,20000 +027-3,34,63,14,34 monster Skeleton 1043,6,60000,8000 +027-3,97,43,29,15 monster Skeleton 1043,6,60000,8000 +027-3,34,63,14,34 monster Lady Skeleton 1044,4,60000,8000 +027-3,113,78,14,13 monster Lady Skeleton 1044,4,60000,8000 +027-3,113,78,13,13 monster Skeleton 1043,4,60000,8000 +027-3,81,87,14,11 monster Vampire Bat 1066,15,100000,30000 +027-3,74,45,53,16 monster Poison Skull 1024,1,60000,20000 +027-3,98,84,30,7 monster Fire Skull 1023,2,60000,20000 diff --git a/npc/027-4/_mobs.txt b/npc/027-4/_mobs.txt index f87bff00..67b755e5 100644 --- a/npc/027-4/_mobs.txt +++ b/npc/027-4/_mobs.txt @@ -1,7 +1,7 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 027-4: Crypt Sub-Basement One mobs -027-4,39,84,19,11 monster The Skeleton 1043,2,60000,8000 -027-4,27,57,7,11 monster The LadySkeleton 1044,2,60000,8000 -027-4,108,77,19,7 monster The Skeleton 1043,2,60000,8000 -027-4,61,37,19,15 monster The LadySkeleton 1044,2,60000,8000 -027-4,101,36,19,15 monster The LadySkeleton 1044,2,60000,8000 +027-4,39,84,19,11 monster Skeleton 1043,2,60000,8000 +027-4,27,57,7,11 monster Lady Skeleton 1044,2,60000,8000 +027-4,108,77,19,7 monster Skeleton 1043,2,60000,8000 +027-4,61,37,19,15 monster Lady Skeleton 1044,2,60000,8000 +027-4,101,36,19,15 monster Lady Skeleton 1044,2,60000,8000 diff --git a/npc/027-5/_mobs.txt b/npc/027-5/_mobs.txt index 58e2a994..27674997 100644 --- a/npc/027-5/_mobs.txt +++ b/npc/027-5/_mobs.txt @@ -1,9 +1,9 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 027-5: Crypt Sub-Basement Two mobs -027-5,69,42,48,20 monster The Wight 1124,6,60000,8000 -027-5,69,56,48,34 monster The VampireBat 1066,30,100000,30000 -027-5,69,42,49,20 monster The Skeleton 1043,8,60000,8000 -027-5,69,41,49,19 monster The LadySkeleton 1044,8,60000,8000 -027-5,68,42,48,20 monster The RedBone 1074,6,60000,8000 -027-5,70,80,49,17 monster The Skeleton 1043,8,60000,8000 -027-5,69,80,49,18 monster The LadySkeleton 1044,8,60000,8000 +027-5,69,42,48,20 monster Wight 1124,6,60000,8000 +027-5,69,56,48,34 monster Vampire Bat 1066,30,100000,30000 +027-5,69,42,49,20 monster Skeleton 1043,8,60000,8000 +027-5,69,41,49,19 monster Lady Skeleton 1044,8,60000,8000 +027-5,68,42,48,20 monster Red Bone 1074,6,60000,8000 +027-5,70,80,49,17 monster Skeleton 1043,8,60000,8000 +027-5,69,80,49,18 monster Lady Skeleton 1044,8,60000,8000 diff --git a/npc/029-1/_mobs.txt b/npc/029-1/_mobs.txt index df3bf339..94dce7e1 100644 --- a/npc/029-1/_mobs.txt +++ b/npc/029-1/_mobs.txt @@ -1,8 +1,8 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 029-1: Candor Island mobs -029-1,46,48,2,0 monster The CloverPatch 1037,1,10000,120000 -029-1,73,93,7,6 monster The Maggot 1002,8,100000,30000 -029-1,90,35,7,5 monster The TameScorpionMob 1046,16,100000,30000 -029-1,93,100,10,9 monster The TameScorpionMob 1046,8,100000,30000 -029-1,43,43,15,11 monster The ScorpionMob 1003,2,100000,30000 -029-1,76,42,26,12 monster The ManaBug 1131,3,0,0 +029-1,46,48,2,0 monster Clover Patch 1037,1,10000,120000 +029-1,73,93,7,6 monster Maggot 1002,8,100000,30000 +029-1,90,35,7,5 monster Tame Scorpion 1046,16,100000,30000 +029-1,93,100,10,9 monster Tame Scorpion 1046,8,100000,30000 +029-1,43,43,15,11 monster Scorpion 1003,2,100000,30000 +029-1,76,42,26,12 monster Mana Bug 1131,3,0,0 diff --git a/npc/029-2/_mobs.txt b/npc/029-2/_mobs.txt index 750efa5c..abed2b5a 100644 --- a/npc/029-2/_mobs.txt +++ b/npc/029-2/_mobs.txt @@ -1,3 +1,3 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 029-2: Candor Island Indoor mobs -029-2,33,57,12,3 monster The HouseMaggot 1050,7,100000,30000 +029-2,33,57,12,3 monster House Maggot 1050,7,100000,30000 diff --git a/npc/029-4/_mobs.txt b/npc/029-4/_mobs.txt index e2ae9482..b4aa8648 100644 --- a/npc/029-4/_mobs.txt +++ b/npc/029-4/_mobs.txt @@ -1,8 +1,8 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 029-4: 2014 Candor mobs -029-4,69,65,6,6 monster The EvilMushroom 1013,4,20000,60000 -029-4,32,33,6,6 monster The Squirrel 1038,3,30000,60000 -029-4,46,48,2,0 monster The CloverPatch 1037,1,10000,120000 -029-4,37,60,11,10 monster The SpikyMushroom 1019,5,10000,30000 -029-4,54,36,8,9 monster The Bat 1017,4,25000,30000 -029-4,59,51,6,4 monster The LogHead 1025,2,25000,30000 +029-4,69,65,6,6 monster Evil Mushroom 1013,4,20000,60000 +029-4,32,33,6,6 monster Squirrel 1038,3,30000,60000 +029-4,46,48,2,0 monster Clover Patch 1037,1,10000,120000 +029-4,37,60,11,10 monster Spiky Mushroom 1019,5,10000,30000 +029-4,54,36,8,9 monster Bat 1017,4,25000,30000 +029-4,59,51,6,4 monster Log Head 1025,2,25000,30000 diff --git a/npc/030-1/_mobs.txt b/npc/030-1/_mobs.txt index 32eb53b2..58b3a91e 100644 --- a/npc/030-1/_mobs.txt +++ b/npc/030-1/_mobs.txt @@ -1,6 +1,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 030-1: Romantic Place mobs -030-1,0,0,0,0 monster The Pollett 1113,7,100000,30000 -030-1,0,0,0,0 monster The WhiteBell 1095,4,100000,30000 -030-1,71,67,0,0 monster The Santaboo 1112,2,100000,30000 -030-1,71,67,0,0 monster The Reinboo 1094,2,100000,30000 +030-1,0,0,0,0 monster Pollett 1113,7,100000,30000 +030-1,0,0,0,0 monster White Bell 1095,4,100000,30000 +030-1,71,67,0,0 monster Santaboo 1112,2,100000,30000 +030-1,71,67,0,0 monster Reinboo 1094,2,100000,30000 diff --git a/npc/031-1/_mobs.txt b/npc/031-1/_mobs.txt index 1cd1aab7..c740b785 100644 --- a/npc/031-1/_mobs.txt +++ b/npc/031-1/_mobs.txt @@ -1,6 +1,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 031-1: Nivalis Port mobs -031-1,0,0,0,0 monster The Fluffy 1020,10,100000,30000 -031-1,0,0,0,0 monster The Pollett 1113,14,100000,30000 -031-1,76,26,5,2 monster The WhiteSlime 1093,7,100000,30000 -031-1,0,0,0,0 monster The WhiteBell 1095,4,100000,30000 +031-1,0,0,0,0 monster Fluffy 1020,10,100000,30000 +031-1,0,0,0,0 monster Pollett 1113,14,100000,30000 +031-1,76,26,5,2 monster White Slime 1093,7,100000,30000 +031-1,0,0,0,0 monster White Bell 1095,4,100000,30000 diff --git a/npc/031-3/_mobs.txt b/npc/031-3/_mobs.txt index eaa7029c..a4c90533 100644 --- a/npc/031-3/_mobs.txt +++ b/npc/031-3/_mobs.txt @@ -1,91 +1,91 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 031-3: Ice Labyrinth mobs -031-3,230,279,12,13 monster The IceGoblin 1058,5,100000,30000 -031-3,195,277,12,13 monster The IceGoblin 1058,3,100000,30000 -031-3,213,282,33,21 monster The Bat 1017,5,100000,30000 -031-3,37,213,13,11 monster The Yeti 1072,2,100000,30000 -031-3,35,212,13,11 monster The Bat 1017,11,100000,30000 -031-3,38,147,22,34 monster The Moggun 1061,19,100000,30000 -031-3,97,261,21,11 monster The Moggun 1061,5,100000,30000 -031-3,97,291,21,11 monster The Moggun 1061,5,100000,30000 -031-3,36,148,32,21 monster The Bat 1017,11,100000,30000 -031-3,97,277,11,21 monster The Bat 1017,11,100000,30000 -031-3,148,282,11,21 monster The Bat 1017,11,100000,30000 -031-3,145,293,12,13 monster The IceGoblin 1058,6,100000,30000 -031-3,98,214,19,22 monster The IceElement 1071,2,100000,30000 -031-3,99,214,12,13 monster The IceGoblin 1058,3,100000,30000 -031-3,198,144,14,26 monster The IceGoblin 1058,4,100000,30000 -031-3,97,291,21,11 monster The Moggun 1061,5,100000,30000 -031-3,278,282,16,7 monster The IceGoblin 1058,5,100000,30000 -031-3,98,214,19,22 monster The IceElement 1071,2,100000,30000 -031-3,285,218,4,37 monster The IceElement 1071,2,100000,30000 -031-3,283,217,20,32 monster The Bat 1017,15,100000,30000 -031-3,282,237,31,10 monster The Moggun 1061,3,100000,30000 -031-3,282,196,31,8 monster The Moggun 1061,3,100000,30000 -031-3,229,226,13,17 monster The Yeti 1072,3,100000,30000 -031-3,230,227,6,21 monster The IceGoblin 1058,5,100000,30000 -031-3,209,199,6,8 monster The Yeti 1072,2,100000,30000 -031-3,193,216,6,8 monster The Yeti 1072,1,100000,30000 -031-3,213,282,33,21 monster The Bat 1017,5,100000,30000 -031-3,213,282,33,21 monster The Pollett 1113,5,100000,30000 -031-3,199,200,22,7 monster The Bat 1017,13,100000,30000 -031-3,209,199,6,8 monster The Yeti 1072,2,100000,30000 -031-3,234,141,9,9 monster The Yeti 1072,2,100000,30000 -031-3,282,196,31,8 monster The Moggun 1061,3,100000,30000 -031-3,212,159,31,8 monster The Moggun 1061,7,100000,30000 -031-3,212,159,31,8 monster The Moggun 1061,7,100000,30000 -031-3,212,130,31,8 monster The Moggun 1061,7,100000,30000 -031-3,284,143,20,24 monster The Moggun 1061,7,100000,30000 -031-3,283,84,18,15 monster The Bat 1017,15,100000,30000 -031-3,283,84,18,15 monster The Bat 1017,15,100000,30000 -031-3,274,81,7,16 monster The Yeti 1072,2,100000,30000 -031-3,40,53,22,34 monster The Moggun 1061,10,100000,30000 -031-3,120,160,42,15 monster The Yeti 1072,4,100000,30000 -031-3,121,131,41,12 monster The Yeti 1072,8,100000,30000 -031-3,107,130,12,13 monster The IceGoblin 1058,6,100000,30000 -031-3,145,160,12,12 monster The IceGoblin 1058,6,100000,30000 -031-3,94,167,12,12 monster The IceGoblin 1058,6,100000,30000 -031-3,282,37,15,14 monster The IceElement 1071,5,100000,30000 -031-3,213,36,32,16 monster The IceElement 1071,5,100000,30000 -031-3,228,83,15,14 monster The IceElement 1071,3,100000,30000 -031-3,283,138,7,6 monster The IceElement 1071,1,100000,30000 -031-3,198,83,15,14 monster The IceElement 1071,3,100000,30000 -031-3,214,75,12,13 monster The IceGoblin 1058,3,100000,30000 -031-3,217,37,33,21 monster The Bat 1017,10,100000,30000 -031-3,39,52,32,28 monster The Bat 1017,5,100000,30000 -031-3,39,274,32,28 monster The Bat 1017,10,100000,30000 -031-3,119,51,19,32 monster The Bat 1017,10,100000,30000 -031-3,119,50,28,25 monster The IceElement 1071,5,100000,30000 -031-3,120,79,10,8 monster The Yeti 1072,2,100000,30000 -031-3,37,284,3,2 monster The WhiteSlime 1093,7,100000,30000 -031-3,28,255,7,4 monster The BlueSlime 1091,2,100000,30000 -031-3,212,277,7,4 monster The WhiteSlime 1093,7,100000,30000 -031-3,289,295,3,2 monster The WhiteSlime 1093,7,100000,30000 -031-3,292,288,7,4 monster The BlueSlime 1091,2,100000,30000 -031-3,296,233,3,3 monster The WhiteSlime 1093,7,100000,30000 -031-3,271,222,3,3 monster The WhiteSlime 1093,7,100000,30000 -031-3,281,215,27,10 monster The BlueSlime 1091,5,100000,30000 -031-3,126,35,3,2 monster The WhiteSlime 1093,7,100000,30000 -031-3,143,124,17,11 monster The BlueSlime 1091,2,100000,30000 -031-3,48,65,7,4 monster The WhiteSlime 1093,7,100000,30000 -031-3,37,113,2,6 monster The BlueSlime 1091,1,100000,30000 -031-3,136,227,7,4 monster The WhiteSlime 1093,7,100000,30000 -031-3,152,218,6,8 monster The BlueSlime 1091,4,100000,30000 -031-3,135,206,4,3 monster The WhiteSlime 1093,7,100000,30000 -031-3,154,202,3,3 monster The WhiteSlime 1093,7,100000,30000 -031-3,136,216,3,2 monster The BlueSlime 1091,2,100000,30000 -031-3,112,276,3,2 monster The WhiteSlime 1093,7,100000,30000 -031-3,143,294,3,2 monster The WhiteSlime 1093,7,100000,30000 -031-3,149,268,3,2 monster The WhiteSlime 1093,7,100000,30000 -031-3,136,264,3,2 monster The WhiteSlime 1093,7,100000,30000 -031-3,157,283,3,2 monster The WhiteSlime 1093,7,100000,30000 -031-3,139,264,12,9 monster The BlueSlime 1091,4,100000,30000 -031-3,24,265,3,2 monster The WhiteSlime 1093,7,100000,30000 -031-3,52,280,3,2 monster The WhiteSlime 1093,7,100000,30000 -031-3,37,254,3,2 monster The WhiteSlime 1093,7,100000,30000 -031-3,24,290,3,2 monster The WhiteSlime 1093,7,100000,30000 -031-3,48,298,3,2 monster The WhiteSlime 1093,7,100000,30000 -031-3,53,260,3,2 monster The WhiteSlime 1093,7,100000,30000 -031-3,23,275,7,4 monster The BlueSlime 1091,2,100000,30000 -031-3,37,272,7,4 monster The BlueSlime 1091,2,100000,30000 -031-3,52,285,7,4 monster The BlueSlime 1091,2,100000,30000 +031-3,230,279,12,13 monster Ice Goblin 1058,5,100000,30000 +031-3,195,277,12,13 monster Ice Goblin 1058,3,100000,30000 +031-3,213,282,33,21 monster Bat 1017,5,100000,30000 +031-3,37,213,13,11 monster Yeti 1072,2,100000,30000 +031-3,35,212,13,11 monster Bat 1017,11,100000,30000 +031-3,38,147,22,34 monster Moggun 1061,19,100000,30000 +031-3,97,261,21,11 monster Moggun 1061,5,100000,30000 +031-3,97,291,21,11 monster Moggun 1061,5,100000,30000 +031-3,36,148,32,21 monster Bat 1017,11,100000,30000 +031-3,97,277,11,21 monster Bat 1017,11,100000,30000 +031-3,148,282,11,21 monster Bat 1017,11,100000,30000 +031-3,145,293,12,13 monster Ice Goblin 1058,6,100000,30000 +031-3,98,214,19,22 monster Ice Element 1071,2,100000,30000 +031-3,99,214,12,13 monster Ice Goblin 1058,3,100000,30000 +031-3,198,144,14,26 monster Ice Goblin 1058,4,100000,30000 +031-3,97,291,21,11 monster Moggun 1061,5,100000,30000 +031-3,278,282,16,7 monster Ice Goblin 1058,5,100000,30000 +031-3,98,214,19,22 monster Ice Element 1071,2,100000,30000 +031-3,285,218,4,37 monster Ice Element 1071,2,100000,30000 +031-3,283,217,20,32 monster Bat 1017,15,100000,30000 +031-3,282,237,31,10 monster Moggun 1061,3,100000,30000 +031-3,282,196,31,8 monster Moggun 1061,3,100000,30000 +031-3,229,226,13,17 monster Yeti 1072,3,100000,30000 +031-3,230,227,6,21 monster Ice Goblin 1058,5,100000,30000 +031-3,209,199,6,8 monster Yeti 1072,2,100000,30000 +031-3,193,216,6,8 monster Yeti 1072,1,100000,30000 +031-3,213,282,33,21 monster Bat 1017,5,100000,30000 +031-3,213,282,33,21 monster Pollett 1113,5,100000,30000 +031-3,199,200,22,7 monster Bat 1017,13,100000,30000 +031-3,209,199,6,8 monster Yeti 1072,2,100000,30000 +031-3,234,141,9,9 monster Yeti 1072,2,100000,30000 +031-3,282,196,31,8 monster Moggun 1061,3,100000,30000 +031-3,212,159,31,8 monster Moggun 1061,7,100000,30000 +031-3,212,159,31,8 monster Moggun 1061,7,100000,30000 +031-3,212,130,31,8 monster Moggun 1061,7,100000,30000 +031-3,284,143,20,24 monster Moggun 1061,7,100000,30000 +031-3,283,84,18,15 monster Bat 1017,15,100000,30000 +031-3,283,84,18,15 monster Bat 1017,15,100000,30000 +031-3,274,81,7,16 monster Yeti 1072,2,100000,30000 +031-3,40,53,22,34 monster Moggun 1061,10,100000,30000 +031-3,120,160,42,15 monster Yeti 1072,4,100000,30000 +031-3,121,131,41,12 monster Yeti 1072,8,100000,30000 +031-3,107,130,12,13 monster Ice Goblin 1058,6,100000,30000 +031-3,145,160,12,12 monster Ice Goblin 1058,6,100000,30000 +031-3,94,167,12,12 monster Ice Goblin 1058,6,100000,30000 +031-3,282,37,15,14 monster Ice Element 1071,5,100000,30000 +031-3,213,36,32,16 monster Ice Element 1071,5,100000,30000 +031-3,228,83,15,14 monster Ice Element 1071,3,100000,30000 +031-3,283,138,7,6 monster Ice Element 1071,1,100000,30000 +031-3,198,83,15,14 monster Ice Element 1071,3,100000,30000 +031-3,214,75,12,13 monster Ice Goblin 1058,3,100000,30000 +031-3,217,37,33,21 monster Bat 1017,10,100000,30000 +031-3,39,52,32,28 monster Bat 1017,5,100000,30000 +031-3,39,274,32,28 monster Bat 1017,10,100000,30000 +031-3,119,51,19,32 monster Bat 1017,10,100000,30000 +031-3,119,50,28,25 monster Ice Element 1071,5,100000,30000 +031-3,120,79,10,8 monster Yeti 1072,2,100000,30000 +031-3,37,284,3,2 monster White Slime 1093,7,100000,30000 +031-3,28,255,7,4 monster Blue Slime 1091,2,100000,30000 +031-3,212,277,7,4 monster White Slime 1093,7,100000,30000 +031-3,289,295,3,2 monster White Slime 1093,7,100000,30000 +031-3,292,288,7,4 monster Blue Slime 1091,2,100000,30000 +031-3,296,233,3,3 monster White Slime 1093,7,100000,30000 +031-3,271,222,3,3 monster White Slime 1093,7,100000,30000 +031-3,281,215,27,10 monster Blue Slime 1091,5,100000,30000 +031-3,126,35,3,2 monster White Slime 1093,7,100000,30000 +031-3,143,124,17,11 monster Blue Slime 1091,2,100000,30000 +031-3,48,65,7,4 monster White Slime 1093,7,100000,30000 +031-3,37,113,2,6 monster Blue Slime 1091,1,100000,30000 +031-3,136,227,7,4 monster White Slime 1093,7,100000,30000 +031-3,152,218,6,8 monster Blue Slime 1091,4,100000,30000 +031-3,135,206,4,3 monster White Slime 1093,7,100000,30000 +031-3,154,202,3,3 monster White Slime 1093,7,100000,30000 +031-3,136,216,3,2 monster Blue Slime 1091,2,100000,30000 +031-3,112,276,3,2 monster White Slime 1093,7,100000,30000 +031-3,143,294,3,2 monster White Slime 1093,7,100000,30000 +031-3,149,268,3,2 monster White Slime 1093,7,100000,30000 +031-3,136,264,3,2 monster White Slime 1093,7,100000,30000 +031-3,157,283,3,2 monster White Slime 1093,7,100000,30000 +031-3,139,264,12,9 monster Blue Slime 1091,4,100000,30000 +031-3,24,265,3,2 monster White Slime 1093,7,100000,30000 +031-3,52,280,3,2 monster White Slime 1093,7,100000,30000 +031-3,37,254,3,2 monster White Slime 1093,7,100000,30000 +031-3,24,290,3,2 monster White Slime 1093,7,100000,30000 +031-3,48,298,3,2 monster White Slime 1093,7,100000,30000 +031-3,53,260,3,2 monster White Slime 1093,7,100000,30000 +031-3,23,275,7,4 monster Blue Slime 1091,2,100000,30000 +031-3,37,272,7,4 monster Blue Slime 1091,2,100000,30000 +031-3,52,285,7,4 monster Blue Slime 1091,2,100000,30000 diff --git a/npc/032-3/_mobs.txt b/npc/032-3/_mobs.txt index 8d7cea35..27710b36 100644 --- a/npc/032-3/_mobs.txt +++ b/npc/032-3/_mobs.txt @@ -1,12 +1,12 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 032-3: Outback Cave mobs -032-3,90,44,4,5 monster The Skeleton 1043,3,30000,100000 -032-3,44,23,14,11 monster The MountainSnake 1026,7,30000,100000 -032-3,125,46,17,37 monster The Snake 1010,13,30000,100000 -032-3,80,44,4,5 monster The BlackScorpionMob 1009,5,30000,100000 -032-3,85,33,4,5 monster The Spider 1012,5,30000,100000 -032-3,83,18,18,4 monster The Archant 1060,8,30000,100000 -032-3,78,76,12,10 monster The Archant 1060,8,30000,100000 -032-3,25,76,12,10 monster The YellowSlime 1007,11,300000,1000000 -032-3,46,51,17,9 monster The CaveMaggot 1056,11,30000,100000 -032-3,0,0,0,0 monster The Bat 1017,25,30000,100000 +032-3,90,44,4,5 monster Skeleton 1043,3,30000,100000 +032-3,44,23,14,11 monster Mountain Snake 1026,7,30000,100000 +032-3,125,46,17,37 monster Snake 1010,13,30000,100000 +032-3,80,44,4,5 monster Black Scorpion 1009,5,30000,100000 +032-3,85,33,4,5 monster Spider 1012,5,30000,100000 +032-3,83,18,18,4 monster Archant 1060,8,30000,100000 +032-3,78,76,12,10 monster Archant 1060,8,30000,100000 +032-3,25,76,12,10 monster Yellow Slime 1007,11,300000,1000000 +032-3,46,51,17,9 monster Cave Maggot 1056,11,30000,100000 +032-3,0,0,0,0 monster Bat 1017,25,30000,100000 diff --git a/npc/033-1/_mobs.txt b/npc/033-1/_mobs.txt index ea14fd0c..b7735315 100644 --- a/npc/033-1/_mobs.txt +++ b/npc/033-1/_mobs.txt @@ -1,6 +1,6 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 033-1: snow Path mobs -033-1,73,49,5,9 monster The Wolvern 1090,2,100000,30000 -033-1,33,38,7,24 monster The Reinboo 1094,3,100000,30000 -033-1,56,87,25,21 monster The Squirrel 1038,15,100000,30000 -033-1,0,0,0,0 monster The WhiteBell 1095,3,100000,30000 +033-1,73,49,5,9 monster Wolvern 1090,2,100000,30000 +033-1,33,38,7,24 monster Reinboo 1094,3,100000,30000 +033-1,56,87,25,21 monster Squirrel 1038,15,100000,30000 +033-1,0,0,0,0 monster White Bell 1095,3,100000,30000 diff --git a/npc/034-1/_mobs.txt b/npc/034-1/_mobs.txt index 4f2e6386..429df6f1 100644 --- a/npc/034-1/_mobs.txt +++ b/npc/034-1/_mobs.txt @@ -1,8 +1,8 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 034-1: Snow Forest mobs -034-1,0,0,0,0 monster The Reinboo 1094,4,100000,30000 -034-1,0,0,0,0 monster The Fluffy 1020,25,100000,30000 -034-1,0,0,0,0 monster The WhiteBell 1095,5,100000,30000 -034-1,0,0,0,0 monster The Squirrel 1038,25,100000,30000 -034-1,0,0,0,0 monster The Santaboo 1112,4,100000,30000 -034-1,1,1,0,0 monster The IceGoblin 1058,25,100000,30000 +034-1,0,0,0,0 monster Reinboo 1094,4,100000,30000 +034-1,0,0,0,0 monster Fluffy 1020,25,100000,30000 +034-1,0,0,0,0 monster White Bell 1095,5,100000,30000 +034-1,0,0,0,0 monster Squirrel 1038,25,100000,30000 +034-1,0,0,0,0 monster Santaboo 1112,4,100000,30000 +034-1,1,1,0,0 monster Ice Goblin 1058,25,100000,30000 diff --git a/npc/041-1/_mobs.txt b/npc/041-1/_mobs.txt index 0327fb97..045e7fb0 100644 --- a/npc/041-1/_mobs.txt +++ b/npc/041-1/_mobs.txt @@ -1,13 +1,13 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 041-1: Beach mobs -041-1,81,55,9,4 monster The ScorpionMob 1003,3,100000,30000 -041-1,101,67,9,4 monster The ScorpionMob 1003,3,100000,30000 -041-1,100,84,9,4 monster The ScorpionMob 1003,3,100000,30000 -041-1,61,34,6,10 monster The ScorpionMob 1003,3,100000,30000 -041-1,55,30,5,24 monster The SeaSlime 1033,3,100000,30000 -041-1,59,13,5,4 monster The ScorpionMob 1003,3,100000,30000 -041-1,60,7,1,1 monster The TameScorpionMob 1046,1,100000,30000 -041-1,66,49,1,1 monster The TameScorpionMob 1046,1,100000,30000 -041-1,95,75,10,4 monster The TameScorpionMob 1046,1,100000,30000 -041-1,100,57,9,4 monster The RedScorpionMob 1004,3,100000,30000 -041-1,83,64,9,4 monster The RedScorpionMob 1004,3,100000,30000 +041-1,81,55,9,4 monster Scorpion 1003,3,100000,30000 +041-1,101,67,9,4 monster Scorpion 1003,3,100000,30000 +041-1,100,84,9,4 monster Scorpion 1003,3,100000,30000 +041-1,61,34,6,10 monster Scorpion 1003,3,100000,30000 +041-1,55,30,5,24 monster Sea Slime 1033,3,100000,30000 +041-1,59,13,5,4 monster Scorpion 1003,3,100000,30000 +041-1,60,7,1,1 monster Tame Scorpion 1046,1,100000,30000 +041-1,66,49,1,1 monster Tame Scorpion 1046,1,100000,30000 +041-1,95,75,10,4 monster Tame Scorpion 1046,1,100000,30000 +041-1,100,57,9,4 monster Red Scorpion 1004,3,100000,30000 +041-1,83,64,9,4 monster Red Scorpion 1004,3,100000,30000 diff --git a/npc/042-1/_mobs.txt b/npc/042-1/_mobs.txt index 7e7d788f..4431a2eb 100644 --- a/npc/042-1/_mobs.txt +++ b/npc/042-1/_mobs.txt @@ -1,12 +1,12 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 042-1: Tulimshar Suburbs mobs -042-1,101,69,15,7 monster The Maggot 1002,5,100000,30000 -042-1,65,59,13,7 monster The Maggot 1002,7,100000,30000 -042-1,68,102,3,4 monster The BlackScorpionMob 1009,5,100000,30000 -042-1,98,88,2,4 monster The ScorpionMob 1003,4,100000,30000 -042-1,63,63,18,15 monster The TameScorpionMob 1046,6,100000,30000 -042-1,85,102,2,4 monster The ScorpionMob 1003,5,100000,30000 -042-1,98,99,2,2 monster The ScorpionMob 1003,3,100000,30000 -042-1,82,87,3,1 monster The ScorpionMob 1003,2,100000,30000 -042-1,70,88,2,4 monster The BlackScorpionMob 1009,5,100000,30000 -042-1,80,35,5,2 monster The BlackScorpionMob 1009,5,100000,30000 +042-1,101,69,15,7 monster Maggot 1002,5,100000,30000 +042-1,65,59,13,7 monster Maggot 1002,7,100000,30000 +042-1,68,102,3,4 monster Black Scorpion 1009,5,100000,30000 +042-1,98,88,2,4 monster Scorpion 1003,4,100000,30000 +042-1,63,63,18,15 monster Tame Scorpion 1046,6,100000,30000 +042-1,85,102,2,4 monster Scorpion 1003,5,100000,30000 +042-1,98,99,2,2 monster Scorpion 1003,3,100000,30000 +042-1,82,87,3,1 monster Scorpion 1003,2,100000,30000 +042-1,70,88,2,4 monster Black Scorpion 1009,5,100000,30000 +042-1,80,35,5,2 monster Black Scorpion 1009,5,100000,30000 diff --git a/npc/043-1/_mobs.txt b/npc/043-1/_mobs.txt index 8e7739b8..8ed13566 100644 --- a/npc/043-1/_mobs.txt +++ b/npc/043-1/_mobs.txt @@ -1,5 +1,5 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 043-1: Beach mobs -043-1,0,0,0,0 monster The SeaSlime 1033,17,40000,30000 -043-1,0,0,0,0 monster The YellowSlime 1007,15,60000,60000 -043-1,0,0,0,0 monster The GreenSlime 1005,20,60000,60000 +043-1,0,0,0,0 monster Sea Slime 1033,17,40000,30000 +043-1,0,0,0,0 monster Yellow Slime 1007,15,60000,60000 +043-1,0,0,0,0 monster Green Slime 1005,20,60000,60000 diff --git a/npc/043-3/_mobs.txt b/npc/043-3/_mobs.txt index 286ece9f..351a87d4 100644 --- a/npc/043-3/_mobs.txt +++ b/npc/043-3/_mobs.txt @@ -1,11 +1,11 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 043-3: Sandy Dungeon Level 1 mobs -043-3,39,45,12,8 monster The CaveMaggot 1056,6,20000,20000 -043-3,44,60,12,8 monster The CaveMaggot 1056,6,20000,20000 -043-3,41,96,17,13 monster The CaveMaggot 1056,10,20000,20000 -043-3,52,91,3,3 monster The AngryScorpionMob 1057,5,30000,30000 -043-3,102,116,13,9 monster The AngryFireGoblin 1108,10,30000,30000 -043-3,33,99,3,3 monster The AngryScorpionMob 1057,5,30000,30000 -043-3,116,78,12,9 monster The AngryFireGoblin 1108,8,30000,30000 -043-3,113,47,15,11 monster The RedSlime 1008,15,45000,35000 -043-3,94,44,20,9 monster The GreenSlime 1005,5,30000,15000 +043-3,39,45,12,8 monster Cave Maggot 1056,6,20000,20000 +043-3,44,60,12,8 monster Cave Maggot 1056,6,20000,20000 +043-3,41,96,17,13 monster Cave Maggot 1056,10,20000,20000 +043-3,52,91,3,3 monster Angry Scorpion 1057,5,30000,30000 +043-3,102,116,13,9 monster Angry Fire Goblin 1108,10,30000,30000 +043-3,33,99,3,3 monster Angry Scorpion 1057,5,30000,30000 +043-3,116,78,12,9 monster Angry Fire Goblin 1108,8,30000,30000 +043-3,113,47,15,11 monster Red Slime 1008,15,45000,35000 +043-3,94,44,20,9 monster Green Slime 1005,5,30000,15000 diff --git a/npc/043-4/_mobs.txt b/npc/043-4/_mobs.txt index 61e47f68..3785644a 100644 --- a/npc/043-4/_mobs.txt +++ b/npc/043-4/_mobs.txt @@ -1,24 +1,24 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 043-4: Troll Cave mobs -043-4,139,163,3,3 monster The Terranite 1062,2,240000,120000 -043-4,133,45,7,8 monster The UndeadTroll 1117,4,100000,50000 -043-4,91,139,5,5 monster The UndeadTroll 1117,2,100000,50000 -043-4,35,120,5,5 monster The UndeadTroll 1117,2,100000,50000 -043-4,43,143,6,5 monster The UndeadWitch 1116,2,120000,60000 -043-4,102,153,4,4 monster The UndeadWitch 1116,2,120000,60000 -043-4,142,159,7,6 monster The UndeadWitch 1116,2,120000,60000 -043-4,150,33,8,7 monster The UndeadWitch 1116,1,120000,60000 -043-4,103,54,4,11 monster The UndeadTroll 1117,3,100000,50000 -043-4,47,38,10,5 monster The Troll 1054,7,100000,50000 -043-4,98,85,4,7 monster The Snake 1010,5,100000,50000 -043-4,104,57,7,13 monster The Troll 1054,7,100000,50000 -043-4,89,64,4,5 monster The BlackScorpionMob 1009,5,100000,50000 -043-4,143,46,16,14 monster The Troll 1054,7,100000,50000 -043-4,154,106,13,14 monster The BlackScorpionMob 1009,8,100000,50000 -043-4,162,77,7,11 monster The Snake 1010,6,100000,50000 -043-4,152,143,5,5 monster The BlackScorpionMob 1009,6,100000,50000 -043-4,159,161,5,4 monster The Snake 1010,6,100000,50000 -043-4,98,138,10,10 monster The Troll 1054,5,100000,50000 -043-4,45,106,9,12 monster The Troll 1054,5,100000,50000 -043-4,39,138,9,8 monster The BlackScorpionMob 1009,5,100000,50000 -043-4,133,123,15,11 monster The Troll 1054,3,100000,50000 +043-4,139,163,3,3 monster Terranite 1062,2,240000,120000 +043-4,133,45,7,8 monster Undead Troll 1117,4,100000,50000 +043-4,91,139,5,5 monster Undead Troll 1117,2,100000,50000 +043-4,35,120,5,5 monster Undead Troll 1117,2,100000,50000 +043-4,43,143,6,5 monster Undead Witch 1116,2,120000,60000 +043-4,102,153,4,4 monster Undead Witch 1116,2,120000,60000 +043-4,142,159,7,6 monster Undead Witch 1116,2,120000,60000 +043-4,150,33,8,7 monster Undead Witch 1116,1,120000,60000 +043-4,103,54,4,11 monster Undead Troll 1117,3,100000,50000 +043-4,47,38,10,5 monster Troll 1054,7,100000,50000 +043-4,98,85,4,7 monster Snake 1010,5,100000,50000 +043-4,104,57,7,13 monster Troll 1054,7,100000,50000 +043-4,89,64,4,5 monster Black Scorpion 1009,5,100000,50000 +043-4,143,46,16,14 monster Troll 1054,7,100000,50000 +043-4,154,106,13,14 monster Black Scorpion 1009,8,100000,50000 +043-4,162,77,7,11 monster Snake 1010,6,100000,50000 +043-4,152,143,5,5 monster Black Scorpion 1009,6,100000,50000 +043-4,159,161,5,4 monster Snake 1010,6,100000,50000 +043-4,98,138,10,10 monster Troll 1054,5,100000,50000 +043-4,45,106,9,12 monster Troll 1054,5,100000,50000 +043-4,39,138,9,8 monster Black Scorpion 1009,5,100000,50000 +043-4,133,123,15,11 monster Troll 1054,3,100000,50000 diff --git a/npc/045-1/_mobs.txt b/npc/045-1/_mobs.txt index db54f053..67f74f4f 100644 --- a/npc/045-1/_mobs.txt +++ b/npc/045-1/_mobs.txt @@ -1,17 +1,17 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 045-1: Deep Snow Forest mobs -045-1,102,122,11,11 monster The Wolvern 1090,10,100000,30000 -045-1,98,77,11,11 monster The Wolvern 1090,5,100000,30000 -045-1,147,63,11,11 monster The Wolvern 1090,5,100000,30000 -045-1,60,97,11,11 monster The Wolvern 1090,5,100000,30000 -045-1,106,44,11,11 monster The Wolvern 1090,5,100000,30000 -045-1,133,93,11,11 monster The Wolvern 1090,5,100000,30000 -045-1,38,76,9,7 monster The Wolvern 1090,5,100000,30000 -045-1,60,59,9,7 monster The Wolvern 1090,5,100000,30000 -045-1,0,0,0,0 monster The Squirrel 1038,40,100000,30000 -045-1,0,0,0,0 monster The Reinboo 1094,30,100000,30000 -045-1,0,0,0,0 monster The Fluffy 1020,40,100000,30000 -045-1,0,0,0,0 monster The WhiteBell 1095,5,100000,30000 -045-1,47,145,12,12 monster The IceGoblin 1058,4,100000,30000 -045-1,150,126,12,12 monster The IceGoblin 1058,4,100000,30000 -045-1,104,149,39,5 monster The IceGoblin 1058,4,100000,30000 +045-1,102,122,11,11 monster Wolvern 1090,10,100000,30000 +045-1,98,77,11,11 monster Wolvern 1090,5,100000,30000 +045-1,147,63,11,11 monster Wolvern 1090,5,100000,30000 +045-1,60,97,11,11 monster Wolvern 1090,5,100000,30000 +045-1,106,44,11,11 monster Wolvern 1090,5,100000,30000 +045-1,133,93,11,11 monster Wolvern 1090,5,100000,30000 +045-1,38,76,9,7 monster Wolvern 1090,5,100000,30000 +045-1,60,59,9,7 monster Wolvern 1090,5,100000,30000 +045-1,0,0,0,0 monster Squirrel 1038,40,100000,30000 +045-1,0,0,0,0 monster Reinboo 1094,30,100000,30000 +045-1,0,0,0,0 monster Fluffy 1020,40,100000,30000 +045-1,0,0,0,0 monster White Bell 1095,5,100000,30000 +045-1,47,145,12,12 monster Ice Goblin 1058,4,100000,30000 +045-1,150,126,12,12 monster Ice Goblin 1058,4,100000,30000 +045-1,104,149,39,5 monster Ice Goblin 1058,4,100000,30000 diff --git a/npc/046-1/_mobs.txt b/npc/046-1/_mobs.txt index a3a8188c..f2d11830 100644 --- a/npc/046-1/_mobs.txt +++ b/npc/046-1/_mobs.txt @@ -1,13 +1,13 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 046-1: Rock Plateau mobs -046-1,0,7,0,0 monster The Reinboo 1094,40,100000,30000 -046-1,0,7,0,0 monster The Fluffy 1020,50,100000,30000 -046-1,0,7,0,0 monster The Squirrel 1038,50,100000,30000 -046-1,44,35,26,10 monster The Moggun 1061,12,100000,30000 -046-1,0,7,0,0 monster The Yeti 1072,2,100000,30000 -046-1,87,101,11,6 monster The Wolvern 1090,5,100000,30000 -046-1,0,7,0,0 monster The WhiteBell 1095,9,100000,30000 -046-1,72,59,7,6 monster The Wolvern 1090,2,100000,30000 -046-1,36,112,5,4 monster The Wolvern 1090,2,100000,30000 -046-1,115,40,22,16 monster The Wolvern 1090,7,100000,30000 -046-1,145,67,5,4 monster The Wolvern 1090,2,100000,30000 +046-1,0,7,0,0 monster Reinboo 1094,40,100000,30000 +046-1,0,7,0,0 monster Fluffy 1020,50,100000,30000 +046-1,0,7,0,0 monster Squirrel 1038,50,100000,30000 +046-1,44,35,26,10 monster Moggun 1061,12,100000,30000 +046-1,0,7,0,0 monster Yeti 1072,2,100000,30000 +046-1,87,101,11,6 monster Wolvern 1090,5,100000,30000 +046-1,0,7,0,0 monster White Bell 1095,9,100000,30000 +046-1,72,59,7,6 monster Wolvern 1090,2,100000,30000 +046-1,36,112,5,4 monster Wolvern 1090,2,100000,30000 +046-1,115,40,22,16 monster Wolvern 1090,7,100000,30000 +046-1,145,67,5,4 monster Wolvern 1090,2,100000,30000 diff --git a/npc/046-3/_mobs.txt b/npc/046-3/_mobs.txt index 19a4ffdc..8ac0a85d 100644 --- a/npc/046-3/_mobs.txt +++ b/npc/046-3/_mobs.txt @@ -1,17 +1,17 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 046-3: Frosty Underground mobs -046-3,68,101,6,4 monster The Yeti 1072,2,100000,30000 -046-3,0,0,0,0 monster The IceGoblin 1058,20,100000,30000 -046-3,55,61,12,13 monster The Moggun 1061,14,100000,30000 -046-3,119,104,2,2 monster The IceElement 1071,1,100000,30000 -046-3,132,71,4,3 monster The WhiteSlime 1093,4,100000,30000 -046-3,107,85,7,4 monster The BlueSlime 1091,2,100000,30000 -046-3,98,77,3,2 monster The WhiteSlime 1093,4,100000,30000 -046-3,70,82,3,2 monster The WhiteSlime 1093,6,100000,30000 -046-3,106,34,3,2 monster The WhiteSlime 1093,4,100000,30000 -046-3,33,37,3,2 monster The WhiteSlime 1093,4,100000,30000 -046-3,144,105,7,4 monster The BlueSlime 1091,2,100000,30000 -046-3,152,55,7,4 monster The BlueSlime 1091,2,100000,30000 -046-3,84,53,7,4 monster The BlueSlime 1091,2,100000,30000 -046-3,47,23,7,5 monster The IceElement 1071,2,100000,30000 -046-3,113,48,6,4 monster The Yeti 1072,2,100000,30000 +046-3,68,101,6,4 monster Yeti 1072,2,100000,30000 +046-3,0,0,0,0 monster Ice Goblin 1058,20,100000,30000 +046-3,55,61,12,13 monster Moggun 1061,14,100000,30000 +046-3,119,104,2,2 monster Ice Element 1071,1,100000,30000 +046-3,132,71,4,3 monster White Slime 1093,4,100000,30000 +046-3,107,85,7,4 monster Blue Slime 1091,2,100000,30000 +046-3,98,77,3,2 monster White Slime 1093,4,100000,30000 +046-3,70,82,3,2 monster White Slime 1093,6,100000,30000 +046-3,106,34,3,2 monster White Slime 1093,4,100000,30000 +046-3,33,37,3,2 monster White Slime 1093,4,100000,30000 +046-3,144,105,7,4 monster Blue Slime 1091,2,100000,30000 +046-3,152,55,7,4 monster Blue Slime 1091,2,100000,30000 +046-3,84,53,7,4 monster Blue Slime 1091,2,100000,30000 +046-3,47,23,7,5 monster Ice Element 1071,2,100000,30000 +046-3,113,48,6,4 monster Yeti 1072,2,100000,30000 diff --git a/npc/047-1/_mobs.txt b/npc/047-1/_mobs.txt index 06fe3a94..6cced5b8 100644 --- a/npc/047-1/_mobs.txt +++ b/npc/047-1/_mobs.txt @@ -1,24 +1,24 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 047-1: snow Hills mobs -047-1,37,175,1,1 monster The WhiteSlime 1093,7,100000,30000 -047-1,45,75,1,1 monster The BlueSlime 1091,1,100000,30000 -047-1,0,0,0,0 monster The Reinboo 1094,50,100000,30000 -047-1,0,0,0,0 monster The Fluffy 1020,60,100000,30000 -047-1,0,0,0,0 monster The Squirrel 1038,60,100000,30000 -047-1,81,125,51,28 monster The Moggun 1061,25,100000,30000 -047-1,189,123,12,18 monster The Wolvern 1090,6,100000,30000 -047-1,160,115,12,10 monster The Wolvern 1090,6,100000,30000 -047-1,169,163,24,15 monster The Wolvern 1090,6,100000,30000 -047-1,58,71,24,15 monster The Wolvern 1090,6,100000,30000 -047-1,122,116,10,12 monster The Wolvern 1090,6,100000,30000 -047-1,110,173,12,10 monster The Wolvern 1090,6,100000,30000 -047-1,108,168,1,1 monster The WhiteSlime 1093,7,100000,30000 -047-1,108,158,1,1 monster The BlueSlime 1091,1,100000,30000 -047-1,0,0,0,0 monster The WhiteBell 1095,10,100000,30000 -047-1,87,119,18,17 monster The Yeti 1072,2,100000,30000 -047-1,138,22,1,1 monster The WhiteSlime 1093,4,100000,30000 -047-1,157,66,1,1 monster The WhiteSlime 1093,4,100000,30000 -047-1,174,46,2,2 monster The BlueSlime 1091,2,100000,30000 -047-1,143,43,2,2 monster The BlueSlime 1091,2,100000,30000 -047-1,122,61,1,1 monster The WhiteSlime 1093,4,100000,30000 -047-1,132,70,2,2 monster The BlueSlime 1091,2,100000,30000 +047-1,37,175,1,1 monster White Slime 1093,7,100000,30000 +047-1,45,75,1,1 monster Blue Slime 1091,1,100000,30000 +047-1,0,0,0,0 monster Reinboo 1094,50,100000,30000 +047-1,0,0,0,0 monster Fluffy 1020,60,100000,30000 +047-1,0,0,0,0 monster Squirrel 1038,60,100000,30000 +047-1,81,125,51,28 monster Moggun 1061,25,100000,30000 +047-1,189,123,12,18 monster Wolvern 1090,6,100000,30000 +047-1,160,115,12,10 monster Wolvern 1090,6,100000,30000 +047-1,169,163,24,15 monster Wolvern 1090,6,100000,30000 +047-1,58,71,24,15 monster Wolvern 1090,6,100000,30000 +047-1,122,116,10,12 monster Wolvern 1090,6,100000,30000 +047-1,110,173,12,10 monster Wolvern 1090,6,100000,30000 +047-1,108,168,1,1 monster White Slime 1093,7,100000,30000 +047-1,108,158,1,1 monster Blue Slime 1091,1,100000,30000 +047-1,0,0,0,0 monster White Bell 1095,10,100000,30000 +047-1,87,119,18,17 monster Yeti 1072,2,100000,30000 +047-1,138,22,1,1 monster White Slime 1093,4,100000,30000 +047-1,157,66,1,1 monster White Slime 1093,4,100000,30000 +047-1,174,46,2,2 monster Blue Slime 1091,2,100000,30000 +047-1,143,43,2,2 monster Blue Slime 1091,2,100000,30000 +047-1,122,61,1,1 monster White Slime 1093,4,100000,30000 +047-1,132,70,2,2 monster Blue Slime 1091,2,100000,30000 diff --git a/npc/047-3/_mobs.txt b/npc/047-3/_mobs.txt index 5b9ff168..c511d42a 100644 --- a/npc/047-3/_mobs.txt +++ b/npc/047-3/_mobs.txt @@ -1,23 +1,23 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 047-3: Snow Hills Cave mobs -047-3,56,135,4,4 monster The WhiteSlime 1093,7,100000,30000 -047-3,35,153,3,3 monster The WhiteSlime 1093,7,100000,30000 -047-3,39,104,4,4 monster The WhiteSlime 1093,7,100000,30000 -047-3,73,153,4,4 monster The WhiteSlime 1093,7,100000,30000 -047-3,64,104,1,1 monster The WhiteSlime 1093,7,100000,30000 -047-3,24,168,3,2 monster The BlueSlime 1091,2,100000,30000 -047-3,87,134,2,1 monster The BlueSlime 1091,2,100000,30000 -047-3,55,122,2,1 monster The BlueSlime 1091,2,100000,30000 -047-3,35,128,2,1 monster The BlueSlime 1091,2,100000,30000 -047-3,53,84,2,1 monster The BlueSlime 1091,2,100000,30000 -047-3,75,136,10,13 monster The Moggun 1061,5,100000,30000 -047-3,39,31,21,10 monster The Moggun 1061,12,100000,30000 -047-3,40,31,2,1 monster The IceSkull 1085,2,100000,30000 -047-3,122,157,10,8 monster The Yeti 1072,2,100000,30000 -047-3,102,166,7,6 monster The IceSkull 1085,5,100000,30000 -047-3,109,81,7,6 monster The IceElement 1071,1,100000,30000 -047-3,123,90,2,1 monster The BlueSlime 1091,2,100000,30000 -047-3,109,97,4,4 monster The WhiteSlime 1093,7,100000,30000 -047-3,119,41,21,10 monster The Moggun 1061,8,100000,30000 -047-3,51,94,19,7 monster The IceSkull 1085,5,100000,30000 -047-3,121,172,4,4 monster The WhiteSlime 1093,7,100000,30000 +047-3,56,135,4,4 monster White Slime 1093,7,100000,30000 +047-3,35,153,3,3 monster White Slime 1093,7,100000,30000 +047-3,39,104,4,4 monster White Slime 1093,7,100000,30000 +047-3,73,153,4,4 monster White Slime 1093,7,100000,30000 +047-3,64,104,1,1 monster White Slime 1093,7,100000,30000 +047-3,24,168,3,2 monster Blue Slime 1091,2,100000,30000 +047-3,87,134,2,1 monster Blue Slime 1091,2,100000,30000 +047-3,55,122,2,1 monster Blue Slime 1091,2,100000,30000 +047-3,35,128,2,1 monster Blue Slime 1091,2,100000,30000 +047-3,53,84,2,1 monster Blue Slime 1091,2,100000,30000 +047-3,75,136,10,13 monster Moggun 1061,5,100000,30000 +047-3,39,31,21,10 monster Moggun 1061,12,100000,30000 +047-3,40,31,2,1 monster Ice Skull 1085,2,100000,30000 +047-3,122,157,10,8 monster Yeti 1072,2,100000,30000 +047-3,102,166,7,6 monster Ice Skull 1085,5,100000,30000 +047-3,109,81,7,6 monster Ice Element 1071,1,100000,30000 +047-3,123,90,2,1 monster Blue Slime 1091,2,100000,30000 +047-3,109,97,4,4 monster White Slime 1093,7,100000,30000 +047-3,119,41,21,10 monster Moggun 1061,8,100000,30000 +047-3,51,94,19,7 monster Ice Skull 1085,5,100000,30000 +047-3,121,172,4,4 monster White Slime 1093,7,100000,30000 diff --git a/npc/051-1/_mobs.txt b/npc/051-1/_mobs.txt index b69bc17d..a3f58c03 100644 --- a/npc/051-1/_mobs.txt +++ b/npc/051-1/_mobs.txt @@ -1,4 +1,4 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 051-1: Illia outskirts mobs -051-1,42,35,21,12 monster The LogHead 1025,30,100000,30000 -051-1,42,35,20,11 monster The SpikyMushroom 1019,10,100000,30000 +051-1,42,35,21,12 monster Log Head 1025,30,100000,30000 +051-1,42,35,20,11 monster Spiky Mushroom 1019,10,100000,30000 diff --git a/npc/051-3/_mobs.txt b/npc/051-3/_mobs.txt index 6b390b5a..e348ab86 100644 --- a/npc/051-3/_mobs.txt +++ b/npc/051-3/_mobs.txt @@ -1,18 +1,18 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 051-3: Illia Bandit Cave mobs -051-3,31,52,10,6 monster The RedSlime 1008,8,100000,30000 -051-3,31,52,9,7 monster The CaveMaggot 1056,3,100000,30000 -051-3,56,102,1,1 monster The Spider 1012,1,100000,250000 -051-3,61,102,1,1 monster The Spider 1012,1,100000,250000 -051-3,65,102,1,1 monster The Spider 1012,1,100000,250000 -051-3,71,109,2,1 monster The BlackScorpionMob 1009,1,100000,250000 -051-3,59,56,6,18 monster The Bandit 1064,47,100000,10000 -051-3,59,44,6,6 monster The BanditLord 1065,4,100000,20000 -051-3,60,69,9,4 monster The BanditLord 1065,4,100000,20000 -051-3,63,94,0,0 monster The SleepingBandit 1099,1,100000,60000 -051-3,53,93,0,0 monster The SleepingBandit 1099,1,100000,60000 -051-3,48,71,0,0 monster The SleepingBandit 1099,1,100000,60000 -051-3,38,30,8,6 monster The Bandit 1064,12,100000,10000 -051-3,39,33,5,4 monster The BanditLord 1065,2,100000,20000 -051-3,80,101,5,6 monster The CopperSlime 1098,7,100000,60000 -051-3,60,94,9,2 monster The CopperSlime 1098,7,100000,60000 +051-3,31,52,10,6 monster Red Slime 1008,8,100000,30000 +051-3,31,52,9,7 monster Cave Maggot 1056,3,100000,30000 +051-3,56,102,1,1 monster Spider 1012,1,100000,250000 +051-3,61,102,1,1 monster Spider 1012,1,100000,250000 +051-3,65,102,1,1 monster Spider 1012,1,100000,250000 +051-3,71,109,2,1 monster Black Scorpion 1009,1,100000,250000 +051-3,59,56,6,18 monster Bandit 1064,47,100000,10000 +051-3,59,44,6,6 monster Bandit Lord 1065,4,100000,20000 +051-3,60,69,9,4 monster Bandit Lord 1065,4,100000,20000 +051-3,63,94,0,0 monster Sleeping Bandit 1099,1,100000,60000 +051-3,53,93,0,0 monster Sleeping Bandit 1099,1,100000,60000 +051-3,48,71,0,0 monster Sleeping Bandit 1099,1,100000,60000 +051-3,38,30,8,6 monster Bandit 1064,12,100000,10000 +051-3,39,33,5,4 monster Bandit Lord 1065,2,100000,20000 +051-3,80,101,5,6 monster Copper Slime 1098,7,100000,60000 +051-3,60,94,9,2 monster Copper Slime 1098,7,100000,60000 diff --git a/npc/052-1/_mobs.txt b/npc/052-1/_mobs.txt index 9b64940c..f53b2bb6 100644 --- a/npc/052-1/_mobs.txt +++ b/npc/052-1/_mobs.txt @@ -1,3 +1,3 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 052-1: Illia archipelago mobs -052-1,55,29,21,19 monster The AzulSlime 1100,18,100000,20000 +052-1,55,29,21,19 monster Azul Slime 1100,18,100000,20000 diff --git a/npc/055-1/_mobs.txt b/npc/055-1/_mobs.txt index 1239192f..62392f6f 100644 --- a/npc/055-1/_mobs.txt +++ b/npc/055-1/_mobs.txt @@ -1,19 +1,19 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 055-1: Woodland Hills mobs -055-1,68,72,11,9 monster The Butterfly 1055,16,10000,85000 -055-1,87,29,27,7 monster The Silkworm 1035,15,10000,85000 -055-1,79,30,42,8 monster The Squirrel 1038,10,10000,45000 -055-1,0,0,0,0 monster The Mouboo 1028,15,10000,85000 -055-1,91,49,3,2 monster The CloverPatch 1037,1,10000,180000 -055-1,103,54,2,1 monster The CloverPatch 1037,1,10000,180000 -055-1,64,75,13,8 monster The CloverPatch 1037,1,10000,120000 -055-1,80,34,41,12 monster The Snail 1041,3,10000,85000 -055-1,70,72,8,12 monster The AlizarinPlant 1032,2,10000,60000 -055-1,81,32,40,11 monster The AlizarinPlant 1032,2,10000,60000 -055-1,0,0,0,0 monster The MauvePlant 1029,7,10000,55000 -055-1,0,0,0,0 monster The CobaltPlant 1030,3,10000,60000 -055-1,0,0,0,0 monster The GambogePlant 1031,2,10000,60000 -055-1,116,60,2,1 monster The PinkFlower 1014,1,10000,45000 -055-1,97,60,2,1 monster The PinkFlower 1014,1,10000,45000 -055-1,64,73,11,8 monster The PinkFlower 1014,1,10000,45000 -055-1,0,0,0,0 monster The SpikyMushroom 1019,7,10000,60000 +055-1,68,72,11,9 monster Butterfly 1055,16,10000,85000 +055-1,87,29,27,7 monster Silkworm 1035,15,10000,85000 +055-1,79,30,42,8 monster Squirrel 1038,10,10000,45000 +055-1,0,0,0,0 monster Mouboo 1028,15,10000,85000 +055-1,91,49,3,2 monster Clover Patch 1037,1,10000,180000 +055-1,103,54,2,1 monster Clover Patch 1037,1,10000,180000 +055-1,64,75,13,8 monster Clover Patch 1037,1,10000,120000 +055-1,80,34,41,12 monster Snail 1041,3,10000,85000 +055-1,70,72,8,12 monster Alizarin Plant 1032,2,10000,60000 +055-1,81,32,40,11 monster Alizarin Plant 1032,2,10000,60000 +055-1,0,0,0,0 monster Mauve Plant 1029,7,10000,55000 +055-1,0,0,0,0 monster Cobalt Plant 1030,3,10000,60000 +055-1,0,0,0,0 monster Gamboge Plant 1031,2,10000,60000 +055-1,116,60,2,1 monster Pink Flower 1014,1,10000,45000 +055-1,97,60,2,1 monster Pink Flower 1014,1,10000,45000 +055-1,64,73,11,8 monster Pink Flower 1014,1,10000,45000 +055-1,0,0,0,0 monster Spiky Mushroom 1019,7,10000,60000 diff --git a/npc/055-3/_mobs.txt b/npc/055-3/_mobs.txt index e9d8e146..51713aa1 100644 --- a/npc/055-3/_mobs.txt +++ b/npc/055-3/_mobs.txt @@ -1,10 +1,10 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 055-3: Cave mobs -055-3,45,44,10,7 monster The RedSlime 1008,10,10000,60000 -055-3,0,0,0,0 monster The Bat 1017,20,10000,45000 -055-3,53,75,14,20 monster The YellowSlime 1007,10,10000,60000 -055-3,0,0,0,0 monster The BlackScorpionMob 1009,8,10000,35000 -055-3,0,0,0,0 monster The Spider 1012,8,10000,35000 -055-3,0,0,0,0 monster The Snake 1010,3,10000,20000 -055-3,46,44,7,9 monster The Spider 1012,3,50000,100000 -055-3,52,78,18,11 monster The BlackScorpionMob 1009,3,50000,100000 +055-3,45,44,10,7 monster Red Slime 1008,10,10000,60000 +055-3,0,0,0,0 monster Bat 1017,20,10000,45000 +055-3,53,75,14,20 monster Yellow Slime 1007,10,10000,60000 +055-3,0,0,0,0 monster Black Scorpion 1009,8,10000,35000 +055-3,0,0,0,0 monster Spider 1012,8,10000,35000 +055-3,0,0,0,0 monster Snake 1010,3,10000,20000 +055-3,46,44,7,9 monster Spider 1012,3,50000,100000 +055-3,52,78,18,11 monster Black Scorpion 1009,3,50000,100000 diff --git a/npc/057-1/_mobs.txt b/npc/057-1/_mobs.txt index f124d7e4..cd006618 100644 --- a/npc/057-1/_mobs.txt +++ b/npc/057-1/_mobs.txt @@ -1,20 +1,20 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 057-1: Woodland mobs -057-1,0,0,0,0 monster The MauvePlant 1029,5,45000,45000 -057-1,0,0,0,0 monster The CobaltPlant 1030,3,10000,65000 -057-1,0,0,0,0 monster The GambogePlant 1031,5,10000,45000 -057-1,0,0,0,0 monster The AlizarinPlant 1032,7,10000,70000 -057-1,0,0,0,0 monster The Mouboo 1028,14,10000,45000 -057-1,95,42,14,4 monster The Butterfly 1055,3,10000,40000 -057-1,25,48,5,23 monster The Silkworm 1035,7,10000,15000 -057-1,99,40,11,8 monster The PinkFlower 1014,2,10000,45000 -057-1,100,30,9,5 monster The Butterfly 1055,2,10000,40000 -057-1,83,64,6,6 monster The Butterfly 1055,2,10000,40000 -057-1,59,34,4,5 monster The Butterfly 1055,2,10000,40000 -057-1,32,45,4,5 monster The Butterfly 1055,2,10000,40000 -057-1,144,35,6,6 monster The Butterfly 1055,2,10000,40000 -057-1,104,67,6,5 monster The PinkFlower 1014,2,10000,45000 -057-1,135,53,6,5 monster The PinkFlower 1014,2,10000,45000 -057-1,0,0,0,0 monster The SpikyMushroom 1019,10,10000,45000 -057-1,0,0,0,0 monster The CloverPatch 1037,3,10000,180000 -057-1,27,46,7,26 monster The Squirrel 1038,6,10000,50000 +057-1,0,0,0,0 monster Mauve Plant 1029,5,45000,45000 +057-1,0,0,0,0 monster Cobalt Plant 1030,3,10000,65000 +057-1,0,0,0,0 monster Gamboge Plant 1031,5,10000,45000 +057-1,0,0,0,0 monster Alizarin Plant 1032,7,10000,70000 +057-1,0,0,0,0 monster Mouboo 1028,14,10000,45000 +057-1,95,42,14,4 monster Butterfly 1055,3,10000,40000 +057-1,25,48,5,23 monster Silkworm 1035,7,10000,15000 +057-1,99,40,11,8 monster Pink Flower 1014,2,10000,45000 +057-1,100,30,9,5 monster Butterfly 1055,2,10000,40000 +057-1,83,64,6,6 monster Butterfly 1055,2,10000,40000 +057-1,59,34,4,5 monster Butterfly 1055,2,10000,40000 +057-1,32,45,4,5 monster Butterfly 1055,2,10000,40000 +057-1,144,35,6,6 monster Butterfly 1055,2,10000,40000 +057-1,104,67,6,5 monster Pink Flower 1014,2,10000,45000 +057-1,135,53,6,5 monster Pink Flower 1014,2,10000,45000 +057-1,0,0,0,0 monster Spiky Mushroom 1019,10,10000,45000 +057-1,0,0,0,0 monster Clover Patch 1037,3,10000,180000 +057-1,27,46,7,26 monster Squirrel 1038,6,10000,50000 -- cgit v1.2.3-70-g09d2 From ca509115d7fe4cd22b36de5cca6ede1dbecffa31 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Wed, 14 Apr 2021 01:25:50 -0300 Subject: I've forgot to actually give you the skill T.T --- npc/029-2/morgan.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'npc/029-2') diff --git a/npc/029-2/morgan.txt b/npc/029-2/morgan.txt index bd45df7e..8bdd480b 100644 --- a/npc/029-2/morgan.txt +++ b/npc/029-2/morgan.txt @@ -99,11 +99,11 @@ L_CastOnce: L_LearningDone: mes "[Morgan]"; - mes "\"" + get(.invocation$, "spell-wand") + " is a basic wand attack.\""; + mes "\"" + b("confringo") + " is a basic wand attack.\""; mes "\"A Wand must be equipped to use the spell.\""; mes "\"To cast a spell open the chat window, type the invocation and press enter.\""; - mes "\"You can also discharge any active spell by saying " + get(.invocation$, "discharge spell") + ".\""; mes "\"I've taught you all I can for now. You should visit the Mana Seed north west of Hurnscald.\""; + learnskill SKILL_CONFRINGO; goto L_close; L_close: -- cgit v1.2.3-70-g09d2 From 53d342ac7ea490760126c2aaeb934f7f9adf3e97 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Wed, 14 Apr 2021 01:30:50 -0300 Subject: Polish a bit Morgan's code --- npc/029-2/morgan.txt | 40 ++++++++++++++++++++++++++++------------ 1 file changed, 28 insertions(+), 12 deletions(-) (limited to 'npc/029-2') diff --git a/npc/029-2/morgan.txt b/npc/029-2/morgan.txt index 8bdd480b..36b03d20 100644 --- a/npc/029-2/morgan.txt +++ b/npc/029-2/morgan.txt @@ -64,22 +64,38 @@ L_NotMagic: goto L_close; L_Start: + mesn; + mesq l("Great, lets begin your first lesson."); + next; + mesn; + mesq l("This is a wand, there are many like it but this one is now yours."); + getitem Wand, 1; + learnskill SKILL_CONFRINGO; QL_MORGAN = 2; - mes "\"Great, lets begin your first lesson.\""; - getitem 1171, 1; - mes "\"This is a wand, there are many like it but this one is now yours.\""; - mes "\"Various wands and staffs are found throughout the land with many different strengths and weaknesses.\""; - mes "\"To use the wand you need to have it equipped and speak the incantation to let it tap into your mana.\""; - mes "\"As the power of your magic grows so will the spells you can cast.\""; - mes "\"Lets start with a basic wand attack. " + get(.invocation$, "spell-wand") + "\""; - mes "\"Equip the wand and lets try out that spell.\""; - mes "\"To cast a spell open the chat window, type the invocation and press enter.\""; - mes "\"Speak to me again once you've cast the spell.\""; + next; + mesn; + mesq l("Various wands and staffs are found throughout the land with many different strengths and weaknesses."); + next; + mesq l("To use the wand you need to have it equipped and speak the incantation to let it tap into your mana."); + next; + mesn; + mesq l("As the power of your magic grows so will the spells you can cast."); + mesq l("Lets start with a basic wand attack: %s.", b("confringo")); + next; + mesn; + mesq l("Equip the wand and lets try out that spell."); + mesc l("To cast a spell open the skill window, select the spell you wish to use, and press the %s button.", b(l("Use"))); + next; + mesn; + mesq l("It might be a good idea to drag the spell to the shortcut window, so you can target and attack using your keyboard instead of mouse."); + next; + mesn; + mesq l("Speak to me again once you've cast the spell."); goto L_close; L_Started: mes "[Morgan]"; - mes "\"Lets start with a basic wand attack. " + get(.invocation$, "spell-wand") + "\""; + mes "\"Lets start with a basic wand attack. " + b("confringo") + "\""; mes "\"Equip the wand and lets try out that spell.\""; mes "\"To cast a spell open the chat window, type the invocation and press enter.\""; mes "\"Speak to me again once you've cast the spell.\""; @@ -88,7 +104,7 @@ L_Started: L_CastOnce: mes "[Morgan]"; mes "\"Ok, good job! Looks like you have good mana flow.\""; - mes "\"Onto the next lesson. Now that you have " + get(.invocation$, "spell-wand") + " cast,\""; + mes "\"Onto the next lesson. Now that you have " + b("confringo") + " cast,\""; mes "\"Each time you attack the wand will convert a bit of you mana into a magic bolt.\""; mes "\"After so many attacks, you will need to recast the invocation to stay attuned to the wand.\""; mes "\"(Logging out will also cancel any spell effects currently active in-game.).\""; -- cgit v1.2.3-70-g09d2 From cb9a786174fdde9ab8f77ae12ebcfdca00f3eb6d Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Wed, 14 Apr 2021 01:31:27 -0300 Subject: Fix a typo in Morgan's code. --- npc/029-2/morgan.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'npc/029-2') diff --git a/npc/029-2/morgan.txt b/npc/029-2/morgan.txt index 36b03d20..00128fd5 100644 --- a/npc/029-2/morgan.txt +++ b/npc/029-2/morgan.txt @@ -21,7 +21,7 @@ OnInit: callfunc "PCtoNPCRange"; if(@npc_check) end; - if (Int >= 5) + if (readparam(bInt) >= 5) goto L_Learn; goto L_NotMagic; -- cgit v1.2.3-70-g09d2 From a3a4da6faae9403a198ac6c0b60c827cfc393a15 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sun, 18 Apr 2021 04:30:55 -0300 Subject: Sorfina - Auto equip the items when skipping tutorial. --- npc/029-2/sorfina.txt | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'npc/029-2') diff --git a/npc/029-2/sorfina.txt b/npc/029-2/sorfina.txt index d9353e4d..8bb911fb 100644 --- a/npc/029-2/sorfina.txt +++ b/npc/029-2/sorfina.txt @@ -261,15 +261,18 @@ L_SkipTut: L_Bye: mes "[Sorfina]"; mes "\"Alright, if you say so. But take at least this. See you later.\""; - getitem "Knife", 1; - getitem "SlingShot", 1; - getitem "SlingBullet", 500; - getitem "HitchhikersTowel", 1; - getitem "CottonShirt", 1; - getitem "RaggedShorts", 1; + getitem Knife, 1; + getitem SlingShot, 1; + getitem SlingBullet, 500; + getitem HitchhikersTowel, 1; + getitem CottonShirt, 1; + getitem RaggedShorts, 1; set Zeny, Zeny + 35; // tanisha gives 5 Zeny QL_BEGIN = 8; - goto L_close; + equip(CottonShirt); + equip(RaggedShorts); + equip(Knife); + close; L_close: close; -- cgit v1.2.3-70-g09d2 From 6521897eeec144f47a65c5855829544b892368e2 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sun, 18 Apr 2021 15:49:32 -0300 Subject: Update all mapflags - Remove weird nosaves, add Event and MMO zones. Permanent rain to 070-1 close #11 --- db/pre-re/map_zone_db.conf | 109 ++++++++++++++++++++++++++++++++++++++++----- npc/000-1/exit.txt | 1 + npc/001-3/mapflags.txt | 2 +- npc/009-5/mapflags.txt | 1 + npc/009-6/mapflags.txt | 1 + npc/013-1/sagatha.txt | 2 +- npc/015-3/mapflags.txt | 1 + npc/025-4/mapflags.txt | 2 +- npc/027-6/mapflags.txt | 2 +- npc/027-7/mapflags.txt | 2 +- npc/027-8/mapflags.txt | 2 +- npc/028-1/mapflags.txt | 2 +- npc/028-3/mapflags.txt | 2 +- npc/029-2/mapflags.txt | 2 +- npc/029-3/mapflags.txt | 2 +- npc/030-4/mapflags.txt | 2 +- npc/031-4/mapflags.txt | 2 +- npc/051-1/mapflags.txt | 2 +- npc/051-3/mapflags.txt | 2 +- npc/052-1/mapflags.txt | 2 +- npc/052-2/mapflags.txt | 2 +- npc/070-1/_import.txt | 1 + npc/070-1/mapflags.txt | 1 + npc/099-5/_import.txt | 1 + npc/099-5/mapflag.txt | 2 + npc/botcheck/mapflags.txt | 3 +- npc/items/warpTowels.txt | 14 +++--- 27 files changed, 134 insertions(+), 33 deletions(-) create mode 100644 npc/070-1/mapflags.txt create mode 100644 npc/099-5/mapflag.txt (limited to 'npc/029-2') diff --git a/db/pre-re/map_zone_db.conf b/db/pre-re/map_zone_db.conf index 80f21c93..e5fdf71a 100644 --- a/db/pre-re/map_zone_db.conf +++ b/db/pre-re/map_zone_db.conf @@ -130,6 +130,7 @@ zones: ( ) }, { + /* Outside Zone is a mapflag alias */ name: "outside" disabled_skills: { @@ -139,6 +140,103 @@ zones: ( disabled_items: { } }, +{ + /* Event Zone is a mapflag alias */ + name: "Event" + + disabled_skills: { + } + + disabled_items: { + } + + mapflags: ( + "nopenalty", + "nosave 000-1,22,22", + "invincible_time_inc 5000", + ) + + /* "command:min-group-lv-to-override" e.g. "heal: 70" */ + disabled_commands: { + } + skill_damage_cap: { + } +}, +{ + /* Jail Zone is a special mapflag alias */ + name: "Jail" + + disabled_skills: { + TK_JUMPKICK: "PLAYER" + TK_HIGHJUMP: "PLAYER" + } + + disabled_items: { + } +}, +{ + /* MMO Zone is not the place for GMs to mess with */ + name: "MMO" + + disabled_skills: { + AL_WARP: "ALL" + AL_TELEPORT: "ALL" + WE_CALLPARTNER: "ALL" + WE_CALLPARENT: "ALL" + WE_CALLBABY: "ALL" + SC_DIMENSIONDOOR: "ALL" + GD_EMERGENCYCALL: "ALL" + } + + disabled_items: { + HitchhikersTowel: true + WhiteHitchhikersTowel: true + RedHitchhikersTowel: true + GreenHitchhikersTowel: true + BlueHitchhikersTowel: true + YellowHitchhikersTowel: true + PurpleHitchhikersTowel: true + OrangeHitchhikersTowel: true + PinkHitchhikersTowel: true + TealHitchhikersTowel: true + LimeHitchhikersTowel: true + } + + mapflags: ( + "nopenalty", + //"nosave 000-1,22,22", + ) + + /* "command:min-group-lv-to-override" e.g. "heal: 70" */ + disabled_commands: { + // Disabled (Should not ever be used) + recallall: 100 + save: 100 + // Admin Only (no CM on these map) + addwarp: 99 + mapflag: 99 + // Community Manager Only (no GM on these map) + recall: 80 + kill: 80 + nuke: 80 + skillon: 80 + skilloff: 80 + pvpon: 80 + pvpoff: 80 + cvcon: 80 + cvcoff: 80 + gvgon: 80 + gvgoff: 80 + // GM Only (no EVTC on these map) + monster: 60 + killmonster: 60 + killmonster2: 60 + raisemap: 60 + doommap: 60 + } + skill_damage_cap: { + } +}, { /* CvC zone is applied to all maps with a cvc mapflag */ name: "CvC" /* changing this name requires MAP_ZONE_CVC_NAME to also be changed in src/map/map.h file */ @@ -318,17 +416,6 @@ zones: ( disabled_items: { } }, -{ - name: "Jail" - - disabled_skills: { - TK_JUMPKICK: "PLAYER" - TK_HIGHJUMP: "PLAYER" - } - - disabled_items: { - } -}, { name: "Izlude Battle Arena" diff --git a/npc/000-1/exit.txt b/npc/000-1/exit.txt index 4c8f167e..d4a6821a 100644 --- a/npc/000-1/exit.txt +++ b/npc/000-1/exit.txt @@ -15,6 +15,7 @@ OnTalkNearby: warp "029-2", 22, 24; end; L_ToLoc: + // Possibly could warp to "Save" as well? ReturnTown(); end; } diff --git a/npc/001-3/mapflags.txt b/npc/001-3/mapflags.txt index 04479442..d86f50e1 100644 --- a/npc/001-3/mapflags.txt +++ b/npc/001-3/mapflags.txt @@ -1,2 +1,2 @@ 001-3 mapflag nosave 002-2,74,59 -//001-3 mapflag resave 002-2,74,59 +001-3 mapflag zone MMO diff --git a/npc/009-5/mapflags.txt b/npc/009-5/mapflags.txt index c27c167e..a1d35c0d 100644 --- a/npc/009-5/mapflags.txt +++ b/npc/009-5/mapflags.txt @@ -1 +1,2 @@ 009-5 mapflag nosave 009-3,162,82 +009-5 mapflag zone MMO diff --git a/npc/009-6/mapflags.txt b/npc/009-6/mapflags.txt index 9b247c8c..c6a65e72 100644 --- a/npc/009-6/mapflags.txt +++ b/npc/009-6/mapflags.txt @@ -1 +1,2 @@ 009-6 mapflag nosave 009-3,162,82 +009-6 mapflag zone MMO diff --git a/npc/013-1/sagatha.txt b/npc/013-1/sagatha.txt index a2f5ce7d..01171c14 100644 --- a/npc/013-1/sagatha.txt +++ b/npc/013-1/sagatha.txt @@ -217,7 +217,7 @@ L_Teach_N14: if (@mexp < 125 || getskilllv(SKILL_MAGIC) < 1) goto L_Teach_noexp; mesn .@n$; - mes "\"Some forest creatures sometimes overgrow their fur or hide. That makes them uncomfortable.\""; + mesq l("Some forest creatures sometimes overgrow their fur or hide. That makes them uncomfortable."); next; mesn .@n$; mesq l("You can help them with shearing magic. Press your hands together and say '%s'. Then touch them with your hands, and brush off any excess.", b("Chipchip")); diff --git a/npc/015-3/mapflags.txt b/npc/015-3/mapflags.txt index 049e6274..8d10f78e 100644 --- a/npc/015-3/mapflags.txt +++ b/npc/015-3/mapflags.txt @@ -1,2 +1,3 @@ 015-3 mapflag nosave 015-1,59,32 //015-3 mapflag resave 010-1,27,97 +015-3 mapflag zone MMO diff --git a/npc/025-4/mapflags.txt b/npc/025-4/mapflags.txt index a5a1cf62..8183383c 100644 --- a/npc/025-4/mapflags.txt +++ b/npc/025-4/mapflags.txt @@ -1,2 +1,2 @@ 025-4 mapflag nosave 025-1,33,50 -//025-4 mapflag resave 025-1,33,50 +025-4 mapflag zone MMO diff --git a/npc/027-6/mapflags.txt b/npc/027-6/mapflags.txt index 1f2249a1..71b31051 100644 --- a/npc/027-6/mapflags.txt +++ b/npc/027-6/mapflags.txt @@ -1,2 +1,2 @@ 027-6 mapflag nosave 027-3,82,90 -//027-6 mapflag resave 027-3,82,90 +027-6 mapflag zone MMO diff --git a/npc/027-7/mapflags.txt b/npc/027-7/mapflags.txt index 808ab063..5a798c1c 100644 --- a/npc/027-7/mapflags.txt +++ b/npc/027-7/mapflags.txt @@ -1,2 +1,2 @@ 027-7 mapflag nosave 027-4,73,78 -//027-7 mapflag resave 027-4,73,78 +027-7 mapflag zone MMO diff --git a/npc/027-8/mapflags.txt b/npc/027-8/mapflags.txt index 180a25be..f19c8671 100644 --- a/npc/027-8/mapflags.txt +++ b/npc/027-8/mapflags.txt @@ -1,2 +1,2 @@ 027-8 mapflag nosave 027-5,70,27 -//027-8 mapflag resave 027-5,70,27 +027-8 mapflag zone MMO diff --git a/npc/028-1/mapflags.txt b/npc/028-1/mapflags.txt index f0c74e5d..cadc40e9 100644 --- a/npc/028-1/mapflags.txt +++ b/npc/028-1/mapflags.txt @@ -1 +1 @@ -028-1 mapflag nosave 009-1,53,40 +028-1 mapflag zone Event diff --git a/npc/028-3/mapflags.txt b/npc/028-3/mapflags.txt index 62771987..7e4c34b6 100644 --- a/npc/028-3/mapflags.txt +++ b/npc/028-3/mapflags.txt @@ -1 +1 @@ -028-3 mapflag nosave 009-1,53,40 +028-3 mapflag zone Event diff --git a/npc/029-2/mapflags.txt b/npc/029-2/mapflags.txt index bfe50c0c..481d8ee5 100644 --- a/npc/029-2/mapflags.txt +++ b/npc/029-2/mapflags.txt @@ -1,3 +1,3 @@ -029-2 mapflag nosave 029-2,22,24 +//029-2 mapflag nosave 029-2,22,24 //029-2 mapflag resave 029-2,22,24 029-2 mapflag mask 1 diff --git a/npc/029-3/mapflags.txt b/npc/029-3/mapflags.txt index a161e111..f64a309a 100644 --- a/npc/029-3/mapflags.txt +++ b/npc/029-3/mapflags.txt @@ -1,2 +1,2 @@ 029-3 mapflag nosave 029-1,39,102 -//029-3 mapflag resave 029-1,39,102 +029-3 mapflag zone MMO diff --git a/npc/030-4/mapflags.txt b/npc/030-4/mapflags.txt index e9283539..72984c63 100644 --- a/npc/030-4/mapflags.txt +++ b/npc/030-4/mapflags.txt @@ -1,2 +1,2 @@ 030-4 mapflag nosave 030-2,151,25 -//030-4 mapflag resave 030-2,151,25 +030-4 mapflag zone MMO diff --git a/npc/031-4/mapflags.txt b/npc/031-4/mapflags.txt index 06a10489..7ce6a307 100644 --- a/npc/031-4/mapflags.txt +++ b/npc/031-4/mapflags.txt @@ -1,2 +1,2 @@ 031-4 mapflag nosave 031-3,46,26 -//031-4 mapflag resave 031-3,46,26 +031-4 mapflag zone MMO diff --git a/npc/051-1/mapflags.txt b/npc/051-1/mapflags.txt index 5ac6d06e..620a8d3c 100644 --- a/npc/051-1/mapflags.txt +++ b/npc/051-1/mapflags.txt @@ -1,2 +1,2 @@ 051-1 mapflag nosave 007-2,36,23 -//051-1 mapflag resave 007-2,36,23 +051-1 mapflag zone MMO diff --git a/npc/051-3/mapflags.txt b/npc/051-3/mapflags.txt index a3b3c49b..3a343f5a 100644 --- a/npc/051-3/mapflags.txt +++ b/npc/051-3/mapflags.txt @@ -1,2 +1,2 @@ 051-3 mapflag nosave 007-2,36,23 -//051-3 mapflag resave 007-2,36,23 +051-3 mapflag zone MMO diff --git a/npc/052-1/mapflags.txt b/npc/052-1/mapflags.txt index 0e8e3295..045801f7 100644 --- a/npc/052-1/mapflags.txt +++ b/npc/052-1/mapflags.txt @@ -1,2 +1,2 @@ 052-1 mapflag nosave 007-2,36,23 -//052-1 mapflag resave 007-2,36,23 +052-1 mapflag zone MMO diff --git a/npc/052-2/mapflags.txt b/npc/052-2/mapflags.txt index d4ce9d64..082d21b1 100644 --- a/npc/052-2/mapflags.txt +++ b/npc/052-2/mapflags.txt @@ -1,2 +1,2 @@ 052-2 mapflag nosave 007-2,36,23 -//052-2 mapflag resave 007-2,36,23 +052-2 mapflag zone MMO diff --git a/npc/070-1/_import.txt b/npc/070-1/_import.txt index 5dbdaa98..2a44f7d7 100644 --- a/npc/070-1/_import.txt +++ b/npc/070-1/_import.txt @@ -1,2 +1,3 @@ // Map 070-1: Underworld // This file is generated automatically. All manually added changes will be removed when running the Converter. +"npc/070-1/mapflags.txt", diff --git a/npc/070-1/mapflags.txt b/npc/070-1/mapflags.txt new file mode 100644 index 00000000..fb393c84 --- /dev/null +++ b/npc/070-1/mapflags.txt @@ -0,0 +1 @@ +070-1 mapflag mask 17 diff --git a/npc/099-5/_import.txt b/npc/099-5/_import.txt index 7d086628..9276a379 100644 --- a/npc/099-5/_import.txt +++ b/npc/099-5/_import.txt @@ -1,2 +1,3 @@ // Map 099-5: ????? // This file is generated automatically. All manually added changes will be removed when running the Converter. +"npc/099-5/mapflag.txt", diff --git a/npc/099-5/mapflag.txt b/npc/099-5/mapflag.txt new file mode 100644 index 00000000..df97cc7c --- /dev/null +++ b/npc/099-5/mapflag.txt @@ -0,0 +1,2 @@ +099-5 mapflag zone MMO +099-6 mapflag zone MMO diff --git a/npc/botcheck/mapflags.txt b/npc/botcheck/mapflags.txt index 754c247c..6d36e10c 100644 --- a/npc/botcheck/mapflags.txt +++ b/npc/botcheck/mapflags.txt @@ -1,2 +1,3 @@ //botcheck mapflag resave botcheck,37,37 -botcheck mapflag nosave botcheck,37,37 +//botcheck mapflag nosave botcheck,37,37 +botcheck mapflag zone Jail diff --git a/npc/items/warpTowels.txt b/npc/items/warpTowels.txt index 35c7d55b..d90e5639 100644 --- a/npc/items/warpTowels.txt +++ b/npc/items/warpTowels.txt @@ -1,10 +1,14 @@ function script WarpTowel { @seconds = TowelLastUsed - (gettimetick(2) - 1200); - if (@seconds > 0 && GM < 1) + if (@seconds > 0 && !is_trusted()) goto L_DontPanic; - if (isin("botcheck",25,27,51,47)) + .@zone = getmapinfo(MAPINFO_ZONE); + if (.@zone == "Jail") goto L_Prison; - if (getmapflag(getmapname(), mf_nosave) || getmapflag(getmapname(), mf_noteleport) || getmapflag(getmapname(), mf_nowarp) || isin("009-7",$@fightclub_x1,$@fightclub_y1,$@fightclub_x2,$@fightclub_y2)) + // Zone will never be MMO, though + if (.@zone == "MMO" || .@zone == "Event") + goto L_Forbid; + if (getmapflag(getmapname(), mf_noteleport) || getmapflag(getmapname(), mf_nowarp) || isin("009-7",$@fightclub_x1,$@fightclub_y1,$@fightclub_x2,$@fightclub_y2)) goto L_Forbid; if (@warpTowelName$ == "HitchhikersTowel") @@ -115,7 +119,7 @@ L_WarpPlayer: goto L_BreakChance; L_BreakChance: - if (rand(15)) + if (rand2(12)) goto L_Keep; getitem "HitchhikersTowel", 1; goto L_End; @@ -125,7 +129,7 @@ L_Forbid: goto L_Keep; L_Prison: - message strcharinfo(0), "Towel : You must be warped by a GM to leave the botcheck area."; + message strcharinfo(0), "Towel : You must be warped by a GM to leave this area."; goto L_Keep; L_DontPanic: -- cgit v1.2.3-70-g09d2 From 9ef2d146f573ee9b1085257ed2c1f41f6f183e10 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sun, 18 Apr 2021 16:52:52 -0300 Subject: Polish up a bit Sorfina's code --- npc/029-2/sorfina.txt | 128 +++++++++++++++++++++++++------------------------- 1 file changed, 64 insertions(+), 64 deletions(-) (limited to 'npc/029-2') diff --git a/npc/029-2/sorfina.txt b/npc/029-2/sorfina.txt index 8bb911fb..945924ca 100644 --- a/npc/029-2/sorfina.txt +++ b/npc/029-2/sorfina.txt @@ -13,44 +13,44 @@ L_Main: goto L_Start; L_Start: - mes "You open your eyes."; + mes l("You open your eyes."); mes ""; - mes "[Old Woman]"; - mes "\"Ah, you woke up. You washed ashore on the beach 3 days ago. You've been asleep since."; - mes "You must have been thrown off one of the ships sailing during that last tremor.\""; - mes "\"My little granddaughter Tanisha found you. Kaan was able to carry you to bed."; - mes "We've been taking care of you ever since. Waiting for you to wake up.\""; - mes "\"You didn't have any possessions on you when we found you and no one knows who you are.\""; - mes "Do you have a name?"; - menu - strcharinfo(0), L_name; + mesn l("Old Woman"); + mes l("\"Ah, you woke up. You washed ashore on the beach 3 days ago. You've been asleep since."); + mes l("You must have been thrown off one of the ships sailing during that last tremor.\""); + next; + mes l("\"My little granddaughter Tanisha found you. Kaan was able to carry you to bed."); + mes l("We've been taking care of you ever since. Waiting for you to wake up.\""); + next; + mesq l("You didn't have any possessions on you when we found you and no one knows who you are."); + mes l("Do you have a name?"); + select + strcharinfo(0); -L_name: - mes "[Old Woman]"; - mes "\"Well " + strcharinfo(0) + " what else can you tell me about yourself?.\""; + mesn l("Old Woman"); + mesq l("Well %s what else can you tell me about yourself?.", strcharinfo(0)); next; - mes "[Old Woman]"; - mes "\"Go on. If you need to think a bit, take your time.\""; + mesn l("Old Woman"); + mesq l("Go on. If you need to think a bit, take your time."); select - "... Tulimshar in Tonori ... I'm a Talpan."; + l("... Tulimshar in Tonori ... I'm a Talpan."); mes ""; - mes "[Old Woman]"; - mes "\"Anything else you can remember?\""; - menu - "Umm... no... I... I don't remember anything else...", L_KnowNothing; + mesn l("Old Woman"); + mesq l("Anything else you can remember?"); + select + l("Umm... no... I... I don't remember anything else..."); -L_KnowNothing: - mes "[Old Woman]"; - mes "\"Well I can tell you some useful things, if you want to hear."; - mes "Some of it might jog your memory or at least help you catch your bearings."; - mes "Oh, and by the way my name is Sorfina.\""; + mesn l("Old Woman"); + mes l("Well I can tell you some useful things, if you want to hear."); + mes l("Some of it might jog your memory or at least help you catch your bearings."); + mes l("Oh, and by the way my name is Sorfina.\""); menu - "That would be great!",L_Tut, - "No, thanks. I already know how things are going.",L_SkipTut; + l("That would be great!"), L_Tut, + l("No, thanks. I already know how things are going."), L_SkipTut; L_Tut: - mes "She smiles at you."; - mes "[Sorfina]"; + mesc l("She smiles at you."); + mesn; mes "\"You have arrived at a very strange time. The Council is visiting Candor today.\""; mes "\"All the recent rumbling from the cave has all of Candor worried.\""; mes "\"Our guess is something with the last big shaker was the reason you ended up here.\""; @@ -58,7 +58,7 @@ L_Tut: goto L_Carpet; L_Carpet: - mes "[Sorfina]"; + mesn; mes "\"Try to take a few steps and walk to that carpet over there."; next; camera "#Carpet"; @@ -72,7 +72,7 @@ L_Carpet: goto L_close; L_Dresser: - mes "[Sorfina]"; + mesn; mes "\"You should get dressed now.\""; next; camera "Dresser#tutorial"; @@ -85,7 +85,7 @@ L_Dresser: goto L_close; L_Naked: - mes "[Sorfina]"; + mesn; mes "\"Press [###keyWindowInventory;] or click on the Inventory button in the bar at the upper right corner to open your bag.\""; mes "\"Once we stop talking, double-click on the clothes to equip.\""; mes "\"Talk to me again after you get dressed. You can either click on me, or press [###keyTargetNPC;] to focus on me and [###keyTalk;] to talk.\""; @@ -94,7 +94,7 @@ L_Naked: L_Clothes: if (getequipid(equip_torso) < 0) goto L_Naked; - mes "[Sorfina]"; + mesn; mes "\"That's much better, don't you think?\""; mes "\"Here take this.\""; getitem "HitchhikersTowel", 1; @@ -116,7 +116,7 @@ L_Clothes: goto L_close; L_Again: - mes "[Sorfina]"; + mesn; mes "\"Make yourself at home! Do you have any questions?\""; menu "Yes, could you explain about...",L_Explain, @@ -126,14 +126,14 @@ L_Again: L_Heal: if (BaseLevel > 20) goto L_NoHeal; - mes "[Sorfina]"; + mesn; mes "\"Hello Dear! You look tired, you should rest a moment.\""; mes "You take a short nap and feel refreshed."; heal MaxHp, 0; goto L_Main; L_NoHeal: - mes "[Sorfina]"; + mesn; mes "\"I'm sorry but your wounds are far to advanced for my skills.\""; goto L_Main; @@ -148,7 +148,7 @@ L_Explain: "... nevermind.",L_close; L_Walk: - mes "[Sorfina]"; + mesn; mes "\"You can use the arrow keys to walk around."; mes "Press [###keyMoveUp;] to move up, press [###keyMoveDown;] to move down, "; mes "press [###keyMoveLeft;] to move left, press [###keyMoveRight;] to move right "; @@ -157,7 +157,7 @@ L_Walk: goto L_close; L_Talk: - mes "[Sorfina]"; + mesn; mes "\"If you want to talk to a normal person, you can click at him or her."; mes "Or you can press [###keyTargetNPC;] to focus on the nearest person and then press [###keyTalk;] to talk.\""; next; @@ -172,7 +172,7 @@ L_Talk: goto L_close; L_Items: - mes "[Sorfina]"; + mesn; mes "\"There are three types of items."; mes "They can be Consumables, Equipment or Miscellaneous.\""; next; @@ -195,7 +195,7 @@ L_Items: goto L_close; L_Shortcut: - mes "[Sorfina]"; + mesn; mes "\"Press [###keyWindowShortcut;] or click the Shortcut button in the bar at the upper right to open your shortcut window.\""; next; mes "\"You can select the item you want to put on a shortcut with your mouse and then click on the position in the shortcut window you want to place it.\""; @@ -204,7 +204,7 @@ L_Shortcut: goto L_close; L_Aidan: - mes "[Sorfina]"; + mesn; mes "\"I heard Aidan and Valon are looking for brave adventurers, you might want to talk to them. "; mes "You can find Aidan near the camp fire outside. The fields are just south of the town exit. "; mes "You'll see Valon of the city gaurd standing there. They both are offering rewards for monster hunting.\""; @@ -218,7 +218,7 @@ L_Aidan: goto L_close; L_Barber: - mes "[Sorfina]"; + mesn; mes "\"Jessie downstairs can change your appearance.\""; mes "\"They will allow you to change your hair color or style as well as gender.\""; next; @@ -227,7 +227,7 @@ L_Barber: goto L_close; L_Hasan: - mes "[Sorfina]"; + mesn; mes "\"Make yourself at home! Do you have any questions?\""; menu "A guy named Hasan is bullying people.",L_Next, @@ -237,7 +237,7 @@ L_Hasan: L_Next: mes "\"Ah, Hasan. He's causing trouble again?\""; mes "She shakes her head."; - mes "[Sorfina]"; + mesn; mes "\"This guy has been a plague ever since he could walk. He's always causing trouble.\""; mes "\"And his father... Well, one day his father thought he should teach Hasan a lesson.\""; mes "\"He took him into the desert and then left him there!"; @@ -252,14 +252,14 @@ L_Next: goto L_close; L_SkipTut: - mes "[Sorfina]"; + mesn; mes "\"Really? You seem quite unexperienced. Listening to some advice won't hurt.\""; menu "Thinking about it twice... please tell me.",L_Tut, "Yeah, but thanks for the offer. Bye.",L_Bye; L_Bye: - mes "[Sorfina]"; + mesn; mes "\"Alright, if you say so. But take at least this. See you later.\""; getitem Knife, 1; getitem SlingShot, 1; @@ -287,16 +287,16 @@ OnTouch: if (QL_BEGIN != 1) end; mapmask getmask(); - mes "[Sorfina]"; - mes "\"You should get dressed now.\""; + mesn l("Sorfina"); + mesq l("You should get dressed now."); next; camera "Dresser#tutorial"; mapmask getmask() | 16; - mes "\"In that dresser there are some clothes you can wear.\""; - mes "\"To interact with things in your environment or talk to NPCs you can either click on it or press N to focus and T to talk/activate.\""; + mesq l("In that dresser there are some clothes you can wear."); + mesc l("To interact with things in your environment or talk to NPCs you can either click on it or press N to focus and T to talk/activate."); next; camera; - mes "\"Now get the clothes out of the dresser.\""; + mesq l("Now get the clothes out of the dresser."); QL_BEGIN = 2; close; } @@ -307,25 +307,25 @@ OnTouch: goto L_Walk; L_Walk: - mes "[Sorfina]"; - mes "\"Thats not what I said to do. Please don't skip ahead.\""; + mesn l("Sorfina"); + mesq l("Thats not what I said to do. Please don't skip ahead."); close; L_Shirt: mapmask getmask(); - mes "You take a simple Cotton Shirt and some very worn-out Ragged Shorts out of the dresser."; + mesc l("You take a simple Cotton Shirt and some very worn-out Ragged Shorts out of the dresser."); getitem CottonShirt, 1; getitem RaggedShorts, 1; - mes "[Sorfina]"; - mes "\"Great! Now you can equip it.\""; - mes "\"You can open your inventory by pressing F3 or clicking on the 'Inventory' button in the bar at the upper right corner.\""; - next; - mes "\"After we finish talking, click on the clothes and press the equip button.\""; QL_BEGIN = 3; + mesn l("Sorfina"); + mesq l("Great! Now you can equip it."); + mesc l("You can open your inventory by pressing F3 or clicking on the 'Inventory' button in the bar at the upper right corner."); + next; + mesq l("After we finish talking, click on the clothes and press the equip button."); close; L_Empty: - mes "The dresser is empty."; + mes l("The dresser is empty."); close; OnInit: @@ -349,8 +349,8 @@ L_Block: if (TUT_var > 0) end; mes "[Server/Client Notice]"; - mes "The explanations in this tutorial are based on the official client, Manaplus."; - mes "If you're using another client, settings and controls may be different."; + mesc l("The explanations in this tutorial are based on the Manaplus client."); + mesc l("If you're using another client, settings and controls may be different."); callfunc "GameRules"; close; } @@ -358,8 +358,8 @@ L_Block: if (TUT_var > 0) end; mes "[Server/Client Notice]"; - mes "The explanations in this tutorial are based on the official client, Manaplus."; - mes "If you're using another client, settings and controls may be different."; + mesc l("The explanations in this tutorial are based on the Manaplus client."); + mesc l("If you're using another client, settings and controls may be different."); callfunc "GameRules"; close; } -- cgit v1.2.3-70-g09d2 From 8475167670c2e58a8448184c9abbf21e2174d557 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sat, 1 May 2021 13:43:48 -0300 Subject: Small cleanup at Jessie, but I can't particularly see any error. Keep in mind NPC talking range is the same as on Legacy (4 tiles iirc) --- npc/029-2/stat_reset.txt | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) (limited to 'npc/029-2') diff --git a/npc/029-2/stat_reset.txt b/npc/029-2/stat_reset.txt index 75fe3e66..438f8b99 100644 --- a/npc/029-2/stat_reset.txt +++ b/npc/029-2/stat_reset.txt @@ -6,7 +6,7 @@ if (BaseLevel >= 10) goto L_Sorry; - mes "[Jessie]"; + mesn; mes "\"I know a spell that will"; mes "reset status points on the youngings."; mes ""; @@ -15,35 +15,31 @@ menu "Reset my stats",L_Reset, "Change my appearance", L_Appearance, - "Forget about it",L_Pass; + "Forget about it", L_Pass; L_Appearance: - callfunc "Barber"; + Barber(); goto L_Pass; L_Reset: - resetstatus; - - mes "[Jessie]"; + resetstatus(); + mesn; mes "\"There you are."; mes ""; mes "Good as new!\""; - goto L_close; + close; L_Pass: - mes "[Jessie]"; - mes "\"Very well then, see you.\""; - goto L_close; + mesn; + mesq l("Very well then, see you."); + close; L_Sorry: - mes "[Jessie]"; - mes "\"My spell only works on the very young, sorry.\""; + mesn; + mesq l("My spell only works on the very young, sorry."); next; mes "\"You can try Mailvox in the Tulimshar Bazaar or Wyara in the Potion Shop in Hurnscald.\""; menu "Change my appearance", L_Appearance, - "Bye", L_close; - -L_close: - close; + "Bye", L_Pass; } -- cgit v1.2.3-70-g09d2 From 1da05d24db230a695fce7522b383762f29f93f38 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sat, 1 May 2021 14:18:30 -0300 Subject: Allow Jessie to reset status at level 10 as well. --- npc/029-2/stat_reset.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'npc/029-2') diff --git a/npc/029-2/stat_reset.txt b/npc/029-2/stat_reset.txt index 438f8b99..5a9f8dd1 100644 --- a/npc/029-2/stat_reset.txt +++ b/npc/029-2/stat_reset.txt @@ -3,7 +3,7 @@ callfunc "PCtoNPCRange"; if(@npc_check) end; - if (BaseLevel >= 10) + if (BaseLevel > 10) goto L_Sorry; mesn; -- cgit v1.2.3-70-g09d2 From 519a365928311d0cf8558526b073a4cff69eed49 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Thu, 27 May 2021 19:35:38 +0000 Subject: Mirror Lake Quest - Cindy --- conf/login/login-server.conf | 2 +- db/constants.conf | 10 +++- npc/009-8/celestia.txt | 17 ++++++- npc/013-2/notes.txt | 10 ++++ npc/013-2/wizard.txt | 76 ++++++++++++++++++++++++++++++ npc/017-4/waric.txt | 7 +++ npc/029-2/morgan.txt | 21 +++++++-- npc/031-1/angelaOutside.txt | 9 ++-- npc/031-2/angelaHouse.txt | 51 +++++++++++++++++++- npc/031-4/cindyCave.txt | 10 ++-- npc/048-2/sageNikolai.txt | 109 ++++++++++++++++++++++++++++++++++++------- npc/functions/bitwise.txt | 18 +++---- npc/functions/vault.txt | 6 +-- 13 files changed, 298 insertions(+), 48 deletions(-) (limited to 'npc/029-2') diff --git a/conf/login/login-server.conf b/conf/login/login-server.conf index da759180..da36d0aa 100644 --- a/conf/login/login-server.conf +++ b/conf/login/login-server.conf @@ -200,6 +200,6 @@ login_configuration: { } -update_server: "http://evol.gitlab.io/clientdata/" +update_server: "http://updates.tmw2.org/messworld/" import: "conf/import/login-server.conf" diff --git a/db/constants.conf b/db/constants.conf index 5d0e317e..b2e6b20d 100644 --- a/db/constants.conf +++ b/db/constants.conf @@ -3297,7 +3297,15 @@ more than one separator can be used in a row (so 12_3___456 is illegal). comment__: "Misc settings" CHEST_WAITTIME: 900 // 15 minutes ROSSY_INSTIME: 1200 // 20 minutes - WORLD_ID: 2 // Vault WID Identifier + + comment__: "Mirror Lake settings" + WORLD_ID: 3 // Vault WID Identifier + MLP_MOUBOOTAUR: 1 // MLP code for Moubootaur Legends + + comment__: "Mirror Lake Quest Constants" + MLP_TMW_CELESTIA: 1 + MLP_TMW_YETIKING: 2 + //MLP_................ 4 comment__: "Report Bug Flags" RB_NONE: 0 diff --git a/npc/009-8/celestia.txt b/npc/009-8/celestia.txt index 90889385..e4ef6f2d 100644 --- a/npc/009-8/celestia.txt +++ b/npc/009-8/celestia.txt @@ -43,6 +43,7 @@ L_MainMenu: menu // else we just show a boring menu "Party! Of course I came out for the party!", L_CameForParty, "I'm sorry, life is much too serious for tea.", L_SrsBsns, + rif(get_nibble(##03_TMWQUEST, 0), l("Actually, have you ever heard of Yeti's kidnapping little girls?")), L_VaultQuest, "(Walk away)", L_InstaClose; L_EasyQuestMenu: @@ -50,6 +51,7 @@ L_EasyQuestMenu: "Party! Of course I came out for the party!", L_CameForParty, "I'm sorry, life is much too serious for tea.", L_SrsBsns, "Is there anything that I can do to help?", L_OfferHelp, // <= this will start the first quest + rif(get_nibble(##03_TMWQUEST, 0), l("Actually, have you ever heard of Yeti's kidnapping little girls?")), L_VaultQuest, "(Walk away)", L_InstaClose; L_AdvQuestMenu: @@ -57,6 +59,7 @@ L_AdvQuestMenu: "Party! Of course I came out for the party!", L_CameForParty, "I'm sorry, life is much too serious for tea.", L_SrsBsns, "I heard you were looking for help from experienced adventurers...", L_Scared, // <= this will start the adv quest + rif(get_nibble(##03_TMWQUEST, 0), l("Actually, have you ever heard of Yeti's kidnapping little girls?")), L_VaultQuest, "(Walk away)", L_InstaClose; L_CameForParty: @@ -142,6 +145,16 @@ L_ThankYou: next; goto L_MainMenu; +L_VaultQuest: + mesn; + mesq l("I've heard of Yetis %s little girls, and kidnapping them to eat immediately after.", b(l("eating"))); + next; + mesn; + mesq l("If a Yeti kidnapped your friend and you had the time to come here tell me this, they're likely already gone."); + next; + mesc l("Thinking back, Cindy was in a cage. Something seems off."); + close; + L_Scared: mes "Celestia takes a close look at you and seems to be satisfied."; next; @@ -194,8 +207,8 @@ L_YetiComplete: L_AcceptTrinket: mes "\"May our path cross again.\""; mes; - mes "["+getitemlink("HeartNecklace")+"]"; - getitem "HeartNecklace", 1; + mes l("%s", getitemlink("HeartNecklace")); + getitem HeartNecklace, 1; QL_CELESTIA = 206; close; diff --git a/npc/013-2/notes.txt b/npc/013-2/notes.txt index 92ded429..8c2cf9fa 100644 --- a/npc/013-2/notes.txt +++ b/npc/013-2/notes.txt @@ -12,6 +12,16 @@ 013-2,38,20,0 script Saying#wiz NPC400,{ mes "The early bird catcheth the worm."; + if (!getvaultid()) close; // Close this mirror lake + if (get_nibble(##03_TMWQUEST, 0) < 2) close; // Not yet authorized + mesc l("Should we recite this backward to travel to a different world? If yes, thinking on what?"); + select + l("Leave it be."), + rif(get_nibble(##03_TMWQUEST, 0) >= 2, l("Think on Mouboos and Cindy problems")); + mes ""; + switch (@menu) { + case 2: MirrorLakeSendTo(MLP_MOUBOOTAUR, 0); break; + } close; } diff --git a/npc/013-2/wizard.txt b/npc/013-2/wizard.txt index 85704b5e..5bef35a4 100644 --- a/npc/013-2/wizard.txt +++ b/npc/013-2/wizard.txt @@ -24,6 +24,7 @@ L_Start: menu "Thanks, that's very kind of you!", L_Thanks, "Can you teach me magic?", L_TeachRude, + rif(get_nibble(##03_TMWQUEST, 0), l("Actually, have you ever heard of Yeti's kidnapping little girls?")), L_VaultQuest, "Oh, shut up!", L_ShutUp; L_TeachRude: @@ -136,6 +137,81 @@ L_Agree: mes "\"Oh, and please don't take my apprentice too seriously. He still has a lot to learn.\""; goto L_close; +L_VaultQuest: + .@q = get_nibble(##03_TMWQUEST, 0); + mes ""; + mesc l("%s raises an eyebrow at you.", strnpcinfo(1)); + if (.@q == 1) { + mesn; + mesq l("Are you being serious?"); + next; + //if (askyesno() == ASK_NO) close; + mesn; + mesq l("Have you at least asked Celestia about it? She is very knowledgeable about Yetis."); + next; + select + l("Who is Celestia?"), + l("Yes I did."), + l("No I didn't, I'll ask her."); + mes ""; + switch (@menu) { + case 1: + mesn; + mesq l("Ah, Celestia... She is a good woman who lives in Hurnscald. Go find her, come back to me after."); + close; + case 3: + close; + } + mesn; + mesq l("And what did she say?"); + next; + mesc l("You explain to the wizard about the situation."); + next; + mesn; + mesq l("If she said Yetis doesn't do it, then they doesn't do it... In this world, at least."); + if (!getvaultid()) close; // Duplicate code, for double safety + next; + select + l("\"this world\"?"); + mes ""; + mesn; + mesq l("Oh yes, there are worlds like this one where you can find even Yetis involved in politics. Really impressing."); + next; + set_nibble(##03_TMWQUEST, 0, 2); + .@q = 2; + } + if (.@q == 2) { + mesn; + mesq l("It was a long time since the last time I visited a different world... But you're young. Maybe you can do it. However, keep it a secret."); + next; + mesn; + mesq l("So, lemme think. There was this world, \"Moubootaur Lake\" or something, don't recall how they call themselves."); // Typo on purpose + next; + mesn; + mesq l("You could ask the %s of that world about it. Come back to me if she doesn't know anything, and I'll think on another world.", b("Celestia")); + next; + mesn; + mesq l("Now, %s. The worlds are all different. The one you're going to may be similar but is far from a carbon copy of this one.", b(l("pay attention"))); + next; + mesn; + mesq l("That world's Celestia is %s but not necessarily on the same house, or with the exact same name, nor with the exact same clothes.", b(l("likely on the same town"))); + next; + mesn; + mesq l("Now, if my memory serves me right, after visiting that world, you'll appear near a lake. %s, and then %s.", + b(l("Go south until you see a big road")), + b(l("Head east until you see the town"))); + next; + mesn; + mesq l("If you know a native citizen of the world, all the better. Worlds tend to impose their own rules, after all."); + next; + mesn; + mesq col(l("*cough cough*"), 9)+" "+l("Anyway, I don't teach this spell to everyone. Near my bed is a saying. Recite it backwards, think on the world you want to go, and let it be."); + next; + } + mesn; + mesq l("Good luck, and come back to me if you need help."); + close; + L_close: @has_magic = 0; close; diff --git a/npc/017-4/waric.txt b/npc/017-4/waric.txt index 1ada69ff..f58eda6c 100644 --- a/npc/017-4/waric.txt +++ b/npc/017-4/waric.txt @@ -318,8 +318,15 @@ L_MoreMagic: next; menu "Can you tell me the invocations for the spells you taught me again?", L_Next8, + rif(get_nibble(##03_TMWQUEST, 0), l("Actually, have you ever heard of Yeti's kidnapping little girls?")), L_VaultQuest, "Thanks, master. I will come back later", L_close; +L_VaultQuest: + mes ""; + mesn; + mesq l("Sounds cool, but no. Besides, kidnapping is not my style."); + close; + L_Next8: mesn; mesq l("Yes, of course."); diff --git a/npc/029-2/morgan.txt b/npc/029-2/morgan.txt index 00128fd5..d5416802 100644 --- a/npc/029-2/morgan.txt +++ b/npc/029-2/morgan.txt @@ -61,7 +61,7 @@ L_Seen: L_NotMagic: mes "[Morgan]"; mes "\"Hrmm you don't appear to posses enough magical talent to teach.\""; - goto L_close; + close; L_Start: mesn; @@ -91,7 +91,7 @@ L_Start: next; mesn; mesq l("Speak to me again once you've cast the spell."); - goto L_close; + close; L_Started: mes "[Morgan]"; @@ -99,7 +99,7 @@ L_Started: mes "\"Equip the wand and lets try out that spell.\""; mes "\"To cast a spell open the chat window, type the invocation and press enter.\""; mes "\"Speak to me again once you've cast the spell.\""; - goto L_close; + close; L_CastOnce: mes "[Morgan]"; @@ -111,7 +111,7 @@ L_CastOnce: next; mes "\"I've taught you all I can for now. You should visit the Mana Seed north west of Hurnscald.\""; QL_MORGAN = 4; - goto L_close; + close; L_LearningDone: mes "[Morgan]"; @@ -120,7 +120,18 @@ L_LearningDone: mes "\"To cast a spell open the chat window, type the invocation and press enter.\""; mes "\"I've taught you all I can for now. You should visit the Mana Seed north west of Hurnscald.\""; learnskill SKILL_CONFRINGO; - goto L_close; + if (get_nibble(##03_TMWQUEST, 0) == 1) { + mes ""; + select + l("Gotcha."), + l("Actually, have you ever heard of Yeti's kidnapping little girls?"); + mes ""; + if (@menu == 2) { + mesn; + mesq l("No, but maybe someone %s would know better?", b(l("old"))); + } + } + close; L_close: close; diff --git a/npc/031-1/angelaOutside.txt b/npc/031-1/angelaOutside.txt index dbacd7c3..2cd05030 100644 --- a/npc/031-1/angelaOutside.txt +++ b/npc/031-1/angelaOutside.txt @@ -24,7 +24,7 @@ OnInit: end; } -031-1,79,24,0 script Angela NPC195,15,15,{ +031-1,79,24,0 script Angela NPC195,{ .@q = getq(KaizeiQuest_Cindy); if (.@q == 4) goto L_Please_Visit_Again; if (.@q > 2 && .@q < 6) goto L_Please_Visit; @@ -35,7 +35,7 @@ OnInit: next; mes "\"It's terrible, oh my dear child!\""; next; - if (countitem("ConcentrationPotion") > 0 && BaseLevel >= .minlevel && .@q == 1) + if (countitem("ConcentrationPotion") > 0 && BaseLevel >= .minLevel && .@q == 1) goto L_Menu_Potion; menu @@ -63,7 +63,7 @@ L_Whining: mes "She is crying and sobbing."; next; mes "It seems she is too upset to tell you anything helpful. If she would just calm down and concentrate a bit..."; - if(BaseLevel >= .minlevel) goto L_GetQuest; + if(BaseLevel >= .minLevel) goto L_GetQuest; goto L_close; L_GetQuest: @@ -125,6 +125,7 @@ L_close: close; OnInit: - .minlevel = 70; + .minLevel = 70; end; +//TODO OnTouch: if Level show emote } diff --git a/npc/031-2/angelaHouse.txt b/npc/031-2/angelaHouse.txt index 55c2c7df..695e0e77 100644 --- a/npc/031-2/angelaHouse.txt +++ b/npc/031-2/angelaHouse.txt @@ -42,7 +42,7 @@ L_Hello_Again: mes "\"Hello! Good to see you again. Please warm yourself.\""; next; menu - "I just wanted to say hello.",L_close, + "I just wanted to say hello.",L_Hello, "I have some yellow present boxes.",L_Yellow, "I have some white present boxes.",L_White; @@ -73,7 +73,7 @@ L_White: callfunc "DailyQuest"; next; if (@dq_return == 4) - mes "\"You are a great help!\""; + mesq l("You are a great help!"); goto L_close; L_close: @@ -86,4 +86,51 @@ L_close: @dq_exp = 0; @dq_return = 0; close; + +L_Hello: + if (getvaultid() && get_nibble(##03_TMWQUEST, 0) <= 3) goto L_VaultQuest; + closeclientdialog; + close; + +L_VaultQuest: + mes ""; + mesn; + mesq l("Actually, there is one thing bugging me during this whole ordeal."); + next; + mesn; + mesq l("Yetis used to be very shy. Since the Great Quake, they became aggressive."); + next; + mesn; + mesq l("...So why would they kidnap Cindy?? %%i"); + next; + mesn; + mesq l("I figured out, maybe one of the sages could help. Would you mind asking them?"); + next; + select + l("I'll be back later."), + rif(get_nibble(##03_TMWQUEST, 0) == 0, l("Sure, I'll ask them.")), + rif(get_nibble(##03_TMWQUEST, 0) == 3, l("[Tell her the truth]")), + rif(get_nibble(##03_TMWQUEST, 0) == 3, l("[Make up an excuse]")); + mes ""; + switch (@menu) { + case 2: + mesn; + mesq l("Wonderful! Please be careful out there."); + set_nibble(##03_TMWQUEST, 0, 1); + break; + case 3: + mesc l("%s faints.", strnpcinfo(1)); + next; + // FALL-THROUGH + case 4: + mesn; + mesq l("Thanks for informing me. I'm sure Nikolai and the sages will do something about it, then."); + next; + mesn; + mesq l("I'm afraid I don't have anything of value to reward you with, but some %s which my husband was saving for a quest or other. You can have them. Cindy is more important than a quest.", getitemlink(TreasureKey)); + set_nibble(##03_TMWQUEST, 0, 4); + getitem TreasureKey, rand2(15, 25); + break; + } + close; } diff --git a/npc/031-4/cindyCave.txt b/npc/031-4/cindyCave.txt index 39ff62e4..284a58f8 100644 --- a/npc/031-4/cindyCave.txt +++ b/npc/031-4/cindyCave.txt @@ -49,7 +49,7 @@ L_Try_Cage: $@FIGHT_YETI_WAVE = 0; $@YETI_COUNT = 1; $@FIGHT_YETI_PLAYER_COUNT = getmapusers("031-4"); - areamonster "031-4", 0, 0, 95, 91, "", 1072, 1, "Cindy::OnPetDeath"; + areamonster "031-4", 0, 0, 95, 91, "Yeti", Yeti, 1, "Cindy::OnPetDeath"; initnpctimer; goto L_close; @@ -130,7 +130,7 @@ OnTimer5000: L_Return_1: $@FIGHT_YETI_PLAYER_COUNT = 0; - areatimer 0, "031-4", 0, 0, 95, 91, 10, "Cindy::OnTick"; + maptimer2 "031-4", 10, "Cindy::OnTick"; end; L_CaveLogic: @@ -140,7 +140,7 @@ L_CaveLogic: if ($@FIGHT_YETI_PLAYER_COUNT <= 0) goto L_CleanUp; set $@FIGHT_YETI_ROUND_TIMER, $@FIGHT_YETI_ROUND_TIMER + 5; // Advance 5 seconds - if (mobcount("031-4", "Cindy::OnPetDeath") < 0) + if (mobcount("031-4", "Cindy::OnPetDeath") <= 0) goto L_NextWave; if ($@FIGHT_YETI_ROUND_TIMER + $@FIGHT_YETI_ROUND_PEN >= 120) goto L_NextWave; @@ -156,13 +156,13 @@ L_NextWave: && $@FIGHT_YETI_WAVE < 22) goto L_Return_1; if ($@FIGHT_YETI_WAVE > 22) - areamonster "031-4", 0, 0, 95, 91, "", 1072, $@FIGHT_YETI_WAVE*2 + $@FIGHT_YETI_PLAYER_COUNT*5, "Cindy::OnPetDeath"; + areamonster "031-4", 0, 0, 95, 91, "Yeti", Yeti, $@FIGHT_YETI_WAVE*2 + $@FIGHT_YETI_PLAYER_COUNT*5, "Cindy::OnPetDeath"; if ($@FIGHT_YETI_WAVE > 22) $@YETI_COUNT = $@YETI_COUNT + $@FIGHT_YETI_WAVE*2 + $@FIGHT_YETI_PLAYER_COUNT*5; $@FIGHT_YETI_NUMBER = (5 + (1 * $@FIGHT_YETI_WAVE) + (2 * $@FIGHT_YETI_PLAYER_COUNT))/4; $@YETI_COUNT = $@YETI_COUNT + $@FIGHT_YETI_NUMBER; - areamonster "031-4", 0, 0, 95, 91, "", 1072, $@FIGHT_YETI_NUMBER, "Cindy::OnPetDeath"; + areamonster "031-4", 0, 0, 95, 91, "Yeti", Yeti, $@FIGHT_YETI_NUMBER, "Cindy::OnPetDeath"; $@msg$ = $@FIGHT_YETI_MESSAGES$[$@FIGHT_YETI_WAVE]; if ($@msg$ == "") diff --git a/npc/048-2/sageNikolai.txt b/npc/048-2/sageNikolai.txt index d69cad46..25e360e1 100644 --- a/npc/048-2/sageNikolai.txt +++ b/npc/048-2/sageNikolai.txt @@ -25,7 +25,7 @@ goto L_Hints; mes "You see a very reputable looking man who is going through some papers. He looks up as you approach."; - mes "[Nikolai]"; + mesn; mes "\"Welcome to my mansion. I am Nikolai, member of the Sages of Kaizei."; mes "I assume you came to see our famous library? As you can see, it isn't in very good shape due to some... misfortunes. I'm very sorry.\""; if (BaseLevel < $@Q_BlueSageMinimumLevel) @@ -38,7 +38,7 @@ goto L_close; L_Hints: - mes "[Nikolai]"; + mesn; mes "\"I heard you started to help out a bit. That's very kind.\""; cleararray @choice_idx, 0, 10; @@ -173,21 +173,21 @@ L_MenuChoice: L_StartPagesAdvice: // I heard the slimes ate most of the books... - mes "[Nikolai]"; + mesn; mes "\"This is true. But while hunting the slimes we discovered that they occasionaly drop bookpages that are still legible."; mes "Since we had several copies of nearly all the books, we might be able to recreate most of them if we can get at least one copy of each page.\""; goto L_close; L_PagesAdvice: // I'm collecting lost bookpages. - mes "[Nikolai]"; + mesn; mes "\"Excellent! This will save us a lot of time. Ensio coordinates the sorting of the pages.\""; goto L_close; L_StartMaterialAdvice: // There were many valuable books in your library, right? mes "He sighs."; - mes "[Nikolai]"; + mesn; mes "\"Yes. There were some really old and rare pieces.\""; next; mes "\"We're going to recreate some of them, but I'm not sure if we have all the needed materials. If you'd like to help you could ask around if someone is missing something.\""; @@ -195,31 +195,31 @@ L_StartMaterialAdvice: L_MaterialAdvice: // I brought some material to repair the books. - mes "[Nikolai]"; + mesn; mes "\"That's very generous! Though I think not everyone has all they need yet.\""; goto L_close; L_StartSlimesAdvice: // Those slimes really caused a mess! - mes "[Nikolai]"; + mesn; mes "\"Indeed. My helpers did great work to clean the worst of it, but there are still some remaining slimes in the deeper parts of the library.\""; goto L_close; L_SlimesAdvice: // I'm hunting the remaining slimes in the library. - mes "[Nikolai]"; + mesn; mes "\"You're a great help! All helpers who would be capable of dealing with the slimes are occupied with other tasks.\""; goto L_close; L_StartInvAdvice: // How did this all happen? - mes "[Nikolai]"; + mesn; mes "\"We're not sure yet. The helper who was responsible for sealing away the slimes has been sent to his room until the situation calms down and we can start an investigation.\""; goto L_close; L_InvestigateAdvice: // I'm trying to find out how that accident could've happened. - mes "[Nikolai]"; + mesn; mes "\"I see. Well, we were too busy to start with that ourselves, but having someone unbiased looking at this case might be a good thing.\""; next; mes "\"It might be good if you talk to Elias at the reception. He usually has a very good overview of all the things going on and especially about visitors.\""; @@ -227,14 +227,14 @@ L_InvestigateAdvice: L_InvestigateAdvice2: // I told Chief Oskari what I found out about the accident. - mes "[Nikolai]"; + mesn; mes "\"Yes, he already let me know. Your investigations were very helpful! This is surely something we need to look into further.\""; next; mes "\"Did you already talk to Peetu? I'm sure he'll be glad to know about your results as well.\""; goto L_close; L_GrimoireReward: - mes "[Nikolai]"; + mesn; mes "\"Ah, " + strcharinfo(0) + "! We're making excellent progress with our attempts to recover the important and valuable of the destroyed books, all thanks to you.\""; next; mes "\"I'd like you to have this as a reward for your help.\""; @@ -249,7 +249,7 @@ L_GrimoireReward: goto L_close; L_SlimesReward: - mes "[Nikolai]"; + mesn; mes "\"Ah, I heard you took care of the remaining slimes in the library!\""; next; mes "\"While looking through some old artifacts that we found during the cleaning, we found this sword. We don't really have a use for it.\""; @@ -264,13 +264,90 @@ L_SlimesReward: goto L_close; L_Full_Inv: - mes "[Nikolai]"; + mesn; mes "\"You have a very full backback. Please come back when you have more room available.\""; goto L_close; L_Done: - mes "[Nikolai]"; - mes "\"Thanks for all of your help.\""; + mesn; + mesq l("Thanks for all of your help."); + if (get_nibble(##03_TMWQUEST, 0) == 2 && + (##01_MLWORLD & MLP_TMW_YETIKING) && + getvaultid()) goto L_VaultQuest; + goto L_close; + +L_VaultQuest: + mes ""; + mesn strcharinfo(0); + select + l("Ask the Blue Sage about Cindy."), + l("Don't ask"); + if (@menu == 2) close; + mes ""; + mesn; + mesq l("Cindy? Never heard of."); + next; + mesn strcharinfo(0); + select + l("Press."), + l("Don't press."); + if (@menu == 2) close; + mes ""; + mesn; + mesq l("Look, this is not Nivalis. This is Thermin. If I say I know nothing, I know nothing. Stop wasting my time."); + next; + mesn strcharinfo(0); + select + l("Press."), + l("Don't press."); + if (@menu == 2) close; + mes ""; + mesn; + mesq l("Are you deaf?"); + next; + mesn strcharinfo(0); + select + l("Press."), + l("Don't press."); + if (@menu == 2) close; + mes ""; + mesn; + mesc l("*sigh*"); + next; + mesn; + mesq l("Alright, alright, you win. But to make clear, this is NOT my fault. It's Santa's."); + next; + mesn; + mesq l("So, you know about the Sages of Kaizei, right? We used to be twelve, but then Balthasar left after fighting with Santa, and now we're only eleven."); + next; + mesn; + mesq l("Seems like Balthasar is bent on revenge. If you cannot harm a sage, aim at the things they hold dear, they say."); + next; + mesn; + mesq l("Christmas for Santa, the library for myself, and... Well, you guessed it: Cindy."); + next; + mesn; + mesq l("But please don't tell Angela this. She is already a worrywart, knowing Balthasar is after her husband will only makes things worse."); + next; + mesn; + mesq l("Listen, I'll give you either a Wizard Hat or a Wooden Staff for your silence. Do we have a deal?"); + next; + select + l("I'll think on it later."), + l("Deal - Give me a Wizard Hat."), + l("Deal - Give me a Wooden Staff."); + mes ""; + if (@menu == 1) close; + if (@menu == 2) .@it = any(2200, 2201, 2202, 2203, 2204, 2205, 2206, 2207, 2208, 2209); + if (@menu == 3) .@it = WoodenStaff; + inventoryplace .@it, 1; + getitem .@it, 1; + set_nibble(##03_TMWQUEST, 0, 3); + mesn; + mesq l("Here, take this %s. Tell Angela just that I've heard about it and I'll investigate, and she has nothing to worry about.", getitemlink(.@it)); + next; + mesn; + mesq l("And thanks. I'll inform her father with telepathy as well."); goto L_close; L_close: diff --git a/npc/functions/bitwise.txt b/npc/functions/bitwise.txt index 7d0047e8..02360662 100644 --- a/npc/functions/bitwise.txt +++ b/npc/functions/bitwise.txt @@ -121,10 +121,10 @@ function script get_bitword { ///////////////////////////////////////////////////////////////////////////////// // A Nibble can go up to 15. There are 7 nibbles. -// set_nibble(VAR, VAL, NIBBLEID) +// set_nibble(VAR, NIBBLEID, VAL) function script set_nibble { .@v=getarg(0); - switch (getarg(2)) { + switch (getarg(1)) { case 0: .@s=0; .@m=0xF; break; case 1: @@ -140,17 +140,17 @@ function script set_nibble { case 6: .@s=24; .@m=0xF000000; break; default: - Exception("Invalid SNibble: "+getarg(2), RB_DEFAULT); + Exception("Invalid SNibble: "+getarg(1), RB_DEFAULT); } - return bitwise_set(.@v, .@m, .@s, getarg(1)); + return bitwise_set(getarg(0), .@m, .@s, getarg(2)); } // A Byte can go up to 255. There are 3 bytes. The forth can go up to 127. -// set_nibble(VAR, VAL, BYTEID) +// set_nibble(VAR, BYTEID, VAL) function script set_byte { .@v=getarg(0); - switch (getarg(2)) { + switch (getarg(1)) { case 0: .@s=0; .@m=0xFF; break; case 1: @@ -160,10 +160,10 @@ function script set_byte { case 3: .@s=24; .@m=0x7F000000; break; default: - Exception("Invalid SByte: "+getarg(2), RB_DEFAULT); + Exception("Invalid SByte: "+getarg(1), RB_DEFAULT); } - return bitwise_set(.@v, .@m, .@s, getarg(1)); + return bitwise_set(getarg(0), .@m, .@s, getarg(2)); } // A Bitword can go up to 65535 and is fixed in position to handle Soul EXP. @@ -171,6 +171,6 @@ function script set_byte { function script set_bitword { .@v=getarg(0); - return bitwise_set(.@v, 0xFFFF, 0, getarg(1)); + return bitwise_set(getarg(0), 0xFFFF, 0, getarg(1)); } diff --git a/npc/functions/vault.txt b/npc/functions/vault.txt index 15a969fb..b6d46a13 100644 --- a/npc/functions/vault.txt +++ b/npc/functions/vault.txt @@ -64,8 +64,8 @@ function script vaultOnLogin { } // Unset the target lake/world - set_byte(##00_INFO, 0, 3); - set_nibble(##00_INFO, 0, 5); + set_byte(##00_INFO, 3, 0); + set_nibble(##00_INFO, 5, 0); } else if (.@gto) { // Heading somewhere which is not here! mesc l("WARNING: If you use any Mirror Lake feature on this world, the current Mirror Lake Quest will be marked as \"Failed\"."), 1; @@ -85,7 +85,7 @@ function script vaultOnLogout { .@api$=json_encode("UID", ##VAULT, "GID", getcharid(3), "VAR1N", "TMWQUEST", - "VAR1V", ##02_TMWQUEST, + "VAR1V", ##03_TMWQUEST, "VEXP", ##VAULT_EXP, "GOTO", ##VAULT_GOTO, "MLTO", ##VAULT_MLTO); -- cgit v1.2.3-70-g09d2 From 2c7c83bd748001a28e20c62f1bceb4fedba540bd Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Thu, 10 Jun 2021 16:04:45 -0300 Subject: Fix MobPoints() wrong calls --- npc/012-1/flowerpentagram2.txt | 12 ++++-------- npc/013-1/flowerpentagram.txt | 24 ++++++++---------------- npc/017-1/flowerpentagram1.txt | 6 ++---- npc/017-1/flowerpentagram5.txt | 24 ++++++++---------------- npc/018-1/flowerpentagram3.txt | 18 ++++++------------ npc/027-3/monsters.txt | 4 ++-- npc/027-4/monsters.txt | 4 ++-- npc/029-1/hasan.txt | 3 +-- npc/029-2/barrels.txt | 3 +-- npc/051-1/desertmonsters.txt | 25 ++++++++++++------------- npc/051-3/jailslimes.txt | 3 +-- npc/055-1/flowerpentagram4.txt | 24 ++++++++---------------- npc/055-1/pumpkins.txt | 3 +-- 13 files changed, 56 insertions(+), 97 deletions(-) (limited to 'npc/029-2') diff --git a/npc/012-1/flowerpentagram2.txt b/npc/012-1/flowerpentagram2.txt index 92de4de5..f10524d3 100644 --- a/npc/012-1/flowerpentagram2.txt +++ b/npc/012-1/flowerpentagram2.txt @@ -48,23 +48,19 @@ L_Place: end; OnSquirrelDeath: - @mobId = 1105; - callfunc "MobPoints"; + fix_mobkill(1105); end; OnMushroomDeath: - @mobId = 1106; - callfunc "MobPoints"; + fix_mobkill(1106); end; OnScorpionDeath: - @mobId = 1003; - callfunc "MobPoints"; + fix_mobkill(1003); end; OnRScorpionDeath: - @mobId = 1004; - callfunc "MobPoints"; + fix_mobkill(1004); end; L_MonstersAlive: diff --git a/npc/013-1/flowerpentagram.txt b/npc/013-1/flowerpentagram.txt index 195ada0f..1df7bd77 100644 --- a/npc/013-1/flowerpentagram.txt +++ b/npc/013-1/flowerpentagram.txt @@ -36,43 +36,35 @@ OnSummon: end; OnSquirrelDeath: - @mobId = 1105; - callfunc "MobPoints"; + fix_mobkill(1105); end; OnMushroomDeath: - @mobId = 1106; - callfunc "MobPoints"; + fix_mobkill(1106); end; OnBlueparDeath: - @mobId = 1107; - callfunc "MobPoints"; + fix_mobkill(1107); end; OnMoubooDeath: - @mobId = 1104; - callfunc "MobPoints"; + fix_mobkill(1104); end; OnScorpionDeath: - @mobId = 1003; - callfunc "MobPoints"; + fix_mobkill(1003); end; OnRScorpionDeath: - @mobId = 1004; - callfunc "MobPoints"; + fix_mobkill(1004); end; OnAScorpionDeath: - @mobId = 1057; - callfunc "MobPoints"; + fix_mobkill(1057); end; OnBScorpionDeath: - @mobId = 1009; - callfunc "MobPoints"; + fix_mobkill(1009); end; S_CleanUp: diff --git a/npc/017-1/flowerpentagram1.txt b/npc/017-1/flowerpentagram1.txt index a1e60856..8d2d7118 100644 --- a/npc/017-1/flowerpentagram1.txt +++ b/npc/017-1/flowerpentagram1.txt @@ -43,13 +43,11 @@ L_Place: end; OnSquirrelDeath: - @mobId = 1105; - callfunc "MobPoints"; + fix_mobkill(1105); end; OnScorpionDeath: - @mobId = 1003; - callfunc "MobPoints"; + fix_mobkill(1003); end; L_MonstersAlive: diff --git a/npc/017-1/flowerpentagram5.txt b/npc/017-1/flowerpentagram5.txt index d13805f9..c9f6d5af 100644 --- a/npc/017-1/flowerpentagram5.txt +++ b/npc/017-1/flowerpentagram5.txt @@ -65,43 +65,35 @@ L_Place: end; OnSquirrelDeath: - @mobId = 1105; - callfunc "MobPoints"; + fix_mobkill(1105); end; OnMushroomDeath: - @mobId = 1106; - callfunc "MobPoints"; + fix_mobkill(1106); end; OnBlueparDeath: - @mobId = 1107; - callfunc "MobPoints"; + fix_mobkill(1107); end; OnMoubooDeath: - @mobId = 1104; - callfunc "MobPoints"; + fix_mobkill(1104); end; OnScorpionDeath: - @mobId = 1003; - callfunc "MobPoints"; + fix_mobkill(1003); end; OnRScorpionDeath: - @mobId = 1004; - callfunc "MobPoints"; + fix_mobkill(1004); end; OnAScorpionDeath: - @mobId = 1057; - callfunc "MobPoints"; + fix_mobkill(1057); end; OnBScorpionDeath: - @mobId = 1009; - callfunc "MobPoints"; + fix_mobkill(1009); end; L_TooEarly: diff --git a/npc/018-1/flowerpentagram3.txt b/npc/018-1/flowerpentagram3.txt index 53f45dbe..a24dd0cb 100644 --- a/npc/018-1/flowerpentagram3.txt +++ b/npc/018-1/flowerpentagram3.txt @@ -52,33 +52,27 @@ L_Place: end; OnSquirrelDeath: - @mobId = 1105; - callfunc "MobPoints"; + fix_mobkill(1105); end; OnMushroomDeath: - @mobId = 1106; - callfunc "MobPoints"; + fix_mobkill(1106); end; OnBlueparDeath: - @mobId = 1107; - callfunc "MobPoints"; + fix_mobkill(1107); end; OnScorpionDeath: - @mobId = 1003; - callfunc "MobPoints"; + fix_mobkill(1003); end; OnRScorpionDeath: - @mobId = 1004; - callfunc "MobPoints"; + fix_mobkill(1004); end; OnAScorpionDeath: - @mobId = 1057; - callfunc "MobPoints"; + fix_mobkill(1057); end; L_MonstersAlive: diff --git a/npc/027-3/monsters.txt b/npc/027-3/monsters.txt index 52a2a5eb..d7f3ae5c 100644 --- a/npc/027-3/monsters.txt +++ b/npc/027-3/monsters.txt @@ -10,13 +10,13 @@ On1036: @mobId = 1036; callsub S_MOBCOUNT_ZOMBIES; - callfunc "MobPoints"; + fix_mobkill(1036); end; On1045: @mobId = 1045; callsub S_MOBCOUNT_FALLENS; - callfunc "MobPoints"; + fix_mobkill(1045); end; S_MOBCOUNT_ZOMBIES: diff --git a/npc/027-4/monsters.txt b/npc/027-4/monsters.txt index 40180670..34fce902 100644 --- a/npc/027-4/monsters.txt +++ b/npc/027-4/monsters.txt @@ -11,13 +11,13 @@ On1036: @mobId = 1036; callsub S_MOBCOUNT_ZOMBIES; - callfunc "MobPoints"; + fix_mobkill(1036); end; On1045: @mobId = 1045; callsub S_MOBCOUNT_FALLENS; - callfunc "MobPoints"; + fix_mobkill(1045); end; S_MOBCOUNT_ZOMBIES: diff --git a/npc/029-1/hasan.txt b/npc/029-1/hasan.txt index 86bb82e5..7cf89db7 100644 --- a/npc/029-1/hasan.txt +++ b/npc/029-1/hasan.txt @@ -182,8 +182,7 @@ OnScorpionDeath: goto L_Clean; QL_BEGIN = 13; message strcharinfo(0), "You saved Hasan."; - @mobId = 1003; - callfunc "MobPoints"; + fix_mobkill(Scorpion); goto L_Clean; L_TimeOut: diff --git a/npc/029-2/barrels.txt b/npc/029-2/barrels.txt index b44fec43..c5d91621 100644 --- a/npc/029-2/barrels.txt +++ b/npc/029-2/barrels.txt @@ -4,8 +4,7 @@ end; OnMaggotDeath: - @mobId = 1050; - callfunc "MobPoints"; + fix_mobkill(HouseMaggot); end; } 029-2,28,86,0 script Barrel#1 NPC400,{ diff --git a/npc/051-1/desertmonsters.txt b/npc/051-1/desertmonsters.txt index 08476f32..9424d63e 100644 --- a/npc/051-1/desertmonsters.txt +++ b/npc/051-1/desertmonsters.txt @@ -5,9 +5,8 @@ On1096: if (rand(4) == 0 && $@illia_progress == 3 && $@illia_level_3_progress == 1) - getitem "SealedSoul", 1; - @mobId = 1010; - callfunc "MobPoints"; + getitem SealedSoul, 1; + fix_mobkill(Snake); end; } @@ -34,9 +33,9 @@ OnSoulEaterDeath: $@SoulEaters0_count = $@SoulEaters0_count - 1; if ($@illia_progress != 3 || $@illia_level_3_progress != 1) end; - if (countitem("SealedSoul") == 0) + if (countitem(SealedSoul) == 0) end; - delitem "SealedSoul", countitem("SealedSoul"); + delitem SealedSoul, countitem(SealedSoul); message strcharinfo(0), "The Soul Eater feeds on the Sealed Souls you are carrying."; end; } @@ -62,9 +61,9 @@ OnSoulEaterDeath: $@SoulEaters1_count = $@SoulEaters1_count - 1; if ($@illia_progress != 3 || $@illia_level_3_progress != 1) end; - if (countitem("SealedSoul") == 0) + if (countitem(SealedSoul) == 0) end; - delitem "SealedSoul", countitem("SealedSoul"); + delitem SealedSoul, countitem(SealedSoul); message strcharinfo(0), "The Soul Eater feeds on the Sealed Souls you are carrying."; end; } @@ -90,9 +89,9 @@ OnSoulEaterDeath: $@SoulEaters2_count = $@SoulEaters2_count - 1; if ($@illia_progress != 3 || $@illia_level_3_progress != 1) end; - if (countitem("SealedSoul") == 0) + if (countitem(SealedSoul) == 0) end; - delitem "SealedSoul", countitem("SealedSoul"); + delitem SealedSoul, countitem(SealedSoul); message strcharinfo(0), "The Soul Eater feeds on the Sealed Souls you are carrying."; end; } @@ -118,9 +117,9 @@ OnSoulEaterDeath: $@SoulEaters3_count = $@SoulEaters3_count - 1; if ($@illia_progress != 3 || $@illia_level_3_progress != 1) end; - if (countitem("SealedSoul") == 0) + if (countitem(SealedSoul) == 0) end; - delitem "SealedSoul", countitem("SealedSoul"); + delitem SealedSoul, countitem(SealedSoul); message strcharinfo(0), "The Soul Eater feeds on the Sealed Souls you are carrying."; end; } @@ -146,9 +145,9 @@ OnSoulEaterDeath: $@SoulEaters4_count = $@SoulEaters4_count - 1; if ($@illia_progress != 3 || $@illia_level_3_progress != 1) end; - if (countitem("SealedSoul") == 0) + if (countitem(SealedSoul) == 0) end; - delitem "SealedSoul", countitem("SealedSoul"); + delitem SealedSoul, countitem(SealedSoul); message strcharinfo(0), "The Soul Eater feeds on the Sealed Souls you are carrying."; end; } diff --git a/npc/051-3/jailslimes.txt b/npc/051-3/jailslimes.txt index 598f94f2..169fe7a3 100644 --- a/npc/051-3/jailslimes.txt +++ b/npc/051-3/jailslimes.txt @@ -22,8 +22,7 @@ L_GiveLockPicks: goto L_End; L_End: - @mobId = 1098; - callfunc "MobPoints"; + fix_mobkill(1098); end; } diff --git a/npc/055-1/flowerpentagram4.txt b/npc/055-1/flowerpentagram4.txt index 12e0f833..f310e218 100644 --- a/npc/055-1/flowerpentagram4.txt +++ b/npc/055-1/flowerpentagram4.txt @@ -56,43 +56,35 @@ L_Place: end; OnSquirrelDeath: - @mobId = 1105; - callfunc "MobPoints"; + fix_mobkill(1105); end; OnMushroomDeath: - @mobId = 1106; - callfunc "MobPoints"; + fix_mobkill(1106); end; OnBlueparDeath: - @mobId = 1107; - callfunc "MobPoints"; + fix_mobkill(1107); end; OnMoubooDeath: - @mobId = 1104; - callfunc "MobPoints"; + fix_mobkill(1104); end; OnScorpionDeath: - @mobId = 1003; - callfunc "MobPoints"; + fix_mobkill(1003); end; OnRScorpionDeath: - @mobId = 1004; - callfunc "MobPoints"; + fix_mobkill(1004); end; OnAScorpionDeath: - @mobId = 1057; - callfunc "MobPoints"; + fix_mobkill(1057); end; OnBScorpionDeath: - @mobId = 1009; - callfunc "MobPoints"; + fix_mobkill(1009); end; L_MonstersAlive: diff --git a/npc/055-1/pumpkins.txt b/npc/055-1/pumpkins.txt index 8f243d46..d008d389 100644 --- a/npc/055-1/pumpkins.txt +++ b/npc/055-1/pumpkins.txt @@ -20,8 +20,7 @@ if (countitem("PumpkinSeeds") >= $@halloween_num_seeds) goto L_EnoughSeeds; - @mobId = 1063; - callfunc "MobPoints"; + fix_mobkill(1063); goto L_Destroy; L_EnoughSeeds: -- cgit v1.2.3-70-g09d2 From bbacb58f848bed3fff0e154c47311229cdb0e069 Mon Sep 17 00:00:00 2001 From: Micksha Date: Tue, 15 Jun 2021 22:14:36 -0300 Subject: NPC Sorfina: Clear dialogue field after player selection > "That would be great!" --- npc/029-2/sorfina.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'npc/029-2') diff --git a/npc/029-2/sorfina.txt b/npc/029-2/sorfina.txt index 945924ca..81dc4a33 100644 --- a/npc/029-2/sorfina.txt +++ b/npc/029-2/sorfina.txt @@ -49,6 +49,7 @@ L_Start: l("No, thanks. I already know how things are going."), L_SkipTut; L_Tut: + clear; mesc l("She smiles at you."); mesn; mes "\"You have arrived at a very strange time. The Council is visiting Candor today.\""; -- cgit v1.2.3-70-g09d2 From 5c30f81b22c30c90f37c21980e559d1bb7d65f5a Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Tue, 15 Jun 2021 22:34:25 -0300 Subject: Update Morgan instructions, fix typo on @debug menu --- npc/029-2/morgan.txt | 39 ++++++++++++++++++++++----------------- npc/commands/debug.txt | 8 +++++++- 2 files changed, 29 insertions(+), 18 deletions(-) (limited to 'npc/029-2') diff --git a/npc/029-2/morgan.txt b/npc/029-2/morgan.txt index d5416802..b393cb1f 100644 --- a/npc/029-2/morgan.txt +++ b/npc/029-2/morgan.txt @@ -91,34 +91,39 @@ L_Start: next; mesn; mesq l("Speak to me again once you've cast the spell."); + mesc l("As an offensive spell, it'll only work if you have a valid target, like a monster."); close; L_Started: - mes "[Morgan]"; - mes "\"Lets start with a basic wand attack. " + b("confringo") + "\""; - mes "\"Equip the wand and lets try out that spell.\""; - mes "\"To cast a spell open the chat window, type the invocation and press enter.\""; - mes "\"Speak to me again once you've cast the spell.\""; + mesn; + mesq l("Lets start with a basic wand attack: %s.", b("confringo")); + mesq l("Equip the wand and lets try out that spell."); + mesc l("To cast a spell open the skill window, select the spell you wish to use, and press the %s button.", b(l("Use"))); + mesq l("Speak to me again once you've cast the spell."); + mesc l("As an offensive spell, it'll only work if you have a valid target, like a monster."); close; L_CastOnce: - mes "[Morgan]"; - mes "\"Ok, good job! Looks like you have good mana flow.\""; - mes "\"Onto the next lesson. Now that you have " + b("confringo") + " cast,\""; - mes "\"Each time you attack the wand will convert a bit of you mana into a magic bolt.\""; - mes "\"After so many attacks, you will need to recast the invocation to stay attuned to the wand.\""; - mes "\"(Logging out will also cancel any spell effects currently active in-game.).\""; + mesn; + mesq l("Ok, good job! Looks like you have good mana flow."); + mesq l("Onto the next lesson. Now that you have %s cast,", b("confringo")); + mesq l("Each time you attack the wand will convert a bit of you mana into a magic bolt."); + next; + mesq l("If an offensive spell requires an item, then after so many attacks, you may need to recast the whole invocation to stay attuned to the wand."); + mesc l("(Logging out will also cancel any spell effects currently active in-game.)."); + next; + mesq l("In other words, offensive spells which require reagents won't consume these every time you cast, but will still require the items frequently."); next; - mes "\"I've taught you all I can for now. You should visit the Mana Seed north west of Hurnscald.\""; + mesq l("I've taught you all I can for now. You should visit the Mana Seed north west of Hurnscald."); QL_MORGAN = 4; close; L_LearningDone: - mes "[Morgan]"; - mes "\"" + b("confringo") + " is a basic wand attack.\""; - mes "\"A Wand must be equipped to use the spell.\""; - mes "\"To cast a spell open the chat window, type the invocation and press enter.\""; - mes "\"I've taught you all I can for now. You should visit the Mana Seed north west of Hurnscald.\""; + mesn; + mesq l("%s is a basic wand attack.", b("confringo")); + mesq l("A Wand must be equipped to use the spell."); + mesc l("To cast a spell open the skill window, select the spell you wish to use, and press the %s button.", b(l("Use"))); + mesq l("I've taught you all I can for now. You should visit the Mana Seed north west of Hurnscald."); learnskill SKILL_CONFRINGO; if (get_nibble(##03_TMWQUEST, 0) == 1) { mes ""; diff --git a/npc/commands/debug.txt b/npc/commands/debug.txt index e78a7134..64b4ad57 100644 --- a/npc/commands/debug.txt +++ b/npc/commands/debug.txt @@ -7,7 +7,7 @@ L_Begin: mes "Your range: "+readbattleparam(getcharid(3), UDT_ATKRANGE); mes "Bow range: "+getiteminfo(Bow, ITEMINFO_RANGE); menu - "Reset stat points.", L_Level, + "Reset stat points.", L_ResetStatusPoints, "Change my level.", L_Level, "Change other stuff.", L_Stats, "Change my basic skills.", L_BasicSkills, @@ -56,6 +56,12 @@ L_SameLevel: next; goto L_Begin; +L_ResetStatusPoints: + resetstatus; + mes "Stats successfully resetted."; + next; + goto L_Begin; + L_BasicSkills: adddefaultskills(); goto L_Begin; -- cgit v1.2.3-70-g09d2 From ffdb3597331744070bf0879b6d2b8c40e071fd32 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Tue, 15 Jun 2021 22:37:25 -0300 Subject: Morgan: Be a bit more consistent with the "elusive" aspect of the Mana Seed. --- npc/029-2/morgan.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'npc/029-2') diff --git a/npc/029-2/morgan.txt b/npc/029-2/morgan.txt index b393cb1f..1b76a690 100644 --- a/npc/029-2/morgan.txt +++ b/npc/029-2/morgan.txt @@ -114,7 +114,7 @@ L_CastOnce: next; mesq l("In other words, offensive spells which require reagents won't consume these every time you cast, but will still require the items frequently."); next; - mesq l("I've taught you all I can for now. You should visit the Mana Seed north west of Hurnscald."); + mesq l("I've taught you all I can for now. You should search for the Mana Seed, I've heard there was one north west of Hurnscald."); QL_MORGAN = 4; close; @@ -123,7 +123,7 @@ L_LearningDone: mesq l("%s is a basic wand attack.", b("confringo")); mesq l("A Wand must be equipped to use the spell."); mesc l("To cast a spell open the skill window, select the spell you wish to use, and press the %s button.", b(l("Use"))); - mesq l("I've taught you all I can for now. You should visit the Mana Seed north west of Hurnscald."); + mesq l("I've taught you all I can for now. You should search for the Mana Seed, I've heard there was one north west of Hurnscald."); learnskill SKILL_CONFRINGO; if (get_nibble(##03_TMWQUEST, 0) == 1) { mes ""; -- cgit v1.2.3-70-g09d2