Clean-up permanent monster spawn: (#1831)
* Clean-up permanent monster spawn: - <delay1>,<delay2>,<event> are actually optionnal field - <event> value 0 and 1 are meaningless (actually event name with length < 4 are skipped) * Exported monster AI constants * Updated docs for monster size constants (already exported) Notes: - the default size for monster script cmd was small not medium - monster script cmd now display a warning for size above SZ_BIG (previously SZ_ALL) * - Fixed an issue to make <xs> and <ys> optionnals - Updated npcs scripts * Leftover in the docs for permanent monster spawn * Corrected english docs. Credit to @aleos89 Added additionnal warning for xs / ys negative input. Credit @Lemongrass3110 Thanks to @cydh for the idea
This commit is contained in:
@@ -139,7 +139,7 @@ and 'doc/mapflags.txt'.
|
||||
|
||||
** Create a permanent monster spawn:
|
||||
|
||||
<map name>,<x>,<y>,<xs>,<ys>%TAB%monster%TAB%<monster name>%TAB%<mob id>,<amount>,<delay1>,<delay2>,<event>{,<mob size>,<mob ai>}
|
||||
<map name>,<x>,<y>{,<xs>{,<ys>}}%TAB%monster%TAB%<monster name>{,<monster level>}%TAB%<mob id>,<amount>{,<delay1>{,<delay2>{,<event>{,<mob size>{,<mob ai>}}}}}
|
||||
|
||||
Map name is the name of the map the monsters will spawn on. x,y are the
|
||||
coordinates where the mob should spawn. If xs and ys are non-zero, they
|
||||
@@ -156,6 +156,10 @@ used, (which, in rAthena, actually contains an English name) if it's "--en--",
|
||||
it's the 'english name' from the monster database (which contains an uppercase
|
||||
name used to summon the monster with a GM command).
|
||||
|
||||
You can specify a custom level to use for the mob different from the one of
|
||||
the database by adjoining the level after the name with a comma. eg:
|
||||
"Poring,50" for a name will spawn a monster with name Poring and level 50.
|
||||
|
||||
Amount is the amount of monsters that will be spawned when this command is
|
||||
executed, it is affected by spawn rates in 'battle_athena.conf'.
|
||||
|
||||
@@ -164,19 +168,27 @@ base respawn time, and the second is random variance on top of the base time.
|
||||
Both values are given in milliseconds (1000 = 1 second).
|
||||
Note that the server also enforces a minimum respawn delay of 5 seconds.
|
||||
|
||||
You can specify a custom level to use for the mob different from the one of
|
||||
the database by adjoining the level after the name with a comma. eg:
|
||||
"Poring,50" for a name will spawn a monster with name Poring and level 50.
|
||||
|
||||
Event is a script event to be executed when the mob is killed. The event must
|
||||
be in the form "NPCName::OnEventName" to execute, and the event name label
|
||||
should start with "On". As with all events, if the NPC is an on-touch NPC, the
|
||||
player who triggers the script must be within 'trigger' range for the event to
|
||||
work.
|
||||
|
||||
There are two optional fields for monster size and AI. Size can be 0 (medium),
|
||||
1 (small), or 2 (big). AI can be 0 (default), 1 (attack/friendly), 2 (sphere),
|
||||
3 (flora), or 4 (zanzou).
|
||||
There are two optional fields for monster size and AI.
|
||||
|
||||
<mob size> can be:
|
||||
Size_Small (0)
|
||||
Size_Medium (1)
|
||||
Size_Large (2)
|
||||
|
||||
<mob ai> can be:
|
||||
AI_NONE (0) (default)
|
||||
AI_ATTACK (1) (attack/friendly)
|
||||
AI_SPHERE (2) (Alchemist skill)
|
||||
AI_FLORA (3) (Alchemist skill)
|
||||
AI_ZANZOU (4) (Kagerou/Oboro skill)
|
||||
AI_LEGION (5) (Sera skill)
|
||||
AI_FAW (6) (Mechanic skill)
|
||||
|
||||
Alternately, a monster spawned using 'boss_monster' instead of 'monster' is able
|
||||
to be detected on the map with the SC_BOSSMAPINFO status (used by Convex Mirror).
|
||||
@@ -5764,18 +5776,18 @@ attached at this execution will be the RID of the killing character. The variabl
|
||||
'killedrid' is set to the Class (mob ID) of the monster killed.
|
||||
|
||||
<size> can be:
|
||||
0 = medium (default)
|
||||
1 = small
|
||||
2 = big
|
||||
Size_Small (0) (default)
|
||||
Size_Medium (1)
|
||||
Size_Large (2)
|
||||
|
||||
<ai> can be:
|
||||
0 = none (default)
|
||||
1 = attack/friendly
|
||||
2 = sphere (Alchemist skill)
|
||||
3 = flora (Alchemist skill)
|
||||
4 = zanzou (Kagerou/Oboro skill)
|
||||
5 = legion (Sera skill)
|
||||
6 = faw (Mechanic skill)
|
||||
AI_NONE (0) (default)
|
||||
AI_ATTACK (1) (attack/friendly)
|
||||
AI_SPHERE (2) (Alchemist skill)
|
||||
AI_FLORA (3) (Alchemist skill)
|
||||
AI_ZANZOU (4) (Kagerou/Oboro skill)
|
||||
AI_LEGION (5) (Sera skill)
|
||||
AI_FAW (6) (Mechanic skill)
|
||||
|
||||
monster "place",60,100,"Poring",1002,1,"NPCNAME::OnLabel";
|
||||
|
||||
|
||||
@@ -120,126 +120,126 @@ pvp_n_7-5,100,100,4 script MVP-Protector#31 727,{ callfunc "Protector","pvp_n_8-
|
||||
pvp_n_8-5,100,100,4 script MVP-Protector#32 727,{ callfunc "Protector",""; }
|
||||
|
||||
// Alpha
|
||||
pvp_n_1-2,0,0,0,0 monster Eddga 1115,3,60000,66000
|
||||
pvp_n_1-2,0,0,0,0 monster Mistress 1059,1,60000,66000
|
||||
pvp_n_2-2,0,0,0,0 monster Mistress 1059,3,60000,66000
|
||||
pvp_n_2-2,0,0,0,0 monster Moonlight 1150,1,60000,66000
|
||||
pvp_n_3-2,0,0,0,0 monster Mistress 1059,1,60000,66000
|
||||
pvp_n_3-2,0,0,0,0 monster Moonlight 1150,2,60000,66000
|
||||
pvp_n_3-2,0,0,0,0 monster Maya 1147,1,60000,66000
|
||||
pvp_n_4-2,0,0,0,0 monster Eddga 1115,1,60000,66000
|
||||
pvp_n_4-2,0,0,0,0 monster Mistress 1059,1,60000,66000
|
||||
pvp_n_4-2,0,0,0,0 monster Moonlight 1150,1,60000,66000
|
||||
pvp_n_4-2,0,0,0,0 monster Maya 1147,1,60000,66000
|
||||
pvp_n_5-2,0,0,0,0 monster Eddga 1115,1,60000,66000
|
||||
pvp_n_5-2,0,0,0,0 monster Mistress 1059,2,60000,66000
|
||||
pvp_n_5-2,0,0,0,0 monster Moonlight 1150,1,60000,66000
|
||||
pvp_n_5-2,0,0,0,0 monster Maya 1147,2,60000,66000
|
||||
pvp_n_6-2,0,0,0,0 monster Eddga 1115,2,60000,66000
|
||||
pvp_n_6-2,0,0,0,0 monster Mistress 1059,3,60000,66000
|
||||
pvp_n_6-2,0,0,0,0 monster Moonlight 1150,1,60000,66000
|
||||
pvp_n_6-2,0,0,0,0 monster Maya 1147,2,60000,66000
|
||||
pvp_n_7-2,0,0,0,0 monster Eddga 1115,3,60000,66000
|
||||
pvp_n_7-2,0,0,0,0 monster Mistress 1059,3,60000,66000
|
||||
pvp_n_7-2,0,0,0,0 monster Moonlight 1150,2,60000,66000
|
||||
pvp_n_7-2,0,0,0,0 monster Maya 1147,2,60000,66000
|
||||
pvp_n_8-2,0,0,0,0 monster Eddga 1115,3,60000,66000
|
||||
pvp_n_8-2,0,0,0,0 monster Mistress 1059,3,60000,66000
|
||||
pvp_n_8-2,0,0,0,0 monster Moonlight 1150,3,60000,66000
|
||||
pvp_n_8-2,0,0,0,0 monster Maya 1147,3,60000,66000
|
||||
pvp_n_1-2,0,0 monster Eddga 1115,3,60000,66000
|
||||
pvp_n_1-2,0,0 monster Mistress 1059,1,60000,66000
|
||||
pvp_n_2-2,0,0 monster Mistress 1059,3,60000,66000
|
||||
pvp_n_2-2,0,0 monster Moonlight 1150,1,60000,66000
|
||||
pvp_n_3-2,0,0 monster Mistress 1059,1,60000,66000
|
||||
pvp_n_3-2,0,0 monster Moonlight 1150,2,60000,66000
|
||||
pvp_n_3-2,0,0 monster Maya 1147,1,60000,66000
|
||||
pvp_n_4-2,0,0 monster Eddga 1115,1,60000,66000
|
||||
pvp_n_4-2,0,0 monster Mistress 1059,1,60000,66000
|
||||
pvp_n_4-2,0,0 monster Moonlight 1150,1,60000,66000
|
||||
pvp_n_4-2,0,0 monster Maya 1147,1,60000,66000
|
||||
pvp_n_5-2,0,0 monster Eddga 1115,1,60000,66000
|
||||
pvp_n_5-2,0,0 monster Mistress 1059,2,60000,66000
|
||||
pvp_n_5-2,0,0 monster Moonlight 1150,1,60000,66000
|
||||
pvp_n_5-2,0,0 monster Maya 1147,2,60000,66000
|
||||
pvp_n_6-2,0,0 monster Eddga 1115,2,60000,66000
|
||||
pvp_n_6-2,0,0 monster Mistress 1059,3,60000,66000
|
||||
pvp_n_6-2,0,0 monster Moonlight 1150,1,60000,66000
|
||||
pvp_n_6-2,0,0 monster Maya 1147,2,60000,66000
|
||||
pvp_n_7-2,0,0 monster Eddga 1115,3,60000,66000
|
||||
pvp_n_7-2,0,0 monster Mistress 1059,3,60000,66000
|
||||
pvp_n_7-2,0,0 monster Moonlight 1150,2,60000,66000
|
||||
pvp_n_7-2,0,0 monster Maya 1147,2,60000,66000
|
||||
pvp_n_8-2,0,0 monster Eddga 1115,3,60000,66000
|
||||
pvp_n_8-2,0,0 monster Mistress 1059,3,60000,66000
|
||||
pvp_n_8-2,0,0 monster Moonlight 1150,3,60000,66000
|
||||
pvp_n_8-2,0,0 monster Maya 1147,3,60000,66000
|
||||
|
||||
// Beta
|
||||
pvp_n_1-3,0,0,0,0 monster Phreeoni 1159,3,60000,66000
|
||||
pvp_n_1-3,0,0,0,0 monster Turtle General 1312,1,60000,66000
|
||||
pvp_n_2-3,0,0,0,0 monster Phreeoni 1159,2,60000,66000
|
||||
pvp_n_2-3,0,0,0,0 monster Turtle General 1312,1,60000,66000
|
||||
pvp_n_2-3,0,0,0,0 monster Orc Hero 1087,1,60000,66000
|
||||
pvp_n_3-3,0,0,0,0 monster Phreeoni 1159,1,60000,66000
|
||||
pvp_n_3-3,0,0,0,0 monster Turtle General 1312,1,60000,66000
|
||||
pvp_n_3-3,0,0,0,0 monster Orc Hero 1087,1,60000,66000
|
||||
pvp_n_3-3,0,0,0,0 monster Orc Lord 1190,1,60000,66000
|
||||
pvp_n_4-3,0,0,0,0 monster Phreeoni 1159,2,60000,66000
|
||||
pvp_n_4-3,0,0,0,0 monster Turtle General 1312,1,60000,66000
|
||||
pvp_n_4-3,0,0,0,0 monster Orc Hero 1087,1,60000,66000
|
||||
pvp_n_4-3,0,0,0,0 monster Orc Lord 1190,1,60000,66000
|
||||
pvp_n_5-3,0,0,0,0 monster Phreeoni 1159,1,60000,66000
|
||||
pvp_n_5-3,0,0,0,0 monster Turtle General 1312,2,60000,66000
|
||||
pvp_n_5-3,0,0,0,0 monster Orc Hero 1087,2,60000,66000
|
||||
pvp_n_5-3,0,0,0,0 monster Orc Lord 1190,1,60000,66000
|
||||
pvp_n_6-3,0,0,0,0 monster Phreeoni 1159,2,60000,66000
|
||||
pvp_n_6-3,0,0,0,0 monster Turtle General 1312,1,60000,66000
|
||||
pvp_n_6-3,0,0,0,0 monster Orc Hero 1087,2,60000,66000
|
||||
pvp_n_6-3,0,0,0,0 monster Orc Lord 1190,2,60000,66000
|
||||
pvp_n_7-3,0,0,0,0 monster Phreeoni 1159,3,60000,66000
|
||||
pvp_n_7-3,0,0,0,0 monster Turtle General 1312,1,60000,66000
|
||||
pvp_n_7-3,0,0,0,0 monster Orc Hero 1087,2,60000,66000
|
||||
pvp_n_7-3,0,0,0,0 monster Orc Lord 1190,3,60000,66000
|
||||
pvp_n_8-3,0,0,0,0 monster Phreeoni 1159,3,60000,66000
|
||||
pvp_n_8-3,0,0,0,0 monster Turtle General 1312,3,60000,66000
|
||||
pvp_n_8-3,0,0,0,0 monster Orc Hero 1087,3,60000,66000
|
||||
pvp_n_8-3,0,0,0,0 monster Orc Lord 1190,3,60000,66000
|
||||
pvp_n_1-3,0,0 monster Phreeoni 1159,3,60000,66000
|
||||
pvp_n_1-3,0,0 monster Turtle General 1312,1,60000,66000
|
||||
pvp_n_2-3,0,0 monster Phreeoni 1159,2,60000,66000
|
||||
pvp_n_2-3,0,0 monster Turtle General 1312,1,60000,66000
|
||||
pvp_n_2-3,0,0 monster Orc Hero 1087,1,60000,66000
|
||||
pvp_n_3-3,0,0 monster Phreeoni 1159,1,60000,66000
|
||||
pvp_n_3-3,0,0 monster Turtle General 1312,1,60000,66000
|
||||
pvp_n_3-3,0,0 monster Orc Hero 1087,1,60000,66000
|
||||
pvp_n_3-3,0,0 monster Orc Lord 1190,1,60000,66000
|
||||
pvp_n_4-3,0,0 monster Phreeoni 1159,2,60000,66000
|
||||
pvp_n_4-3,0,0 monster Turtle General 1312,1,60000,66000
|
||||
pvp_n_4-3,0,0 monster Orc Hero 1087,1,60000,66000
|
||||
pvp_n_4-3,0,0 monster Orc Lord 1190,1,60000,66000
|
||||
pvp_n_5-3,0,0 monster Phreeoni 1159,1,60000,66000
|
||||
pvp_n_5-3,0,0 monster Turtle General 1312,2,60000,66000
|
||||
pvp_n_5-3,0,0 monster Orc Hero 1087,2,60000,66000
|
||||
pvp_n_5-3,0,0 monster Orc Lord 1190,1,60000,66000
|
||||
pvp_n_6-3,0,0 monster Phreeoni 1159,2,60000,66000
|
||||
pvp_n_6-3,0,0 monster Turtle General 1312,1,60000,66000
|
||||
pvp_n_6-3,0,0 monster Orc Hero 1087,2,60000,66000
|
||||
pvp_n_6-3,0,0 monster Orc Lord 1190,2,60000,66000
|
||||
pvp_n_7-3,0,0 monster Phreeoni 1159,3,60000,66000
|
||||
pvp_n_7-3,0,0 monster Turtle General 1312,1,60000,66000
|
||||
pvp_n_7-3,0,0 monster Orc Hero 1087,2,60000,66000
|
||||
pvp_n_7-3,0,0 monster Orc Lord 1190,3,60000,66000
|
||||
pvp_n_8-3,0,0 monster Phreeoni 1159,3,60000,66000
|
||||
pvp_n_8-3,0,0 monster Turtle General 1312,3,60000,66000
|
||||
pvp_n_8-3,0,0 monster Orc Hero 1087,3,60000,66000
|
||||
pvp_n_8-3,0,0 monster Orc Lord 1190,3,60000,66000
|
||||
|
||||
// Theta
|
||||
pvp_n_1-4,0,0,0,0 monster Drake 1112,3,60000,66000
|
||||
pvp_n_1-4,0,0,0,0 monster Osiris 1038,1,60000,66000
|
||||
pvp_n_2-4,0,0,0,0 monster Drake 1112,2,60000,66000
|
||||
pvp_n_2-4,0,0,0,0 monster Osiris 1038,1,60000,66000
|
||||
pvp_n_2-4,0,0,0,0 monster Doppelganger 1046,1,60000,66000
|
||||
pvp_n_3-4,0,0,0,0 monster Drake 1112,1,60000,66000
|
||||
pvp_n_3-4,0,0,0,0 monster Osiris 1038,1,60000,66000
|
||||
pvp_n_3-4,0,0,0,0 monster Doppelganger 1046,1,60000,66000
|
||||
pvp_n_3-4,0,0,0,0 monster Lord of Death 1373,1,60000,66000
|
||||
pvp_n_4-4,0,0,0,0 monster Drake 1112,2,60000,66000
|
||||
pvp_n_4-4,0,0,0,0 monster Osiris 1038,1,60000,66000
|
||||
pvp_n_4-4,0,0,0,0 monster Doppelganger 1046,2,60000,66000
|
||||
pvp_n_4-4,0,0,0,0 monster Lord of Death 1373,1,60000,66000
|
||||
pvp_n_5-4,0,0,0,0 monster Drake 1112,3,60000,66000
|
||||
pvp_n_5-4,0,0,0,0 monster Osiris 1038,2,60000,66000
|
||||
pvp_n_5-4,0,0,0,0 monster Doppelganger 1046,2,60000,66000
|
||||
pvp_n_5-4,0,0,0,0 monster Lord of Death 1373,1,60000,66000
|
||||
pvp_n_6-4,0,0,0,0 monster Drake 1112,3,60000,66000
|
||||
pvp_n_6-4,0,0,0,0 monster Osiris 1038,2,60000,66000
|
||||
pvp_n_6-4,0,0,0,0 monster Doppelganger 1046,2,60000,66000
|
||||
pvp_n_6-4,0,0,0,0 monster Lord of Death 1373,2,60000,66000
|
||||
pvp_n_7-4,0,0,0,0 monster Drake 1112,3,60000,66000
|
||||
pvp_n_7-4,0,0,0,0 monster Osiris 1038,2,60000,66000
|
||||
pvp_n_7-4,0,0,0,0 monster Doppelganger 1046,3,60000,66000
|
||||
pvp_n_7-4,0,0,0,0 monster Lord of Death 1373,2,60000,66000
|
||||
pvp_n_8-4,0,0,0,0 monster Drake 1112,3,60000,66000
|
||||
pvp_n_8-4,0,0,0,0 monster Osiris 1038,3,60000,66000
|
||||
pvp_n_8-4,0,0,0,0 monster Doppelganger 1046,3,60000,66000
|
||||
pvp_n_8-4,0,0,0,0 monster Lord of Death 1373,3,60000,66000
|
||||
pvp_n_1-4,0,0 monster Drake 1112,3,60000,66000
|
||||
pvp_n_1-4,0,0 monster Osiris 1038,1,60000,66000
|
||||
pvp_n_2-4,0,0 monster Drake 1112,2,60000,66000
|
||||
pvp_n_2-4,0,0 monster Osiris 1038,1,60000,66000
|
||||
pvp_n_2-4,0,0 monster Doppelganger 1046,1,60000,66000
|
||||
pvp_n_3-4,0,0 monster Drake 1112,1,60000,66000
|
||||
pvp_n_3-4,0,0 monster Osiris 1038,1,60000,66000
|
||||
pvp_n_3-4,0,0 monster Doppelganger 1046,1,60000,66000
|
||||
pvp_n_3-4,0,0 monster Lord of Death 1373,1,60000,66000
|
||||
pvp_n_4-4,0,0 monster Drake 1112,2,60000,66000
|
||||
pvp_n_4-4,0,0 monster Osiris 1038,1,60000,66000
|
||||
pvp_n_4-4,0,0 monster Doppelganger 1046,2,60000,66000
|
||||
pvp_n_4-4,0,0 monster Lord of Death 1373,1,60000,66000
|
||||
pvp_n_5-4,0,0 monster Drake 1112,3,60000,66000
|
||||
pvp_n_5-4,0,0 monster Osiris 1038,2,60000,66000
|
||||
pvp_n_5-4,0,0 monster Doppelganger 1046,2,60000,66000
|
||||
pvp_n_5-4,0,0 monster Lord of Death 1373,1,60000,66000
|
||||
pvp_n_6-4,0,0 monster Drake 1112,3,60000,66000
|
||||
pvp_n_6-4,0,0 monster Osiris 1038,2,60000,66000
|
||||
pvp_n_6-4,0,0 monster Doppelganger 1046,2,60000,66000
|
||||
pvp_n_6-4,0,0 monster Lord of Death 1373,2,60000,66000
|
||||
pvp_n_7-4,0,0 monster Drake 1112,3,60000,66000
|
||||
pvp_n_7-4,0,0 monster Osiris 1038,2,60000,66000
|
||||
pvp_n_7-4,0,0 monster Doppelganger 1046,3,60000,66000
|
||||
pvp_n_7-4,0,0 monster Lord of Death 1373,2,60000,66000
|
||||
pvp_n_8-4,0,0 monster Drake 1112,3,60000,66000
|
||||
pvp_n_8-4,0,0 monster Osiris 1038,3,60000,66000
|
||||
pvp_n_8-4,0,0 monster Doppelganger 1046,3,60000,66000
|
||||
pvp_n_8-4,0,0 monster Lord of Death 1373,3,60000,66000
|
||||
|
||||
// Epsilon
|
||||
pvp_n_1-5,0,0,0,0 monster Incantation Samurai 1492,3,60000,66000
|
||||
pvp_n_1-5,0,0,0,0 monster Pharoh 1157,1,60000,66000
|
||||
pvp_n_2-5,0,0,0,0 monster Incantation Samurai 1492,2,60000,66000
|
||||
pvp_n_2-5,0,0,0,0 monster Pharoh 1157,1,60000,66000
|
||||
pvp_n_2-5,0,0,0,0 monster Dark Lord 1272,1,60000,66000
|
||||
pvp_n_3-5,0,0,0,0 monster Incantation Samurai 1492,1,60000,66000
|
||||
pvp_n_3-5,0,0,0,0 monster Pharoh 1157,1,60000,66000
|
||||
pvp_n_3-5,0,0,0,0 monster Dark Lord 1272,1,60000,66000
|
||||
pvp_n_3-5,0,0,0,0 monster Baphomet 1039,1,60000,66000
|
||||
pvp_n_4-5,0,0,0,0 monster Incantation Samurai 1492,3,60000,66000
|
||||
pvp_n_4-5,0,0,0,0 monster Pharoh 1157,1,60000,66000
|
||||
pvp_n_4-5,0,0,0,0 monster Dark Lord 1272,1,60000,66000
|
||||
pvp_n_4-5,0,0,0,0 monster Baphomet 1039,1,60000,66000
|
||||
pvp_n_5-5,0,0,0,0 monster Incantation Samurai 1492,2,60000,66000
|
||||
pvp_n_5-5,0,0,0,0 monster Pharoh 1157,2,60000,66000
|
||||
pvp_n_5-5,0,0,0,0 monster Dark Lord 1272,2,60000,66000
|
||||
pvp_n_5-5,0,0,0,0 monster Baphomet 1039,1,60000,66000
|
||||
pvp_n_6-5,0,0,0,0 monster Incantation Samurai 1492,2,60000,66000
|
||||
pvp_n_6-5,0,0,0,0 monster Pharoh 1157,2,60000,66000
|
||||
pvp_n_6-5,0,0,0,0 monster Dark Lord 1272,2,60000,66000
|
||||
pvp_n_6-5,0,0,0,0 monster Baphomet 1039,1,60000,66000
|
||||
pvp_n_7-5,0,0,0,0 monster Incantation Samurai 1492,2,60000,66000
|
||||
pvp_n_7-5,0,0,0,0 monster Pharoh 1157,2,60000,66000
|
||||
pvp_n_7-5,0,0,0,0 monster Dark Lord 1272,2,60000,66000
|
||||
pvp_n_7-5,0,0,0,0 monster Baphomet 1039,2,60000,66000
|
||||
pvp_n_8-5,0,0,0,0 monster Incantation Samurai 1492,3,60000,66000
|
||||
pvp_n_8-5,0,0,0,0 monster Pharoh 1157,2,60000,66000
|
||||
pvp_n_8-5,0,0,0,0 monster Dark Lord 1272,2,60000,66000
|
||||
pvp_n_8-5,0,0,0,0 monster Baphomet 1039,2,60000,66000
|
||||
pvp_n_1-5,0,0 monster Incantation Samurai 1492,3,60000,66000
|
||||
pvp_n_1-5,0,0 monster Pharoh 1157,1,60000,66000
|
||||
pvp_n_2-5,0,0 monster Incantation Samurai 1492,2,60000,66000
|
||||
pvp_n_2-5,0,0 monster Pharoh 1157,1,60000,66000
|
||||
pvp_n_2-5,0,0 monster Dark Lord 1272,1,60000,66000
|
||||
pvp_n_3-5,0,0 monster Incantation Samurai 1492,1,60000,66000
|
||||
pvp_n_3-5,0,0 monster Pharoh 1157,1,60000,66000
|
||||
pvp_n_3-5,0,0 monster Dark Lord 1272,1,60000,66000
|
||||
pvp_n_3-5,0,0 monster Baphomet 1039,1,60000,66000
|
||||
pvp_n_4-5,0,0 monster Incantation Samurai 1492,3,60000,66000
|
||||
pvp_n_4-5,0,0 monster Pharoh 1157,1,60000,66000
|
||||
pvp_n_4-5,0,0 monster Dark Lord 1272,1,60000,66000
|
||||
pvp_n_4-5,0,0 monster Baphomet 1039,1,60000,66000
|
||||
pvp_n_5-5,0,0 monster Incantation Samurai 1492,2,60000,66000
|
||||
pvp_n_5-5,0,0 monster Pharoh 1157,2,60000,66000
|
||||
pvp_n_5-5,0,0 monster Dark Lord 1272,2,60000,66000
|
||||
pvp_n_5-5,0,0 monster Baphomet 1039,1,60000,66000
|
||||
pvp_n_6-5,0,0 monster Incantation Samurai 1492,2,60000,66000
|
||||
pvp_n_6-5,0,0 monster Pharoh 1157,2,60000,66000
|
||||
pvp_n_6-5,0,0 monster Dark Lord 1272,2,60000,66000
|
||||
pvp_n_6-5,0,0 monster Baphomet 1039,1,60000,66000
|
||||
pvp_n_7-5,0,0 monster Incantation Samurai 1492,2,60000,66000
|
||||
pvp_n_7-5,0,0 monster Pharoh 1157,2,60000,66000
|
||||
pvp_n_7-5,0,0 monster Dark Lord 1272,2,60000,66000
|
||||
pvp_n_7-5,0,0 monster Baphomet 1039,2,60000,66000
|
||||
pvp_n_8-5,0,0 monster Incantation Samurai 1492,3,60000,66000
|
||||
pvp_n_8-5,0,0 monster Pharoh 1157,2,60000,66000
|
||||
pvp_n_8-5,0,0 monster Dark Lord 1272,2,60000,66000
|
||||
pvp_n_8-5,0,0 monster Baphomet 1039,2,60000,66000
|
||||
|
||||
// Mapflags
|
||||
pvp_n_1-1 mapflag pvp_nightmaredrop off
|
||||
|
||||
@@ -183,7 +183,7 @@ sec_in02 mapflag noskill
|
||||
sec_in02 mapflag pvp_nightmaredrop random,all,300
|
||||
sec_in02 mapflag hidemobhpbar
|
||||
|
||||
sec_in02,138,55,100,100 monster Toadstool 1182,30,10000,10000,1
|
||||
sec_in02,138,55,100,100 monster Toadstool 1182,30,10000,10000
|
||||
sec_in02,138,55,100,100 monster Fabre 1184,10,20000,20000
|
||||
sec_in02,138,55,100,100 monster Chonchon 1183,11,20000,20000
|
||||
sec_in02,138,55,100,100 monster Spore 1014,12,20000,20000
|
||||
|
||||
@@ -252,284 +252,284 @@ prontera,114,81,5 script RWC2011 Agent#2 407,{
|
||||
|
||||
// Monster Spawns
|
||||
//============================================================
|
||||
dic_dun03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
dew_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
dew_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
dew_dun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
mal_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
iz_dun05,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
man_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
man_fild03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
spl_fild02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
spl_fild03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
man_fild02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
spl_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
nyd_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
bra_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
bra_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
bra_dun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
dic_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
dic_fild02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
dic_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
dic_dun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
bif_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
bif_fild02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
abbey01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
abbey02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
abbey03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
abyss_01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
abyss_02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
abyss_03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
alde_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
alde_dun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
alde_dun03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
alde_dun04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ama_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ama_dun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ama_dun03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ama_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
anthell01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
anthell02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ayo_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ayo_dun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ayo_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ayo_fild02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
beach_dun,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
beach_dun2,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
beach_dun3,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
c_tower1,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
c_tower2,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
c_tower3,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
c_tower4,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
cmd_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
cmd_fild02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
cmd_fild03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
cmd_fild04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
cmd_fild06,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
cmd_fild07,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
cmd_fild08,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
cmd_fild09,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ein_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ein_dun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ein_fild03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ein_fild04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ein_fild05,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ein_fild06,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ein_fild07,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ein_fild08,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ein_fild09,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gef_dun00,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gef_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gef_dun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gef_fild00,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gef_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gef_fild02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gef_fild03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gef_fild04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gef_fild05,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gef_fild06,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gef_fild07,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gef_fild08,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gef_fild09,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gef_fild10,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gef_fild11,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gef_fild13,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gefenia01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gefenia02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gefenia03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gefenia04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gl_cas01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gl_cas02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gl_church,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gl_chyard,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gl_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gl_dun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gl_in01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gl_knt01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gl_knt02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gl_prison,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gl_prison1,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gl_sew01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gl_sew02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gl_sew03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gl_sew04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gl_step,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
glast_01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gon_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gon_dun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gon_dun03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
gon_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
hu_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
hu_fild02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
hu_fild04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
hu_fild05,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
hu_fild06,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ice_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ice_dun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ice_dun03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
in_sphinx1,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
in_sphinx2,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
in_sphinx3,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
in_sphinx4,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
in_sphinx5,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
iz_dun00,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
iz_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
iz_dun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
iz_dun03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
iz_dun04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
jupe_core,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
juperos_01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
juperos_02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
kh_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
kh_dun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
lhz_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
lhz_dun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
lhz_dun03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
lhz_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
lhz_fild02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
lhz_fild03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
lou_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
lou_dun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
lou_dun03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
lou_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
mag_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
mag_dun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
man_fild02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
mjo_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
mjo_dun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
mjo_dun03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
mjolnir_01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
mjolnir_02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
mjolnir_03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
mjolnir_04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
mjolnir_05,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
mjolnir_06,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
mjolnir_07,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
mjolnir_08,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
mjolnir_09,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
mjolnir_10,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
mjolnir_11,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
mjolnir_12,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_fild02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_fild03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_fild04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_fild05,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_fild06,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_fild07,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_fild08,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_fild09,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_fild10,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_fild11,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_fild12,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_fild13,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_fild14,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_fild15,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_fild16,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_fild17,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_fild18,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_pryd01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_pryd02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_pryd03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_pryd04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_pryd05,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
moc_pryd06,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
nameless_n,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
nif_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
nif_fild02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
nyd_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
odin_tem01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
odin_tem02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
odin_tem03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
orcsdun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
orcsdun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
pay_dun00,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
pay_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
pay_dun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
pay_dun03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
pay_dun04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
pay_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
pay_fild02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
pay_fild03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
pay_fild04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
pay_fild06,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
pay_fild07,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
pay_fild08,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
pay_fild09,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
pay_fild10,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
prt_fild00,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
prt_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
prt_fild02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
prt_fild03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
prt_fild04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
prt_fild05,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
prt_fild06,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
prt_fild07,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
prt_fild08,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
prt_fild09,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
prt_fild10,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
prt_fild11,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
prt_maze01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
prt_maze02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
prt_maze03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
prt_sewb1,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
prt_sewb2,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
prt_sewb3,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
prt_sewb4,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ra_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ra_fild03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ra_fild04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ra_fild05,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ra_fild06,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ra_fild08,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ra_fild12,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ra_san01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ra_san02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ra_san03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ra_san04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ra_san05,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
spl_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
tha_t01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
tha_t02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
tha_t03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
tha_t04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
tha_t05,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
tha_t06,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
tha_t07,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
tha_t08,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
tha_t09,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
tha_t10,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
tha_t11,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
tha_t12,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
thor_v01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
thor_v02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
thor_v03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
treasure01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
treasure02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
tur_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
tur_dun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
tur_dun03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
tur_dun04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
um_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
um_fild02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
um_fild03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
um_fild04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ve_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ve_fild02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ve_fild03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ve_fild04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ve_fild05,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
ve_fild07,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
xmas_dun01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
xmas_dun02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
xmas_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
yuno_fild01,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
yuno_fild02,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
yuno_fild03,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
yuno_fild04,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
yuno_fild06,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
yuno_fild07,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
yuno_fild08,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
yuno_fild09,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
yuno_fild10,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
yuno_fild12,0,0,0,0 monster Golden Poring 2248,3,5000,0,0
|
||||
dic_dun03,0,0 monster Golden Poring 2248,3,5000
|
||||
dew_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
dew_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
dew_dun02,0,0 monster Golden Poring 2248,3,5000
|
||||
mal_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
iz_dun05,0,0 monster Golden Poring 2248,3,5000
|
||||
man_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
man_fild03,0,0 monster Golden Poring 2248,3,5000
|
||||
spl_fild02,0,0 monster Golden Poring 2248,3,5000
|
||||
spl_fild03,0,0 monster Golden Poring 2248,3,5000
|
||||
man_fild02,0,0 monster Golden Poring 2248,3,5000
|
||||
spl_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
nyd_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
bra_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
bra_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
bra_dun02,0,0 monster Golden Poring 2248,3,5000
|
||||
dic_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
dic_fild02,0,0 monster Golden Poring 2248,3,5000
|
||||
dic_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
dic_dun02,0,0 monster Golden Poring 2248,3,5000
|
||||
bif_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
bif_fild02,0,0 monster Golden Poring 2248,3,5000
|
||||
abbey01,0,0 monster Golden Poring 2248,3,5000
|
||||
abbey02,0,0 monster Golden Poring 2248,3,5000
|
||||
abbey03,0,0 monster Golden Poring 2248,3,5000
|
||||
abyss_01,0,0 monster Golden Poring 2248,3,5000
|
||||
abyss_02,0,0 monster Golden Poring 2248,3,5000
|
||||
abyss_03,0,0 monster Golden Poring 2248,3,5000
|
||||
alde_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
alde_dun02,0,0 monster Golden Poring 2248,3,5000
|
||||
alde_dun03,0,0 monster Golden Poring 2248,3,5000
|
||||
alde_dun04,0,0 monster Golden Poring 2248,3,5000
|
||||
ama_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
ama_dun02,0,0 monster Golden Poring 2248,3,5000
|
||||
ama_dun03,0,0 monster Golden Poring 2248,3,5000
|
||||
ama_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
anthell01,0,0 monster Golden Poring 2248,3,5000
|
||||
anthell02,0,0 monster Golden Poring 2248,3,5000
|
||||
ayo_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
ayo_dun02,0,0 monster Golden Poring 2248,3,5000
|
||||
ayo_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
ayo_fild02,0,0 monster Golden Poring 2248,3,5000
|
||||
beach_dun,0,0 monster Golden Poring 2248,3,5000
|
||||
beach_dun2,0,0 monster Golden Poring 2248,3,5000
|
||||
beach_dun3,0,0 monster Golden Poring 2248,3,5000
|
||||
c_tower1,0,0 monster Golden Poring 2248,3,5000
|
||||
c_tower2,0,0 monster Golden Poring 2248,3,5000
|
||||
c_tower3,0,0 monster Golden Poring 2248,3,5000
|
||||
c_tower4,0,0 monster Golden Poring 2248,3,5000
|
||||
cmd_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
cmd_fild02,0,0 monster Golden Poring 2248,3,5000
|
||||
cmd_fild03,0,0 monster Golden Poring 2248,3,5000
|
||||
cmd_fild04,0,0 monster Golden Poring 2248,3,5000
|
||||
cmd_fild06,0,0 monster Golden Poring 2248,3,5000
|
||||
cmd_fild07,0,0 monster Golden Poring 2248,3,5000
|
||||
cmd_fild08,0,0 monster Golden Poring 2248,3,5000
|
||||
cmd_fild09,0,0 monster Golden Poring 2248,3,5000
|
||||
ein_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
ein_dun02,0,0 monster Golden Poring 2248,3,5000
|
||||
ein_fild03,0,0 monster Golden Poring 2248,3,5000
|
||||
ein_fild04,0,0 monster Golden Poring 2248,3,5000
|
||||
ein_fild05,0,0 monster Golden Poring 2248,3,5000
|
||||
ein_fild06,0,0 monster Golden Poring 2248,3,5000
|
||||
ein_fild07,0,0 monster Golden Poring 2248,3,5000
|
||||
ein_fild08,0,0 monster Golden Poring 2248,3,5000
|
||||
ein_fild09,0,0 monster Golden Poring 2248,3,5000
|
||||
gef_dun00,0,0 monster Golden Poring 2248,3,5000
|
||||
gef_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
gef_dun02,0,0 monster Golden Poring 2248,3,5000
|
||||
gef_fild00,0,0 monster Golden Poring 2248,3,5000
|
||||
gef_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
gef_fild02,0,0 monster Golden Poring 2248,3,5000
|
||||
gef_fild03,0,0 monster Golden Poring 2248,3,5000
|
||||
gef_fild04,0,0 monster Golden Poring 2248,3,5000
|
||||
gef_fild05,0,0 monster Golden Poring 2248,3,5000
|
||||
gef_fild06,0,0 monster Golden Poring 2248,3,5000
|
||||
gef_fild07,0,0 monster Golden Poring 2248,3,5000
|
||||
gef_fild08,0,0 monster Golden Poring 2248,3,5000
|
||||
gef_fild09,0,0 monster Golden Poring 2248,3,5000
|
||||
gef_fild10,0,0 monster Golden Poring 2248,3,5000
|
||||
gef_fild11,0,0 monster Golden Poring 2248,3,5000
|
||||
gef_fild13,0,0 monster Golden Poring 2248,3,5000
|
||||
gefenia01,0,0 monster Golden Poring 2248,3,5000
|
||||
gefenia02,0,0 monster Golden Poring 2248,3,5000
|
||||
gefenia03,0,0 monster Golden Poring 2248,3,5000
|
||||
gefenia04,0,0 monster Golden Poring 2248,3,5000
|
||||
gl_cas01,0,0 monster Golden Poring 2248,3,5000
|
||||
gl_cas02,0,0 monster Golden Poring 2248,3,5000
|
||||
gl_church,0,0 monster Golden Poring 2248,3,5000
|
||||
gl_chyard,0,0 monster Golden Poring 2248,3,5000
|
||||
gl_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
gl_dun02,0,0 monster Golden Poring 2248,3,5000
|
||||
gl_in01,0,0 monster Golden Poring 2248,3,5000
|
||||
gl_knt01,0,0 monster Golden Poring 2248,3,5000
|
||||
gl_knt02,0,0 monster Golden Poring 2248,3,5000
|
||||
gl_prison,0,0 monster Golden Poring 2248,3,5000
|
||||
gl_prison1,0,0 monster Golden Poring 2248,3,5000
|
||||
gl_sew01,0,0 monster Golden Poring 2248,3,5000
|
||||
gl_sew02,0,0 monster Golden Poring 2248,3,5000
|
||||
gl_sew03,0,0 monster Golden Poring 2248,3,5000
|
||||
gl_sew04,0,0 monster Golden Poring 2248,3,5000
|
||||
gl_step,0,0 monster Golden Poring 2248,3,5000
|
||||
glast_01,0,0 monster Golden Poring 2248,3,5000
|
||||
gon_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
gon_dun02,0,0 monster Golden Poring 2248,3,5000
|
||||
gon_dun03,0,0 monster Golden Poring 2248,3,5000
|
||||
gon_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
hu_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
hu_fild02,0,0 monster Golden Poring 2248,3,5000
|
||||
hu_fild04,0,0 monster Golden Poring 2248,3,5000
|
||||
hu_fild05,0,0 monster Golden Poring 2248,3,5000
|
||||
hu_fild06,0,0 monster Golden Poring 2248,3,5000
|
||||
ice_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
ice_dun02,0,0 monster Golden Poring 2248,3,5000
|
||||
ice_dun03,0,0 monster Golden Poring 2248,3,5000
|
||||
in_sphinx1,0,0 monster Golden Poring 2248,3,5000
|
||||
in_sphinx2,0,0 monster Golden Poring 2248,3,5000
|
||||
in_sphinx3,0,0 monster Golden Poring 2248,3,5000
|
||||
in_sphinx4,0,0 monster Golden Poring 2248,3,5000
|
||||
in_sphinx5,0,0 monster Golden Poring 2248,3,5000
|
||||
iz_dun00,0,0 monster Golden Poring 2248,3,5000
|
||||
iz_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
iz_dun02,0,0 monster Golden Poring 2248,3,5000
|
||||
iz_dun03,0,0 monster Golden Poring 2248,3,5000
|
||||
iz_dun04,0,0 monster Golden Poring 2248,3,5000
|
||||
jupe_core,0,0 monster Golden Poring 2248,3,5000
|
||||
juperos_01,0,0 monster Golden Poring 2248,3,5000
|
||||
juperos_02,0,0 monster Golden Poring 2248,3,5000
|
||||
kh_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
kh_dun02,0,0 monster Golden Poring 2248,3,5000
|
||||
lhz_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
lhz_dun02,0,0 monster Golden Poring 2248,3,5000
|
||||
lhz_dun03,0,0 monster Golden Poring 2248,3,5000
|
||||
lhz_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
lhz_fild02,0,0 monster Golden Poring 2248,3,5000
|
||||
lhz_fild03,0,0 monster Golden Poring 2248,3,5000
|
||||
lou_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
lou_dun02,0,0 monster Golden Poring 2248,3,5000
|
||||
lou_dun03,0,0 monster Golden Poring 2248,3,5000
|
||||
lou_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
mag_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
mag_dun02,0,0 monster Golden Poring 2248,3,5000
|
||||
man_fild02,0,0 monster Golden Poring 2248,3,5000
|
||||
mjo_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
mjo_dun02,0,0 monster Golden Poring 2248,3,5000
|
||||
mjo_dun03,0,0 monster Golden Poring 2248,3,5000
|
||||
mjolnir_01,0,0 monster Golden Poring 2248,3,5000
|
||||
mjolnir_02,0,0 monster Golden Poring 2248,3,5000
|
||||
mjolnir_03,0,0 monster Golden Poring 2248,3,5000
|
||||
mjolnir_04,0,0 monster Golden Poring 2248,3,5000
|
||||
mjolnir_05,0,0 monster Golden Poring 2248,3,5000
|
||||
mjolnir_06,0,0 monster Golden Poring 2248,3,5000
|
||||
mjolnir_07,0,0 monster Golden Poring 2248,3,5000
|
||||
mjolnir_08,0,0 monster Golden Poring 2248,3,5000
|
||||
mjolnir_09,0,0 monster Golden Poring 2248,3,5000
|
||||
mjolnir_10,0,0 monster Golden Poring 2248,3,5000
|
||||
mjolnir_11,0,0 monster Golden Poring 2248,3,5000
|
||||
mjolnir_12,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_fild02,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_fild03,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_fild04,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_fild05,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_fild06,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_fild07,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_fild08,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_fild09,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_fild10,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_fild11,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_fild12,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_fild13,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_fild14,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_fild15,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_fild16,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_fild17,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_fild18,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_pryd01,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_pryd02,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_pryd03,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_pryd04,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_pryd05,0,0 monster Golden Poring 2248,3,5000
|
||||
moc_pryd06,0,0 monster Golden Poring 2248,3,5000
|
||||
nameless_n,0,0 monster Golden Poring 2248,3,5000
|
||||
nif_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
nif_fild02,0,0 monster Golden Poring 2248,3,5000
|
||||
nyd_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
odin_tem01,0,0 monster Golden Poring 2248,3,5000
|
||||
odin_tem02,0,0 monster Golden Poring 2248,3,5000
|
||||
odin_tem03,0,0 monster Golden Poring 2248,3,5000
|
||||
orcsdun01,0,0 monster Golden Poring 2248,3,5000
|
||||
orcsdun02,0,0 monster Golden Poring 2248,3,5000
|
||||
pay_dun00,0,0 monster Golden Poring 2248,3,5000
|
||||
pay_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
pay_dun02,0,0 monster Golden Poring 2248,3,5000
|
||||
pay_dun03,0,0 monster Golden Poring 2248,3,5000
|
||||
pay_dun04,0,0 monster Golden Poring 2248,3,5000
|
||||
pay_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
pay_fild02,0,0 monster Golden Poring 2248,3,5000
|
||||
pay_fild03,0,0 monster Golden Poring 2248,3,5000
|
||||
pay_fild04,0,0 monster Golden Poring 2248,3,5000
|
||||
pay_fild06,0,0 monster Golden Poring 2248,3,5000
|
||||
pay_fild07,0,0 monster Golden Poring 2248,3,5000
|
||||
pay_fild08,0,0 monster Golden Poring 2248,3,5000
|
||||
pay_fild09,0,0 monster Golden Poring 2248,3,5000
|
||||
pay_fild10,0,0 monster Golden Poring 2248,3,5000
|
||||
prt_fild00,0,0 monster Golden Poring 2248,3,5000
|
||||
prt_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
prt_fild02,0,0 monster Golden Poring 2248,3,5000
|
||||
prt_fild03,0,0 monster Golden Poring 2248,3,5000
|
||||
prt_fild04,0,0 monster Golden Poring 2248,3,5000
|
||||
prt_fild05,0,0 monster Golden Poring 2248,3,5000
|
||||
prt_fild06,0,0 monster Golden Poring 2248,3,5000
|
||||
prt_fild07,0,0 monster Golden Poring 2248,3,5000
|
||||
prt_fild08,0,0 monster Golden Poring 2248,3,5000
|
||||
prt_fild09,0,0 monster Golden Poring 2248,3,5000
|
||||
prt_fild10,0,0 monster Golden Poring 2248,3,5000
|
||||
prt_fild11,0,0 monster Golden Poring 2248,3,5000
|
||||
prt_maze01,0,0 monster Golden Poring 2248,3,5000
|
||||
prt_maze02,0,0 monster Golden Poring 2248,3,5000
|
||||
prt_maze03,0,0 monster Golden Poring 2248,3,5000
|
||||
prt_sewb1,0,0 monster Golden Poring 2248,3,5000
|
||||
prt_sewb2,0,0 monster Golden Poring 2248,3,5000
|
||||
prt_sewb3,0,0 monster Golden Poring 2248,3,5000
|
||||
prt_sewb4,0,0 monster Golden Poring 2248,3,5000
|
||||
ra_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
ra_fild03,0,0 monster Golden Poring 2248,3,5000
|
||||
ra_fild04,0,0 monster Golden Poring 2248,3,5000
|
||||
ra_fild05,0,0 monster Golden Poring 2248,3,5000
|
||||
ra_fild06,0,0 monster Golden Poring 2248,3,5000
|
||||
ra_fild08,0,0 monster Golden Poring 2248,3,5000
|
||||
ra_fild12,0,0 monster Golden Poring 2248,3,5000
|
||||
ra_san01,0,0 monster Golden Poring 2248,3,5000
|
||||
ra_san02,0,0 monster Golden Poring 2248,3,5000
|
||||
ra_san03,0,0 monster Golden Poring 2248,3,5000
|
||||
ra_san04,0,0 monster Golden Poring 2248,3,5000
|
||||
ra_san05,0,0 monster Golden Poring 2248,3,5000
|
||||
spl_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
tha_t01,0,0 monster Golden Poring 2248,3,5000
|
||||
tha_t02,0,0 monster Golden Poring 2248,3,5000
|
||||
tha_t03,0,0 monster Golden Poring 2248,3,5000
|
||||
tha_t04,0,0 monster Golden Poring 2248,3,5000
|
||||
tha_t05,0,0 monster Golden Poring 2248,3,5000
|
||||
tha_t06,0,0 monster Golden Poring 2248,3,5000
|
||||
tha_t07,0,0 monster Golden Poring 2248,3,5000
|
||||
tha_t08,0,0 monster Golden Poring 2248,3,5000
|
||||
tha_t09,0,0 monster Golden Poring 2248,3,5000
|
||||
tha_t10,0,0 monster Golden Poring 2248,3,5000
|
||||
tha_t11,0,0 monster Golden Poring 2248,3,5000
|
||||
tha_t12,0,0 monster Golden Poring 2248,3,5000
|
||||
thor_v01,0,0 monster Golden Poring 2248,3,5000
|
||||
thor_v02,0,0 monster Golden Poring 2248,3,5000
|
||||
thor_v03,0,0 monster Golden Poring 2248,3,5000
|
||||
treasure01,0,0 monster Golden Poring 2248,3,5000
|
||||
treasure02,0,0 monster Golden Poring 2248,3,5000
|
||||
tur_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
tur_dun02,0,0 monster Golden Poring 2248,3,5000
|
||||
tur_dun03,0,0 monster Golden Poring 2248,3,5000
|
||||
tur_dun04,0,0 monster Golden Poring 2248,3,5000
|
||||
um_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
um_fild02,0,0 monster Golden Poring 2248,3,5000
|
||||
um_fild03,0,0 monster Golden Poring 2248,3,5000
|
||||
um_fild04,0,0 monster Golden Poring 2248,3,5000
|
||||
ve_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
ve_fild02,0,0 monster Golden Poring 2248,3,5000
|
||||
ve_fild03,0,0 monster Golden Poring 2248,3,5000
|
||||
ve_fild04,0,0 monster Golden Poring 2248,3,5000
|
||||
ve_fild05,0,0 monster Golden Poring 2248,3,5000
|
||||
ve_fild07,0,0 monster Golden Poring 2248,3,5000
|
||||
xmas_dun01,0,0 monster Golden Poring 2248,3,5000
|
||||
xmas_dun02,0,0 monster Golden Poring 2248,3,5000
|
||||
xmas_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
yuno_fild01,0,0 monster Golden Poring 2248,3,5000
|
||||
yuno_fild02,0,0 monster Golden Poring 2248,3,5000
|
||||
yuno_fild03,0,0 monster Golden Poring 2248,3,5000
|
||||
yuno_fild04,0,0 monster Golden Poring 2248,3,5000
|
||||
yuno_fild06,0,0 monster Golden Poring 2248,3,5000
|
||||
yuno_fild07,0,0 monster Golden Poring 2248,3,5000
|
||||
yuno_fild08,0,0 monster Golden Poring 2248,3,5000
|
||||
yuno_fild09,0,0 monster Golden Poring 2248,3,5000
|
||||
yuno_fild10,0,0 monster Golden Poring 2248,3,5000
|
||||
yuno_fild12,0,0 monster Golden Poring 2248,3,5000
|
||||
|
||||
@@ -267,451 +267,451 @@ function script F_08stpattyseventbox {
|
||||
|
||||
|
||||
// Snake Spawns.
|
||||
ein_fild03,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
ein_fild04,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
ein_fild06,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
ein_fild07,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
ein_fild08,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
ein_fild09,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
ein_fild10,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild00,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild01,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild02,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild03,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild04,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild05,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild07,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild08,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild09,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild10,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild11,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild12,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild13,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild14,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
glast_01,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
lhz_fild01,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
lhz_fild02,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
lhz_fild03,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_01,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_02,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_03,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_04,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_05,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_06,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_07,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_08,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_09,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_10,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_11,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_12,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild01,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild02,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild03,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild04,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild05,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild06,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild07,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild08,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild09,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild10,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild11,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild12,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild13,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild14,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild03,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild16,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild17,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild18,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild01,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild02,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild03,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild04,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild05,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild06,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild07,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild08,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild09,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild10,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild11,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild00,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild01,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild02,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild03,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild04,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild05,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild06,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild07,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild08,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild09,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild10,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild11,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
xmas_fild01,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
cmd_fild01,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
cmd_fild02,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
cmd_fild03,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
cmd_fild04,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
cmd_fild05,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
cmd_fild06,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
cmd_fild07,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
cmd_fild08,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
cmd_fild09,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild01,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild02,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild03,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild04,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild05,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild06,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild07,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild08,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild09,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild11,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild12,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
ama_fild01,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gon_fild01,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
um_fild01,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
um_fild02,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
um_fild03,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
um_fild04,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
nif_fild01,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
ein_fild03,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
ein_fild04,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
ein_fild06,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
ein_fild07,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
ein_fild08,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
ein_fild09,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
ein_fild10,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild00,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild01,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild02,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild03,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild04,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild05,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild07,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild08,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild09,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild10,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild11,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild12,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild13,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gef_fild14,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
glast_01,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
lhz_fild01,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
lhz_fild02,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
lhz_fild03,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_01,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_02,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_03,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_04,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_05,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_06,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_07,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_08,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_09,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_10,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_11,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
mjolnir_12,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild01,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild02,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild03,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild04,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild05,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild06,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild07,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild08,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild09,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild10,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild11,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild12,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild13,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild14,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild03,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild16,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild17,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
moc_fild18,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild01,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild02,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild03,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild04,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild05,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild06,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild07,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild08,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild09,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild10,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
pay_fild11,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild00,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild01,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild02,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild03,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild04,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild05,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild06,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild07,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild08,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild09,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild10,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
prt_fild11,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
xmas_fild01,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
cmd_fild01,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
cmd_fild02,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
cmd_fild03,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
cmd_fild04,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
cmd_fild05,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
cmd_fild06,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
cmd_fild07,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
cmd_fild08,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
cmd_fild09,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild01,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild02,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild03,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild04,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild05,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild06,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild07,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild08,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild09,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild11,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
yuno_fild12,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
ama_fild01,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
gon_fild01,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
um_fild01,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
um_fild02,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
um_fild03,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
um_fild04,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
nif_fild01,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
nif_fild02,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
lou_fild01,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
hu_fild01,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
hu_fild04,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
hu_fild05,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
hu_fild07,0,0,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
ein_fild03,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
ein_fild04,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
ein_fild06,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
ein_fild07,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
ein_fild08,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
ein_fild09,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
ein_fild10,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild00,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild01,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild02,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild03,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild04,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild05,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild07,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild08,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild09,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild10,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild11,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild12,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild13,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild14,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
glast_01,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
lhz_fild01,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
lhz_fild02,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
lhz_fild03,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_01,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_02,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_03,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_04,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_05,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_06,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_07,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_08,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_09,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_10,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_11,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_12,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild01,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild02,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild03,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild04,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild05,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild06,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild07,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild08,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild09,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild10,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild11,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild12,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild13,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild14,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild03,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild16,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild17,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild18,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild01,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild02,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild03,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild04,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild05,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild06,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild07,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild08,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild09,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild10,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild11,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild00,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild01,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild02,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild03,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild04,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild05,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild06,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild07,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild08,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild09,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild10,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild11,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
xmas_fild01,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
cmd_fild01,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
cmd_fild02,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
cmd_fild03,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
cmd_fild04,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
cmd_fild05,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
cmd_fild06,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
cmd_fild07,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
cmd_fild08,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
cmd_fild09,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild01,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild02,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild03,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild04,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild05,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild06,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild07,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild08,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild09,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild11,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild12,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
ama_fild01,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gon_fild01,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
um_fild01,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
um_fild02,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
um_fild03,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
um_fild04,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
nif_fild01,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
lou_fild01,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
hu_fild01,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
hu_fild04,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
hu_fild05,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
hu_fild07,0,0 monster Snake Lord's Minon 1841,3,0,0,0
|
||||
ein_fild03,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
ein_fild04,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
ein_fild06,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
ein_fild07,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
ein_fild08,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
ein_fild09,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
ein_fild10,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild00,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild01,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild02,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild03,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild04,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild05,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild07,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild08,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild09,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild10,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild11,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild12,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild13,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gef_fild14,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
glast_01,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
lhz_fild01,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
lhz_fild02,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
lhz_fild03,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_01,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_02,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_03,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_04,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_05,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_06,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_07,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_08,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_09,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_10,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_11,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
mjolnir_12,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild01,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild02,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild03,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild04,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild05,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild06,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild07,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild08,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild09,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild10,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild11,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild12,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild13,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild14,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild03,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild16,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild17,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
moc_fild18,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild01,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild02,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild03,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild04,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild05,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild06,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild07,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild08,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild09,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild10,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
pay_fild11,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild00,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild01,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild02,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild03,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild04,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild05,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild06,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild07,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild08,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild09,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild10,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
prt_fild11,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
xmas_fild01,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
cmd_fild01,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
cmd_fild02,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
cmd_fild03,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
cmd_fild04,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
cmd_fild05,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
cmd_fild06,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
cmd_fild07,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
cmd_fild08,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
cmd_fild09,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild01,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild02,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild03,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild04,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild05,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild06,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild07,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild08,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild09,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild11,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
yuno_fild12,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
ama_fild01,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
gon_fild01,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
um_fild01,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
um_fild02,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
um_fild03,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
um_fild04,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
nif_fild01,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
nif_fild02,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
lou_fild01,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
hu_fild01,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
hu_fild04,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
hu_fild05,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
hu_fild07,0,0,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
ein_fild03,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
ein_fild04,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
ein_fild06,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
ein_fild07,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
ein_fild08,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
ein_fild09,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
ein_fild10,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild00,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild01,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild02,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild03,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild04,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild05,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild07,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild08,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild09,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild10,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild11,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild12,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild13,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild14,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
glast_01,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
lhz_fild01,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
lhz_fild02,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
lhz_fild03,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_01,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_02,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_03,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_04,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_05,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_06,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_07,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_08,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_09,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_10,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_11,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_12,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild01,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild02,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild03,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild04,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild05,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild06,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild07,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild08,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild09,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild10,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild11,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild12,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild13,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild14,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild03,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild16,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild17,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild18,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild01,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild02,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild03,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild04,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild05,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild06,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild07,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild08,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild09,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild10,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild11,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild00,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild01,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild02,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild03,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild04,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild05,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild06,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild07,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild08,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild09,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild10,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild11,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
xmas_fild01,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
cmd_fild01,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
cmd_fild02,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
cmd_fild03,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
cmd_fild04,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
cmd_fild05,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
cmd_fild06,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
cmd_fild07,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
cmd_fild08,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
cmd_fild09,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild01,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild02,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild03,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild04,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild05,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild06,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild07,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild08,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild09,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild11,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild12,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
ama_fild01,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gon_fild01,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
um_fild01,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
um_fild02,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
um_fild03,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
um_fild04,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
nif_fild01,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
lou_fild01,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
hu_fild01,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
hu_fild04,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
hu_fild05,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
hu_fild07,0,0 monster Snake Lord's Minon 1842,3,0,0,0
|
||||
ein_fild03,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
ein_fild04,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
ein_fild06,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
ein_fild07,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
ein_fild08,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
ein_fild09,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
ein_fild10,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild00,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild01,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild02,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild03,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild04,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild05,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild07,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild08,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild09,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild10,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild11,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild12,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild13,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gef_fild14,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
glast_01,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
lhz_fild01,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
lhz_fild02,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
lhz_fild03,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_01,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_02,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_03,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_04,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_05,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_06,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_07,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_08,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_09,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_10,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_11,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
mjolnir_12,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild01,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild02,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild03,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild04,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild05,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild06,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild07,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild08,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild09,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild10,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild11,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild12,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild13,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild14,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild03,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild16,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild17,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
moc_fild18,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild01,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild02,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild03,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild04,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild05,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild06,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild07,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild08,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild09,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild10,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
pay_fild11,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild00,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild01,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild02,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild03,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild04,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild05,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild06,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild07,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild08,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild09,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild10,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
prt_fild11,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
xmas_fild01,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
cmd_fild01,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
cmd_fild02,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
cmd_fild03,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
cmd_fild04,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
cmd_fild05,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
cmd_fild06,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
cmd_fild07,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
cmd_fild08,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
cmd_fild09,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild01,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild02,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild03,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild04,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild05,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild06,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild07,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild08,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild09,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild11,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
yuno_fild12,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
ama_fild01,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
gon_fild01,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
um_fild01,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
um_fild02,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
um_fild03,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
um_fild04,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
nif_fild01,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
nif_fild02,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
lou_fild01,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
hu_fild01,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
hu_fild04,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
hu_fild05,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
hu_fild07,0,0,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
ein_fild03,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
ein_fild04,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
ein_fild06,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
ein_fild07,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
ein_fild08,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
ein_fild09,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
ein_fild10,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild00,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild03,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild04,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild05,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild07,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild08,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild09,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild10,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild11,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild11,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild13,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild14,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
glast_01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
lhz_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
lhz_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
lhz_fild03,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_03,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_04,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_05,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_06,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_07,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_08,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_09,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_10,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_11,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_11,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild03,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild04,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild05,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild06,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild07,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild08,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild09,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild10,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild11,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild11,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild13,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild14,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild03,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild16,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild17,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild18,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild03,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild04,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild05,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild06,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild07,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild08,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild09,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild10,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild11,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild00,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild03,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild04,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild05,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild06,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild07,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild08,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild09,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild10,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild11,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
xmas_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
cmd_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
cmd_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
cmd_fild03,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
cmd_fild04,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
cmd_fild05,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
cmd_fild06,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
cmd_fild07,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
cmd_fild08,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
cmd_fild09,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild03,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild04,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild05,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild06,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild07,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild08,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild09,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild11,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild11,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
ama_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gon_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
um_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
um_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
um_fild03,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
um_fild04,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
nif_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
lou_fild01,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
hu_fild01,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
hu_fild04,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
hu_fild05,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
hu_fild07,0,0 monster Snake Lord's Minon 1843,2,0,0,0
|
||||
ein_fild03,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
ein_fild04,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
ein_fild06,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
ein_fild07,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
ein_fild08,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
ein_fild09,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
ein_fild10,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild00,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild03,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild04,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild05,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild07,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild08,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild09,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild10,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild11,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild11,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild13,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gef_fild14,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
glast_01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
lhz_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
lhz_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
lhz_fild03,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_03,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_04,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_05,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_06,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_07,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_08,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_09,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_10,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_11,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
mjolnir_11,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild03,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild04,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild05,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild06,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild07,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild08,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild09,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild10,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild11,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild11,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild13,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild14,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild03,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild16,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild17,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
moc_fild18,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild03,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild04,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild05,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild06,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild07,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild08,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild09,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild10,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
pay_fild11,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild00,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild03,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild04,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild05,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild06,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild07,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild08,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild09,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild10,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
prt_fild11,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
xmas_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
cmd_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
cmd_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
cmd_fild03,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
cmd_fild04,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
cmd_fild05,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
cmd_fild06,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
cmd_fild07,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
cmd_fild08,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
cmd_fild09,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild03,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild04,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild05,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild06,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild07,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild08,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild09,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild11,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
yuno_fild11,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
ama_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
gon_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
um_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
um_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
um_fild03,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
um_fild04,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
nif_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
nif_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
lou_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
hu_fild01,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
hu_fild04,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
hu_fild05,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
hu_fild07,0,0,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
lou_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
hu_fild01,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
hu_fild04,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
hu_fild05,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
hu_fild07,0,0 monster Snake Lord's Minon 1844,1,0,0,0
|
||||
|
||||
@@ -143,175 +143,175 @@ bossnia_04,204,204,0 warp bossnia04 1,1,prontera,155,180
|
||||
//----------------------------------------------------------------------------
|
||||
// bossnia_01 - Bossnia
|
||||
//----------------------------------------------------------------------------
|
||||
bossnia_01,0,0,0,0 monster Garm 1252,5,7200000,0,1
|
||||
bossnia_01,0,0,0,0 monster Gloom Under Night 1768,2,7200000,0,1
|
||||
bossnia_01,0,0,0,0 monster Dark Lord 1272,3,7200000,0,1
|
||||
bossnia_01,0,0,0,0 monster Doppelganger 1046,10,7200000,0,1
|
||||
bossnia_01,0,0,0,0 monster Dracula 1389,5,1800000,0,1
|
||||
bossnia_01,0,0,0,0 monster Drake 1112,10,1800000,0,1
|
||||
bossnia_01,0,0,0,0 monster Detale 1719,2,7200000,0,1
|
||||
bossnia_01,0,0,0,0 monster Maya 1147,10,1800000,0,1
|
||||
bossnia_01,0,0,0,0 monster Mistress 1059,1,1800000,0,1
|
||||
bossnia_01,0,0,0,0 monster Baphomet 1039,10,1800000,0,1
|
||||
bossnia_01,0,0,0,0 monster Egnigem Cenia 1658,10,1800000,0,1
|
||||
bossnia_01,0,0,0,0 monster Amon Ra 1511,1,1800000,0,1
|
||||
bossnia_01,0,0,0,0 monster Atroce 1785,10,1800000,0,1
|
||||
bossnia_01,0,0,0,0 monster Vesper 1685,2,7200000,0,1
|
||||
bossnia_01,0,0,0,0 monster Eddga 1115,1,1800000,0,1
|
||||
bossnia_01,0,0,0,0 monster Osiris 1038,10,7200000,0,1
|
||||
bossnia_01,0,0,0,0 monster Orc Lord 1190,10,7200000,0,1
|
||||
bossnia_01,0,0,0,0 monster Orc Hero 1087,2,1800000,0,1
|
||||
bossnia_01,0,0,0,0 monster Samurai Specter 1492,1,3600000,0,1
|
||||
bossnia_01,0,0,0,0 monster Moonlight Flower 1150,1,3600000,0,1
|
||||
bossnia_01,0,0,0,0 monster Lord of the Dead 1373,1,3600000,0,1
|
||||
bossnia_01,0,0,0,0 monster Ktullanux 1779,2,7200000,0,1
|
||||
bossnia_01,0,0,0,0 monster Kiel D-01 1734,2,7200000,0,1
|
||||
bossnia_01,0,0,0,0 monster Thanatos Phantom 1708,2,7200000,0,1
|
||||
bossnia_01,0,0,0,0 monster Lady Tanee 1688,1,3600000,0,1
|
||||
bossnia_01,0,0,0,0 monster Tao Gunka 1583,1,3600000,0,1
|
||||
bossnia_01,0,0,0,0 monster Turtle General 1312,10,7200000,0,1
|
||||
bossnia_01,0,0,0,0 monster Pharaoh 1157,2,3600000,0,1
|
||||
bossnia_01,0,0,0,0 monster Stormy Knight 1251,2,3600000,0,1
|
||||
bossnia_01,0,0,0,0 monster Falling Bishop 1871,5,7200000,0,1
|
||||
bossnia_01,0,0,0,0 monster Phreeoni 1159,10,7200000,0,1
|
||||
bossnia_01,0,0,0,0 monster Golden Thief Bug 1086,10,3600000,0,1
|
||||
bossnia_01,0,0,0,0 monster Evil Snake Lord 1418,10,7200000,0,1
|
||||
bossnia_01,0,0,0,0 monster RSX-0806 1623,5,7200000,0,1
|
||||
bossnia_01,0,0,0,0 monster Assassin Cross Eremes 1647,1,0,0,1
|
||||
bossnia_01,137,118,1,1 monster Whitesmith Howard 1648,1,0,0,1
|
||||
bossnia_01,122,195,1,1 monster Beelzebub 1873,1,0,0,1
|
||||
bossnia_01,45,118,1,1 monster Beelzebub 1873,1,0,0,1
|
||||
bossnia_01,196,122,1,1 monster Valkyrie Randgris 1751,1,0,0,1
|
||||
bossnia_01,142,61,1,1 monster Ifrit 1832,1,0,0,1
|
||||
bossnia_01,0,0 monster Garm 1252,5,7200000
|
||||
bossnia_01,0,0 monster Gloom Under Night 1768,2,7200000
|
||||
bossnia_01,0,0 monster Dark Lord 1272,3,7200000
|
||||
bossnia_01,0,0 monster Doppelganger 1046,10,7200000
|
||||
bossnia_01,0,0 monster Dracula 1389,5,1800000
|
||||
bossnia_01,0,0 monster Drake 1112,10,1800000
|
||||
bossnia_01,0,0 monster Detale 1719,2,7200000
|
||||
bossnia_01,0,0 monster Maya 1147,10,1800000
|
||||
bossnia_01,0,0 monster Mistress 1059,1,1800000
|
||||
bossnia_01,0,0 monster Baphomet 1039,10,1800000
|
||||
bossnia_01,0,0 monster Egnigem Cenia 1658,10,1800000
|
||||
bossnia_01,0,0 monster Amon Ra 1511,1,1800000
|
||||
bossnia_01,0,0 monster Atroce 1785,10,1800000
|
||||
bossnia_01,0,0 monster Vesper 1685,2,7200000
|
||||
bossnia_01,0,0 monster Eddga 1115,1,1800000
|
||||
bossnia_01,0,0 monster Osiris 1038,10,7200000
|
||||
bossnia_01,0,0 monster Orc Lord 1190,10,7200000
|
||||
bossnia_01,0,0 monster Orc Hero 1087,2,1800000
|
||||
bossnia_01,0,0 monster Samurai Specter 1492,1,3600000
|
||||
bossnia_01,0,0 monster Moonlight Flower 1150,1,3600000
|
||||
bossnia_01,0,0 monster Lord of the Dead 1373,1,3600000
|
||||
bossnia_01,0,0 monster Ktullanux 1779,2,7200000
|
||||
bossnia_01,0,0 monster Kiel D-01 1734,2,7200000
|
||||
bossnia_01,0,0 monster Thanatos Phantom 1708,2,7200000
|
||||
bossnia_01,0,0 monster Lady Tanee 1688,1,3600000
|
||||
bossnia_01,0,0 monster Tao Gunka 1583,1,3600000
|
||||
bossnia_01,0,0 monster Turtle General 1312,10,7200000
|
||||
bossnia_01,0,0 monster Pharaoh 1157,2,3600000
|
||||
bossnia_01,0,0 monster Stormy Knight 1251,2,3600000
|
||||
bossnia_01,0,0 monster Falling Bishop 1871,5,7200000
|
||||
bossnia_01,0,0 monster Phreeoni 1159,10,7200000
|
||||
bossnia_01,0,0 monster Golden Thief Bug 1086,10,3600000
|
||||
bossnia_01,0,0 monster Evil Snake Lord 1418,10,7200000
|
||||
bossnia_01,0,0 monster RSX-0806 1623,5,7200000
|
||||
bossnia_01,0,0 monster Assassin Cross Eremes 1647,1
|
||||
bossnia_01,137,118,1,1 monster Whitesmith Howard 1648,1
|
||||
bossnia_01,122,195,1,1 monster Beelzebub 1873,1
|
||||
bossnia_01,45,118,1,1 monster Beelzebub 1873,1
|
||||
bossnia_01,196,122,1,1 monster Valkyrie Randgris 1751,1
|
||||
bossnia_01,142,61,1,1 monster Ifrit 1832,1
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
// bossnia_02 - Bossnia
|
||||
//----------------------------------------------------------------------------
|
||||
bossnia_02,0,0,0,0 monster Garm 1252,5,7200000,0,1
|
||||
bossnia_02,0,0,0,0 monster Gloom Under Night 1768,2,7200000,0,1
|
||||
bossnia_02,0,0,0,0 monster Dark Lord 1272,3,7200000,0,1
|
||||
bossnia_02,0,0,0,0 monster Doppelganger 1046,10,7200000,0,1
|
||||
bossnia_02,0,0,0,0 monster Dracula 1389,5,1800000,0,1
|
||||
bossnia_02,0,0,0,0 monster Drake 1112,10,1800000,0,1
|
||||
bossnia_02,0,0,0,0 monster Detale 1719,2,7200000,0,1
|
||||
bossnia_02,0,0,0,0 monster Maya 1147,10,1800000,0,1
|
||||
bossnia_02,0,0,0,0 monster Mistress 1059,1,1800000,0,1
|
||||
bossnia_02,0,0,0,0 monster Baphomet 1039,10,1800000,0,1
|
||||
bossnia_02,0,0,0,0 monster Egnigem Cenia 1658,10,1800000,0,1
|
||||
bossnia_02,0,0,0,0 monster Amon Ra 1511,1,1800000,0,1
|
||||
bossnia_02,0,0,0,0 monster Atroce 1785,10,1800000,0,1
|
||||
bossnia_02,0,0,0,0 monster Vesper 1685,2,7200000,0,1
|
||||
bossnia_02,0,0,0,0 monster Eddga 1115,1,1800000,0,1
|
||||
bossnia_02,0,0,0,0 monster Osiris 1038,10,7200000,0,1
|
||||
bossnia_02,0,0,0,0 monster Orc Lord 1190,10,7200000,0,1
|
||||
bossnia_02,0,0,0,0 monster Orc Hero 1087,2,1800000,0,1
|
||||
bossnia_02,0,0,0,0 monster Samurai Specter 1492,1,3600000,0,1
|
||||
bossnia_02,0,0,0,0 monster Moonlight Flower 1150,1,3600000,0,1
|
||||
bossnia_02,0,0,0,0 monster Lord of the Dead 1373,1,3600000,0,1
|
||||
bossnia_02,0,0,0,0 monster Ktullanux 1779,2,7200000,0,1
|
||||
bossnia_02,0,0,0,0 monster Kiel D-01 1734,2,7200000,0,1
|
||||
bossnia_02,0,0,0,0 monster Thanatos Phantom 1708,2,7200000,0,1
|
||||
bossnia_02,0,0,0,0 monster Lady Tanee 1688,1,3600000,0,1
|
||||
bossnia_02,0,0,0,0 monster Tao Gunka 1583,1,3600000,0,1
|
||||
bossnia_02,0,0,0,0 monster Turtle General 1312,10,7200000,0,1
|
||||
bossnia_02,0,0,0,0 monster Pharaoh 1157,2,3600000,0,1
|
||||
bossnia_02,0,0,0,0 monster Stormy Knight 1251,2,3600000,0,1
|
||||
bossnia_02,0,0,0,0 monster Falling Bishop 1871,5,7200000,0,1
|
||||
bossnia_02,0,0,0,0 monster Phreeoni 1159,10,7200000,0,1
|
||||
bossnia_02,0,0,0,0 monster Golden Thief Bug 1086,10,3600000,0,1
|
||||
bossnia_02,0,0,0,0 monster Evil Snake Lord 1418,10,7200000,0,1
|
||||
bossnia_02,0,0,0,0 monster RSX-0806 1623,5,7200000,0,1
|
||||
bossnia_02,0,0,0,0 monster Assassin Cross Eremes 1647,1,0,0,1
|
||||
bossnia_02,137,118,1,1 monster Whitesmith Howard 1648,1,0,0,1
|
||||
bossnia_02,122,195,1,1 monster Beelzebub 1873,1,0,0,1
|
||||
bossnia_02,45,118,1,1 monster Beelzebub 1873,1,0,0,1
|
||||
bossnia_02,196,122,1,1 monster Valkyrie Randgris 1751,1,0,0,1
|
||||
bossnia_02,142,61,1,1 monster Ifrit 1832,1,0,0,1
|
||||
bossnia_02,0,0 monster Garm 1252,5,7200000
|
||||
bossnia_02,0,0 monster Gloom Under Night 1768,2,7200000
|
||||
bossnia_02,0,0 monster Dark Lord 1272,3,7200000
|
||||
bossnia_02,0,0 monster Doppelganger 1046,10,7200000
|
||||
bossnia_02,0,0 monster Dracula 1389,5,1800000
|
||||
bossnia_02,0,0 monster Drake 1112,10,1800000
|
||||
bossnia_02,0,0 monster Detale 1719,2,7200000
|
||||
bossnia_02,0,0 monster Maya 1147,10,1800000
|
||||
bossnia_02,0,0 monster Mistress 1059,1,1800000
|
||||
bossnia_02,0,0 monster Baphomet 1039,10,1800000
|
||||
bossnia_02,0,0 monster Egnigem Cenia 1658,10,1800000
|
||||
bossnia_02,0,0 monster Amon Ra 1511,1,1800000
|
||||
bossnia_02,0,0 monster Atroce 1785,10,1800000
|
||||
bossnia_02,0,0 monster Vesper 1685,2,7200000
|
||||
bossnia_02,0,0 monster Eddga 1115,1,1800000
|
||||
bossnia_02,0,0 monster Osiris 1038,10,7200000
|
||||
bossnia_02,0,0 monster Orc Lord 1190,10,7200000
|
||||
bossnia_02,0,0 monster Orc Hero 1087,2,1800000
|
||||
bossnia_02,0,0 monster Samurai Specter 1492,1,3600000
|
||||
bossnia_02,0,0 monster Moonlight Flower 1150,1,3600000
|
||||
bossnia_02,0,0 monster Lord of the Dead 1373,1,3600000
|
||||
bossnia_02,0,0 monster Ktullanux 1779,2,7200000
|
||||
bossnia_02,0,0 monster Kiel D-01 1734,2,7200000
|
||||
bossnia_02,0,0 monster Thanatos Phantom 1708,2,7200000
|
||||
bossnia_02,0,0 monster Lady Tanee 1688,1,3600000
|
||||
bossnia_02,0,0 monster Tao Gunka 1583,1,3600000
|
||||
bossnia_02,0,0 monster Turtle General 1312,10,7200000
|
||||
bossnia_02,0,0 monster Pharaoh 1157,2,3600000
|
||||
bossnia_02,0,0 monster Stormy Knight 1251,2,3600000
|
||||
bossnia_02,0,0 monster Falling Bishop 1871,5,7200000
|
||||
bossnia_02,0,0 monster Phreeoni 1159,10,7200000
|
||||
bossnia_02,0,0 monster Golden Thief Bug 1086,10,3600000
|
||||
bossnia_02,0,0 monster Evil Snake Lord 1418,10,7200000
|
||||
bossnia_02,0,0 monster RSX-0806 1623,5,7200000
|
||||
bossnia_02,0,0 monster Assassin Cross Eremes 1647,1
|
||||
bossnia_02,137,118,1,1 monster Whitesmith Howard 1648,1
|
||||
bossnia_02,122,195,1,1 monster Beelzebub 1873,1
|
||||
bossnia_02,45,118,1,1 monster Beelzebub 1873,1
|
||||
bossnia_02,196,122,1,1 monster Valkyrie Randgris 1751,1
|
||||
bossnia_02,142,61,1,1 monster Ifrit 1832,1
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
// bossnia_03 - Bossnia
|
||||
//----------------------------------------------------------------------------
|
||||
bossnia_03,0,0,0,0 monster Garm 1252,5,7200000,0,1
|
||||
bossnia_03,0,0,0,0 monster Gloom Under Night 1768,2,7200000,0,1
|
||||
bossnia_03,0,0,0,0 monster Dark Lord 1272,3,7200000,0,1
|
||||
bossnia_03,0,0,0,0 monster Doppelganger 1046,10,7200000,0,1
|
||||
bossnia_03,0,0,0,0 monster Dracula 1389,5,1800000,0,1
|
||||
bossnia_03,0,0,0,0 monster Drake 1112,10,1800000,0,1
|
||||
bossnia_03,0,0,0,0 monster Detale 1719,2,7200000,0,1
|
||||
bossnia_03,0,0,0,0 monster Maya 1147,10,1800000,0,1
|
||||
bossnia_03,0,0,0,0 monster Mistress 1059,1,1800000,0,1
|
||||
bossnia_03,0,0,0,0 monster Baphomet 1039,10,1800000,0,1
|
||||
bossnia_03,0,0,0,0 monster Egnigem Cenia 1658,10,1800000,0,1
|
||||
bossnia_03,0,0,0,0 monster Amon Ra 1511,1,1800000,0,1
|
||||
bossnia_03,0,0,0,0 monster Atroce 1785,10,1800000,0,1
|
||||
bossnia_03,0,0,0,0 monster Vesper 1685,2,7200000,0,1
|
||||
bossnia_03,0,0,0,0 monster Eddga 1115,1,1800000,0,1
|
||||
bossnia_03,0,0,0,0 monster Osiris 1038,10,7200000,0,1
|
||||
bossnia_03,0,0,0,0 monster Orc Lord 1190,10,7200000,0,1
|
||||
bossnia_03,0,0,0,0 monster Orc Hero 1087,2,1800000,0,1
|
||||
bossnia_03,0,0,0,0 monster Samurai Specter 1492,1,3600000,0,1
|
||||
bossnia_03,0,0,0,0 monster Moonlight Flower 1150,1,3600000,0,1
|
||||
bossnia_03,0,0,0,0 monster Lord of the Dead 1373,1,3600000,0,1
|
||||
bossnia_03,0,0,0,0 monster Ktullanux 1779,2,7200000,0,1
|
||||
bossnia_03,0,0,0,0 monster Kiel D-01 1734,2,7200000,0,1
|
||||
bossnia_03,0,0,0,0 monster Thanatos Phantom 1708,2,7200000,0,1
|
||||
bossnia_03,0,0,0,0 monster Lady Tanee 1688,1,3600000,0,1
|
||||
bossnia_03,0,0,0,0 monster Tao Gunka 1583,1,3600000,0,1
|
||||
bossnia_03,0,0,0,0 monster Turtle General 1312,10,7200000,0,1
|
||||
bossnia_03,0,0,0,0 monster Pharaoh 1157,2,3600000,0,1
|
||||
bossnia_03,0,0,0,0 monster Stormy Knight 1251,2,3600000,0,1
|
||||
bossnia_03,0,0,0,0 monster Falling Bishop 1871,5,7200000,0,1
|
||||
bossnia_03,0,0,0,0 monster Phreeoni 1159,10,7200000,0,1
|
||||
bossnia_03,0,0,0,0 monster Golden Thief Bug 1086,10,3600000,0,1
|
||||
bossnia_03,0,0,0,0 monster Evil Snake Lord 1418,10,7200000,0,1
|
||||
bossnia_03,0,0,0,0 monster RSX-0806 1623,5,7200000,0,1
|
||||
bossnia_03,0,0,0,0 monster Assassin Cross Eremes 1647,1,0,0,1
|
||||
bossnia_03,137,118,1,1 monster Whitesmith Howard 1648,1,0,0,1
|
||||
bossnia_03,122,195,1,1 monster Beelzebub 1873,1,0,0,1
|
||||
bossnia_03,45,118,1,1 monster Beelzebub 1873,1,0,0,1
|
||||
bossnia_03,196,122,1,1 monster Valkyrie Randgris 1751,1,0,0,1
|
||||
bossnia_03,142,61,1,1 monster Ifrit 1832,1,0,0,1
|
||||
bossnia_03,0,0 monster Garm 1252,5,7200000
|
||||
bossnia_03,0,0 monster Gloom Under Night 1768,2,7200000
|
||||
bossnia_03,0,0 monster Dark Lord 1272,3,7200000
|
||||
bossnia_03,0,0 monster Doppelganger 1046,10,7200000
|
||||
bossnia_03,0,0 monster Dracula 1389,5,1800000
|
||||
bossnia_03,0,0 monster Drake 1112,10,1800000
|
||||
bossnia_03,0,0 monster Detale 1719,2,7200000
|
||||
bossnia_03,0,0 monster Maya 1147,10,1800000
|
||||
bossnia_03,0,0 monster Mistress 1059,1,1800000
|
||||
bossnia_03,0,0 monster Baphomet 1039,10,1800000
|
||||
bossnia_03,0,0 monster Egnigem Cenia 1658,10,1800000
|
||||
bossnia_03,0,0 monster Amon Ra 1511,1,1800000
|
||||
bossnia_03,0,0 monster Atroce 1785,10,1800000
|
||||
bossnia_03,0,0 monster Vesper 1685,2,7200000
|
||||
bossnia_03,0,0 monster Eddga 1115,1,1800000
|
||||
bossnia_03,0,0 monster Osiris 1038,10,7200000
|
||||
bossnia_03,0,0 monster Orc Lord 1190,10,7200000
|
||||
bossnia_03,0,0 monster Orc Hero 1087,2,1800000
|
||||
bossnia_03,0,0 monster Samurai Specter 1492,1,3600000
|
||||
bossnia_03,0,0 monster Moonlight Flower 1150,1,3600000
|
||||
bossnia_03,0,0 monster Lord of the Dead 1373,1,3600000
|
||||
bossnia_03,0,0 monster Ktullanux 1779,2,7200000
|
||||
bossnia_03,0,0 monster Kiel D-01 1734,2,7200000
|
||||
bossnia_03,0,0 monster Thanatos Phantom 1708,2,7200000
|
||||
bossnia_03,0,0 monster Lady Tanee 1688,1,3600000
|
||||
bossnia_03,0,0 monster Tao Gunka 1583,1,3600000
|
||||
bossnia_03,0,0 monster Turtle General 1312,10,7200000
|
||||
bossnia_03,0,0 monster Pharaoh 1157,2,3600000
|
||||
bossnia_03,0,0 monster Stormy Knight 1251,2,3600000
|
||||
bossnia_03,0,0 monster Falling Bishop 1871,5,7200000
|
||||
bossnia_03,0,0 monster Phreeoni 1159,10,7200000
|
||||
bossnia_03,0,0 monster Golden Thief Bug 1086,10,3600000
|
||||
bossnia_03,0,0 monster Evil Snake Lord 1418,10,7200000
|
||||
bossnia_03,0,0 monster RSX-0806 1623,5,7200000
|
||||
bossnia_03,0,0 monster Assassin Cross Eremes 1647,1
|
||||
bossnia_03,137,118,1,1 monster Whitesmith Howard 1648,1
|
||||
bossnia_03,122,195,1,1 monster Beelzebub 1873,1
|
||||
bossnia_03,45,118,1,1 monster Beelzebub 1873,1
|
||||
bossnia_03,196,122,1,1 monster Valkyrie Randgris 1751,1
|
||||
bossnia_03,142,61,1,1 monster Ifrit 1832,1
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
// bossnia_04 - Bossnia
|
||||
//----------------------------------------------------------------------------
|
||||
bossnia_04,0,0,0,0 monster Garm 1252,5,7200000,0,1
|
||||
bossnia_04,0,0,0,0 monster Gloom Under Night 1768,2,7200000,0,1
|
||||
bossnia_04,0,0,0,0 monster Dark Lord 1272,3,7200000,0,1
|
||||
bossnia_04,0,0,0,0 monster Doppelganger 1046,10,7200000,0,1
|
||||
bossnia_04,0,0,0,0 monster Dracula 1389,5,1800000,0,1
|
||||
bossnia_04,0,0,0,0 monster Drake 1112,10,1800000,0,1
|
||||
bossnia_04,0,0,0,0 monster Detale 1719,2,7200000,0,1
|
||||
bossnia_04,0,0,0,0 monster Maya 1147,10,1800000,0,1
|
||||
bossnia_04,0,0,0,0 monster Mistress 1059,1,1800000,0,1
|
||||
bossnia_04,0,0,0,0 monster Baphomet 1039,10,1800000,0,1
|
||||
bossnia_04,0,0,0,0 monster Egnigem Cenia 1658,10,1800000,0,1
|
||||
bossnia_04,0,0,0,0 monster Amon Ra 1511,1,1800000,0,1
|
||||
bossnia_04,0,0,0,0 monster Atroce 1785,10,1800000,0,1
|
||||
bossnia_04,0,0,0,0 monster Vesper 1685,2,7200000,0,1
|
||||
bossnia_04,0,0,0,0 monster Eddga 1115,1,1800000,0,1
|
||||
bossnia_04,0,0,0,0 monster Osiris 1038,10,7200000,0,1
|
||||
bossnia_04,0,0,0,0 monster Orc Lord 1190,10,7200000,0,1
|
||||
bossnia_04,0,0,0,0 monster Orc Hero 1087,2,1800000,0,1
|
||||
bossnia_04,0,0,0,0 monster Samurai Specter 1492,1,3600000,0,1
|
||||
bossnia_04,0,0,0,0 monster Moonlight Flower 1150,1,3600000,0,1
|
||||
bossnia_04,0,0,0,0 monster Lord of the Dead 1373,1,3600000,0,1
|
||||
bossnia_04,0,0,0,0 monster Ktullanux 1779,2,7200000,0,1
|
||||
bossnia_04,0,0,0,0 monster Kiel D-01 1734,2,7200000,0,1
|
||||
bossnia_04,0,0,0,0 monster Thanatos Phantom 1708,2,7200000,0,1
|
||||
bossnia_04,0,0,0,0 monster Lady Tanee 1688,1,3600000,0,1
|
||||
bossnia_04,0,0,0,0 monster Tao Gunka 1583,1,3600000,0,1
|
||||
bossnia_04,0,0,0,0 monster Turtle General 1312,10,7200000,0,1
|
||||
bossnia_04,0,0,0,0 monster Pharaoh 1157,2,3600000,0,1
|
||||
bossnia_04,0,0,0,0 monster Stormy Knight 1251,2,3600000,0,1
|
||||
bossnia_04,0,0,0,0 monster Falling Bishop 1871,5,7200000,0,1
|
||||
bossnia_04,0,0,0,0 monster Phreeoni 1159,10,7200000,0,1
|
||||
bossnia_04,0,0,0,0 monster Golden Thief Bug 1086,10,3600000,0,1
|
||||
bossnia_04,0,0,0,0 monster Evil Snake Lord 1418,10,7200000,0,1
|
||||
bossnia_04,0,0,0,0 monster RSX-0806 1623,5,7200000,0,1
|
||||
bossnia_04,0,0,0,0 monster Assassin Cross Eremes 1647,1,0,0,1
|
||||
bossnia_04,137,118,1,1 monster Whitesmith Howard 1648,1,0,0,1
|
||||
bossnia_04,122,195,1,1 monster Beelzebub 1873,1,0,0,1
|
||||
bossnia_04,45,118,1,1 monster Beelzebub 1873,1,0,0,1
|
||||
bossnia_04,196,122,1,1 monster Valkyrie Randgris 1751,1,0,0,1
|
||||
bossnia_04,142,61,1,1 monster Ifrit 1832,1,0,0,1
|
||||
bossnia_04,0,0 monster Garm 1252,5,7200000
|
||||
bossnia_04,0,0 monster Gloom Under Night 1768,2,7200000
|
||||
bossnia_04,0,0 monster Dark Lord 1272,3,7200000
|
||||
bossnia_04,0,0 monster Doppelganger 1046,10,7200000
|
||||
bossnia_04,0,0 monster Dracula 1389,5,1800000
|
||||
bossnia_04,0,0 monster Drake 1112,10,1800000
|
||||
bossnia_04,0,0 monster Detale 1719,2,7200000
|
||||
bossnia_04,0,0 monster Maya 1147,10,1800000
|
||||
bossnia_04,0,0 monster Mistress 1059,1,1800000
|
||||
bossnia_04,0,0 monster Baphomet 1039,10,1800000
|
||||
bossnia_04,0,0 monster Egnigem Cenia 1658,10,1800000
|
||||
bossnia_04,0,0 monster Amon Ra 1511,1,1800000
|
||||
bossnia_04,0,0 monster Atroce 1785,10,1800000
|
||||
bossnia_04,0,0 monster Vesper 1685,2,7200000
|
||||
bossnia_04,0,0 monster Eddga 1115,1,1800000
|
||||
bossnia_04,0,0 monster Osiris 1038,10,7200000
|
||||
bossnia_04,0,0 monster Orc Lord 1190,10,7200000
|
||||
bossnia_04,0,0 monster Orc Hero 1087,2,1800000
|
||||
bossnia_04,0,0 monster Samurai Specter 1492,1,3600000
|
||||
bossnia_04,0,0 monster Moonlight Flower 1150,1,3600000
|
||||
bossnia_04,0,0 monster Lord of the Dead 1373,1,3600000
|
||||
bossnia_04,0,0 monster Ktullanux 1779,2,7200000
|
||||
bossnia_04,0,0 monster Kiel D-01 1734,2,7200000
|
||||
bossnia_04,0,0 monster Thanatos Phantom 1708,2,7200000
|
||||
bossnia_04,0,0 monster Lady Tanee 1688,1,3600000
|
||||
bossnia_04,0,0 monster Tao Gunka 1583,1,3600000
|
||||
bossnia_04,0,0 monster Turtle General 1312,10,7200000
|
||||
bossnia_04,0,0 monster Pharaoh 1157,2,3600000
|
||||
bossnia_04,0,0 monster Stormy Knight 1251,2,3600000
|
||||
bossnia_04,0,0 monster Falling Bishop 1871,5,7200000
|
||||
bossnia_04,0,0 monster Phreeoni 1159,10,7200000
|
||||
bossnia_04,0,0 monster Golden Thief Bug 1086,10,3600000
|
||||
bossnia_04,0,0 monster Evil Snake Lord 1418,10,7200000
|
||||
bossnia_04,0,0 monster RSX-0806 1623,5,7200000
|
||||
bossnia_04,0,0 monster Assassin Cross Eremes 1647,1
|
||||
bossnia_04,137,118,1,1 monster Whitesmith Howard 1648,1
|
||||
bossnia_04,122,195,1,1 monster Beelzebub 1873,1
|
||||
bossnia_04,45,118,1,1 monster Beelzebub 1873,1
|
||||
bossnia_04,196,122,1,1 monster Valkyrie Randgris 1751,1
|
||||
bossnia_04,142,61,1,1 monster Ifrit 1832,1
|
||||
|
||||
@@ -857,197 +857,197 @@ xmas_in,89,92,4 script Louise Kim#iROxmas08 714,{
|
||||
|
||||
// Monsters
|
||||
//============================================================
|
||||
prt_fild00,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
prt_fild00,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
prt_fild00,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
prt_fild00,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild00,0,0 monster Christmas Jakk 1244,5
|
||||
prt_fild00,0,0 monster Christmas Goblin 1245,5
|
||||
prt_fild00,0,0 monster Christmas Cookie 1246,5
|
||||
prt_fild00,0,0 monster Antonio 1247,1
|
||||
|
||||
prt_fild01,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
prt_fild01,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
prt_fild01,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
prt_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild01,0,0 monster Christmas Jakk 1244,5
|
||||
prt_fild01,0,0 monster Christmas Goblin 1245,5
|
||||
prt_fild01,0,0 monster Christmas Cookie 1246,5
|
||||
prt_fild01,0,0 monster Antonio 1247,1
|
||||
|
||||
prt_fild02,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
prt_fild02,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
prt_fild02,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
prt_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild02,0,0 monster Christmas Jakk 1244,5
|
||||
prt_fild02,0,0 monster Christmas Goblin 1245,5
|
||||
prt_fild02,0,0 monster Christmas Cookie 1246,5
|
||||
prt_fild02,0,0 monster Antonio 1247,1
|
||||
|
||||
prt_fild03,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
prt_fild03,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
prt_fild03,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
prt_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild03,0,0 monster Christmas Jakk 1244,5
|
||||
prt_fild03,0,0 monster Christmas Goblin 1245,5
|
||||
prt_fild03,0,0 monster Christmas Cookie 1246,5
|
||||
prt_fild03,0,0 monster Antonio 1247,1
|
||||
|
||||
prt_fild04,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
prt_fild04,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
prt_fild04,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
prt_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild04,0,0 monster Christmas Jakk 1244,5
|
||||
prt_fild04,0,0 monster Christmas Goblin 1245,5
|
||||
prt_fild04,0,0 monster Christmas Cookie 1246,5
|
||||
prt_fild04,0,0 monster Antonio 1247,1
|
||||
|
||||
prt_fild05,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
prt_fild05,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
prt_fild05,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
prt_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild05,0,0 monster Christmas Jakk 1244,5
|
||||
prt_fild05,0,0 monster Christmas Goblin 1245,5
|
||||
prt_fild05,0,0 monster Christmas Cookie 1246,5
|
||||
prt_fild05,0,0 monster Antonio 1247,1
|
||||
|
||||
prt_fild06,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
prt_fild06,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
prt_fild06,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
prt_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild06,0,0 monster Christmas Jakk 1244,5
|
||||
prt_fild06,0,0 monster Christmas Goblin 1245,5
|
||||
prt_fild06,0,0 monster Christmas Cookie 1246,5
|
||||
prt_fild06,0,0 monster Antonio 1247,1
|
||||
|
||||
prt_fild07,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
prt_fild07,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
prt_fild07,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
prt_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild07,0,0 monster Christmas Jakk 1244,5
|
||||
prt_fild07,0,0 monster Christmas Goblin 1245,5
|
||||
prt_fild07,0,0 monster Christmas Cookie 1246,5
|
||||
prt_fild07,0,0 monster Antonio 1247,1
|
||||
|
||||
prt_fild08,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
prt_fild08,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
prt_fild08,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
prt_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild08,0,0 monster Christmas Jakk 1244,5
|
||||
prt_fild08,0,0 monster Christmas Goblin 1245,5
|
||||
prt_fild08,0,0 monster Christmas Cookie 1246,5
|
||||
prt_fild08,0,0 monster Antonio 1247,1
|
||||
|
||||
prt_fild09,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
prt_fild09,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
prt_fild09,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
prt_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild09,0,0 monster Christmas Jakk 1244,5
|
||||
prt_fild09,0,0 monster Christmas Goblin 1245,5
|
||||
prt_fild09,0,0 monster Christmas Cookie 1246,5
|
||||
prt_fild09,0,0 monster Antonio 1247,1
|
||||
|
||||
prt_fild10,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
prt_fild10,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
prt_fild10,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
prt_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild10,0,0 monster Christmas Jakk 1244,5
|
||||
prt_fild10,0,0 monster Christmas Goblin 1245,5
|
||||
prt_fild10,0,0 monster Christmas Cookie 1246,5
|
||||
prt_fild10,0,0 monster Antonio 1247,1
|
||||
|
||||
prt_fild11,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
prt_fild11,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
prt_fild11,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
prt_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild11,0,0 monster Christmas Jakk 1244,5
|
||||
prt_fild11,0,0 monster Christmas Goblin 1245,5
|
||||
prt_fild11,0,0 monster Christmas Cookie 1246,5
|
||||
prt_fild11,0,0 monster Antonio 1247,1
|
||||
|
||||
pay_fild01,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
pay_fild01,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
pay_fild01,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
pay_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild01,0,0 monster Christmas Jakk 1244,5
|
||||
pay_fild01,0,0 monster Christmas Goblin 1245,5
|
||||
pay_fild01,0,0 monster Christmas Cookie 1246,5
|
||||
pay_fild01,0,0 monster Antonio 1247,1
|
||||
|
||||
pay_fild02,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
pay_fild02,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
pay_fild02,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
pay_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild02,0,0 monster Christmas Jakk 1244,5
|
||||
pay_fild02,0,0 monster Christmas Goblin 1245,5
|
||||
pay_fild02,0,0 monster Christmas Cookie 1246,5
|
||||
pay_fild02,0,0 monster Antonio 1247,1
|
||||
|
||||
pay_fild03,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
pay_fild03,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
pay_fild03,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
pay_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild03,0,0 monster Christmas Jakk 1244,5
|
||||
pay_fild03,0,0 monster Christmas Goblin 1245,5
|
||||
pay_fild03,0,0 monster Christmas Cookie 1246,5
|
||||
pay_fild03,0,0 monster Antonio 1247,1
|
||||
|
||||
pay_fild04,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
pay_fild04,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
pay_fild04,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
pay_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild04,0,0 monster Christmas Jakk 1244,5
|
||||
pay_fild04,0,0 monster Christmas Goblin 1245,5
|
||||
pay_fild04,0,0 monster Christmas Cookie 1246,5
|
||||
pay_fild04,0,0 monster Antonio 1247,1
|
||||
|
||||
pay_fild05,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
pay_fild05,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
pay_fild05,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
pay_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild05,0,0 monster Christmas Jakk 1244,5
|
||||
pay_fild05,0,0 monster Christmas Goblin 1245,5
|
||||
pay_fild05,0,0 monster Christmas Cookie 1246,5
|
||||
pay_fild05,0,0 monster Antonio 1247,1
|
||||
|
||||
pay_fild06,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
pay_fild06,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
pay_fild06,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
pay_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild06,0,0 monster Christmas Jakk 1244,5
|
||||
pay_fild06,0,0 monster Christmas Goblin 1245,5
|
||||
pay_fild06,0,0 monster Christmas Cookie 1246,5
|
||||
pay_fild06,0,0 monster Antonio 1247,1
|
||||
|
||||
pay_fild07,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
pay_fild07,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
pay_fild07,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
pay_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild07,0,0 monster Christmas Jakk 1244,5
|
||||
pay_fild07,0,0 monster Christmas Goblin 1245,5
|
||||
pay_fild07,0,0 monster Christmas Cookie 1246,5
|
||||
pay_fild07,0,0 monster Antonio 1247,1
|
||||
|
||||
pay_fild08,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
pay_fild08,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
pay_fild08,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
pay_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild08,0,0 monster Christmas Jakk 1244,5
|
||||
pay_fild08,0,0 monster Christmas Goblin 1245,5
|
||||
pay_fild08,0,0 monster Christmas Cookie 1246,5
|
||||
pay_fild08,0,0 monster Antonio 1247,1
|
||||
|
||||
pay_fild09,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
pay_fild09,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
pay_fild09,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
pay_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild09,0,0 monster Christmas Jakk 1244,5
|
||||
pay_fild09,0,0 monster Christmas Goblin 1245,5
|
||||
pay_fild09,0,0 monster Christmas Cookie 1246,5
|
||||
pay_fild09,0,0 monster Antonio 1247,1
|
||||
|
||||
pay_fild10,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
pay_fild10,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
pay_fild10,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
pay_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild10,0,0 monster Christmas Jakk 1244,5
|
||||
pay_fild10,0,0 monster Christmas Goblin 1245,5
|
||||
pay_fild10,0,0 monster Christmas Cookie 1246,5
|
||||
pay_fild10,0,0 monster Antonio 1247,1
|
||||
|
||||
pay_fild11,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
pay_fild11,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
pay_fild11,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
pay_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild11,0,0 monster Christmas Jakk 1244,5
|
||||
pay_fild11,0,0 monster Christmas Goblin 1245,5
|
||||
pay_fild11,0,0 monster Christmas Cookie 1246,5
|
||||
pay_fild11,0,0 monster Antonio 1247,1
|
||||
|
||||
gef_fild00,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
gef_fild00,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
gef_fild00,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
gef_fild00,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild00,0,0 monster Christmas Jakk 1244,5
|
||||
gef_fild00,0,0 monster Christmas Goblin 1245,5
|
||||
gef_fild00,0,0 monster Christmas Cookie 1246,5
|
||||
gef_fild00,0,0 monster Antonio 1247,1
|
||||
|
||||
gef_fild01,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
gef_fild01,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
gef_fild01,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
gef_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild01,0,0 monster Christmas Jakk 1244,5
|
||||
gef_fild01,0,0 monster Christmas Goblin 1245,5
|
||||
gef_fild01,0,0 monster Christmas Cookie 1246,5
|
||||
gef_fild01,0,0 monster Antonio 1247,1
|
||||
|
||||
gef_fild02,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
gef_fild02,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
gef_fild02,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
gef_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild02,0,0 monster Christmas Jakk 1244,5
|
||||
gef_fild02,0,0 monster Christmas Goblin 1245,5
|
||||
gef_fild02,0,0 monster Christmas Cookie 1246,5
|
||||
gef_fild02,0,0 monster Antonio 1247,1
|
||||
|
||||
gef_fild03,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
gef_fild03,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
gef_fild03,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
gef_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild03,0,0 monster Christmas Jakk 1244,5
|
||||
gef_fild03,0,0 monster Christmas Goblin 1245,5
|
||||
gef_fild03,0,0 monster Christmas Cookie 1246,5
|
||||
gef_fild03,0,0 monster Antonio 1247,1
|
||||
|
||||
gef_fild04,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
gef_fild04,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
gef_fild04,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
gef_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild04,0,0 monster Christmas Jakk 1244,5
|
||||
gef_fild04,0,0 monster Christmas Goblin 1245,5
|
||||
gef_fild04,0,0 monster Christmas Cookie 1246,5
|
||||
gef_fild04,0,0 monster Antonio 1247,1
|
||||
|
||||
gef_fild05,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
gef_fild05,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
gef_fild05,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
gef_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild05,0,0 monster Christmas Jakk 1244,5
|
||||
gef_fild05,0,0 monster Christmas Goblin 1245,5
|
||||
gef_fild05,0,0 monster Christmas Cookie 1246,5
|
||||
gef_fild05,0,0 monster Antonio 1247,1
|
||||
|
||||
gef_fild06,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
gef_fild06,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
gef_fild06,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
gef_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild06,0,0 monster Christmas Jakk 1244,5
|
||||
gef_fild06,0,0 monster Christmas Goblin 1245,5
|
||||
gef_fild06,0,0 monster Christmas Cookie 1246,5
|
||||
gef_fild06,0,0 monster Antonio 1247,1
|
||||
|
||||
gef_fild07,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
gef_fild07,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
gef_fild07,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
gef_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild07,0,0 monster Christmas Jakk 1244,5
|
||||
gef_fild07,0,0 monster Christmas Goblin 1245,5
|
||||
gef_fild07,0,0 monster Christmas Cookie 1246,5
|
||||
gef_fild07,0,0 monster Antonio 1247,1
|
||||
|
||||
gef_fild08,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
gef_fild08,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
gef_fild08,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
gef_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild08,0,0 monster Christmas Jakk 1244,5
|
||||
gef_fild08,0,0 monster Christmas Goblin 1245,5
|
||||
gef_fild08,0,0 monster Christmas Cookie 1246,5
|
||||
gef_fild08,0,0 monster Antonio 1247,1
|
||||
|
||||
gef_fild09,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
gef_fild09,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
gef_fild09,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
gef_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild09,0,0 monster Christmas Jakk 1244,5
|
||||
gef_fild09,0,0 monster Christmas Goblin 1245,5
|
||||
gef_fild09,0,0 monster Christmas Cookie 1246,5
|
||||
gef_fild09,0,0 monster Antonio 1247,1
|
||||
|
||||
gef_fild10,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
gef_fild10,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
gef_fild10,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
gef_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild10,0,0 monster Christmas Jakk 1244,5
|
||||
gef_fild10,0,0 monster Christmas Goblin 1245,5
|
||||
gef_fild10,0,0 monster Christmas Cookie 1246,5
|
||||
gef_fild10,0,0 monster Antonio 1247,1
|
||||
|
||||
gef_fild11,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
gef_fild11,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
gef_fild11,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
gef_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild11,0,0 monster Christmas Jakk 1244,5
|
||||
gef_fild11,0,0 monster Christmas Goblin 1245,5
|
||||
gef_fild11,0,0 monster Christmas Cookie 1246,5
|
||||
gef_fild11,0,0 monster Antonio 1247,1
|
||||
|
||||
gef_fild12,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
gef_fild12,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
gef_fild12,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
gef_fild12,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild12,0,0 monster Christmas Jakk 1244,5
|
||||
gef_fild12,0,0 monster Christmas Goblin 1245,5
|
||||
gef_fild12,0,0 monster Christmas Cookie 1246,5
|
||||
gef_fild12,0,0 monster Antonio 1247,1
|
||||
|
||||
gef_fild13,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
gef_fild13,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
gef_fild13,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
gef_fild13,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild13,0,0 monster Christmas Jakk 1244,5
|
||||
gef_fild13,0,0 monster Christmas Goblin 1245,5
|
||||
gef_fild13,0,0 monster Christmas Cookie 1246,5
|
||||
gef_fild13,0,0 monster Antonio 1247,1
|
||||
|
||||
gef_fild14,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
gef_fild14,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
gef_fild14,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
gef_fild14,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild14,0,0 monster Christmas Jakk 1244,5
|
||||
gef_fild14,0,0 monster Christmas Goblin 1245,5
|
||||
gef_fild14,0,0 monster Christmas Cookie 1246,5
|
||||
gef_fild14,0,0 monster Antonio 1247,1
|
||||
|
||||
xmas_fild01,0,0,0,0 monster Christmas Jakk 1244,5,0,0,0
|
||||
xmas_fild01,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
xmas_fild01,0,0,0,0 monster Christmas Cookie 1246,5,0,0,0
|
||||
xmas_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
xmas_fild01,0,0 monster Christmas Jakk 1244,5
|
||||
xmas_fild01,0,0 monster Christmas Goblin 1245,5
|
||||
xmas_fild01,0,0 monster Christmas Cookie 1246,5
|
||||
xmas_fild01,0,0 monster Antonio 1247,1
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -81,26 +81,26 @@ L_NOZENY:
|
||||
|
||||
// Monsters
|
||||
//============================================================
|
||||
gef_fild00,0,0,0,0 monster Dumpling 1520,20,60000,66000
|
||||
gef_fild07,0,0,0,0 monster Dumpling 1520,20,60000,66000
|
||||
gef_fild04,0,0,0,0 monster Dumpling 1520,20,60000,66000
|
||||
gef_fild00,0,0,0,0 monster Dumpling 1520,20,60000,66000
|
||||
prt_fild06,0,0,0,0 monster Dumpling 1520,20,60000,66000
|
||||
prt_fild01,0,0,0,0 monster Dumpling 1520,20,60000,66000
|
||||
prt_fild05,0,0,0,0 monster Dumpling 1520,20,60000,66000
|
||||
prt_fild08,0,0,0,0 monster Dumpling 1520,20,60000,66000
|
||||
pay_fild04,0,0,0,0 monster Dumpling 1520,20,60000,66000
|
||||
moc_fild02,0,0,0,0 monster Dumpling 1520,20,60000,66000
|
||||
pay_fild01,0,0,0,0 monster Dumpling 1520,20,60000,66000
|
||||
pay_fild07,0,0,0,0 monster Dumpling 1520,20,60000,66000
|
||||
moc_fild03,0,0,0,0 monster Dumpling 1520,20,60000,66000
|
||||
pay_fild06,0,0,0,0 monster Dumpling 1520,20,60000,66000
|
||||
pay_fild05,0,0,0,0 monster Dumpling 1520,20,60000,66000
|
||||
pay_fild02,0,0,0,0 monster Dumpling 1520,20,60000,66000
|
||||
pay_fild09,0,0,0,0 monster Dumpling 1520,20,60000,66000
|
||||
gef_fild00,0,0 monster Dumpling 1520,20,60000,66000
|
||||
gef_fild07,0,0 monster Dumpling 1520,20,60000,66000
|
||||
gef_fild04,0,0 monster Dumpling 1520,20,60000,66000
|
||||
gef_fild00,0,0 monster Dumpling 1520,20,60000,66000
|
||||
prt_fild06,0,0 monster Dumpling 1520,20,60000,66000
|
||||
prt_fild01,0,0 monster Dumpling 1520,20,60000,66000
|
||||
prt_fild05,0,0 monster Dumpling 1520,20,60000,66000
|
||||
prt_fild08,0,0 monster Dumpling 1520,20,60000,66000
|
||||
pay_fild04,0,0 monster Dumpling 1520,20,60000,66000
|
||||
moc_fild02,0,0 monster Dumpling 1520,20,60000,66000
|
||||
pay_fild01,0,0 monster Dumpling 1520,20,60000,66000
|
||||
pay_fild07,0,0 monster Dumpling 1520,20,60000,66000
|
||||
moc_fild03,0,0 monster Dumpling 1520,20,60000,66000
|
||||
pay_fild06,0,0 monster Dumpling 1520,20,60000,66000
|
||||
pay_fild05,0,0 monster Dumpling 1520,20,60000,66000
|
||||
pay_fild02,0,0 monster Dumpling 1520,20,60000,66000
|
||||
pay_fild09,0,0 monster Dumpling 1520,20,60000,66000
|
||||
|
||||
moc_fild03,0,0,0,0 monster Bacsojin 1518,1,60000,66000
|
||||
moc_fild03,0,0 monster Bacsojin 1518,1,60000,66000
|
||||
|
||||
moc_fild03,0,0,0,0 monster Chung E 1519,1,60000,66000
|
||||
moc_fild13,0,0,0,0 monster Chung E 1519,1,60000,66000
|
||||
pay_fild01,0,0,0,0 monster Chung E 1519,1,60000,66000
|
||||
moc_fild03,0,0 monster Chung E 1519,1,60000,66000
|
||||
moc_fild13,0,0 monster Chung E 1519,1,60000,66000
|
||||
pay_fild01,0,0 monster Chung E 1519,1,60000,66000
|
||||
|
||||
@@ -1080,327 +1080,327 @@ alberta,80,171,3 duplicate(HWFamiDup) Familiar#06_hw05 799
|
||||
|
||||
// Event Lude Monster Spawns
|
||||
//============================================================
|
||||
ra_fild01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ra_fild02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ra_fild03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ra_fild04,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ra_fild05,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ra_fild06,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ra_fild07,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ra_fild08,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ra_fild09,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ra_fild10,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ra_fild11,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ra_fild12,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ra_fild13,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ra_fild01,0,0 monster Lude 1812,3
|
||||
ra_fild02,0,0 monster Lude 1812,3
|
||||
ra_fild03,0,0 monster Lude 1812,3
|
||||
ra_fild04,0,0 monster Lude 1812,3
|
||||
ra_fild05,0,0 monster Lude 1812,3
|
||||
ra_fild06,0,0 monster Lude 1812,3
|
||||
ra_fild07,0,0 monster Lude 1812,3
|
||||
ra_fild08,0,0 monster Lude 1812,3
|
||||
ra_fild09,0,0 monster Lude 1812,3
|
||||
ra_fild10,0,0 monster Lude 1812,3
|
||||
ra_fild11,0,0 monster Lude 1812,3
|
||||
ra_fild12,0,0 monster Lude 1812,3
|
||||
ra_fild13,0,0 monster Lude 1812,3
|
||||
|
||||
ra_san01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ra_san02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ra_san03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ra_san04,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ra_san05,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ra_san01,0,0 monster Lude 1812,3
|
||||
ra_san02,0,0 monster Lude 1812,3
|
||||
ra_san03,0,0 monster Lude 1812,3
|
||||
ra_san04,0,0 monster Lude 1812,3
|
||||
ra_san05,0,0 monster Lude 1812,3
|
||||
|
||||
ice_dun01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ice_dun02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ice_dun03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ice_dun01,0,0 monster Lude 1812,3
|
||||
ice_dun02,0,0 monster Lude 1812,3
|
||||
ice_dun03,0,0 monster Lude 1812,3
|
||||
|
||||
odin_tem01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
odin_tem02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
odin_tem03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
odin_tem01,0,0 monster Lude 1812,3
|
||||
odin_tem02,0,0 monster Lude 1812,3
|
||||
odin_tem03,0,0 monster Lude 1812,3
|
||||
|
||||
kh_kiehl01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
kh_kiehl01,0,0 monster Lude 1812,3
|
||||
|
||||
kh_dun01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
kh_dun02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
kh_dun01,0,0 monster Lude 1812,3
|
||||
kh_dun02,0,0 monster Lude 1812,3
|
||||
|
||||
yuno_fild06,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
yuno_fild10,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
yuno_fild06,0,0 monster Lude 1812,3
|
||||
yuno_fild10,0,0 monster Lude 1812,3
|
||||
|
||||
ein_fild01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ein_fild02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ein_fild05,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ein_fild01,0,0 monster Lude 1812,3
|
||||
ein_fild02,0,0 monster Lude 1812,3
|
||||
ein_fild05,0,0 monster Lude 1812,3
|
||||
|
||||
hu_fild01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
hu_fild02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
hu_fild03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
hu_fild04,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
hu_fild05,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
hu_fild06,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
hu_fild07,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
hu_fild01,0,0 monster Lude 1812,3
|
||||
hu_fild02,0,0 monster Lude 1812,3
|
||||
hu_fild03,0,0 monster Lude 1812,3
|
||||
hu_fild04,0,0 monster Lude 1812,3
|
||||
hu_fild05,0,0 monster Lude 1812,3
|
||||
hu_fild06,0,0 monster Lude 1812,3
|
||||
hu_fild07,0,0 monster Lude 1812,3
|
||||
|
||||
tha_t01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
tha_t02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
tha_t03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
tha_t04,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
tha_t05,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
tha_t06,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
tha_t07,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
tha_t08,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
tha_t09,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
tha_t10,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
tha_t11,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
tha_t12,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
tha_t01,0,0 monster Lude 1812,3
|
||||
tha_t02,0,0 monster Lude 1812,3
|
||||
tha_t03,0,0 monster Lude 1812,3
|
||||
tha_t04,0,0 monster Lude 1812,3
|
||||
tha_t05,0,0 monster Lude 1812,3
|
||||
tha_t06,0,0 monster Lude 1812,3
|
||||
tha_t07,0,0 monster Lude 1812,3
|
||||
tha_t08,0,0 monster Lude 1812,3
|
||||
tha_t09,0,0 monster Lude 1812,3
|
||||
tha_t10,0,0 monster Lude 1812,3
|
||||
tha_t11,0,0 monster Lude 1812,3
|
||||
tha_t12,0,0 monster Lude 1812,3
|
||||
|
||||
abyss_01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
abyss_02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
abyss_03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
abyss_01,0,0 monster Lude 1812,3
|
||||
abyss_02,0,0 monster Lude 1812,3
|
||||
abyss_03,0,0 monster Lude 1812,3
|
||||
|
||||
juperos_01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
juperos_02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
jupe_core,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
juperos_01,0,0 monster Lude 1812,3
|
||||
juperos_02,0,0 monster Lude 1812,3
|
||||
jupe_core,0,0 monster Lude 1812,3
|
||||
|
||||
lhz_dun01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
lhz_dun02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
lhz_dun03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
lhz_fild01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
lhz_dun01,0,0 monster Lude 1812,3
|
||||
lhz_dun02,0,0 monster Lude 1812,3
|
||||
lhz_dun03,0,0 monster Lude 1812,3
|
||||
lhz_fild01,0,0 monster Lude 1812,3
|
||||
|
||||
lhz_fild02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
lhz_fild03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ein_fild03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ein_fild04,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
lhz_fild02,0,0 monster Lude 1812,3
|
||||
lhz_fild03,0,0 monster Lude 1812,3
|
||||
ein_fild03,0,0 monster Lude 1812,3
|
||||
ein_fild04,0,0 monster Lude 1812,3
|
||||
|
||||
ein_fild06,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ein_fild07,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ein_fild08,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ein_fild09,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ein_fild10,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ein_dun01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ein_dun02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ein_fild06,0,0 monster Lude 1812,3
|
||||
ein_fild07,0,0 monster Lude 1812,3
|
||||
ein_fild08,0,0 monster Lude 1812,3
|
||||
ein_fild09,0,0 monster Lude 1812,3
|
||||
ein_fild10,0,0 monster Lude 1812,3
|
||||
ein_dun01,0,0 monster Lude 1812,3
|
||||
ein_dun02,0,0 monster Lude 1812,3
|
||||
|
||||
gefenia01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gefenia02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gefenia03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gefenia04,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gefenia01,0,0 monster Lude 1812,3
|
||||
gefenia02,0,0 monster Lude 1812,3
|
||||
gefenia03,0,0 monster Lude 1812,3
|
||||
gefenia04,0,0 monster Lude 1812,3
|
||||
|
||||
yuno_fild05,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
yuno_fild07,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
yuno_fild08,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
yuno_fild09,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
yuno_fild11,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
yuno_fild12,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
yuno_fild05,0,0 monster Lude 1812,3
|
||||
yuno_fild07,0,0 monster Lude 1812,3
|
||||
yuno_fild08,0,0 monster Lude 1812,3
|
||||
yuno_fild09,0,0 monster Lude 1812,3
|
||||
yuno_fild11,0,0 monster Lude 1812,3
|
||||
yuno_fild12,0,0 monster Lude 1812,3
|
||||
|
||||
ayo_fild01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ayo_fild02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ayo_dun01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ayo_dun02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ayo_fild01,0,0 monster Lude 1812,3
|
||||
ayo_fild02,0,0 monster Lude 1812,3
|
||||
ayo_dun01,0,0 monster Lude 1812,3
|
||||
ayo_dun02,0,0 monster Lude 1812,3
|
||||
|
||||
gon_dun01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gon_dun02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gon_dun03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gon_dun01,0,0 monster Lude 1812,3
|
||||
gon_dun02,0,0 monster Lude 1812,3
|
||||
gon_dun03,0,0 monster Lude 1812,3
|
||||
|
||||
ama_dun01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ama_dun02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ama_dun03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ama_dun01,0,0 monster Lude 1812,3
|
||||
ama_dun02,0,0 monster Lude 1812,3
|
||||
ama_dun03,0,0 monster Lude 1812,3
|
||||
|
||||
lou_fild01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
lou_dun01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
lou_dun02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
lou_dun03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
lou_fild01,0,0 monster Lude 1812,3
|
||||
lou_dun01,0,0 monster Lude 1812,3
|
||||
lou_dun02,0,0 monster Lude 1812,3
|
||||
lou_dun03,0,0 monster Lude 1812,3
|
||||
|
||||
um_fild01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
um_fild02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
um_fild03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
um_fild04,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
um_dun01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
um_dun02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
yggdrasil01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
um_fild01,0,0 monster Lude 1812,3
|
||||
um_fild02,0,0 monster Lude 1812,3
|
||||
um_fild03,0,0 monster Lude 1812,3
|
||||
um_fild04,0,0 monster Lude 1812,3
|
||||
um_dun01,0,0 monster Lude 1812,3
|
||||
um_dun02,0,0 monster Lude 1812,3
|
||||
yggdrasil01,0,0 monster Lude 1812,3
|
||||
|
||||
mag_dun01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
mag_dun02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
mag_dun01,0,0 monster Lude 1812,3
|
||||
mag_dun02,0,0 monster Lude 1812,3
|
||||
|
||||
beach_dun,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
beach_dun2,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
beach_dun3,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
beach_dun,0,0 monster Lude 1812,3
|
||||
beach_dun2,0,0 monster Lude 1812,3
|
||||
beach_dun3,0,0 monster Lude 1812,3
|
||||
|
||||
gon_fild01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
ama_fild01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
yuno_fild01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
yuno_fild02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
yuno_fild03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
yuno_fild04,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gon_fild01,0,0 monster Lude 1812,3
|
||||
ama_fild01,0,0 monster Lude 1812,3
|
||||
yuno_fild01,0,0 monster Lude 1812,3
|
||||
yuno_fild02,0,0 monster Lude 1812,3
|
||||
yuno_fild03,0,0 monster Lude 1812,3
|
||||
yuno_fild04,0,0 monster Lude 1812,3
|
||||
|
||||
prt_fild00,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
prt_fild01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
prt_fild02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
prt_fild03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
prt_fild04,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
prt_fild05,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
prt_fild06,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
prt_fild07,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
prt_fild08,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
prt_fild09,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
prt_fild10,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
prt_fild11,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
prt_fild00,0,0 monster Lude 1812,3
|
||||
prt_fild01,0,0 monster Lude 1812,3
|
||||
prt_fild02,0,0 monster Lude 1812,3
|
||||
prt_fild03,0,0 monster Lude 1812,3
|
||||
prt_fild04,0,0 monster Lude 1812,3
|
||||
prt_fild05,0,0 monster Lude 1812,3
|
||||
prt_fild06,0,0 monster Lude 1812,3
|
||||
prt_fild07,0,0 monster Lude 1812,3
|
||||
prt_fild08,0,0 monster Lude 1812,3
|
||||
prt_fild09,0,0 monster Lude 1812,3
|
||||
prt_fild10,0,0 monster Lude 1812,3
|
||||
prt_fild11,0,0 monster Lude 1812,3
|
||||
|
||||
moc_fild01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_fild02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_fild03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_fild04,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_fild05,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_fild06,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_fild07,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_fild08,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_fild09,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_fild10,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_fild11,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_fild12,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_fild13,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_fild14,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_fild15,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_fild16,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_fild17,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_fild18,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_fild01,0,0 monster Lude 1812,3
|
||||
moc_fild02,0,0 monster Lude 1812,3
|
||||
moc_fild03,0,0 monster Lude 1812,3
|
||||
moc_fild04,0,0 monster Lude 1812,3
|
||||
moc_fild05,0,0 monster Lude 1812,3
|
||||
moc_fild06,0,0 monster Lude 1812,3
|
||||
moc_fild07,0,0 monster Lude 1812,3
|
||||
moc_fild08,0,0 monster Lude 1812,3
|
||||
moc_fild09,0,0 monster Lude 1812,3
|
||||
moc_fild10,0,0 monster Lude 1812,3
|
||||
moc_fild11,0,0 monster Lude 1812,3
|
||||
moc_fild12,0,0 monster Lude 1812,3
|
||||
moc_fild13,0,0 monster Lude 1812,3
|
||||
moc_fild14,0,0 monster Lude 1812,3
|
||||
moc_fild15,0,0 monster Lude 1812,3
|
||||
moc_fild16,0,0 monster Lude 1812,3
|
||||
moc_fild17,0,0 monster Lude 1812,3
|
||||
moc_fild18,0,0 monster Lude 1812,3
|
||||
|
||||
pay_fild01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
pay_fild02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
pay_fild03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
pay_fild04,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
pay_fild05,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
pay_fild06,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
pay_fild07,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
pay_fild08,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
pay_fild09,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
pay_fild10,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
pay_fild11,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
pay_fild01,0,0 monster Lude 1812,3
|
||||
pay_fild02,0,0 monster Lude 1812,3
|
||||
pay_fild03,0,0 monster Lude 1812,3
|
||||
pay_fild04,0,0 monster Lude 1812,3
|
||||
pay_fild05,0,0 monster Lude 1812,3
|
||||
pay_fild06,0,0 monster Lude 1812,3
|
||||
pay_fild07,0,0 monster Lude 1812,3
|
||||
pay_fild08,0,0 monster Lude 1812,3
|
||||
pay_fild09,0,0 monster Lude 1812,3
|
||||
pay_fild10,0,0 monster Lude 1812,3
|
||||
pay_fild11,0,0 monster Lude 1812,3
|
||||
|
||||
gef_fild00,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gef_fild01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gef_fild02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gef_fild03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gef_fild04,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gef_fild05,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gef_fild06,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gef_fild07,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gef_fild08,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gef_fild09,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gef_fild10,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gef_fild11,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gef_fild12,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gef_fild13,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gef_fild14,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gef_fild00,0,0 monster Lude 1812,3
|
||||
gef_fild01,0,0 monster Lude 1812,3
|
||||
gef_fild02,0,0 monster Lude 1812,3
|
||||
gef_fild03,0,0 monster Lude 1812,3
|
||||
gef_fild04,0,0 monster Lude 1812,3
|
||||
gef_fild05,0,0 monster Lude 1812,3
|
||||
gef_fild06,0,0 monster Lude 1812,3
|
||||
gef_fild07,0,0 monster Lude 1812,3
|
||||
gef_fild08,0,0 monster Lude 1812,3
|
||||
gef_fild09,0,0 monster Lude 1812,3
|
||||
gef_fild10,0,0 monster Lude 1812,3
|
||||
gef_fild11,0,0 monster Lude 1812,3
|
||||
gef_fild12,0,0 monster Lude 1812,3
|
||||
gef_fild13,0,0 monster Lude 1812,3
|
||||
gef_fild14,0,0 monster Lude 1812,3
|
||||
|
||||
cmd_fild01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
cmd_fild02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
cmd_fild03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
cmd_fild04,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
cmd_fild05,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
cmd_fild06,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
cmd_fild07,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
cmd_fild08,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
cmd_fild09,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
cmd_fild01,0,0 monster Lude 1812,3
|
||||
cmd_fild02,0,0 monster Lude 1812,3
|
||||
cmd_fild03,0,0 monster Lude 1812,3
|
||||
cmd_fild04,0,0 monster Lude 1812,3
|
||||
cmd_fild05,0,0 monster Lude 1812,3
|
||||
cmd_fild06,0,0 monster Lude 1812,3
|
||||
cmd_fild07,0,0 monster Lude 1812,3
|
||||
cmd_fild08,0,0 monster Lude 1812,3
|
||||
cmd_fild09,0,0 monster Lude 1812,3
|
||||
|
||||
mjolnir_01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
mjolnir_02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
mjolnir_03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
mjolnir_04,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
mjolnir_05,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
mjolnir_06,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
mjolnir_07,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
mjolnir_08,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
mjolnir_09,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
mjolnir_10,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
mjolnir_11,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
mjolnir_12,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
mjolnir_01,0,0 monster Lude 1812,3
|
||||
mjolnir_02,0,0 monster Lude 1812,3
|
||||
mjolnir_03,0,0 monster Lude 1812,3
|
||||
mjolnir_04,0,0 monster Lude 1812,3
|
||||
mjolnir_05,0,0 monster Lude 1812,3
|
||||
mjolnir_06,0,0 monster Lude 1812,3
|
||||
mjolnir_07,0,0 monster Lude 1812,3
|
||||
mjolnir_08,0,0 monster Lude 1812,3
|
||||
mjolnir_09,0,0 monster Lude 1812,3
|
||||
mjolnir_10,0,0 monster Lude 1812,3
|
||||
mjolnir_11,0,0 monster Lude 1812,3
|
||||
mjolnir_12,0,0 monster Lude 1812,3
|
||||
|
||||
xmas_fild01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
xmas_fild01,0,0 monster Lude 1812,3
|
||||
|
||||
sec_in02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
sec_in02,0,0 monster Lude 1812,3
|
||||
|
||||
gl_dun02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gl_dun01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gl_dun02,0,0 monster Lude 1812,3
|
||||
gl_dun01,0,0 monster Lude 1812,3
|
||||
|
||||
gl_knt02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gl_knt01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gl_knt02,0,0 monster Lude 1812,3
|
||||
gl_knt01,0,0 monster Lude 1812,3
|
||||
|
||||
gl_step,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gl_step,0,0 monster Lude 1812,3
|
||||
|
||||
gl_sew04,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gl_sew03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gl_sew02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gl_sew01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gl_sew04,0,0 monster Lude 1812,3
|
||||
gl_sew03,0,0 monster Lude 1812,3
|
||||
gl_sew02,0,0 monster Lude 1812,3
|
||||
gl_sew01,0,0 monster Lude 1812,3
|
||||
|
||||
gl_chyard,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gl_church,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gl_chyard,0,0 monster Lude 1812,3
|
||||
gl_church,0,0 monster Lude 1812,3
|
||||
|
||||
glast_01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
glast_01,0,0 monster Lude 1812,3
|
||||
|
||||
gl_prison1,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gl_prison,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gl_prison1,0,0 monster Lude 1812,3
|
||||
gl_prison,0,0 monster Lude 1812,3
|
||||
|
||||
gl_in01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gl_in01,0,0 monster Lude 1812,3
|
||||
|
||||
gl_cas02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gl_cas01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gl_cas02,0,0 monster Lude 1812,3
|
||||
gl_cas01,0,0 monster Lude 1812,3
|
||||
|
||||
tur_dun04,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
tur_dun03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
tur_dun02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
tur_dun01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
tur_dun04,0,0 monster Lude 1812,3
|
||||
tur_dun03,0,0 monster Lude 1812,3
|
||||
tur_dun02,0,0 monster Lude 1812,3
|
||||
tur_dun01,0,0 monster Lude 1812,3
|
||||
|
||||
alde_dun04,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
alde_dun03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
alde_dun02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
alde_dun01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
alde_dun04,0,0 monster Lude 1812,3
|
||||
alde_dun03,0,0 monster Lude 1812,3
|
||||
alde_dun02,0,0 monster Lude 1812,3
|
||||
alde_dun01,0,0 monster Lude 1812,3
|
||||
|
||||
c_tower1,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
c_tower2,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
c_tower3,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
c_tower4,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
c_tower1,0,0 monster Lude 1812,3
|
||||
c_tower2,0,0 monster Lude 1812,3
|
||||
c_tower3,0,0 monster Lude 1812,3
|
||||
c_tower4,0,0 monster Lude 1812,3
|
||||
|
||||
in_sphinx5,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
in_sphinx4,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
in_sphinx3,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
in_sphinx2,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
in_sphinx1,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
in_sphinx5,0,0 monster Lude 1812,3
|
||||
in_sphinx4,0,0 monster Lude 1812,3
|
||||
in_sphinx3,0,0 monster Lude 1812,3
|
||||
in_sphinx2,0,0 monster Lude 1812,3
|
||||
in_sphinx1,0,0 monster Lude 1812,3
|
||||
|
||||
prt_maze03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
prt_maze02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
prt_maze01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
prt_maze03,0,0 monster Lude 1812,3
|
||||
prt_maze02,0,0 monster Lude 1812,3
|
||||
prt_maze01,0,0 monster Lude 1812,3
|
||||
|
||||
treasure02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
treasure01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
treasure02,0,0 monster Lude 1812,3
|
||||
treasure01,0,0 monster Lude 1812,3
|
||||
|
||||
moc_pryd06,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_pryd05,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_pryd04,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_pryd03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_pryd02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_pryd01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
moc_pryd06,0,0 monster Lude 1812,3
|
||||
moc_pryd05,0,0 monster Lude 1812,3
|
||||
moc_pryd04,0,0 monster Lude 1812,3
|
||||
moc_pryd03,0,0 monster Lude 1812,3
|
||||
moc_pryd02,0,0 monster Lude 1812,3
|
||||
moc_pryd01,0,0 monster Lude 1812,3
|
||||
|
||||
gef_dun02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gef_dun01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gef_dun00,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
gef_dun02,0,0 monster Lude 1812,3
|
||||
gef_dun01,0,0 monster Lude 1812,3
|
||||
gef_dun00,0,0 monster Lude 1812,3
|
||||
|
||||
iz_dun00,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
iz_dun01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
iz_dun02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
iz_dun03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
iz_dun04,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
iz_dun00,0,0 monster Lude 1812,3
|
||||
iz_dun01,0,0 monster Lude 1812,3
|
||||
iz_dun02,0,0 monster Lude 1812,3
|
||||
iz_dun03,0,0 monster Lude 1812,3
|
||||
iz_dun04,0,0 monster Lude 1812,3
|
||||
|
||||
pay_dun00,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
pay_dun01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
pay_dun02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
pay_dun03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
pay_dun04,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
pay_dun00,0,0 monster Lude 1812,3
|
||||
pay_dun01,0,0 monster Lude 1812,3
|
||||
pay_dun02,0,0 monster Lude 1812,3
|
||||
pay_dun03,0,0 monster Lude 1812,3
|
||||
pay_dun04,0,0 monster Lude 1812,3
|
||||
|
||||
xmas_dun02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
xmas_dun01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
xmas_dun02,0,0 monster Lude 1812,3
|
||||
xmas_dun01,0,0 monster Lude 1812,3
|
||||
|
||||
anthell02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
anthell01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
anthell02,0,0 monster Lude 1812,3
|
||||
anthell01,0,0 monster Lude 1812,3
|
||||
|
||||
orcsdun02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
orcsdun01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
orcsdun02,0,0 monster Lude 1812,3
|
||||
orcsdun01,0,0 monster Lude 1812,3
|
||||
|
||||
mjo_dun03,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
mjo_dun02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
mjo_dun01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
mjo_dun03,0,0 monster Lude 1812,3
|
||||
mjo_dun02,0,0 monster Lude 1812,3
|
||||
mjo_dun01,0,0 monster Lude 1812,3
|
||||
|
||||
prt_sewb4,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
prt_sewb3,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
prt_sewb2,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
prt_sewb1,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
prt_sewb4,0,0 monster Lude 1812,3
|
||||
prt_sewb3,0,0 monster Lude 1812,3
|
||||
prt_sewb2,0,0 monster Lude 1812,3
|
||||
prt_sewb1,0,0 monster Lude 1812,3
|
||||
|
||||
nif_fild01,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
nif_fild01,0,0 monster Lude 1812,3
|
||||
|
||||
nif_fild02,0,0,0,0 monster Lude 1812,3,0,0,0
|
||||
nif_fild02,0,0 monster Lude 1812,3
|
||||
|
||||
@@ -264,6 +264,6 @@ OnTouch:
|
||||
end;
|
||||
}
|
||||
|
||||
evt_zombie,0,0,0,0 monster Zombie 3000,150,0,0,0
|
||||
evt_zombie,0,0,0,0 monster Ghoul 3001,80,0,0,0
|
||||
evt_zombie,0,0,0,0 monster Zombie Master 3002,20,0,0,0
|
||||
evt_zombie,0,0 monster Zombie 3000,150
|
||||
evt_zombie,0,0 monster Ghoul 3001,80
|
||||
evt_zombie,0,0 monster Zombie Master 3002,20
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -112,249 +112,249 @@ OnInit:
|
||||
|
||||
// Xmas Goblin Spawns
|
||||
//============================================================
|
||||
prt_fild11,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
gef_fild11,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
yuno_fild09,0,0,0,0 monster Christmas Goblin 1245,5,0,0,0
|
||||
prt_fild11,0,0 monster Christmas Goblin 1245,5
|
||||
gef_fild11,0,0 monster Christmas Goblin 1245,5
|
||||
yuno_fild09,0,0 monster Christmas Goblin 1245,5
|
||||
|
||||
// Santa Poring Spawns
|
||||
//============================================================
|
||||
ein_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
ein_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
ein_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
ein_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
ein_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
ein_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
ein_fild10,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
gef_fild00,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
gef_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
gef_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
gef_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
gef_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
gef_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
gef_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
gef_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
gef_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
gef_fild10,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
gef_fild11,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
gef_fild12,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
gef_fild13,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
gef_fild14,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
glast_01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
lhz_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
lhz_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
lhz_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
mjolnir_01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
mjolnir_02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
mjolnir_03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
mjolnir_04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
mjolnir_05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
mjolnir_06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
mjolnir_07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
mjolnir_08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
mjolnir_09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
mjolnir_10,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
mjolnir_11,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
mjolnir_12,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
moc_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
moc_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
moc_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
moc_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
moc_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
moc_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
moc_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
moc_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
moc_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
moc_fild10,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
moc_fild11,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
moc_fild12,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
moc_fild13,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
moc_fild14,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
moc_fild15,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
moc_fild16,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
moc_fild17,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
moc_fild18,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
pay_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
pay_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
pay_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
pay_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
pay_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
pay_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
pay_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
pay_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
pay_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
pay_fild10,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
pay_fild11,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
prt_fild00,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
prt_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
prt_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
prt_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
prt_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
prt_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
prt_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
prt_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
prt_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
prt_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
prt_fild10,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
prt_fild11,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
xmas_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
cmd_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
cmd_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
cmd_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
cmd_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
cmd_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
cmd_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
cmd_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
cmd_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
cmd_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
yuno_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
yuno_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
yuno_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
yuno_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
yuno_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
yuno_fild06,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
yuno_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
yuno_fild08,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
yuno_fild09,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
yuno_fild11,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
yuno_fild12,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
ama_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
gon_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
um_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
um_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
um_fild03,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
um_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
nif_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
nif_fild02,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
lou_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
hu_fild01,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
hu_fild04,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
hu_fild05,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
hu_fild07,0,0,0,0 monster Santa Poring 1062,15,0,0,0
|
||||
ein_fild03,0,0 monster Santa Poring 1062,15
|
||||
ein_fild04,0,0 monster Santa Poring 1062,15
|
||||
ein_fild06,0,0 monster Santa Poring 1062,15
|
||||
ein_fild07,0,0 monster Santa Poring 1062,15
|
||||
ein_fild08,0,0 monster Santa Poring 1062,15
|
||||
ein_fild09,0,0 monster Santa Poring 1062,15
|
||||
ein_fild10,0,0 monster Santa Poring 1062,15
|
||||
gef_fild00,0,0 monster Santa Poring 1062,15
|
||||
gef_fild01,0,0 monster Santa Poring 1062,15
|
||||
gef_fild02,0,0 monster Santa Poring 1062,15
|
||||
gef_fild03,0,0 monster Santa Poring 1062,15
|
||||
gef_fild04,0,0 monster Santa Poring 1062,15
|
||||
gef_fild05,0,0 monster Santa Poring 1062,15
|
||||
gef_fild07,0,0 monster Santa Poring 1062,15
|
||||
gef_fild08,0,0 monster Santa Poring 1062,15
|
||||
gef_fild09,0,0 monster Santa Poring 1062,15
|
||||
gef_fild10,0,0 monster Santa Poring 1062,15
|
||||
gef_fild11,0,0 monster Santa Poring 1062,15
|
||||
gef_fild12,0,0 monster Santa Poring 1062,15
|
||||
gef_fild13,0,0 monster Santa Poring 1062,15
|
||||
gef_fild14,0,0 monster Santa Poring 1062,15
|
||||
glast_01,0,0 monster Santa Poring 1062,15
|
||||
lhz_fild01,0,0 monster Santa Poring 1062,15
|
||||
lhz_fild02,0,0 monster Santa Poring 1062,15
|
||||
lhz_fild03,0,0 monster Santa Poring 1062,15
|
||||
mjolnir_01,0,0 monster Santa Poring 1062,15
|
||||
mjolnir_02,0,0 monster Santa Poring 1062,15
|
||||
mjolnir_03,0,0 monster Santa Poring 1062,15
|
||||
mjolnir_04,0,0 monster Santa Poring 1062,15
|
||||
mjolnir_05,0,0 monster Santa Poring 1062,15
|
||||
mjolnir_06,0,0 monster Santa Poring 1062,15
|
||||
mjolnir_07,0,0 monster Santa Poring 1062,15
|
||||
mjolnir_08,0,0 monster Santa Poring 1062,15
|
||||
mjolnir_09,0,0 monster Santa Poring 1062,15
|
||||
mjolnir_10,0,0 monster Santa Poring 1062,15
|
||||
mjolnir_11,0,0 monster Santa Poring 1062,15
|
||||
mjolnir_12,0,0 monster Santa Poring 1062,15
|
||||
moc_fild01,0,0 monster Santa Poring 1062,15
|
||||
moc_fild02,0,0 monster Santa Poring 1062,15
|
||||
moc_fild03,0,0 monster Santa Poring 1062,15
|
||||
moc_fild04,0,0 monster Santa Poring 1062,15
|
||||
moc_fild05,0,0 monster Santa Poring 1062,15
|
||||
moc_fild06,0,0 monster Santa Poring 1062,15
|
||||
moc_fild07,0,0 monster Santa Poring 1062,15
|
||||
moc_fild08,0,0 monster Santa Poring 1062,15
|
||||
moc_fild09,0,0 monster Santa Poring 1062,15
|
||||
moc_fild10,0,0 monster Santa Poring 1062,15
|
||||
moc_fild11,0,0 monster Santa Poring 1062,15
|
||||
moc_fild12,0,0 monster Santa Poring 1062,15
|
||||
moc_fild13,0,0 monster Santa Poring 1062,15
|
||||
moc_fild14,0,0 monster Santa Poring 1062,15
|
||||
moc_fild15,0,0 monster Santa Poring 1062,15
|
||||
moc_fild16,0,0 monster Santa Poring 1062,15
|
||||
moc_fild17,0,0 monster Santa Poring 1062,15
|
||||
moc_fild18,0,0 monster Santa Poring 1062,15
|
||||
pay_fild01,0,0 monster Santa Poring 1062,15
|
||||
pay_fild02,0,0 monster Santa Poring 1062,15
|
||||
pay_fild03,0,0 monster Santa Poring 1062,15
|
||||
pay_fild04,0,0 monster Santa Poring 1062,15
|
||||
pay_fild05,0,0 monster Santa Poring 1062,15
|
||||
pay_fild06,0,0 monster Santa Poring 1062,15
|
||||
pay_fild07,0,0 monster Santa Poring 1062,15
|
||||
pay_fild08,0,0 monster Santa Poring 1062,15
|
||||
pay_fild09,0,0 monster Santa Poring 1062,15
|
||||
pay_fild10,0,0 monster Santa Poring 1062,15
|
||||
pay_fild11,0,0 monster Santa Poring 1062,15
|
||||
prt_fild00,0,0 monster Santa Poring 1062,15
|
||||
prt_fild01,0,0 monster Santa Poring 1062,15
|
||||
prt_fild02,0,0 monster Santa Poring 1062,15
|
||||
prt_fild03,0,0 monster Santa Poring 1062,15
|
||||
prt_fild04,0,0 monster Santa Poring 1062,15
|
||||
prt_fild05,0,0 monster Santa Poring 1062,15
|
||||
prt_fild06,0,0 monster Santa Poring 1062,15
|
||||
prt_fild07,0,0 monster Santa Poring 1062,15
|
||||
prt_fild08,0,0 monster Santa Poring 1062,15
|
||||
prt_fild09,0,0 monster Santa Poring 1062,15
|
||||
prt_fild10,0,0 monster Santa Poring 1062,15
|
||||
prt_fild11,0,0 monster Santa Poring 1062,15
|
||||
xmas_fild01,0,0 monster Santa Poring 1062,15
|
||||
cmd_fild01,0,0 monster Santa Poring 1062,15
|
||||
cmd_fild02,0,0 monster Santa Poring 1062,15
|
||||
cmd_fild03,0,0 monster Santa Poring 1062,15
|
||||
cmd_fild04,0,0 monster Santa Poring 1062,15
|
||||
cmd_fild05,0,0 monster Santa Poring 1062,15
|
||||
cmd_fild06,0,0 monster Santa Poring 1062,15
|
||||
cmd_fild07,0,0 monster Santa Poring 1062,15
|
||||
cmd_fild08,0,0 monster Santa Poring 1062,15
|
||||
cmd_fild09,0,0 monster Santa Poring 1062,15
|
||||
yuno_fild01,0,0 monster Santa Poring 1062,15
|
||||
yuno_fild02,0,0 monster Santa Poring 1062,15
|
||||
yuno_fild03,0,0 monster Santa Poring 1062,15
|
||||
yuno_fild04,0,0 monster Santa Poring 1062,15
|
||||
yuno_fild05,0,0 monster Santa Poring 1062,15
|
||||
yuno_fild06,0,0 monster Santa Poring 1062,15
|
||||
yuno_fild07,0,0 monster Santa Poring 1062,15
|
||||
yuno_fild08,0,0 monster Santa Poring 1062,15
|
||||
yuno_fild09,0,0 monster Santa Poring 1062,15
|
||||
yuno_fild11,0,0 monster Santa Poring 1062,15
|
||||
yuno_fild12,0,0 monster Santa Poring 1062,15
|
||||
ama_fild01,0,0 monster Santa Poring 1062,15
|
||||
gon_fild01,0,0 monster Santa Poring 1062,15
|
||||
um_fild01,0,0 monster Santa Poring 1062,15
|
||||
um_fild02,0,0 monster Santa Poring 1062,15
|
||||
um_fild03,0,0 monster Santa Poring 1062,15
|
||||
um_fild04,0,0 monster Santa Poring 1062,15
|
||||
nif_fild01,0,0 monster Santa Poring 1062,15
|
||||
nif_fild02,0,0 monster Santa Poring 1062,15
|
||||
lou_fild01,0,0 monster Santa Poring 1062,15
|
||||
hu_fild01,0,0 monster Santa Poring 1062,15
|
||||
hu_fild04,0,0 monster Santa Poring 1062,15
|
||||
hu_fild05,0,0 monster Santa Poring 1062,15
|
||||
hu_fild07,0,0 monster Santa Poring 1062,15
|
||||
|
||||
// Antonio Spawns
|
||||
//============================================================
|
||||
ein_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
ein_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
ein_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
ein_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
ein_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
ein_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
ein_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild00,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild12,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild13,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gef_fild14,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
glast_01,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
lhz_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
lhz_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
lhz_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
mjolnir_01,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
mjolnir_02,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
mjolnir_03,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
mjolnir_04,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
mjolnir_05,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
mjolnir_06,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
mjolnir_07,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
mjolnir_08,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
mjolnir_09,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
mjolnir_10,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
mjolnir_11,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
mjolnir_12,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
moc_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
moc_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
moc_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
moc_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
moc_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
moc_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
moc_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
moc_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
moc_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
moc_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
moc_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
moc_fild12,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
moc_fild13,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
moc_fild14,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
moc_fild15,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
moc_fild16,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
moc_fild17,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
moc_fild18,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
pay_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild00,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild10,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
prt_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
xmas_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
cmd_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
cmd_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
cmd_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
cmd_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
cmd_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
cmd_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
cmd_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
cmd_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
cmd_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
yuno_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
yuno_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
yuno_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
yuno_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
yuno_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
yuno_fild06,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
yuno_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
yuno_fild08,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
yuno_fild09,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
yuno_fild11,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
yuno_fild12,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
ama_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
gon_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
um_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
um_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
um_fild03,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
um_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
nif_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
nif_fild02,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
lou_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
hu_fild01,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
hu_fild04,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
hu_fild05,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
hu_fild07,0,0,0,0 monster Antonio 1247,1,0,0,0
|
||||
ein_fild03,0,0 monster Antonio 1247,1
|
||||
ein_fild04,0,0 monster Antonio 1247,1
|
||||
ein_fild06,0,0 monster Antonio 1247,1
|
||||
ein_fild07,0,0 monster Antonio 1247,1
|
||||
ein_fild08,0,0 monster Antonio 1247,1
|
||||
ein_fild09,0,0 monster Antonio 1247,1
|
||||
ein_fild10,0,0 monster Antonio 1247,1
|
||||
gef_fild00,0,0 monster Antonio 1247,1
|
||||
gef_fild01,0,0 monster Antonio 1247,1
|
||||
gef_fild02,0,0 monster Antonio 1247,1
|
||||
gef_fild03,0,0 monster Antonio 1247,1
|
||||
gef_fild04,0,0 monster Antonio 1247,1
|
||||
gef_fild05,0,0 monster Antonio 1247,1
|
||||
gef_fild07,0,0 monster Antonio 1247,1
|
||||
gef_fild08,0,0 monster Antonio 1247,1
|
||||
gef_fild09,0,0 monster Antonio 1247,1
|
||||
gef_fild10,0,0 monster Antonio 1247,1
|
||||
gef_fild11,0,0 monster Antonio 1247,1
|
||||
gef_fild12,0,0 monster Antonio 1247,1
|
||||
gef_fild13,0,0 monster Antonio 1247,1
|
||||
gef_fild14,0,0 monster Antonio 1247,1
|
||||
glast_01,0,0 monster Antonio 1247,1
|
||||
lhz_fild01,0,0 monster Antonio 1247,1
|
||||
lhz_fild02,0,0 monster Antonio 1247,1
|
||||
lhz_fild03,0,0 monster Antonio 1247,1
|
||||
mjolnir_01,0,0 monster Antonio 1247,1
|
||||
mjolnir_02,0,0 monster Antonio 1247,1
|
||||
mjolnir_03,0,0 monster Antonio 1247,1
|
||||
mjolnir_04,0,0 monster Antonio 1247,1
|
||||
mjolnir_05,0,0 monster Antonio 1247,1
|
||||
mjolnir_06,0,0 monster Antonio 1247,1
|
||||
mjolnir_07,0,0 monster Antonio 1247,1
|
||||
mjolnir_08,0,0 monster Antonio 1247,1
|
||||
mjolnir_09,0,0 monster Antonio 1247,1
|
||||
mjolnir_10,0,0 monster Antonio 1247,1
|
||||
mjolnir_11,0,0 monster Antonio 1247,1
|
||||
mjolnir_12,0,0 monster Antonio 1247,1
|
||||
moc_fild01,0,0 monster Antonio 1247,1
|
||||
moc_fild02,0,0 monster Antonio 1247,1
|
||||
moc_fild03,0,0 monster Antonio 1247,1
|
||||
moc_fild04,0,0 monster Antonio 1247,1
|
||||
moc_fild05,0,0 monster Antonio 1247,1
|
||||
moc_fild06,0,0 monster Antonio 1247,1
|
||||
moc_fild07,0,0 monster Antonio 1247,1
|
||||
moc_fild08,0,0 monster Antonio 1247,1
|
||||
moc_fild09,0,0 monster Antonio 1247,1
|
||||
moc_fild10,0,0 monster Antonio 1247,1
|
||||
moc_fild11,0,0 monster Antonio 1247,1
|
||||
moc_fild12,0,0 monster Antonio 1247,1
|
||||
moc_fild13,0,0 monster Antonio 1247,1
|
||||
moc_fild14,0,0 monster Antonio 1247,1
|
||||
moc_fild15,0,0 monster Antonio 1247,1
|
||||
moc_fild16,0,0 monster Antonio 1247,1
|
||||
moc_fild17,0,0 monster Antonio 1247,1
|
||||
moc_fild18,0,0 monster Antonio 1247,1
|
||||
pay_fild01,0,0 monster Antonio 1247,1
|
||||
pay_fild02,0,0 monster Antonio 1247,1
|
||||
pay_fild03,0,0 monster Antonio 1247,1
|
||||
pay_fild04,0,0 monster Antonio 1247,1
|
||||
pay_fild05,0,0 monster Antonio 1247,1
|
||||
pay_fild06,0,0 monster Antonio 1247,1
|
||||
pay_fild07,0,0 monster Antonio 1247,1
|
||||
pay_fild08,0,0 monster Antonio 1247,1
|
||||
pay_fild09,0,0 monster Antonio 1247,1
|
||||
pay_fild10,0,0 monster Antonio 1247,1
|
||||
pay_fild11,0,0 monster Antonio 1247,1
|
||||
prt_fild00,0,0 monster Antonio 1247,1
|
||||
prt_fild01,0,0 monster Antonio 1247,1
|
||||
prt_fild02,0,0 monster Antonio 1247,1
|
||||
prt_fild03,0,0 monster Antonio 1247,1
|
||||
prt_fild04,0,0 monster Antonio 1247,1
|
||||
prt_fild05,0,0 monster Antonio 1247,1
|
||||
prt_fild06,0,0 monster Antonio 1247,1
|
||||
prt_fild07,0,0 monster Antonio 1247,1
|
||||
prt_fild08,0,0 monster Antonio 1247,1
|
||||
prt_fild09,0,0 monster Antonio 1247,1
|
||||
prt_fild10,0,0 monster Antonio 1247,1
|
||||
prt_fild11,0,0 monster Antonio 1247,1
|
||||
xmas_fild01,0,0 monster Antonio 1247,1
|
||||
cmd_fild01,0,0 monster Antonio 1247,1
|
||||
cmd_fild02,0,0 monster Antonio 1247,1
|
||||
cmd_fild03,0,0 monster Antonio 1247,1
|
||||
cmd_fild04,0,0 monster Antonio 1247,1
|
||||
cmd_fild05,0,0 monster Antonio 1247,1
|
||||
cmd_fild06,0,0 monster Antonio 1247,1
|
||||
cmd_fild07,0,0 monster Antonio 1247,1
|
||||
cmd_fild08,0,0 monster Antonio 1247,1
|
||||
cmd_fild09,0,0 monster Antonio 1247,1
|
||||
yuno_fild01,0,0 monster Antonio 1247,1
|
||||
yuno_fild02,0,0 monster Antonio 1247,1
|
||||
yuno_fild03,0,0 monster Antonio 1247,1
|
||||
yuno_fild04,0,0 monster Antonio 1247,1
|
||||
yuno_fild05,0,0 monster Antonio 1247,1
|
||||
yuno_fild06,0,0 monster Antonio 1247,1
|
||||
yuno_fild07,0,0 monster Antonio 1247,1
|
||||
yuno_fild08,0,0 monster Antonio 1247,1
|
||||
yuno_fild09,0,0 monster Antonio 1247,1
|
||||
yuno_fild11,0,0 monster Antonio 1247,1
|
||||
yuno_fild12,0,0 monster Antonio 1247,1
|
||||
ama_fild01,0,0 monster Antonio 1247,1
|
||||
gon_fild01,0,0 monster Antonio 1247,1
|
||||
um_fild01,0,0 monster Antonio 1247,1
|
||||
um_fild02,0,0 monster Antonio 1247,1
|
||||
um_fild03,0,0 monster Antonio 1247,1
|
||||
um_fild04,0,0 monster Antonio 1247,1
|
||||
nif_fild01,0,0 monster Antonio 1247,1
|
||||
nif_fild02,0,0 monster Antonio 1247,1
|
||||
lou_fild01,0,0 monster Antonio 1247,1
|
||||
hu_fild01,0,0 monster Antonio 1247,1
|
||||
hu_fild04,0,0 monster Antonio 1247,1
|
||||
hu_fild05,0,0 monster Antonio 1247,1
|
||||
hu_fild07,0,0 monster Antonio 1247,1
|
||||
|
||||
// Xmas Jakk Spawns
|
||||
//============================================================
|
||||
gef_dun01,0,0,0,0 monster Xmas Jakk 1244,5,0,0,0
|
||||
//gefenia02,0,0,0,0 monster Xmas Jakk 1244,5,0,0,0
|
||||
gef_dun01,0,0 monster Xmas Jakk 1244,5
|
||||
//gefenia02,0,0 monster Xmas Jakk 1244,5
|
||||
|
||||
// Xmas Orc Spawns
|
||||
//============================================================
|
||||
gef_fild02,0,0,0,0 monster Christmas Orc 1588,5,0,0,0
|
||||
gef_fild03,0,0,0,0 monster Christmas Orc 1588,5,0,0,0
|
||||
gef_fild10,0,0,0,0 monster Christmas Orc 1588,5,0,0,0
|
||||
gef_fild14,0,0,0,0 monster Christmas Orc 1588,5,0,0,0
|
||||
alde_dun02,0,0,0,0 monster Christmas Orc 1588,5,0,0,0
|
||||
gef_fild02,0,0 monster Christmas Orc 1588,5
|
||||
gef_fild03,0,0 monster Christmas Orc 1588,5
|
||||
gef_fild10,0,0 monster Christmas Orc 1588,5
|
||||
gef_fild14,0,0 monster Christmas Orc 1588,5
|
||||
alde_dun02,0,0 monster Christmas Orc 1588,5
|
||||
|
||||
@@ -2603,8 +2603,8 @@ monk_test,137,338,1 script switchreset#monkmonk 79,{
|
||||
//============================================================
|
||||
// Monsters of Mushroom Collecting
|
||||
//============================================================
|
||||
job_monk,0,0,0,0 monster Thief Mushroom 1182,70,0,0,0
|
||||
job_monk,0,0,0,0 monster Thief Bug Larva 1051,20,0,0,0
|
||||
job_monk,0,0 monster Thief Mushroom 1182,70
|
||||
job_monk,0,0 monster Thief Bug Larva 1051,20
|
||||
|
||||
//============================================================
|
||||
// Old changelog
|
||||
|
||||
@@ -19,22 +19,22 @@
|
||||
//==================================================
|
||||
// Wild Rose City Spawns
|
||||
//==================================================
|
||||
prontera,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
morocc,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
alberta,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
aldebaran,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
geffen,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
payon,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
comodo,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
izlude,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
yuno,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
einbroch,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
lighthalzen,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
hugel,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
umbala,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
amatsu,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
gonryun,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
louyang,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
ayothaya,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
moscovia,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
einbech,0,0,0,0 monster Wild Rose 1261,1,3600000,3000000,0
|
||||
prontera,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
morocc,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
alberta,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
aldebaran,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
geffen,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
payon,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
comodo,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
izlude,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
yuno,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
einbroch,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
lighthalzen,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
hugel,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
umbala,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
amatsu,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
gonryun,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
louyang,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
ayothaya,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
moscovia,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
einbech,0,0 monster Wild Rose 1261,1,3600000,3000000
|
||||
|
||||
@@ -10,9 +10,9 @@
|
||||
//= Spawns monsters in Jail.
|
||||
//============================================================
|
||||
|
||||
sec_in02,139,80,20,10 monster Poring 1002,5,0,0,0
|
||||
sec_in02,138,54,20,20 monster Marin 1242,5,0,0,0
|
||||
sec_in02,161,46,15,15 monster Poporing 1031,5,0,0,0
|
||||
sec_in02,114,47,10,10 monster Drops 1113,5,0,0,0
|
||||
sec_in02,114,47,10,10 monster Bigfoot 1060,10,0,0,0
|
||||
sec_in02,139,80,30,30 monster Flora 1118,10,0,0,0
|
||||
sec_in02,139,80,20,10 monster Poring 1002,5
|
||||
sec_in02,138,54,20,20 monster Marin 1242,5
|
||||
sec_in02,161,46,15,15 monster Poporing 1031,5
|
||||
sec_in02,114,47,10,10 monster Drops 1113,5
|
||||
sec_in02,114,47,10,10 monster Bigfoot 1060,10
|
||||
sec_in02,139,80,30,30 monster Flora 1118,10
|
||||
|
||||
@@ -13,28 +13,28 @@
|
||||
//==================================================
|
||||
// pvp_n_8-1 - PvP : Room Sandwich
|
||||
//==================================================
|
||||
pvp_n_8-1,0,0,0,0 monster Side Winder 1037,2,360000,180000,1
|
||||
pvp_n_8-1,0,0,0,0 monster Bigfoot 1060,2,360000,180000,1
|
||||
pvp_n_8-1,0,0 monster Side Winder 1037,2,360000,180000
|
||||
pvp_n_8-1,0,0 monster Bigfoot 1060,2,360000,180000
|
||||
|
||||
//==================================================
|
||||
// pvp_n_8-2 - PvP : Room Rock On
|
||||
//==================================================
|
||||
pvp_n_8-2,0,0,0,0 monster Cramp 1209,4,360000,180000,1
|
||||
pvp_n_8-2,0,0 monster Cramp 1209,4,360000,180000
|
||||
|
||||
//==================================================
|
||||
// pvp_n_8-3 - PvP : Four Room
|
||||
//==================================================
|
||||
pvp_n_8-3,0,0,0,0 monster Whisper 1179,3,360000,180000,1
|
||||
pvp_n_8-3,0,0,0,0 monster Giant Whisper 1186,2,360000,180000,1
|
||||
pvp_n_8-3,0,0 monster Whisper 1179,3,360000,180000
|
||||
pvp_n_8-3,0,0 monster Giant Whisper 1186,2,360000,180000
|
||||
|
||||
//==================================================
|
||||
// pvp_n_8-4 - PvP : Room Undercross
|
||||
//==================================================
|
||||
pvp_n_8-4,0,0,0,0 monster Zombie 1015,4,360000,180000,1
|
||||
pvp_n_8-4,0,0,0,0 monster Ghoul 1036,3,360000,180000,1
|
||||
pvp_n_8-4,0,0 monster Zombie 1015,4,360000,180000
|
||||
pvp_n_8-4,0,0 monster Ghoul 1036,3,360000,180000
|
||||
|
||||
//==================================================
|
||||
// pvp_n_8-5 - PvP : Room Copass
|
||||
//==================================================
|
||||
pvp_n_8-5,0,0,0,0 monster Khalitzburg 1132,1,360000,180000,1
|
||||
pvp_n_8-5,0,0,0,0 monster Raydric 1163,2,360000,180000,1
|
||||
pvp_n_8-5,0,0 monster Khalitzburg 1132,1,360000,180000
|
||||
pvp_n_8-5,0,0 monster Raydric 1163,2,360000,180000
|
||||
|
||||
@@ -15,25 +15,25 @@
|
||||
//==================================================
|
||||
// einbech - Einbech, the Mining Village
|
||||
//==================================================
|
||||
einbech,0,0,0,0 monster Tarou 1175,5,1800000,1500000,0
|
||||
einbech,0,0 monster Tarou 1175,5,1800000,1500000
|
||||
|
||||
//==================================================
|
||||
// jawaii - Jawaii, the Honeymoon Island
|
||||
//==================================================
|
||||
jawaii,207,290,10,10 monster Phen 1158,3,3600000,1800000,0
|
||||
jawaii,221,220,30,30 monster Aster 1266,2,3600000,2400000,0
|
||||
jawaii,276,163,20,20 monster Aster 1266,1,7200000,3600000,0
|
||||
jawaii,221,220,30,30 monster Shellfish 1074,1,4800000,3000000,0
|
||||
jawaii,276,163,20,30 monster Shellfish 1074,2,4200000,2400000,0
|
||||
jawaii,207,290,10,10 monster Phen 1158,3,3600000,1800000,1234
|
||||
jawaii,221,220,30,30 monster Aster 1266,2,3600000,2400000
|
||||
jawaii,276,163,20,20 monster Aster 1266,1,7200000,3600000
|
||||
jawaii,221,220,30,30 monster Shellfish 1074,1,4800000,3000000
|
||||
jawaii,276,163,20,30 monster Shellfish 1074,2,4200000,2400000
|
||||
|
||||
//==================================================
|
||||
// jawaii_in - Inside Jawaii
|
||||
//==================================================
|
||||
jawaii_in,128,121,1,4 monster Red Mushroom 1085,1,3000000,1200000,0
|
||||
jawaii_in,124,76,1,1 monster Black Mushroom 1084,1,3600000,1200000,0
|
||||
jawaii_in,72,74,5,1 monster Black Mushroom 1084,2,3000000,1200000,0
|
||||
jawaii_in,128,121,1,4 monster Red Mushroom 1085,1,3000000,1200000
|
||||
jawaii_in,124,76,1,1 monster Black Mushroom 1084,1,3600000,1200000
|
||||
jawaii_in,72,74,5,1 monster Black Mushroom 1084,2,3000000,1200000
|
||||
|
||||
//==================================================
|
||||
// Inside Lightalzen
|
||||
//==================================================
|
||||
lhz_in01,157,54,0,0 monster Red Mushroom 1085,1,120000,100000,0
|
||||
lhz_in01,157,54 monster Red Mushroom 1085,1,120000,100000
|
||||
|
||||
@@ -622,21 +622,21 @@ job_sword1,181,163,0 duplicate(SwdTrap3) 3_blank_30_c -1,2,0
|
||||
|
||||
// Monsters (all three courses)
|
||||
//============================================================
|
||||
job_sword1,0,0,0,0 monster Chonchon 1183,20,0,0,0
|
||||
job_sword1,35,79,0,0 monster Fabre 1184,3,60000,30000,0
|
||||
job_sword1,50,108,0,0 monster Fabre 1184,3,60000,30000,0
|
||||
job_sword1,61,28,0,0 monster Fabre 1184,3,60000,30000,0
|
||||
job_sword1,61,92,0,0 monster Fabre 1184,3,60000,30000,0
|
||||
job_sword1,110,112,0,0 monster Fabre 1184,2,60000,30000,0
|
||||
job_sword1,161,94,0,0 monster Fabre 1184,2,60000,30000,0
|
||||
job_sword1,130,76,0,0 monster Fabre 1184,2,60000,30000,0
|
||||
job_sword1,103,58,0,0 monster Fabre 1184,2,60000,30000,0
|
||||
job_sword1,130,24,0,0 monster Fabre 1184,5,60000,30000,0
|
||||
job_sword1,201,36,0,0 monster Fabre 1184,2,60000,30000,0
|
||||
job_sword1,201,16,0,0 monster Fabre 1184,2,60000,30000,0
|
||||
job_sword1,239,44,0,0 monster Fabre 1184,3,60000,30000,0
|
||||
job_sword1,239,76,0,0 monster Fabre 1184,2,60000,30000,0
|
||||
job_sword1,231,101,0,0 monster Fabre 1184,2,60000,30000,0
|
||||
job_sword1,234,117,0,0 monster Fabre 1184,2,60000,30000,0
|
||||
job_sword1,198,91,0,0 monster Fabre 1184,2,60000,30000,0
|
||||
job_sword1,200,63,0,0 monster Fabre 1184,2,60000,30000,0
|
||||
job_sword1,0,0 monster Chonchon 1183,20
|
||||
job_sword1,35,79 monster Fabre 1184,3,60000,30000
|
||||
job_sword1,50,108 monster Fabre 1184,3,60000,30000
|
||||
job_sword1,61,28 monster Fabre 1184,3,60000,30000
|
||||
job_sword1,61,92 monster Fabre 1184,3,60000,30000
|
||||
job_sword1,110,112 monster Fabre 1184,2,60000,30000
|
||||
job_sword1,161,94 monster Fabre 1184,2,60000,30000
|
||||
job_sword1,130,76 monster Fabre 1184,2,60000,30000
|
||||
job_sword1,103,58 monster Fabre 1184,2,60000,30000
|
||||
job_sword1,130,24 monster Fabre 1184,5,60000,30000
|
||||
job_sword1,201,36 monster Fabre 1184,2,60000,30000
|
||||
job_sword1,201,16 monster Fabre 1184,2,60000,30000
|
||||
job_sword1,239,44 monster Fabre 1184,3,60000,30000
|
||||
job_sword1,239,76 monster Fabre 1184,2,60000,30000
|
||||
job_sword1,231,101 monster Fabre 1184,2,60000,30000
|
||||
job_sword1,234,117 monster Fabre 1184,2,60000,30000
|
||||
job_sword1,198,91 monster Fabre 1184,2,60000,30000
|
||||
job_sword1,200,63 monster Fabre 1184,2,60000,30000
|
||||
|
||||
@@ -529,10 +529,10 @@ moc_ruins,141,125,3 script Mr. Irrelevant 83,{
|
||||
|
||||
// Monsters
|
||||
//============================================================
|
||||
job_thief1,0,0,0,0 monster Orange Mushroom 1182,180,0,0,0
|
||||
job_thief1,0,0,0,0 monster Fabre 1184,50,0,0,0
|
||||
job_thief1,0,0,0,0 monster Chonchon 1183,50,0,0,0
|
||||
job_thief1,0,0,0,0 monster Spore 1014,30,0,0,0
|
||||
job_thief1,0,0 monster Orange Mushroom 1182,180
|
||||
job_thief1,0,0 monster Fabre 1184,50
|
||||
job_thief1,0,0 monster Chonchon 1183,50
|
||||
job_thief1,0,0 monster Spore 1014,30
|
||||
|
||||
//============================================================
|
||||
// mapflag
|
||||
|
||||
@@ -4275,31 +4275,31 @@ new_1-4,91,22,4 script Bruce#nv 57,{
|
||||
}
|
||||
|
||||
// Training Ground Mobs
|
||||
new_1-3,0,0,0,0 monster Poring 1002,10,0,0,0
|
||||
new_1-3,0,0,0,0 monster Drops 1113,10,0,0,0
|
||||
new_1-3,0,0,0,0 monster Lunatic 1063,10,0,0,0
|
||||
new_1-3,0,0,0,0 monster ChonChon 1011,10,0,0,0
|
||||
new_2-3,0,0,0,0 monster Condor 1009,10,0,0,0
|
||||
new_2-3,0,0,0,0 monster Picky 1050,10,0,0,0
|
||||
new_2-3,0,0,0,0 monster Willow 1010,10,0,0,0
|
||||
new_2-3,0,0,0,0 monster Roda Frog 1012,10,0,0,0
|
||||
new_3-3,0,0,0,0 monster Condor 1009,10,0,0,0
|
||||
new_3-3,0,0,0,0 monster Picky 1050,10,0,0,0
|
||||
new_3-3,0,0,0,0 monster Willow 1010,10,0,0,0
|
||||
new_3-3,0,0,0,0 monster Roda Frog 1012,10,0,0,0
|
||||
new_4-3,0,0,0,0 monster Rocker 1052,10,0,0,0
|
||||
new_4-3,0,0,0,0 monster Thief Bug 1051,10,0,0,0
|
||||
new_4-3,0,0,0,0 monster Thief Bug 1053,10,0,0,0
|
||||
new_4-3,0,0,0,0 monster Spore 1014,10,0,0,0
|
||||
new_5-3,0,0,0,0 monster Rocker 1052,10,0,0,0
|
||||
new_5-3,0,0,0,0 monster Thief Bug 1051,1,0,0,0
|
||||
new_5-3,0,0,0,0 monster Thief Bug 1053,1,0,0,0
|
||||
new_5-3,0,0,0,0 monster Spore 1014,1,0,0,0
|
||||
new_1-3,0,0,0,0 monster Fabre 1184,5,0,0,0
|
||||
new_2-3,0,0,0,0 monster Fabre 1184,5,0,0,0
|
||||
new_3-3,0,0,0,0 monster Fabre 1184,5,0,0,0
|
||||
new_4-3,0,0,0,0 monster Fabre 1184,5,0,0,0
|
||||
new_5-3,0,0,0,0 monster Fabre 1184,5,0,0,0
|
||||
new_1-3,0,0 monster Poring 1002,10
|
||||
new_1-3,0,0 monster Drops 1113,10
|
||||
new_1-3,0,0 monster Lunatic 1063,10
|
||||
new_1-3,0,0 monster ChonChon 1011,10
|
||||
new_2-3,0,0 monster Condor 1009,10
|
||||
new_2-3,0,0 monster Picky 1050,10
|
||||
new_2-3,0,0 monster Willow 1010,10
|
||||
new_2-3,0,0 monster Roda Frog 1012,10
|
||||
new_3-3,0,0 monster Condor 1009,10
|
||||
new_3-3,0,0 monster Picky 1050,10
|
||||
new_3-3,0,0 monster Willow 1010,10
|
||||
new_3-3,0,0 monster Roda Frog 1012,10
|
||||
new_4-3,0,0 monster Rocker 1052,10
|
||||
new_4-3,0,0 monster Thief Bug 1051,10
|
||||
new_4-3,0,0 monster Thief Bug 1053,10
|
||||
new_4-3,0,0 monster Spore 1014,10
|
||||
new_5-3,0,0 monster Rocker 1052,10
|
||||
new_5-3,0,0 monster Thief Bug 1051,1
|
||||
new_5-3,0,0 monster Thief Bug 1053,1
|
||||
new_5-3,0,0 monster Spore 1014,1
|
||||
new_1-3,0,0 monster Fabre 1184,5
|
||||
new_2-3,0,0 monster Fabre 1184,5
|
||||
new_3-3,0,0 monster Fabre 1184,5
|
||||
new_4-3,0,0 monster Fabre 1184,5
|
||||
new_5-3,0,0 monster Fabre 1184,5
|
||||
|
||||
//============================================================
|
||||
// Old changelog
|
||||
|
||||
@@ -15,6 +15,6 @@
|
||||
//==================================================
|
||||
// Thief Bug City Spawns
|
||||
//==================================================
|
||||
payon_in02,23,68,5,5 monster Thief Bug 1051,7,1200000,600000,0
|
||||
jawaii_in,73,117,4,4 monster Thief Bug 1051,1,5400000,3000000,0
|
||||
jawaii_in,83,117,5,5 monster Thief Bug 1051,1,4800000,2400000,0
|
||||
payon_in02,23,68,5,5 monster Thief Bug 1051,7,1200000,600000
|
||||
jawaii_in,73,117,4,4 monster Thief Bug 1051,1,5400000,3000000
|
||||
jawaii_in,83,117,5,5 monster Thief Bug 1051,1,4800000,2400000
|
||||
|
||||
@@ -13,117 +13,117 @@
|
||||
//============================================================
|
||||
|
||||
// Nameless Island
|
||||
nameless_n,93,211,51,62 monster Zombie Slaughter 1864,3,15000,0,1
|
||||
nameless_n,93,211,51,62 monster Ragged Zombie 1865,3,15000,0,1
|
||||
nameless_n,93,211,51,62 monster Hell Poodle 1866,5,15000,0,1
|
||||
nameless_n,93,211,51,62 monster Banshee 1867,4,15000,0,1
|
||||
nameless_n,93,211,51,62 monster Flame Skull 1869,1,30000,0,1
|
||||
nameless_n,93,211,51,62 monster Ghoul 1036,10,30000,0,1
|
||||
nameless_n,204,225,57,70 monster Zombie Slaughter 1864,5,15000,0,1
|
||||
nameless_n,204,225,57,70 monster Ragged Zombie 1865,5,15000,0,1
|
||||
nameless_n,204,225,57,70 monster Hell Poodle 1866,5,15000,0,1
|
||||
nameless_n,204,225,57,70 monster Banshee 1867,4,15000,0,1
|
||||
nameless_n,204,225,57,70 monster Flame Skull 1869,1,30000,0,1
|
||||
nameless_n,204,225,57,70 monster Ghoul 1036,10,30000,0,1
|
||||
nameless_n,127,103,59,46 monster Zombie Slaughter 1864,2,15000,0,1
|
||||
nameless_n,127,103,59,46 monster Ragged Zombie 1865,2,15000,0,1
|
||||
nameless_n,127,103,59,46 monster Hell Poodle 1866,5,15000,0,1
|
||||
nameless_n,127,103,59,46 monster Banshee 1867,4,15000,0,1
|
||||
nameless_n,127,103,59,46 monster Flame Skull 1869,1,30000,0,1
|
||||
nameless_n,127,103,59,46 monster Ghoul 1036,10,30000,0,1
|
||||
nameless_n,234,95,40,58 monster Zombie Slaughter 1864,2,15000,0,1
|
||||
nameless_n,234,95,40,58 monster Ragged Zombie 1865,2,15000,0,1
|
||||
nameless_n,234,95,40,58 monster Hell Poodle 1866,2,15000,0,1
|
||||
nameless_n,234,95,40,58 monster Banshee 1867,4,15000,0,1
|
||||
nameless_n,234,95,40,58 monster Ghoul 1036,10,30000,0,1
|
||||
nameless_n,93,211,51,62 monster Zombie Slaughter 1864,3,15000
|
||||
nameless_n,93,211,51,62 monster Ragged Zombie 1865,3,15000
|
||||
nameless_n,93,211,51,62 monster Hell Poodle 1866,5,15000
|
||||
nameless_n,93,211,51,62 monster Banshee 1867,4,15000
|
||||
nameless_n,93,211,51,62 monster Flame Skull 1869,1,30000
|
||||
nameless_n,93,211,51,62 monster Ghoul 1036,10,30000
|
||||
nameless_n,204,225,57,70 monster Zombie Slaughter 1864,5,15000
|
||||
nameless_n,204,225,57,70 monster Ragged Zombie 1865,5,15000
|
||||
nameless_n,204,225,57,70 monster Hell Poodle 1866,5,15000
|
||||
nameless_n,204,225,57,70 monster Banshee 1867,4,15000
|
||||
nameless_n,204,225,57,70 monster Flame Skull 1869,1,30000
|
||||
nameless_n,204,225,57,70 monster Ghoul 1036,10,30000
|
||||
nameless_n,127,103,59,46 monster Zombie Slaughter 1864,2,15000
|
||||
nameless_n,127,103,59,46 monster Ragged Zombie 1865,2,15000
|
||||
nameless_n,127,103,59,46 monster Hell Poodle 1866,5,15000
|
||||
nameless_n,127,103,59,46 monster Banshee 1867,4,15000
|
||||
nameless_n,127,103,59,46 monster Flame Skull 1869,1,30000
|
||||
nameless_n,127,103,59,46 monster Ghoul 1036,10,30000
|
||||
nameless_n,234,95,40,58 monster Zombie Slaughter 1864,2,15000
|
||||
nameless_n,234,95,40,58 monster Ragged Zombie 1865,2,15000
|
||||
nameless_n,234,95,40,58 monster Hell Poodle 1866,2,15000
|
||||
nameless_n,234,95,40,58 monster Banshee 1867,4,15000
|
||||
nameless_n,234,95,40,58 monster Ghoul 1036,10,30000
|
||||
|
||||
// Cursed Abbey Dungeon 1
|
||||
abbey01,0,0,0,0 monster Banshee 1867,30,0,0,1
|
||||
abbey01,97,270,87,87 monster Banshee 1867,30,0,0,1
|
||||
abbey01,97,270,87,87 monster Hell Poodle 1866,15,0,0,1
|
||||
abbey01,97,270,87,87 monster Zombie Slaughter 1864,10,0,0,1
|
||||
abbey01,97,270,87,87 monster Ragged Zombie 1865,10,0,0,1
|
||||
abbey01,97,270,87,87 monster Flame Skull 1869,9,0,0,1
|
||||
abbey01,97,270,87,87 monster Ghoul 1036,10,0,0,1
|
||||
abbey01,250,370,49,50 monster Banshee 1867,3,0,0,1
|
||||
abbey01,250,370,49,50 monster Hell Poodle 1866,2,0,0,1
|
||||
abbey01,250,370,49,50 monster Zombie Slaughter 1864,3,0,0,1
|
||||
abbey01,250,370,49,50 monster Ragged Zombie 1865,3,0,0,1
|
||||
abbey01,250,370,49,50 monster Flame Skull 1869,2,0,0,1
|
||||
abbey01,250,370,49,50 monster Ghoul 1036,4,0,0,1
|
||||
abbey01,374,207,39,100 monster Banshee 1867,3,0,0,1
|
||||
abbey01,374,207,39,100 monster Hell Poodle 1866,1,0,0,1
|
||||
abbey01,374,207,39,100 monster Zombie Slaughter 1864,1,0,0,1
|
||||
abbey01,374,207,39,100 monster Ragged Zombie 1865,2,0,0,1
|
||||
abbey01,374,207,39,100 monster Flame Skull 1869,1,0,0,1
|
||||
abbey01,374,207,39,100 monster Ghoul 1036,4,0,0,1
|
||||
abbey01,283,283,99,100 monster Banshee 1867,10,0,0,1
|
||||
abbey01,283,283,99,100 monster Hell Poodle 1866,5,0,0,1
|
||||
abbey01,283,283,99,100 monster Zombie Slaughter 1864,7,0,0,1
|
||||
abbey01,283,283,99,100 monster Ragged Zombie 1865,7,0,0,1
|
||||
abbey01,283,283,99,100 monster Flame Skull 1869,3,0,0,1
|
||||
abbey01,283,283,99,100 monster Ghoul 1036,10,0,0,1
|
||||
abbey01,71,67,64,58 monster Banshee 1867,3,0,0,1
|
||||
abbey01,71,67,64,58 monster Zombie Slaughter 1864,3,0,0,1
|
||||
abbey01,71,67,64,58 monster Ragged Zombie 1865,3,0,0,1
|
||||
abbey01,71,67,64,58 monster Flame Skull 1869,1,0,0,1
|
||||
abbey01,71,67,64,58 monster Ghoul 1036,10,0,0,1
|
||||
abbey01,71,67,64,58 monster Zombie Slaughter 1864,4,0,0,1
|
||||
abbey01,71,67,64,58 monster Ragged Zombie 1865,4,0,0,1
|
||||
abbey01,71,67,64,58 monster Flame Skull 1869,3,0,0,1
|
||||
abbey01,71,67,64,58 monster Ghoul 1036,10,0,0,1
|
||||
abbey01,260,70,35,30 monster Banshee 1867,7,0,0,1
|
||||
abbey01,260,70,35,30 monster Hell Poodle 1866,1,0,0,1
|
||||
abbey01,260,70,35,30 monster Zombie Slaughter 1864,1,0,0,1
|
||||
abbey01,260,70,35,30 monster Ragged Zombie 1865,2,0,0,1
|
||||
abbey01,260,70,35,30 monster Flame Skull 1869,1,0,0,1
|
||||
abbey01,260,70,35,30 monster Ghoul 1036,4,0,0,1
|
||||
abbey01,260,100,35,30 monster Banshee 1867,7,0,0,1
|
||||
abbey01,260,100,35,30 monster Hell Poodle 1866,1,0,0,1
|
||||
abbey01,260,100,35,30 monster Zombie Slaughter 1864,1,0,0,1
|
||||
abbey01,260,100,35,30 monster Ragged Zombie 1865,2,0,0,1
|
||||
abbey01,260,100,35,30 monster Flame Skull 1869,1,0,0,1
|
||||
abbey01,260,100,35,30 monster Ghoul 1036,4,0,0,1
|
||||
abbey01,0,0 monster Banshee 1867,30
|
||||
abbey01,97,270,87,87 monster Banshee 1867,30
|
||||
abbey01,97,270,87,87 monster Hell Poodle 1866,15
|
||||
abbey01,97,270,87,87 monster Zombie Slaughter 1864,10
|
||||
abbey01,97,270,87,87 monster Ragged Zombie 1865,10
|
||||
abbey01,97,270,87,87 monster Flame Skull 1869,9
|
||||
abbey01,97,270,87,87 monster Ghoul 1036,10
|
||||
abbey01,250,370,49,50 monster Banshee 1867,3
|
||||
abbey01,250,370,49,50 monster Hell Poodle 1866,2
|
||||
abbey01,250,370,49,50 monster Zombie Slaughter 1864,3
|
||||
abbey01,250,370,49,50 monster Ragged Zombie 1865,3
|
||||
abbey01,250,370,49,50 monster Flame Skull 1869,2
|
||||
abbey01,250,370,49,50 monster Ghoul 1036,4
|
||||
abbey01,374,207,39,100 monster Banshee 1867,3
|
||||
abbey01,374,207,39,100 monster Hell Poodle 1866,1
|
||||
abbey01,374,207,39,100 monster Zombie Slaughter 1864,1
|
||||
abbey01,374,207,39,100 monster Ragged Zombie 1865,2
|
||||
abbey01,374,207,39,100 monster Flame Skull 1869,1
|
||||
abbey01,374,207,39,100 monster Ghoul 1036,4
|
||||
abbey01,283,283,99,100 monster Banshee 1867,10
|
||||
abbey01,283,283,99,100 monster Hell Poodle 1866,5
|
||||
abbey01,283,283,99,100 monster Zombie Slaughter 1864,7
|
||||
abbey01,283,283,99,100 monster Ragged Zombie 1865,7
|
||||
abbey01,283,283,99,100 monster Flame Skull 1869,3
|
||||
abbey01,283,283,99,100 monster Ghoul 1036,10
|
||||
abbey01,71,67,64,58 monster Banshee 1867,3
|
||||
abbey01,71,67,64,58 monster Zombie Slaughter 1864,3
|
||||
abbey01,71,67,64,58 monster Ragged Zombie 1865,3
|
||||
abbey01,71,67,64,58 monster Flame Skull 1869,1
|
||||
abbey01,71,67,64,58 monster Ghoul 1036,10
|
||||
abbey01,71,67,64,58 monster Zombie Slaughter 1864,4
|
||||
abbey01,71,67,64,58 monster Ragged Zombie 1865,4
|
||||
abbey01,71,67,64,58 monster Flame Skull 1869,3
|
||||
abbey01,71,67,64,58 monster Ghoul 1036,10
|
||||
abbey01,260,70,35,30 monster Banshee 1867,7
|
||||
abbey01,260,70,35,30 monster Hell Poodle 1866,1
|
||||
abbey01,260,70,35,30 monster Zombie Slaughter 1864,1
|
||||
abbey01,260,70,35,30 monster Ragged Zombie 1865,2
|
||||
abbey01,260,70,35,30 monster Flame Skull 1869,1
|
||||
abbey01,260,70,35,30 monster Ghoul 1036,4
|
||||
abbey01,260,100,35,30 monster Banshee 1867,7
|
||||
abbey01,260,100,35,30 monster Hell Poodle 1866,1
|
||||
abbey01,260,100,35,30 monster Zombie Slaughter 1864,1
|
||||
abbey01,260,100,35,30 monster Ragged Zombie 1865,2
|
||||
abbey01,260,100,35,30 monster Flame Skull 1869,1
|
||||
abbey01,260,100,35,30 monster Ghoul 1036,4
|
||||
|
||||
// Cursed Abbey Dungeon 2
|
||||
abbey02,150,66,36,64 monster Zombie Slaughter 1864,30,60000,0,1
|
||||
abbey02,150,66,36,64 monster Ragged Zombie 1865,10,0,0,1
|
||||
abbey02,150,66,36,64 monster Flame Skull 1869,3,0,0,1
|
||||
abbey02,150,66,36,64 monster Necromancer 1870,1,0,0,1
|
||||
abbey02,67,75,46,54 monster Zombie Slaughter 1864,30,124000,0,1
|
||||
abbey02,67,75,46,54 monster Ragged Zombie 1865,10,0,0,1
|
||||
abbey02,67,75,46,54 monster Flame Skull 1869,3,0,0,1
|
||||
abbey02,67,75,46,54 monster Necromancer 1870,1,0,0,1
|
||||
abbey02,232,76,46,54 monster Zombie Slaughter 1864,30,63000,0,1
|
||||
abbey02,232,76,46,54 monster Ragged Zombie 1865,10,0,0,1
|
||||
abbey02,232,76,46,54 monster Flame Skull 1869,3,0,0,1
|
||||
abbey02,232,76,46,54 monster Necromancer 1870,1,0,0,1
|
||||
abbey02,150,66,36,64 monster Zombie Slaughter 1864,30,60000
|
||||
abbey02,150,66,36,64 monster Ragged Zombie 1865,10
|
||||
abbey02,150,66,36,64 monster Flame Skull 1869,3
|
||||
abbey02,150,66,36,64 monster Necromancer 1870,1
|
||||
abbey02,67,75,46,54 monster Zombie Slaughter 1864,30,124000
|
||||
abbey02,67,75,46,54 monster Ragged Zombie 1865,10
|
||||
abbey02,67,75,46,54 monster Flame Skull 1869,3
|
||||
abbey02,67,75,46,54 monster Necromancer 1870,1
|
||||
abbey02,232,76,46,54 monster Zombie Slaughter 1864,30,63000
|
||||
abbey02,232,76,46,54 monster Ragged Zombie 1865,10
|
||||
abbey02,232,76,46,54 monster Flame Skull 1869,3
|
||||
abbey02,232,76,46,54 monster Necromancer 1870,1
|
||||
abbey02,236,78,21,18 boss_monster Fallen Bishop Hibram 1871,1,7200000,600000,1
|
||||
abbey02,150,153,142,23 monster Zombie Slaughter 1864,30,122000,0,1
|
||||
abbey02,150,153,142,23 monster Ragged Zombie 1865,10,0,0,1
|
||||
abbey02,150,153,142,23 monster Flame Skull 1869,3,0,0,1
|
||||
abbey02,150,153,142,23 monster Necromancer 1870,1,0,0,1
|
||||
abbey02,68,220,46,58 monster Zombie Slaughter 1864,30,6000,0,1
|
||||
abbey02,68,220,46,58 monster Ragged Zombie 1865,10,0,0,1
|
||||
abbey02,68,220,46,58 monster Flame Skull 1869,3,0,0,1
|
||||
abbey02,68,220,46,58 monster Necromancer 1870,1,0,0,1
|
||||
abbey02,150,240,35,44 monster Zombie Slaughter 1864,30,120000,0,1
|
||||
abbey02,150,240,35,44 monster Ragged Zombie 1865,10,0,0,1
|
||||
abbey02,150,240,35,44 monster Flame Skull 1869,3,0,0,1
|
||||
abbey02,150,240,35,44 monster Necromancer 1870,1,0,0,1
|
||||
abbey02,232,220,46,58 monster Zombie Slaughter 1864,30,60000,0,1
|
||||
abbey02,232,220,46,58 monster Ragged Zombie 1865,10,0,0,1
|
||||
abbey02,232,220,46,58 monster Flame Skull 1869,3,0,0,1
|
||||
abbey02,232,220,46,58 monster Necromancer 1870,1,0,0,1
|
||||
abbey02,150,153,142,23 monster Zombie Slaughter 1864,30,122000
|
||||
abbey02,150,153,142,23 monster Ragged Zombie 1865,10
|
||||
abbey02,150,153,142,23 monster Flame Skull 1869,3
|
||||
abbey02,150,153,142,23 monster Necromancer 1870,1
|
||||
abbey02,68,220,46,58 monster Zombie Slaughter 1864,30,6000
|
||||
abbey02,68,220,46,58 monster Ragged Zombie 1865,10
|
||||
abbey02,68,220,46,58 monster Flame Skull 1869,3
|
||||
abbey02,68,220,46,58 monster Necromancer 1870,1
|
||||
abbey02,150,240,35,44 monster Zombie Slaughter 1864,30,120000
|
||||
abbey02,150,240,35,44 monster Ragged Zombie 1865,10
|
||||
abbey02,150,240,35,44 monster Flame Skull 1869,3
|
||||
abbey02,150,240,35,44 monster Necromancer 1870,1
|
||||
abbey02,232,220,46,58 monster Zombie Slaughter 1864,30,60000
|
||||
abbey02,232,220,46,58 monster Ragged Zombie 1865,10
|
||||
abbey02,232,220,46,58 monster Flame Skull 1869,3
|
||||
abbey02,232,220,46,58 monster Necromancer 1870,1
|
||||
|
||||
// Cursed Abbey Dungeon 3
|
||||
abbey03,0,0,0,0 boss_monster Beelzebub 1873,1,43200000,600000,1
|
||||
abbey03,120,212,116,24 monster Necromancer 1870,10,0,0,1
|
||||
abbey03,120,212,116,24 monster Banshee 1867,10,0,0,1
|
||||
abbey03,120,212,116,24 monster Flame Skull 1869,5,0,0,1
|
||||
abbey03,122,152,111,36 monster Necromancer 1870,20,0,0,1
|
||||
abbey03,122,152,111,36 monster Banshee 1867,10,0,0,1
|
||||
abbey03,122,152,111,36 monster Flame Skull 1869,10,0,0,1
|
||||
abbey03,120,64,117,53 monster Necromancer 1870,30,0,0,1
|
||||
abbey03,120,64,117,53 monster Banshee 1867,10,0,0,1
|
||||
abbey03,120,64,117,53 monster Flame Skull 1869,10,0,0,1
|
||||
abbey03,120,212,116,24 monster Necromancer 1870,10
|
||||
abbey03,120,212,116,24 monster Banshee 1867,10
|
||||
abbey03,120,212,116,24 monster Flame Skull 1869,5
|
||||
abbey03,122,152,111,36 monster Necromancer 1870,20
|
||||
abbey03,122,152,111,36 monster Banshee 1867,10
|
||||
abbey03,122,152,111,36 monster Flame Skull 1869,10
|
||||
abbey03,120,64,117,53 monster Necromancer 1870,30
|
||||
abbey03,120,64,117,53 monster Banshee 1867,10
|
||||
abbey03,120,64,117,53 monster Flame Skull 1869,10
|
||||
|
||||
@@ -16,47 +16,47 @@
|
||||
//==================================================
|
||||
// abyss_01 - Abyss Lakes Underground Cave F1
|
||||
//==================================================
|
||||
abyss_01,0,0,0,0 monster Mimic 1191,10,600000,0,0
|
||||
abyss_01,0,0,0,0 monster Ancient Mimic 1699,10,600000,0,0
|
||||
abyss_01,152,205,130,70 monster Ferus 1714,10,0,0,0
|
||||
abyss_01,152,205,130,70 monster Ferus 1717,25,300000,0,0
|
||||
abyss_01,152,205,130,70 monster Novus 1715,3,0,0,0
|
||||
abyss_01,152,205,130,70 monster Novus 1718,3,0,0,0
|
||||
abyss_01,103,93,85,70 monster Ferus 1714,10,0,0,0
|
||||
abyss_01,103,93,85,70 monster Ferus 1717,15,300000,0,0
|
||||
abyss_01,103,93,85,70 monster Novus 1715,3,0,0,0
|
||||
abyss_01,103,93,85,70 monster Novus 1718,3,0,0,0
|
||||
abyss_01,195,102,85,70 monster Ferus 1714,10,0,0,0
|
||||
abyss_01,195,102,85,70 monster Ferus 1717,15,300000,0,0
|
||||
abyss_01,195,102,85,70 monster Novus 1715,3,0,0,0
|
||||
abyss_01,195,102,85,70 monster Novus 1718,3,0,0,0
|
||||
abyss_01,110,170,15,15 monster Penomena 1216,15,660000,300000,0
|
||||
abyss_01,195,147,5,10 monster Penomena 1216,5,720000,300000,0
|
||||
abyss_01,140,100,15,5 monster Penomena 1216,10,780000,300000,0
|
||||
abyss_01,260,40,14,14 monster Dragon Egg 1721,3,1200000,600000,0
|
||||
abyss_01,150,160,50,50 monster Dragon Egg 1721,5,1800000,600000,0
|
||||
abyss_01,0,0 monster Mimic 1191,10,600000
|
||||
abyss_01,0,0 monster Ancient Mimic 1699,10,600000
|
||||
abyss_01,152,205,130,70 monster Ferus 1714,10
|
||||
abyss_01,152,205,130,70 monster Ferus 1717,25,300000
|
||||
abyss_01,152,205,130,70 monster Novus 1715,3
|
||||
abyss_01,152,205,130,70 monster Novus 1718,3
|
||||
abyss_01,103,93,85,70 monster Ferus 1714,10
|
||||
abyss_01,103,93,85,70 monster Ferus 1717,15,300000
|
||||
abyss_01,103,93,85,70 monster Novus 1715,3
|
||||
abyss_01,103,93,85,70 monster Novus 1718,3
|
||||
abyss_01,195,102,85,70 monster Ferus 1714,10
|
||||
abyss_01,195,102,85,70 monster Ferus 1717,15,300000
|
||||
abyss_01,195,102,85,70 monster Novus 1715,3
|
||||
abyss_01,195,102,85,70 monster Novus 1718,3
|
||||
abyss_01,110,170,15,15 monster Penomena 1216,15,660000,300000
|
||||
abyss_01,195,147,5,10 monster Penomena 1216,5,720000,300000
|
||||
abyss_01,140,100,15,5 monster Penomena 1216,10,780000,300000
|
||||
abyss_01,260,40,14,14 monster Dragon Egg 1721,3,1200000,600000
|
||||
abyss_01,150,160,50,50 monster Dragon Egg 1721,5,1800000,600000
|
||||
|
||||
//==================================================
|
||||
// abyss_02 - Abyss Lakes Underground Cave F2
|
||||
//==================================================
|
||||
abyss_02,0,0,0,0 monster Mimic 1191,10,900000,0,0
|
||||
abyss_02,0,0,0,0 monster Ancient Mimic 1699,10,900000,0,0
|
||||
abyss_02,0,0,0,0 monster Ferus 1714,50,300000,0,0
|
||||
abyss_02,0,0,0,0 monster Acidus 1713,10,600000,0,0
|
||||
abyss_02,0,0,0,0 monster Acidus 1716,60,300000,0,0
|
||||
abyss_02,0,0,0,0 monster Novus 1715,5,0,0,0
|
||||
abyss_02,0,0,0,0 monster Novus 1718,5,0,0,0
|
||||
abyss_02,0,0,0,0 monster Dragon Egg 1721,10,1800000,600000,0
|
||||
abyss_02,0,0 monster Mimic 1191,10,900000
|
||||
abyss_02,0,0 monster Ancient Mimic 1699,10,900000
|
||||
abyss_02,0,0 monster Ferus 1714,50,300000
|
||||
abyss_02,0,0 monster Acidus 1713,10,600000
|
||||
abyss_02,0,0 monster Acidus 1716,60,300000
|
||||
abyss_02,0,0 monster Novus 1715,5
|
||||
abyss_02,0,0 monster Novus 1718,5
|
||||
abyss_02,0,0 monster Dragon Egg 1721,10,1800000,600000
|
||||
|
||||
//==================================================
|
||||
// abyss_03 - Abyss Lakes Underground Cave F3
|
||||
//==================================================
|
||||
abyss_03,0,0,0,0 monster Mimic 1191,10,300000,0,0
|
||||
abyss_03,0,0,0,0 monster Ancient Mimic 1699,10,300000,0,0
|
||||
abyss_03,0,0,0,0 monster Acidus 1713,60,600000,0,0
|
||||
abyss_03,0,0,0,0 monster Acidus 1716,10,300000,0,0
|
||||
abyss_03,0,0,0,0 monster Ferus 1714,10,300000,0,0
|
||||
abyss_03,0,0,0,0 monster Ferus 1717,10,300000,0,0
|
||||
abyss_03,0,0,0,0 monster Dragon Egg 1721,10,1800000,600000,0
|
||||
abyss_03,0,0,0,0 monster Hydrolancer 1720,3,3000000,2400000,0
|
||||
abyss_03,0,0 monster Mimic 1191,10,300000
|
||||
abyss_03,0,0 monster Ancient Mimic 1699,10,300000
|
||||
abyss_03,0,0 monster Acidus 1713,60,600000
|
||||
abyss_03,0,0 monster Acidus 1716,10,300000
|
||||
abyss_03,0,0 monster Ferus 1714,10,300000
|
||||
abyss_03,0,0 monster Ferus 1717,10,300000
|
||||
abyss_03,0,0 monster Dragon Egg 1721,10,1800000,600000
|
||||
abyss_03,0,0 monster Hydrolancer 1720,3,3000000,2400000
|
||||
abyss_03,0,0,0,0 boss_monster Detardeurus 1719,1,10800000,600000,0
|
||||
|
||||
@@ -15,50 +15,50 @@
|
||||
//==================================================
|
||||
// alde_dun01 - Clock Tower B1
|
||||
//==================================================
|
||||
alde_dun01,0,0,0,0 monster Arclouze 1194,50,0,0,0
|
||||
alde_dun01,0,0,0,0 monster Drainliar 1111,40,0,0,0
|
||||
alde_dun01,0,0 monster Arclouze 1194,50
|
||||
alde_dun01,0,0 monster Drainliar 1111,40
|
||||
|
||||
//==================================================
|
||||
// alde_dun02 - Clock Tower B2
|
||||
//==================================================
|
||||
alde_dun02,0,0,0,0 monster High Orc 1213,50,0,0,0
|
||||
alde_dun02,0,0,0,0 monster Orc Archer 1189,20,0,0,0
|
||||
alde_dun02,0,0,0,0 monster Brilight 1211,20,0,0,0
|
||||
alde_dun02,0,0,0,0 monster Arclouze 1194,20,0,0,0
|
||||
alde_dun02,0,0 monster High Orc 1213,50
|
||||
alde_dun02,0,0 monster Orc Archer 1189,20
|
||||
alde_dun02,0,0 monster Brilight 1211,20
|
||||
alde_dun02,0,0 monster Arclouze 1194,20
|
||||
|
||||
//==================================================
|
||||
// alde_dun03 - Clock Tower B3
|
||||
//==================================================
|
||||
alde_dun03,0,0,0,0 monster Cramp 1209,25,0,0,0
|
||||
alde_dun03,0,0,0,0 monster Drainliar 1111,20,0,0,0
|
||||
alde_dun03,77,28,5,5 monster Cramp 1209,3,40000,20000,0
|
||||
alde_dun03,0,0,0,0 monster Penomena 1216,45,180000,120000,0
|
||||
alde_dun03,184,61,30,30 monster Cramp 1209,10,300000,150000,0
|
||||
alde_dun03,184,61,30,30 monster Drainliar 1111,10,300000,150000,0
|
||||
alde_dun03,163,56,10,10 monster Penomena 1216,3,600000,300000,0
|
||||
alde_dun03,168,42,6,6 monster Penomena 1216,2,600000,300000,0
|
||||
alde_dun03,147,30,8,8 monster Penomena 1216,2,600000,300000,0
|
||||
alde_dun03,126,53,20,20 monster Cramp 1209,5,300000,150000,0
|
||||
alde_dun03,126,53,20,20 monster Drainliar 1111,5,300000,150000,0
|
||||
alde_dun03,102,40,10,10 monster Penomena 1216,4,600000,300000,0
|
||||
alde_dun03,130,220,40,40 monster Cramp 1209,10,300000,150000,0
|
||||
alde_dun03,130,220,40,40 monster Drainliar 1111,10,300000,150000,0
|
||||
alde_dun03,155,201,25,25 monster Penomena 1216,7,600000,300000,0
|
||||
alde_dun03,160,181,8,8 monster Penomena 1216,2,600000,300000,0
|
||||
alde_dun03,179,166,6,6 monster Penomena 1216,4,600000,300000,0
|
||||
alde_dun03,127,204,9,9 monster Penomena 1216,5,600000,300000,0
|
||||
alde_dun03,127,204,9,9 monster Cramp 1209,3,300000,150000,0
|
||||
alde_dun03,142,157,8,8 monster Penomena 1216,5,600000,300000,0
|
||||
alde_dun03,135,140,8,8 monster Penomena 1216,3,600000,300000,0
|
||||
alde_dun03,120,157,8,8 monster Penomena 1216,3,600000,300000,0
|
||||
alde_dun03,120,157,8,8 monster Drainliar 1111,10,300000,150000,0
|
||||
alde_dun03,0,0 monster Cramp 1209,25
|
||||
alde_dun03,0,0 monster Drainliar 1111,20
|
||||
alde_dun03,77,28,5,5 monster Cramp 1209,3,40000,20000
|
||||
alde_dun03,0,0 monster Penomena 1216,45,180000,120000
|
||||
alde_dun03,184,61,30,30 monster Cramp 1209,10,300000,150000
|
||||
alde_dun03,184,61,30,30 monster Drainliar 1111,10,300000,150000
|
||||
alde_dun03,163,56,10,10 monster Penomena 1216,3,600000,300000
|
||||
alde_dun03,168,42,6,6 monster Penomena 1216,2,600000,300000
|
||||
alde_dun03,147,30,8,8 monster Penomena 1216,2,600000,300000
|
||||
alde_dun03,126,53,20,20 monster Cramp 1209,5,300000,150000
|
||||
alde_dun03,126,53,20,20 monster Drainliar 1111,5,300000,150000
|
||||
alde_dun03,102,40,10,10 monster Penomena 1216,4,600000,300000
|
||||
alde_dun03,130,220,40,40 monster Cramp 1209,10,300000,150000
|
||||
alde_dun03,130,220,40,40 monster Drainliar 1111,10,300000,150000
|
||||
alde_dun03,155,201,25,25 monster Penomena 1216,7,600000,300000
|
||||
alde_dun03,160,181,8,8 monster Penomena 1216,2,600000,300000
|
||||
alde_dun03,179,166,6,6 monster Penomena 1216,4,600000,300000
|
||||
alde_dun03,127,204,9,9 monster Penomena 1216,5,600000,300000
|
||||
alde_dun03,127,204,9,9 monster Cramp 1209,3,300000,150000
|
||||
alde_dun03,142,157,8,8 monster Penomena 1216,5,600000,300000
|
||||
alde_dun03,135,140,8,8 monster Penomena 1216,3,600000,300000
|
||||
alde_dun03,120,157,8,8 monster Penomena 1216,3,600000,300000
|
||||
alde_dun03,120,157,8,8 monster Drainliar 1111,10,300000,150000
|
||||
|
||||
//==================================================
|
||||
// alde_dun04 - Clock Tower B4
|
||||
//==================================================
|
||||
alde_dun04,0,0,0,0 monster Bathory 1102,50,0,0,0
|
||||
alde_dun04,0,0,0,0 monster Joker 1131,10,0,0,0
|
||||
alde_dun04,0,0,0,0 monster Executioner 1205,1,3600000,1800000,1
|
||||
alde_dun04,0,0,0,0 monster Mysteltainn 1203,1,3600000,1800000,1
|
||||
alde_dun04,0,0,0,0 monster Ogretooth 1204,1,3600000,1800000,1
|
||||
alde_dun04,0,0,0,0 monster Whisper 1179,10,0,0,0
|
||||
alde_dun04,0,0 monster Bathory 1102,50
|
||||
alde_dun04,0,0 monster Joker 1131,10
|
||||
alde_dun04,0,0 monster Executioner 1205,1,3600000,1800000
|
||||
alde_dun04,0,0 monster Mysteltainn 1203,1,3600000,1800000
|
||||
alde_dun04,0,0 monster Ogretooth 1204,1,3600000,1800000
|
||||
alde_dun04,0,0 monster Whisper 1179,10
|
||||
|
||||
@@ -14,29 +14,29 @@
|
||||
//==================================================
|
||||
// ama_dun01 - Tatami Maze
|
||||
//==================================================
|
||||
ama_dun01,0,0,0,0 monster Miyabi Doll 1404,65,0,0,0
|
||||
ama_dun01,0,0,0,0 monster Firelock Soldier 1403,45,0,0,0
|
||||
ama_dun01,0,0,0,0 monster Shinobi 1401,2,180000,90000,0
|
||||
ama_dun01,0,0 monster Miyabi Doll 1404,65
|
||||
ama_dun01,0,0 monster Firelock Soldier 1403,45
|
||||
ama_dun01,0,0 monster Shinobi 1401,2,180000,90000
|
||||
|
||||
//==================================================
|
||||
// ama_dun02 - Battle Field in the Underground Forest
|
||||
//==================================================
|
||||
ama_dun02,0,0,0,0 monster Poison Toad 1402,35,180000,90000,0
|
||||
ama_dun02,0,0,0,0 monster Firelock Soldier 1403,20,60000,30000,0
|
||||
ama_dun02,0,0,0,0 monster Miyabi Doll 1404,5,120000,60000,0
|
||||
ama_dun02,0,0,0,0 monster Shinobi 1401,2,180000,90000,0
|
||||
ama_dun02,0,0,0,0 monster Horong 1129,10,0,0,0
|
||||
ama_dun02,0,0,0,0 monster The Paper 1375,1,180000,90000,0
|
||||
ama_dun02,0,0 monster Poison Toad 1402,35,180000,90000
|
||||
ama_dun02,0,0 monster Firelock Soldier 1403,20,60000,30000
|
||||
ama_dun02,0,0 monster Miyabi Doll 1404,5,120000,60000
|
||||
ama_dun02,0,0 monster Shinobi 1401,2,180000,90000
|
||||
ama_dun02,0,0 monster Horong 1129,10
|
||||
ama_dun02,0,0 monster The Paper 1375,1,180000,90000
|
||||
|
||||
//==================================================
|
||||
// ama_dun03 - Amatsu Underground Shrine
|
||||
//==================================================
|
||||
ama_dun03,0,0,0,0 monster Shinobi 1401,35,600000,300000,0
|
||||
ama_dun03,0,0,0,0 monster Firelock Soldier 1403,25,0,0,0
|
||||
ama_dun03,0,0,0,0 monster Miyabi Doll 1404,1,0,0,0
|
||||
ama_dun03,0,0,0,0 monster Tengu 1405,40,600000,300000,0
|
||||
ama_dun03,0,0,0,0 monster Mimic 1191,5,0,0,0
|
||||
ama_dun03,0,0,0,0 monster The Paper 1375,20,600000,300000,0
|
||||
ama_dun03,0,0 monster Shinobi 1401,35,600000,300000
|
||||
ama_dun03,0,0 monster Firelock Soldier 1403,25
|
||||
ama_dun03,0,0 monster Miyabi Doll 1404,1
|
||||
ama_dun03,0,0 monster Tengu 1405,40,600000,300000
|
||||
ama_dun03,0,0 monster Mimic 1191,5
|
||||
ama_dun03,0,0 monster The Paper 1375,20,600000,300000
|
||||
ama_dun03,0,0,0,0 boss_monster Samurai Specter 1492,1,5460000,600000,0
|
||||
ama_dun03,0,0,0,0 monster Shinobi 1401,20,5450000,3600000,0
|
||||
ama_dun03,0,0,0,0 monster Tengu 1405,15,5440000,3600000,0
|
||||
ama_dun03,0,0 monster Shinobi 1401,20,5450000,3600000
|
||||
ama_dun03,0,0 monster Tengu 1405,15,5440000,3600000
|
||||
|
||||
@@ -14,109 +14,109 @@
|
||||
//==================================================
|
||||
// anthell01 - Ant Hell F1
|
||||
//==================================================
|
||||
anthell01,0,0,0,0 monster Familiar 1005,20,0,0,0
|
||||
anthell01,0,0,0,0 monster Andre 1095,15,0,0,0
|
||||
anthell01,0,0,0,0 monster Piere 1160,50,0,0,0
|
||||
anthell01,0,0,0,0 monster Deniro 1105,40,0,0,0
|
||||
anthell01,0,0,0,0 monster Vitata 1176,10,0,0,0
|
||||
anthell01,0,0,0,0 monster Giearth 1121,1,0,0,0
|
||||
anthell01,0,0,0,0 monster Maya Purple 1289,1,7200000,3600000,1
|
||||
anthell01,28,266,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,29,266,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,28,265,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,28,264,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,28,263,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,28,262,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,29,265,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,29,264,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,29,263,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,29,262,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,30,265,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,30,264,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,30,263,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,30,262,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,30,261,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,31,264,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,31,263,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,31,262,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,32,263,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,40,270,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,40,269,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,40,268,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,40,267,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,40,266,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,40,265,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,41,269,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,41,268,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,41,267,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,41,266,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,41,265,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,30,198,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,31,198,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,32,197,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,32,196,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,31,195,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,30,195,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,31,194,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,33,195,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,33,196,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,30,190,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,31,190,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,32,189,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,32,198,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,32,187,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,32,186,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,31,186,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,40,168,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,41,168,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,42,168,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,42,167,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,42,166,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,42,165,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,41,165,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,43,165,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,44,165,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,45,165,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,44,166,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,43,166,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,30,187,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,29,186,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,38,186,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,37,186,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,36,186,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,35,186,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,36,187,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,38,184,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,38,183,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,37,183,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,99,127,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,98,127,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,97,127,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,97,126,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,97,125,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,97,124,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,97,123,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,98,121,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,99,121,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,100,121,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,101,121,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,102,121,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,104,123,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,104,122,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,104,120,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,103,120,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,103,121,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,102,121,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,105,124,0,0 monster Ant Egg 1097,1,60000,30000,0
|
||||
anthell01,0,0 monster Familiar 1005,20
|
||||
anthell01,0,0 monster Andre 1095,15
|
||||
anthell01,0,0 monster Piere 1160,50
|
||||
anthell01,0,0 monster Deniro 1105,40
|
||||
anthell01,0,0 monster Vitata 1176,10
|
||||
anthell01,0,0 monster Giearth 1121,1
|
||||
anthell01,0,0 monster Maya Purple 1289,1,7200000,3600000
|
||||
anthell01,28,266 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,29,266 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,28,265 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,28,264 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,28,263 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,28,262 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,29,265 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,29,264 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,29,263 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,29,262 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,30,265 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,30,264 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,30,263 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,30,262 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,30,261 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,31,264 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,31,263 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,31,262 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,32,263 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,40,270 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,40,269 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,40,268 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,40,267 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,40,266 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,40,265 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,41,269 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,41,268 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,41,267 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,41,266 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,41,265 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,30,198 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,31,198 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,32,197 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,32,196 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,31,195 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,30,195 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,31,194 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,33,195 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,33,196 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,30,190 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,31,190 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,32,189 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,32,198 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,32,187 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,32,186 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,31,186 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,40,168 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,41,168 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,42,168 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,42,167 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,42,166 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,42,165 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,41,165 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,43,165 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,44,165 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,45,165 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,44,166 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,43,166 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,30,187 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,29,186 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,38,186 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,37,186 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,36,186 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,35,186 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,36,187 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,38,184 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,38,183 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,37,183 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,99,127 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,98,127 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,97,127 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,97,126 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,97,125 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,97,124 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,97,123 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,98,121 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,99,121 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,100,121 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,101,121 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,102,121 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,104,123 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,104,122 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,104,120 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,103,120 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,103,121 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,102,121 monster Ant Egg 1097,1,60000,30000
|
||||
anthell01,105,124 monster Ant Egg 1097,1,60000,30000
|
||||
|
||||
//==================================================
|
||||
// anthell02 - Ant Hell F2
|
||||
//==================================================
|
||||
anthell02,0,0,0,0 monster Ant Egg 1097,15,0,0,0
|
||||
anthell02,0,0,0,0 monster Familiar 1005,20,0,0,0
|
||||
anthell02,0,0,0,0 monster Andre 1095,50,0,0,0
|
||||
anthell02,0,0,0,0 monster Piere 1160,15,0,0,0
|
||||
anthell02,0,0,0,0 monster Deniro 1105,15,0,0,0
|
||||
anthell02,0,0,0,0 monster Vitata 1176,30,0,0,0
|
||||
anthell02,0,0,0,0 monster Giearth 1121,3,0,0,0
|
||||
anthell02,0,0 monster Ant Egg 1097,15
|
||||
anthell02,0,0 monster Familiar 1005,20
|
||||
anthell02,0,0 monster Andre 1095,50
|
||||
anthell02,0,0 monster Piere 1160,15
|
||||
anthell02,0,0 monster Deniro 1105,15
|
||||
anthell02,0,0 monster Vitata 1176,30
|
||||
anthell02,0,0 monster Giearth 1121,3
|
||||
anthell02,0,0,0,0 boss_monster Maya 1147,1,7200000,600000,1
|
||||
|
||||
@@ -17,15 +17,15 @@
|
||||
//==================================================
|
||||
// ayo_dun01 - Ancient Shrine Maze
|
||||
//==================================================
|
||||
ayo_dun01,0,0,0,0 monster Leaf Cat 1586,65,0,0,0
|
||||
ayo_dun01,0,0,0,0 monster Whisper 1179,10,0,0,0
|
||||
ayo_dun01,0,0,0,0 monster Kraben 1587,5,0,0,0
|
||||
ayo_dun01,0,0,0,0 monster Ghoul 1036,30,0,0,0
|
||||
ayo_dun01,0,0 monster Leaf Cat 1586,65
|
||||
ayo_dun01,0,0 monster Whisper 1179,10
|
||||
ayo_dun01,0,0 monster Kraben 1587,5
|
||||
ayo_dun01,0,0 monster Ghoul 1036,30
|
||||
|
||||
//==================================================
|
||||
// ayo_dun02 - Inside Ancient Shrine
|
||||
//==================================================
|
||||
ayo_dun02,0,0,0,0 monster Tamruan 1584,100,0,0,0
|
||||
ayo_dun02,0,0,0,0 monster Whisper 1179,20,0,0,0
|
||||
ayo_dun02,0,0,0,0 monster Kraben 1587,20,0,0,0
|
||||
ayo_dun02,0,0 monster Tamruan 1584,100
|
||||
ayo_dun02,0,0 monster Whisper 1179,20
|
||||
ayo_dun02,0,0 monster Kraben 1587,20
|
||||
ayo_dun02,150,90,15,30 boss_monster Lady Tanee 1688,1,25200000,600000,0
|
||||
|
||||
@@ -16,25 +16,25 @@
|
||||
//==================================================
|
||||
// beach_dun - Karu, the West Cave
|
||||
//==================================================
|
||||
beach_dun,0,0,0,0 monster Medusa 1148,60,0,0,0
|
||||
beach_dun,0,0,0,0 monster Merman 1264,3,10000,5000,0
|
||||
beach_dun,0,0,0,0 monster Nereid 1255,20,0,0,0
|
||||
beach_dun,0,0,0,0 monster Pest 1256,20,0,0,0
|
||||
beach_dun,0,0 monster Medusa 1148,60
|
||||
beach_dun,0,0 monster Merman 1264,3,10000,5000
|
||||
beach_dun,0,0 monster Nereid 1255,20
|
||||
beach_dun,0,0 monster Pest 1256,20
|
||||
beach_dun,0,0,0,0 boss_monster Tao Gunka 1583,1,18000000,600000,0
|
||||
|
||||
//==================================================
|
||||
// beach_dun2 - Ruande, the North Cave
|
||||
//==================================================
|
||||
beach_dun2,0,0,0,0 monster Megalith 1274,15,0,0,0
|
||||
beach_dun2,0,0,0,0 monster Nereid 1255,10,0,0,0
|
||||
beach_dun2,0,0,0,0 monster Stalactic Golem 1278,65,5000,0,0
|
||||
beach_dun2,0,0,0,0 monster Tri Joint 1279,20,0,0,0
|
||||
beach_dun2,0,0,0,0 monster Hydra 1068,10,0,0,0
|
||||
beach_dun2,0,0 monster Megalith 1274,15
|
||||
beach_dun2,0,0 monster Nereid 1255,10
|
||||
beach_dun2,0,0 monster Stalactic Golem 1278,65,5000
|
||||
beach_dun2,0,0 monster Tri Joint 1279,20
|
||||
beach_dun2,0,0 monster Hydra 1068,10
|
||||
|
||||
//==================================================
|
||||
// beach_dun3 - Mao, the East Cave
|
||||
//==================================================
|
||||
beach_dun3,0,0,0,0 monster Nereid 1255,1,200000,100000,0
|
||||
beach_dun3,0,0,0,0 monster Thara Frog 1034,50,0,0,0
|
||||
beach_dun3,0,0,0,0 monster Hydra 1068,30,0,0,0
|
||||
beach_dun3,0,0,0,0 monster Megalodon 1064,30,0,0,0
|
||||
beach_dun3,0,0 monster Nereid 1255,1,200000,100000
|
||||
beach_dun3,0,0 monster Thara Frog 1034,50
|
||||
beach_dun3,0,0 monster Hydra 1068,30
|
||||
beach_dun3,0,0 monster Megalodon 1064,30
|
||||
|
||||
@@ -13,89 +13,89 @@
|
||||
//==================================================
|
||||
// c_tower1 - Clock Tower F1
|
||||
//==================================================
|
||||
c_tower1,0,0,0,0 monster Punk 1199,70,0,0,0
|
||||
c_tower1,0,0,0,0 monster Rideword 1195,70,0,0,0
|
||||
c_tower1,0,0,0,0 monster Clock Tower Manager 1270,1,0,0,0
|
||||
c_tower1,0,0,0,0 monster Bathory 1102,1,0,0,0
|
||||
c_tower1,0,0 monster Punk 1199,70
|
||||
c_tower1,0,0 monster Rideword 1195,70
|
||||
c_tower1,0,0 monster Clock Tower Manager 1270,1
|
||||
c_tower1,0,0 monster Bathory 1102,1
|
||||
|
||||
//==================================================
|
||||
// c_tower2 - Clock Tower F2
|
||||
//==================================================
|
||||
c_tower2,0,0,0,0 monster Punk 1199,40,0,0,0
|
||||
c_tower2,0,0,0,0 monster Clock 1269,40,0,0,0
|
||||
c_tower2,0,0,0,0 monster Rideword 1195,7,0,0,0
|
||||
c_tower2,128,100,10,10 monster Rideword 1195,1,60000,30000,0
|
||||
c_tower2,149,199,10,10 monster Rideword 1195,1,120000,60000,0
|
||||
c_tower2,149,199,10,10 monster Rideword 1195,1,300000,120000,0
|
||||
c_tower2,273,286,20,20 monster Rideword 1195,1,120000,60000,0
|
||||
c_tower2,273,286,20,20 monster Rideword 1195,1,300000,120000,0
|
||||
c_tower2,0,0,0,0 monster Mimic 1191,3,0,0,0
|
||||
c_tower2,0,0,0,0 monster Clock Tower Manager 1270,1,0,0,0
|
||||
c_tower2,0,0,0,0 monster Elder 1377,1,3600000,1800000,0
|
||||
c_tower2,0,0,0,0 monster Elder 1377,1,3600000,1800000,0
|
||||
c_tower2,0,0 monster Punk 1199,40
|
||||
c_tower2,0,0 monster Clock 1269,40
|
||||
c_tower2,0,0 monster Rideword 1195,7
|
||||
c_tower2,128,100,10,10 monster Rideword 1195,1,60000,30000
|
||||
c_tower2,149,199,10,10 monster Rideword 1195,1,120000,60000
|
||||
c_tower2,149,199,10,10 monster Rideword 1195,1,300000,120000
|
||||
c_tower2,273,286,20,20 monster Rideword 1195,1,120000,60000
|
||||
c_tower2,273,286,20,20 monster Rideword 1195,1,300000,120000
|
||||
c_tower2,0,0 monster Mimic 1191,3
|
||||
c_tower2,0,0 monster Clock Tower Manager 1270,1
|
||||
c_tower2,0,0 monster Elder 1377,1,3600000,1800000
|
||||
c_tower2,0,0 monster Elder 1377,1,3600000,1800000
|
||||
|
||||
//==================================================
|
||||
// c_tower3 - Clock Tower F3
|
||||
//==================================================
|
||||
c_tower3,0,0,0,0 monster Alarm 1193,80,0,0,0
|
||||
c_tower3,0,0,0,0 monster Rideword 1195,5,0,0,0
|
||||
c_tower3,153,220,10,10 monster Rideword 1195,1,126000,100000,0
|
||||
c_tower3,0,0,0,0 monster Mimic 1191,7,0,0,0
|
||||
c_tower3,0,0,0,0 monster Clock Tower Manager 1270,3,0,0,0
|
||||
c_tower3,0,0 monster Alarm 1193,80
|
||||
c_tower3,0,0 monster Rideword 1195,5
|
||||
c_tower3,153,220,10,10 monster Rideword 1195,1,126000,100000
|
||||
c_tower3,0,0 monster Mimic 1191,7
|
||||
c_tower3,0,0 monster Clock Tower Manager 1270,3
|
||||
|
||||
//==================================================
|
||||
// c_tower4 - Clock Tower F4
|
||||
//==================================================
|
||||
c_tower4,0,0,0,0 monster Clock Tower Manager 1270,2,1800000,0,0
|
||||
c_tower4,0,0,0,0 monster Clock Tower Manager 1270,1,3600000,0,0
|
||||
c_tower4,0,0,0,0 monster Whisper 1179,5,0,0,0
|
||||
c_tower4,0,0,0,0 monster Elder 1377,1,3600000,1800000,0
|
||||
c_tower4,0,0,0,0 monster Elder 1377,1,1800000,600000,0
|
||||
c_tower4,108,198,100,10 monster Alarm 1193,6,0,0,0
|
||||
c_tower4,108,178,100,10 monster Alarm 1193,6,0,0,0
|
||||
c_tower4,108,158,100,10 monster Alarm 1193,6,0,0,0
|
||||
c_tower4,108,138,100,10 monster Alarm 1193,6,0,0,0
|
||||
c_tower4,108,118,100,10 monster Alarm 1193,6,0,0,0
|
||||
c_tower4,108,98,100,10 monster Clock 1269,7,0,0,0
|
||||
c_tower4,108,78,100,10 monster Clock 1269,7,0,0,0
|
||||
c_tower4,108,58,100,10 monster Clock 1269,7,0,0,0
|
||||
c_tower4,108,38,100,10 monster Clock 1269,7,0,0,0
|
||||
c_tower4,108,18,100,10 monster Clock 1269,7,0,0,0
|
||||
c_tower4,108,198,100,10 monster Owl Duke 1320,3,0,0,0
|
||||
c_tower4,108,178,100,10 monster Owl Duke 1320,3,0,0,0
|
||||
c_tower4,108,158,100,10 monster Owl Duke 1320,3,0,0,0
|
||||
c_tower4,108,138,100,10 monster Owl Duke 1320,3,0,0,0
|
||||
c_tower4,108,118,100,10 monster Owl Duke 1320,3,0,0,0
|
||||
c_tower4,108,98,100,10 monster Owl Duke 1320,3,0,0,0
|
||||
c_tower4,108,78,100,10 monster Owl Duke 1320,3,0,0,0
|
||||
c_tower4,108,58,100,10 monster Owl Duke 1320,3,0,0,0
|
||||
c_tower4,108,38,100,10 monster Owl Duke 1320,3,0,0,0
|
||||
c_tower4,108,18,100,10 monster Owl Duke 1320,3,0,0,0
|
||||
c_tower4,98,180,0,0 monster Rideword 1195,1,300000,150000,1
|
||||
c_tower4,97,180,0,0 monster Rideword 1195,1,240000,150000,1
|
||||
c_tower4,96,180,0,0 monster Rideword 1195,1,350000,150000,1
|
||||
c_tower4,95,180,0,0 monster Rideword 1195,1,410000,150000,1
|
||||
c_tower4,94,180,0,0 monster Rideword 1195,1,320000,150000,1
|
||||
c_tower4,93,180,0,0 monster Rideword 1195,1,260000,150000,1
|
||||
c_tower4,92,180,0,0 monster Rideword 1195,1,280000,150000,1
|
||||
c_tower4,91,180,0,0 monster Rideword 1195,1,330000,150000,1
|
||||
c_tower4,87,180,0,0 monster Rideword 1195,1,400000,150000,1
|
||||
c_tower4,86,180,0,0 monster Rideword 1195,1,380000,150000,1
|
||||
c_tower4,80,179,0,0 monster Rideword 1195,1,360000,150000,1
|
||||
c_tower4,80,180,0,0 monster Rideword 1195,1,350000,150000,1
|
||||
c_tower4,80,181,0,0 monster Rideword 1195,1,290000,150000,1
|
||||
c_tower4,80,182,0,0 monster Rideword 1195,1,300000,150000,1
|
||||
c_tower4,80,183,0,0 monster Rideword 1195,1,340000,150000,1
|
||||
c_tower4,128,194,0,0 monster Mimic 1191,1,1800000,900000,1
|
||||
c_tower4,38,193,0,0 monster Mimic 1191,1,1800000,900000,1
|
||||
c_tower4,37,159,0,0 monster Mimic 1191,1,1800000,900000,1
|
||||
c_tower4,31,139,0,0 monster Mimic 1191,1,1800000,900000,1
|
||||
c_tower4,104,14,0,0 monster Mimic 1191,1,1800000,900000,1
|
||||
c_tower4,104,27,0,0 monster Mimic 1191,1,900000,400000,1
|
||||
c_tower4,105,24,0,0 monster Mimic 1191,1,900000,400000,1
|
||||
c_tower4,205,105,0,0 monster Mimic 1191,1,1800000,900000,1
|
||||
c_tower4,0,0,0,0 monster Mimic 1191,1,1800000,900000,1
|
||||
c_tower4,148,85,0,0 monster Mimic 1191,1,1800000,900000,1
|
||||
c_tower4,189,51,0,0 monster Mimic 1191,1,1800000,900000,1
|
||||
c_tower4,170,34,0,0 monster Mimic 1191,1,1800000,900000,1
|
||||
c_tower4,42,41,0,0 monster Executioner 1205,1,7200000,3600000,1
|
||||
c_tower4,0,0 monster Clock Tower Manager 1270,2,1800000
|
||||
c_tower4,0,0 monster Clock Tower Manager 1270,1,3600000
|
||||
c_tower4,0,0 monster Whisper 1179,5
|
||||
c_tower4,0,0 monster Elder 1377,1,3600000,1800000
|
||||
c_tower4,0,0 monster Elder 1377,1,1800000,600000
|
||||
c_tower4,108,198,100,10 monster Alarm 1193,6
|
||||
c_tower4,108,178,100,10 monster Alarm 1193,6
|
||||
c_tower4,108,158,100,10 monster Alarm 1193,6
|
||||
c_tower4,108,138,100,10 monster Alarm 1193,6
|
||||
c_tower4,108,118,100,10 monster Alarm 1193,6
|
||||
c_tower4,108,98,100,10 monster Clock 1269,7
|
||||
c_tower4,108,78,100,10 monster Clock 1269,7
|
||||
c_tower4,108,58,100,10 monster Clock 1269,7
|
||||
c_tower4,108,38,100,10 monster Clock 1269,7
|
||||
c_tower4,108,18,100,10 monster Clock 1269,7
|
||||
c_tower4,108,198,100,10 monster Owl Duke 1320,3
|
||||
c_tower4,108,178,100,10 monster Owl Duke 1320,3
|
||||
c_tower4,108,158,100,10 monster Owl Duke 1320,3
|
||||
c_tower4,108,138,100,10 monster Owl Duke 1320,3
|
||||
c_tower4,108,118,100,10 monster Owl Duke 1320,3
|
||||
c_tower4,108,98,100,10 monster Owl Duke 1320,3
|
||||
c_tower4,108,78,100,10 monster Owl Duke 1320,3
|
||||
c_tower4,108,58,100,10 monster Owl Duke 1320,3
|
||||
c_tower4,108,38,100,10 monster Owl Duke 1320,3
|
||||
c_tower4,108,18,100,10 monster Owl Duke 1320,3
|
||||
c_tower4,98,180 monster Rideword 1195,1,300000,150000
|
||||
c_tower4,97,180 monster Rideword 1195,1,240000,150000
|
||||
c_tower4,96,180 monster Rideword 1195,1,350000,150000
|
||||
c_tower4,95,180 monster Rideword 1195,1,410000,150000
|
||||
c_tower4,94,180 monster Rideword 1195,1,320000,150000
|
||||
c_tower4,93,180 monster Rideword 1195,1,260000,150000
|
||||
c_tower4,92,180 monster Rideword 1195,1,280000,150000
|
||||
c_tower4,91,180 monster Rideword 1195,1,330000,150000
|
||||
c_tower4,87,180 monster Rideword 1195,1,400000,150000
|
||||
c_tower4,86,180 monster Rideword 1195,1,380000,150000
|
||||
c_tower4,80,179 monster Rideword 1195,1,360000,150000
|
||||
c_tower4,80,180 monster Rideword 1195,1,350000,150000
|
||||
c_tower4,80,181 monster Rideword 1195,1,290000,150000
|
||||
c_tower4,80,182 monster Rideword 1195,1,300000,150000
|
||||
c_tower4,80,183 monster Rideword 1195,1,340000,150000
|
||||
c_tower4,128,194 monster Mimic 1191,1,1800000,900000
|
||||
c_tower4,38,193 monster Mimic 1191,1,1800000,900000
|
||||
c_tower4,37,159 monster Mimic 1191,1,1800000,900000
|
||||
c_tower4,31,139 monster Mimic 1191,1,1800000,900000
|
||||
c_tower4,104,14 monster Mimic 1191,1,1800000,900000
|
||||
c_tower4,104,27 monster Mimic 1191,1,900000,400000
|
||||
c_tower4,105,24 monster Mimic 1191,1,900000,400000
|
||||
c_tower4,205,105 monster Mimic 1191,1,1800000,900000
|
||||
c_tower4,0,0 monster Mimic 1191,1,1800000,900000
|
||||
c_tower4,148,85 monster Mimic 1191,1,1800000,900000
|
||||
c_tower4,189,51 monster Mimic 1191,1,1800000,900000
|
||||
c_tower4,170,34 monster Mimic 1191,1,1800000,900000
|
||||
c_tower4,42,41 monster Executioner 1205,1,7200000,3600000
|
||||
|
||||
@@ -19,22 +19,22 @@
|
||||
//==================================================
|
||||
// ein_dun01 - Mine Dungeon F1
|
||||
//==================================================
|
||||
ein_dun01,0,0,0,0 monster Pitman 1616,70,0,0,0
|
||||
ein_dun01,0,0,0,0 monster Noxious 1620,30,300000,0,0
|
||||
ein_dun01,0,0,0,0 monster Porcellio 1619,30,0,0,0
|
||||
ein_dun01,0,0,0,0 monster Venomous 1621,10,300000,0,0
|
||||
ein_dun01,0,0,0,0 monster Old Stove 1617,1,1800000,600000,0
|
||||
ein_dun01,0,0,0,0 monster Ungoliant 1618,1,3600000,3000000,0
|
||||
ein_dun01,0,0 monster Pitman 1616,70
|
||||
ein_dun01,0,0 monster Noxious 1620,30,300000
|
||||
ein_dun01,0,0 monster Porcellio 1619,30
|
||||
ein_dun01,0,0 monster Venomous 1621,10,300000
|
||||
ein_dun01,0,0 monster Old Stove 1617,1,1800000,600000
|
||||
ein_dun01,0,0 monster Ungoliant 1618,1,3600000,3000000
|
||||
|
||||
//==================================================
|
||||
// ein_dun02 - Mine Dungeon F2
|
||||
//==================================================
|
||||
ein_dun02,0,0,0,0 monster Obsidian 1615,10,0,0,0
|
||||
ein_dun02,0,0,0,0 monster Mineral 1614,15,0,0,0
|
||||
ein_dun02,75,151,60,133 monster Obsidian 1615,30,300000,0,0
|
||||
ein_dun02,230,155,63,140 monster Mineral 1614,35,300000,0,0
|
||||
ein_dun02,0,0,0,0 monster Teddy Bear 1622,10,0,0,0
|
||||
ein_dun02,155,230,140,55 monster Teddy Bear 1622,20,480000,0,0
|
||||
ein_dun02,0,0,0,0 monster Old Stove 1617,10,0,0,0
|
||||
ein_dun02,154,80,134,55 monster Old Stove 1617,20,480000,0,0
|
||||
ein_dun02,0,0 monster Obsidian 1615,10
|
||||
ein_dun02,0,0 monster Mineral 1614,15
|
||||
ein_dun02,75,151,60,133 monster Obsidian 1615,30,300000
|
||||
ein_dun02,230,155,63,140 monster Mineral 1614,35,300000
|
||||
ein_dun02,0,0 monster Teddy Bear 1622,10
|
||||
ein_dun02,155,230,140,55 monster Teddy Bear 1622,20,480000
|
||||
ein_dun02,0,0 monster Old Stove 1617,10
|
||||
ein_dun02,154,80,134,55 monster Old Stove 1617,20,480000
|
||||
ein_dun02,0,0,0,0 boss_monster RSX-0806 1623,1,7500000,600000,0
|
||||
|
||||
@@ -15,84 +15,84 @@
|
||||
//==================================================
|
||||
// gef_dun00 - Geffen Dungeon F1
|
||||
//==================================================
|
||||
gef_dun00,0,0,0,0 monster Hunter Fly 1035,30,60000,30000,0
|
||||
gef_dun00,0,0,0,0 monster Poporing 1031,15,0,0,0
|
||||
gef_dun00,0,0,0,0 monster Poison Spore 1077,25,0,0,0
|
||||
gef_dun00,91,106,0,0 monster Red Plant 1078,1,300000,150000,0
|
||||
gef_dun00,92,108,0,0 monster Yellow Plant 1081,1,300000,150000,0
|
||||
gef_dun00,114,106,0,0 monster Green Plant 1080,1,300000,150000,0
|
||||
gef_dun00,0,0,0,0 monster Red Plant 1078,1,300000,150000,0
|
||||
gef_dun00,0,0,0,0 monster Shining Plant 1083,1,3000000,1500000,0
|
||||
gef_dun00,0,0,0,0 monster Red Plant 1078,10,180000,90000,1
|
||||
gef_dun00,89,111,3,3 monster Black Mushroom 1084,3,180000,90000,1
|
||||
gef_dun00,121,109,3,3 monster Black Mushroom 1084,3,180000,90000,1
|
||||
gef_dun00,0,0 monster Hunter Fly 1035,30,60000,30000
|
||||
gef_dun00,0,0 monster Poporing 1031,15
|
||||
gef_dun00,0,0 monster Poison Spore 1077,25
|
||||
gef_dun00,91,106 monster Red Plant 1078,1,300000,150000
|
||||
gef_dun00,92,108 monster Yellow Plant 1081,1,300000,150000
|
||||
gef_dun00,114,106 monster Green Plant 1080,1,300000,150000
|
||||
gef_dun00,0,0 monster Red Plant 1078,1,300000,150000
|
||||
gef_dun00,0,0 monster Shining Plant 1083,1,3000000,1500000
|
||||
gef_dun00,0,0 monster Red Plant 1078,10,180000,90000
|
||||
gef_dun00,89,111,3,3 monster Black Mushroom 1084,3,180000,90000
|
||||
gef_dun00,121,109,3,3 monster Black Mushroom 1084,3,180000,90000
|
||||
|
||||
//==================================================
|
||||
// gef_dun01 - Geffen Dungeon F2
|
||||
//==================================================
|
||||
gef_dun01,0,0,0,0 monster Drainliar 1111,20,0,0,0
|
||||
gef_dun01,0,0,0,0 monster Nightmare 1061,30,0,0,0
|
||||
gef_dun01,0,0,0,0 monster Ogretooth 1204,1,1800000,1200000,0
|
||||
gef_dun01,0,0,0,0 monster Zombie 1015,25,0,0,0
|
||||
gef_dun01,0,0,0,0 monster Ghoul 1036,40,0,0,0
|
||||
gef_dun01,0,0,0,0 monster Jakk 1130,40,300000,100000,0
|
||||
gef_dun01,234,121,0,0 monster Blue Plant 1079,1,300000,100000,0
|
||||
gef_dun01,0,0 monster Drainliar 1111,20
|
||||
gef_dun01,0,0 monster Nightmare 1061,30
|
||||
gef_dun01,0,0 monster Ogretooth 1204,1,1800000,1200000
|
||||
gef_dun01,0,0 monster Zombie 1015,25
|
||||
gef_dun01,0,0 monster Ghoul 1036,40
|
||||
gef_dun01,0,0 monster Jakk 1130,40,300000,100000
|
||||
gef_dun01,234,121 monster Blue Plant 1079,1,300000,100000
|
||||
gef_dun01,0,0,0,0 boss_monster Dracula 1389,1,3600000,600000,1
|
||||
gef_dun01,0,0,0,0 monster Black Mushroom 1084,5,180000,90000,1
|
||||
gef_dun01,188,104,10,10 monster White Plant 1082,3,180000,90000,1
|
||||
gef_dun01,263,115,10,10 monster White Plant 1082,3,180000,90000,1
|
||||
gef_dun01,48,67,10,10 monster White Plant 1082,2,180000,90000,1
|
||||
gef_dun01,150,237,10,10 monster White Plant 1082,2,180000,90000,1
|
||||
gef_dun01,0,0 monster Black Mushroom 1084,5,180000,90000
|
||||
gef_dun01,188,104,10,10 monster White Plant 1082,3,180000,90000
|
||||
gef_dun01,263,115,10,10 monster White Plant 1082,3,180000,90000
|
||||
gef_dun01,48,67,10,10 monster White Plant 1082,2,180000,90000
|
||||
gef_dun01,150,237,10,10 monster White Plant 1082,2,180000,90000
|
||||
|
||||
//==================================================
|
||||
// gef_dun02 - Geffenia
|
||||
//==================================================
|
||||
gef_dun02,0,0,0,0 monster Ghoul 1036,10,0,0,0
|
||||
gef_dun02,0,0,0,0 monster Whisper 1179,20,0,0,0
|
||||
gef_dun02,0,0,0,0 monster Hunter Fly 1035,10,0,0,0
|
||||
gef_dun02,0,0,0,0 monster Marionette 1143,20,0,0,0
|
||||
gef_dun02,0,0,0,0 monster Deviruchi 1109,35,0,0,0
|
||||
gef_dun02,0,0,0,0 monster Nightmare 1061,40,60000,0,0
|
||||
gef_dun02,0,0 monster Ghoul 1036,10
|
||||
gef_dun02,0,0 monster Whisper 1179,20
|
||||
gef_dun02,0,0 monster Hunter Fly 1035,10
|
||||
gef_dun02,0,0 monster Marionette 1143,20
|
||||
gef_dun02,0,0 monster Deviruchi 1109,35
|
||||
gef_dun02,0,0 monster Nightmare 1061,40,60000
|
||||
gef_dun02,0,0,0,0 boss_monster Doppelganger 1046,1,7200000,600000,1
|
||||
gef_dun02,214,212,10,10 monster White Plant 1082,3,180000,90000,1
|
||||
gef_dun02,215,67,10,10 monster White Plant 1082,3,180000,90000,1
|
||||
gef_dun02,72,210,20,20 monster White Plant 1082,3,180000,90000,1
|
||||
gef_dun02,106,151,20,7 monster White Plant 1082,3,180000,90000,1
|
||||
gef_dun02,58,167,10,10 monster Shining Plant 1083,1,1800000,900000,1
|
||||
gef_dun02,185,83,3,3 monster Shining Plant 1083,1,1800000,900000,1
|
||||
gef_dun02,214,212,10,10 monster White Plant 1082,3,180000,90000
|
||||
gef_dun02,215,67,10,10 monster White Plant 1082,3,180000,90000
|
||||
gef_dun02,72,210,20,20 monster White Plant 1082,3,180000,90000
|
||||
gef_dun02,106,151,20,7 monster White Plant 1082,3,180000,90000
|
||||
gef_dun02,58,167,10,10 monster Shining Plant 1083,1,1800000,900000
|
||||
gef_dun02,185,83,3,3 monster Shining Plant 1083,1,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// gef_dun03 - Geffenia (Event Map)
|
||||
//==================================================
|
||||
gef_dun03,0,0,0,0 monster Hellion Revenant 1626,1,600000,300000,0
|
||||
gef_dun03,0,0,0,0 monster Wraith 1192,8,60000,30000,0
|
||||
gef_dun03,0,0,0,0 monster Wraith Dead 1291,2,60000,30000,0
|
||||
gef_dun03,0,0,0,0 monster Wind Ghost 1263,3,60000,30000,0
|
||||
gef_dun03,0,0,0,0 monster Shining Plant 1083,3,1800000,900000,1
|
||||
gef_dun03,0,0,0,0 monster White Plant 1082,10,180000,90000,1
|
||||
gef_dun03,0,0 monster Hellion Revenant 1626,1,600000,300000
|
||||
gef_dun03,0,0 monster Wraith 1192,8,60000,30000
|
||||
gef_dun03,0,0 monster Wraith Dead 1291,2,60000,30000
|
||||
gef_dun03,0,0 monster Wind Ghost 1263,3,60000,30000
|
||||
gef_dun03,0,0 monster Shining Plant 1083,3,1800000,900000
|
||||
gef_dun03,0,0 monster White Plant 1082,10,180000,90000
|
||||
|
||||
//==================================================
|
||||
// Old Event Spawn in case you want to use them
|
||||
//==================================================
|
||||
//gef_dun03,0,0,0,0 monster Baphomet 1039,1,7200000,7200000,1
|
||||
//gef_dun03,0,0,0,0 monster Doppelganger 1046,1,7200000,7200000,1
|
||||
//gef_dun03,0,0,0,0 monster Deviruchi 1109,8,0,0,0
|
||||
//gef_dun03,0,0,0,0 monster Joker 1131,5,300000,100000,0
|
||||
//gef_dun03,0,0,0,0 monster Khalitzburg 1132,2,0,0,0
|
||||
//gef_dun03,0,0,0,0 monster Knight of Abyss 1219,2,300000,0,0
|
||||
//gef_dun03,0,0,0,0 monster Gryphon 1259,1,7200000,3600000,1
|
||||
//gef_dun03,0,0,0,0 monster Blood Knight 1268,2,300000,0,0
|
||||
//gef_dun03,0,0,0,0 monster Dark Lord 1272,1,7200000,7200000,1
|
||||
//gef_dun03,0,0,0,0 monster Alice 1275,3,0,0,0
|
||||
//gef_dun03,0,0,0,0 monster Chimera 1283,1,7200000,7200000,1
|
||||
//gef_dun03,0,0,0,0 monster Mini Demon 1292,2,300000,0,0
|
||||
//gef_dun03,0,0,0,0 monster Dark Illusion 1302,2,300000,0,0
|
||||
//gef_dun03,0,0,0,0 monster Apocalypse 1365,2,300000,0,0
|
||||
//gef_dun03,0,0,0,0 monster Succubus 1370,10,0,0,0
|
||||
//gef_dun03,0,0,0,0 monster Fake Angel 1371,8,0,0,0
|
||||
//gef_dun03,0,0,0,0 monster Lord of Death 1373,1,7200000,7200000,1
|
||||
//gef_dun03,0,0,0,0 monster Incubus 1374,10,0,0,0
|
||||
//gef_dun03,0,0,0,0 monster Nightmare Terror 1379,3,0,0,0
|
||||
//gef_dun03,0,0,0,0 monster Violy 1390,10,0,0,0
|
||||
//gef_dun03,0,0,0,0 monster Shining Plant 1083,3,1800000,900000,1
|
||||
//gef_dun03,0,0,0,0 monster White Plant 1082,10,180000,90000,1
|
||||
//gef_dun03,0,0 monster Baphomet 1039,1,7200000,7200000
|
||||
//gef_dun03,0,0 monster Doppelganger 1046,1,7200000,7200000
|
||||
//gef_dun03,0,0 monster Deviruchi 1109,8
|
||||
//gef_dun03,0,0 monster Joker 1131,5,300000,100000
|
||||
//gef_dun03,0,0 monster Khalitzburg 1132,2
|
||||
//gef_dun03,0,0 monster Knight of Abyss 1219,2,300000
|
||||
//gef_dun03,0,0 monster Gryphon 1259,1,7200000,3600000
|
||||
//gef_dun03,0,0 monster Blood Knight 1268,2,300000
|
||||
//gef_dun03,0,0 monster Dark Lord 1272,1,7200000,7200000
|
||||
//gef_dun03,0,0 monster Alice 1275,3
|
||||
//gef_dun03,0,0 monster Chimera 1283,1,7200000,7200000
|
||||
//gef_dun03,0,0 monster Mini Demon 1292,2,300000
|
||||
//gef_dun03,0,0 monster Dark Illusion 1302,2,300000
|
||||
//gef_dun03,0,0 monster Apocalypse 1365,2,300000
|
||||
//gef_dun03,0,0 monster Succubus 1370,10
|
||||
//gef_dun03,0,0 monster Fake Angel 1371,8
|
||||
//gef_dun03,0,0 monster Lord of Death 1373,1,7200000,7200000
|
||||
//gef_dun03,0,0 monster Incubus 1374,10
|
||||
//gef_dun03,0,0 monster Nightmare Terror 1379,3
|
||||
//gef_dun03,0,0 monster Violy 1390,10
|
||||
//gef_dun03,0,0 monster Shining Plant 1083,3,1800000,900000
|
||||
//gef_dun03,0,0 monster White Plant 1082,10,180000,90000
|
||||
|
||||
@@ -17,113 +17,113 @@
|
||||
//==================================================
|
||||
// gefenia01 - Geffenia
|
||||
//==================================================
|
||||
gefenia01,0,0,0,0 monster False Angel 1371,60,0,0,0
|
||||
gefenia01,0,0,0,0 monster Succubus 1370,10,0,0,0
|
||||
gefenia01,0,0,0,0 monster Incubus 1374,10,0,0,0
|
||||
gefenia01,0,0,0,0 monster Violy 1390,30,0,0,0
|
||||
gefenia01,0,0,0,0 monster Mini Demon 1292,20,0,0,0
|
||||
gefenia01,0,0,0,0 monster Abysmal Knight 1219,10,0,0,0
|
||||
gefenia01,0,0,0,0 monster Bloody Knight 1268,1,3600000,3000000,0
|
||||
gefenia01,0,0,0,0 monster Mysteltainn 1203,1,10800000,7200000,0
|
||||
gefenia01,0,0,0,0 monster Executioner 1205,1,18000000,14400000,0
|
||||
gefenia01,0,0,0,0 monster Ogretooth 1204,1,18000000,14400000,0
|
||||
gefenia01,0,0 monster False Angel 1371,60
|
||||
gefenia01,0,0 monster Succubus 1370,10
|
||||
gefenia01,0,0 monster Incubus 1374,10
|
||||
gefenia01,0,0 monster Violy 1390,30
|
||||
gefenia01,0,0 monster Mini Demon 1292,20
|
||||
gefenia01,0,0 monster Abysmal Knight 1219,10
|
||||
gefenia01,0,0 monster Bloody Knight 1268,1,3600000,3000000
|
||||
gefenia01,0,0 monster Mysteltainn 1203,1,10800000,7200000
|
||||
gefenia01,0,0 monster Executioner 1205,1,18000000,14400000
|
||||
gefenia01,0,0 monster Ogretooth 1204,1,18000000,14400000
|
||||
|
||||
//==================================================
|
||||
// gefenia02 - Geffenia
|
||||
//==================================================
|
||||
gefenia02,0,0,0,0 monster False Angel 1371,30,0,0,0
|
||||
gefenia02,0,0,0,0 monster Succubus 1370,20,0,0,0
|
||||
gefenia02,0,0,0,0 monster Incubus 1374,10,0,0,0
|
||||
gefenia02,0,0,0,0 monster Violy 1390,40,0,0,0
|
||||
gefenia02,0,0,0,0 monster Mini Demon 1292,30,0,0,0
|
||||
gefenia02,0,0,0,0 monster Abysmal Knight 1219,10,0,0,0
|
||||
gefenia02,0,0,0,0 monster Bloody Knight 1268,1,3600000,3000000,0
|
||||
gefenia02,0,0,0,0 monster Mysteltainn 1203,1,18000000,14400000,0
|
||||
gefenia02,0,0,0,0 monster Executioner 1205,1,18000000,14400000,0
|
||||
gefenia02,0,0,0,0 monster Ogretooth 1204,1,10800000,7200000,0
|
||||
gefenia02,0,0 monster False Angel 1371,30
|
||||
gefenia02,0,0 monster Succubus 1370,20
|
||||
gefenia02,0,0 monster Incubus 1374,10
|
||||
gefenia02,0,0 monster Violy 1390,40
|
||||
gefenia02,0,0 monster Mini Demon 1292,30
|
||||
gefenia02,0,0 monster Abysmal Knight 1219,10
|
||||
gefenia02,0,0 monster Bloody Knight 1268,1,3600000,3000000
|
||||
gefenia02,0,0 monster Mysteltainn 1203,1,18000000,14400000
|
||||
gefenia02,0,0 monster Executioner 1205,1,18000000,14400000
|
||||
gefenia02,0,0 monster Ogretooth 1204,1,10800000,7200000
|
||||
|
||||
//==================================================
|
||||
// gefenia03 - Geffenia
|
||||
//==================================================
|
||||
gefenia03,0,0,0,0 monster False Angel 1371,40,0,0,0
|
||||
gefenia03,0,0,0,0 monster Succubus 1370,10,0,0,0
|
||||
gefenia03,0,0,0,0 monster Incubus 1374,20,0,0,0
|
||||
gefenia03,0,0,0,0 monster Violy 1390,40,0,0,0
|
||||
gefenia03,0,0,0,0 monster Mini Demon 1292,30,0,0,0
|
||||
gefenia03,0,0,0,0 monster Abysmal Knight 1219,10,0,0,0
|
||||
gefenia03,0,0,0,0 monster Bloody Knight 1268,1,3600000,3000000,0
|
||||
gefenia03,0,0,0,0 monster Mysteltainn 1203,1,18000000,14400000,0
|
||||
gefenia03,0,0,0,0 monster Executioner 1205,1,10800000,7200000,0
|
||||
gefenia03,0,0,0,0 monster Ogretooth 1204,1,18000000,14400000,0
|
||||
gefenia03,0,0 monster False Angel 1371,40
|
||||
gefenia03,0,0 monster Succubus 1370,10
|
||||
gefenia03,0,0 monster Incubus 1374,20
|
||||
gefenia03,0,0 monster Violy 1390,40
|
||||
gefenia03,0,0 monster Mini Demon 1292,30
|
||||
gefenia03,0,0 monster Abysmal Knight 1219,10
|
||||
gefenia03,0,0 monster Bloody Knight 1268,1,3600000,3000000
|
||||
gefenia03,0,0 monster Mysteltainn 1203,1,18000000,14400000
|
||||
gefenia03,0,0 monster Executioner 1205,1,10800000,7200000
|
||||
gefenia03,0,0 monster Ogretooth 1204,1,18000000,14400000
|
||||
|
||||
//==================================================
|
||||
// gefenia04 - Geffenia
|
||||
//==================================================
|
||||
gefenia04,0,0,0,0 monster False Angel 1371,30,0,0,0
|
||||
gefenia04,0,0,0,0 monster Succubus 1370,10,600000,300000,0
|
||||
gefenia04,0,0,0,0 monster Incubus 1374,10,600000,300000,0
|
||||
gefenia04,0,0,0,0 monster Violy 1390,30,0,0,0
|
||||
gefenia04,0,0,0,0 monster Mini Demon 1292,20,0,0,0
|
||||
gefenia04,0,0,0,0 monster Abysmal Knight 1219,10,0,0,0
|
||||
gefenia04,0,0,0,0 monster Bloody Knight 1268,1,3600000,3000000,0
|
||||
gefenia04,0,0,0,0 monster Mysteltainn 1203,1,18000000,14400000,0
|
||||
gefenia04,0,0,0,0 monster Executioner 1205,1,18000000,14400000,0
|
||||
gefenia04,0,0,0,0 monster Ogretooth 1204,1,18000000,14400000,0
|
||||
gefenia04,0,0 monster False Angel 1371,30
|
||||
gefenia04,0,0 monster Succubus 1370,10,600000,300000
|
||||
gefenia04,0,0 monster Incubus 1374,10,600000,300000
|
||||
gefenia04,0,0 monster Violy 1390,30
|
||||
gefenia04,0,0 monster Mini Demon 1292,20
|
||||
gefenia04,0,0 monster Abysmal Knight 1219,10
|
||||
gefenia04,0,0 monster Bloody Knight 1268,1,3600000,3000000
|
||||
gefenia04,0,0 monster Mysteltainn 1203,1,18000000,14400000
|
||||
gefenia04,0,0 monster Executioner 1205,1,18000000,14400000
|
||||
gefenia04,0,0 monster Ogretooth 1204,1,18000000,14400000
|
||||
|
||||
|
||||
//The spawns bellow, are old ones that were used in events.
|
||||
//==================================================
|
||||
// gefenia01 - Geffenia (Old)
|
||||
//==================================================
|
||||
//gefenia01,0,0,0,0 monster Fake Angel 1371,10,0,0,0
|
||||
//gefenia01,0,0,0,0 monster Mini Demon 1292,6,300000,0,0
|
||||
//gefenia01,0,0,0,0 monster Apocalypse 1365,4,300000,0,0
|
||||
//gefenia01,0,0,0,0 monster Elder 1377,10,300000,0,1
|
||||
//gefenia01,0,0,0,0 monster Abyssmal Knight 1219,3,1800000,900000,1
|
||||
//gefenia01,0,0,0,0 monster Bloody Knight 1268,2,300000,0,0
|
||||
//gefenia01,0,0,0,0 monster Poring 1502,1,0,0,0
|
||||
//gefenia01,0,0,0,0 monster Executioner 1205,1,3600000,1800000,0
|
||||
//gefenia01,0,0,0,0 monster Mysteltainn 1203,1,7200000,3600000,1
|
||||
//gefenia01,0,0 monster Fake Angel 1371,10
|
||||
//gefenia01,0,0 monster Mini Demon 1292,6,300000
|
||||
//gefenia01,0,0 monster Apocalypse 1365,4,300000
|
||||
//gefenia01,0,0 monster Elder 1377,10,300000
|
||||
//gefenia01,0,0 monster Abyssmal Knight 1219,3,1800000,900000
|
||||
//gefenia01,0,0 monster Bloody Knight 1268,2,300000
|
||||
//gefenia01,0,0 monster Poring 1502,1
|
||||
//gefenia01,0,0 monster Executioner 1205,1,3600000,1800000
|
||||
//gefenia01,0,0 monster Mysteltainn 1203,1,7200000,3600000
|
||||
|
||||
//==================================================
|
||||
// gefenia02 - Geffenia (Old)
|
||||
//==================================================
|
||||
//gefenia02,0,0,0,0 monster Fake Angel 1371,10,0,0,0
|
||||
//gefenia02,0,0,0,0 monster Succubus 1370,6,0,0,0
|
||||
//gefenia02,0,0,0,0 monster Incubus 1374,6,0,0,0
|
||||
//gefenia02,0,0,0,0 monster Mini Demon 1292,10,300000,0,0
|
||||
//gefenia02,0,0,0,0 monster Apocalypse 1365,8,300000,0,0
|
||||
//gefenia02,0,0,0,0 monster Abyssmal Knight 1219,2,1800000,900000,1
|
||||
//gefenia02,0,0,0,0 monster Bloody Knight 1268,5,300000,0,0
|
||||
//gefenia02,0,0,0,0 monster Poring 1502,1,0,0,0
|
||||
//gefenia02,0,0,0,0 monster Gryphon 1259,1,3600000,1800000,0
|
||||
//gefenia02,0,0,0,0 monster Chimera 1283,1,7200000,3600000,1
|
||||
//gefenia02,0,0 monster Fake Angel 1371,10
|
||||
//gefenia02,0,0 monster Succubus 1370,6
|
||||
//gefenia02,0,0 monster Incubus 1374,6
|
||||
//gefenia02,0,0 monster Mini Demon 1292,10,300000
|
||||
//gefenia02,0,0 monster Apocalypse 1365,8,300000
|
||||
//gefenia02,0,0 monster Abyssmal Knight 1219,2,1800000,900000
|
||||
//gefenia02,0,0 monster Bloody Knight 1268,5,300000
|
||||
//gefenia02,0,0 monster Poring 1502,1
|
||||
//gefenia02,0,0 monster Gryphon 1259,1,3600000,1800000
|
||||
//gefenia02,0,0 monster Chimera 1283,1,7200000,3600000
|
||||
|
||||
//==================================================
|
||||
// gefenia03 - Geffenia (Old)
|
||||
//==================================================
|
||||
//gefenia03,0,0,0,0 monster Fake Angel 1371,4,0,0,0
|
||||
//gefenia03,0,0,0,0 monster Succubus 1370,5,0,0,0
|
||||
//gefenia03,0,0,0,0 monster Incubus 1374,5,0,0,0
|
||||
//gefenia03,0,0,0,0 monster Mini Demon 1292,10,300000,0,0
|
||||
//gefenia03,0,0,0,0 monster Apocalypse 1365,6,300000,0,0
|
||||
//gefenia03,0,0,0,0 monster Elder 1377,10,300000,0,1
|
||||
//gefenia03,0,0,0,0 monster Abyssmal Knight 1219,3,1800000,900000,1
|
||||
//gefenia03,0,0,0,0 monster Bloody Knight 1268,2,300000,0,0
|
||||
//gefenia03,0,0,0,0 monster Poring 1502,1,0,0,0
|
||||
//gefenia03,0,0,0,0 monster Dark Illusion 1302,1,300000,0,0
|
||||
//gefenia03,0,0,0,0 monster Owl Baron 1295,1,0,0,0
|
||||
//gefenia03,0,0 monster Fake Angel 1371,4
|
||||
//gefenia03,0,0 monster Succubus 1370,5
|
||||
//gefenia03,0,0 monster Incubus 1374,5
|
||||
//gefenia03,0,0 monster Mini Demon 1292,10,300000
|
||||
//gefenia03,0,0 monster Apocalypse 1365,6,300000
|
||||
//gefenia03,0,0 monster Elder 1377,10,300000
|
||||
//gefenia03,0,0 monster Abyssmal Knight 1219,3,1800000,900000
|
||||
//gefenia03,0,0 monster Bloody Knight 1268,2,300000
|
||||
//gefenia03,0,0 monster Poring 1502,1
|
||||
//gefenia03,0,0 monster Dark Illusion 1302,1,300000
|
||||
//gefenia03,0,0 monster Owl Baron 1295,1
|
||||
|
||||
//==================================================
|
||||
// gefenia04 - Geffenia (Old)
|
||||
//==================================================
|
||||
//gefenia04,0,0,0,0 monster Fake Angel 1371,10,0,0,0
|
||||
//gefenia04,0,0,0,0 monster Succubus 1370,5,0,0,0
|
||||
//gefenia04,0,0,0,0 monster Incubus 1374,3,0,0,0
|
||||
//gefenia04,0,0,0,0 monster Apocalypse 1365,4,300000,0,0
|
||||
//gefenia04,0,0,0,0 monster Abyssmal Knight 1219,5,1800000,900000,1
|
||||
//gefenia04,0,0,0,0 monster Bloody Knight 1268,2,300000,0,0
|
||||
//gefenia04,0,0,0,0 monster Poring 1502,1,0,0,0
|
||||
//gefenia04,0,0,0,0 monster Archangeling 1388,1,3600000,1800000,1
|
||||
//gefenia04,0,0,0,0 monster Maya Purple 1289,1,1200000,0,0
|
||||
//gefenia04,0,0,0,0 monster Cat O' Nine Tail 1307,1,0,0,0
|
||||
//gefenia04,0,0 monster Fake Angel 1371,10
|
||||
//gefenia04,0,0 monster Succubus 1370,5
|
||||
//gefenia04,0,0 monster Incubus 1374,3
|
||||
//gefenia04,0,0 monster Apocalypse 1365,4,300000
|
||||
//gefenia04,0,0 monster Abyssmal Knight 1219,5,1800000,900000
|
||||
//gefenia04,0,0 monster Bloody Knight 1268,2,300000
|
||||
//gefenia04,0,0 monster Poring 1502,1
|
||||
//gefenia04,0,0 monster Archangeling 1388,1,3600000,1800000
|
||||
//gefenia04,0,0 monster Maya Purple 1289,1,1200000
|
||||
//gefenia04,0,0 monster Cat O' Nine Tail 1307,1,0,0,0
|
||||
|
||||
@@ -17,216 +17,216 @@
|
||||
//==================================================
|
||||
// gl_cas01 - Glast Heim F1
|
||||
//==================================================
|
||||
gl_cas01,0,0,0,0 monster Sage Worm 1281,10,0,0,0
|
||||
gl_cas01,0,0,0,0 monster Carat 1267,50,0,0,0
|
||||
gl_cas01,0,0,0,0 monster Rideword 1195,15,0,0,0
|
||||
gl_cas01,0,0,0,0 monster Dark Frame 1260,20,0,0,0
|
||||
gl_cas01,0,0,0,0 monster Whisper 1179,10,0,0,0
|
||||
gl_cas01,0,0,0,0 monster Alice 1275,1,0,0,0
|
||||
gl_cas01,0,0,0,0 monster Ogretooth 1204,1,7200000,3600000,1
|
||||
gl_cas01,0,0,0,0 monster Owl Baron 1295,6,0,0,1
|
||||
gl_cas01,0,0,0,0 monster Owl Duke 1320,20,0,0,1
|
||||
gl_cas01,0,0 monster Sage Worm 1281,10
|
||||
gl_cas01,0,0 monster Carat 1267,50
|
||||
gl_cas01,0,0 monster Rideword 1195,15
|
||||
gl_cas01,0,0 monster Dark Frame 1260,20
|
||||
gl_cas01,0,0 monster Whisper 1179,10
|
||||
gl_cas01,0,0 monster Alice 1275,1
|
||||
gl_cas01,0,0 monster Ogretooth 1204,1,7200000,3600000
|
||||
gl_cas01,0,0 monster Owl Baron 1295,6
|
||||
gl_cas01,0,0 monster Owl Duke 1320,20
|
||||
|
||||
//==================================================
|
||||
// gl_cas02 - Glast Heim F2
|
||||
//==================================================
|
||||
gl_cas02,0,0,0,0 monster Wanderer 1208,40,0,0,0
|
||||
gl_cas02,0,0,0,0 monster Raydric 1163,30,0,0,0
|
||||
gl_cas02,0,0,0,0 monster Rideword 1195,10,0,0,0
|
||||
gl_cas02,0,0,0,0 monster Raydric Archer 1276,19,0,0,0
|
||||
gl_cas02,0,0,0,0 monster Chimera 1283,2,1800000,900000,1
|
||||
gl_cas02,0,0,0,0 monster Abysmal Knight 1219,3,1800000,900000,1
|
||||
gl_cas02,193,167,5,5 monster Raydric 1163,3,300000,120000,0
|
||||
gl_cas02,193,135,5,5 monster Raydric 1163,3,300000,120000,0
|
||||
gl_cas02,104,145,5,5 monster Mysteltainn 1203,1,7200000,3600000,1
|
||||
gl_cas02,102,180,0,0 monster Whisper 1185,1,1800000,900000,1
|
||||
gl_cas02,105,180,0,0 monster Whisper 1185,1,1800000,900000,1
|
||||
gl_cas02,182,12,3,3 monster Chimera 1283,1,3600000,1800000,1
|
||||
gl_cas02,185,11,8,8 monster Rideword 1195,4,120000,60000,1
|
||||
gl_cas02,174,11,8,8 monster Evil Druid 1117,4,120000,60000,1
|
||||
gl_cas02,104,38,4,4 monster Abysmal Knight 1219,1,1800000,900000,1
|
||||
gl_cas02,24,35,4,4 monster Abysmal Knight 1219,1,1800000,900000,1
|
||||
gl_cas02,46,124,15,15 monster Rideword 1195,15,360000,180000,1
|
||||
gl_cas02,16,186,10,10 monster Evil Druid 1117,5,360000,180000,1
|
||||
gl_cas02,133,83,3,3 monster Khalitzburg 1132,1,360000,180000,1
|
||||
gl_cas02,45,177,3,3 monster Khalitzburg 1132,1,360000,180000,1
|
||||
gl_cas02,182,65,3,3 monster Khalitzburg 1132,1,360000,180000,1
|
||||
gl_cas02,173,127,3,3 monster Khalitzburg 1132,1,360000,180000,1
|
||||
gl_cas02,173,167,3,3 monster Khalitzburg 1132,1,360000,180000,1
|
||||
gl_cas02,93,177,3,3 monster Abysmal Knight 1219,1,1800000,900000,1
|
||||
gl_cas02,115,177,3,3 monster Abysmal Knight 1219,1,1800000,900000,1
|
||||
gl_cas02,83,84,2,2 monster Mimic 1191,1,360000,180000,1
|
||||
gl_cas02,83,80,2,2 monster Mimic 1191,1,360000,180000,1
|
||||
gl_cas02,0,0,0,0 monster Ogretooth 1204,1,7200000,3600000,1
|
||||
gl_cas02,0,0,0,0 monster Alice 1275,1,0,0,0
|
||||
gl_cas02,189,20,1,1 monster Khalitzburg 1132,1,360000,180000,0
|
||||
gl_cas02,190,23,1,1 monster Wanderer 1208,1,360000,180000,0
|
||||
gl_cas02,190,38,1,1 monster Raydric Archer 1276,1,360000,180000,0
|
||||
gl_cas02,0,0 monster Wanderer 1208,40
|
||||
gl_cas02,0,0 monster Raydric 1163,30
|
||||
gl_cas02,0,0 monster Rideword 1195,10
|
||||
gl_cas02,0,0 monster Raydric Archer 1276,19
|
||||
gl_cas02,0,0 monster Chimera 1283,2,1800000,900000
|
||||
gl_cas02,0,0 monster Abysmal Knight 1219,3,1800000,900000
|
||||
gl_cas02,193,167,5,5 monster Raydric 1163,3,300000,120000
|
||||
gl_cas02,193,135,5,5 monster Raydric 1163,3,300000,120000
|
||||
gl_cas02,104,145,5,5 monster Mysteltainn 1203,1,7200000,3600000
|
||||
gl_cas02,102,180 monster Whisper 1185,1,1800000,900000
|
||||
gl_cas02,105,180 monster Whisper 1185,1,1800000,900000
|
||||
gl_cas02,182,12,3,3 monster Chimera 1283,1,3600000,1800000
|
||||
gl_cas02,185,11,8,8 monster Rideword 1195,4,120000,60000
|
||||
gl_cas02,174,11,8,8 monster Evil Druid 1117,4,120000,60000
|
||||
gl_cas02,104,38,4,4 monster Abysmal Knight 1219,1,1800000,900000
|
||||
gl_cas02,24,35,4,4 monster Abysmal Knight 1219,1,1800000,900000
|
||||
gl_cas02,46,124,15,15 monster Rideword 1195,15,360000,180000
|
||||
gl_cas02,16,186,10,10 monster Evil Druid 1117,5,360000,180000
|
||||
gl_cas02,133,83,3,3 monster Khalitzburg 1132,1,360000,180000
|
||||
gl_cas02,45,177,3,3 monster Khalitzburg 1132,1,360000,180000
|
||||
gl_cas02,182,65,3,3 monster Khalitzburg 1132,1,360000,180000
|
||||
gl_cas02,173,127,3,3 monster Khalitzburg 1132,1,360000,180000
|
||||
gl_cas02,173,167,3,3 monster Khalitzburg 1132,1,360000,180000
|
||||
gl_cas02,93,177,3,3 monster Abysmal Knight 1219,1,1800000,900000
|
||||
gl_cas02,115,177,3,3 monster Abysmal Knight 1219,1,1800000,900000
|
||||
gl_cas02,83,84,2,2 monster Mimic 1191,1,360000,180000
|
||||
gl_cas02,83,80,2,2 monster Mimic 1191,1,360000,180000
|
||||
gl_cas02,0,0 monster Ogretooth 1204,1,7200000,3600000
|
||||
gl_cas02,0,0 monster Alice 1275,1
|
||||
gl_cas02,189,20,1,1 monster Khalitzburg 1132,1,360000,180000
|
||||
gl_cas02,190,23,1,1 monster Wanderer 1208,1,360000,180000
|
||||
gl_cas02,190,38,1,1 monster Raydric Archer 1276,1,360000,180000
|
||||
|
||||
//==================================================
|
||||
// gl_in01 - Inside Glast Heim
|
||||
//==================================================
|
||||
gl_in01,41,155,40,45 monster Marionette 1143,5,0,0,0
|
||||
gl_in01,156,147,34,42 monster Marionette 1143,5,0,0,0
|
||||
gl_in01,42,48,41,32 monster Marionette 1143,5,0,0,0
|
||||
gl_in01,154,44,36,33 monster Marionette 1143,5,0,0,0
|
||||
gl_in01,42,154,40,45 monster Rideword 1195,2,0,0,0
|
||||
gl_in01,155,143,34,42 monster Rideword 1195,1,0,0,0
|
||||
gl_in01,41,47,41,32 monster Rideword 1195,3,0,0,0
|
||||
gl_in01,152,44,36,33 monster Rideword 1195,2,0,0,0
|
||||
gl_in01,0,0,0,0 monster Wanderer 1208,1,0,0,0
|
||||
gl_in01,0,0,0,0 monster Alice 1275,1,0,0,0
|
||||
gl_in01,40,150,40,45 monster Dark Frame 1260,3,0,0,0
|
||||
gl_in01,153,146,34,42 monster Dark Frame 1260,2,0,0,0
|
||||
gl_in01,43,45,41,32 monster Dark Frame 1260,2,0,0,0
|
||||
gl_in01,153,44,36,33 monster Dark Frame 1260,3,0,0,0
|
||||
gl_in01,41,154,40,45 monster Sage Worm 1281,3,0,0,0
|
||||
gl_in01,155,147,34,42 monster Sage Worm 1281,5,0,0,0
|
||||
gl_in01,42,47,41,32 monster Sage Worm 1281,3,0,0,0
|
||||
gl_in01,153,44,36,33 monster Sage Worm 1281,3,0,0,0
|
||||
gl_in01,41,155,40,45 monster Marionette 1143,5
|
||||
gl_in01,156,147,34,42 monster Marionette 1143,5
|
||||
gl_in01,42,48,41,32 monster Marionette 1143,5
|
||||
gl_in01,154,44,36,33 monster Marionette 1143,5
|
||||
gl_in01,42,154,40,45 monster Rideword 1195,2
|
||||
gl_in01,155,143,34,42 monster Rideword 1195,1
|
||||
gl_in01,41,47,41,32 monster Rideword 1195,3
|
||||
gl_in01,152,44,36,33 monster Rideword 1195,2
|
||||
gl_in01,0,0 monster Wanderer 1208,1
|
||||
gl_in01,0,0 monster Alice 1275,1
|
||||
gl_in01,40,150,40,45 monster Dark Frame 1260,3
|
||||
gl_in01,153,146,34,42 monster Dark Frame 1260,2
|
||||
gl_in01,43,45,41,32 monster Dark Frame 1260,2
|
||||
gl_in01,153,44,36,33 monster Dark Frame 1260,3
|
||||
gl_in01,41,154,40,45 monster Sage Worm 1281,3
|
||||
gl_in01,155,147,34,42 monster Sage Worm 1281,5
|
||||
gl_in01,42,47,41,32 monster Sage Worm 1281,3
|
||||
gl_in01,153,44,36,33 monster Sage Worm 1281,3
|
||||
|
||||
//==================================================
|
||||
// gl_prison - Glast Heim Underprison F1
|
||||
//==================================================
|
||||
gl_prison,0,0,0,0 monster Injustice 1257,20,0,0,0
|
||||
gl_prison,0,0,0,0 monster Hunter Fly 1035,10,0,0,0
|
||||
gl_prison,0,0,0,0 monster Zombie Prisoner 1197,30,0,0,0
|
||||
gl_prison,0,0,0,0 monster Rybio 1201,15,0,0,0
|
||||
gl_prison,0,0 monster Injustice 1257,20
|
||||
gl_prison,0,0 monster Hunter Fly 1035,10
|
||||
gl_prison,0,0 monster Zombie Prisoner 1197,30
|
||||
gl_prison,0,0 monster Rybio 1201,15
|
||||
|
||||
//==================================================
|
||||
// gl_prison1 - Glast Heim Underprison F2
|
||||
//==================================================
|
||||
gl_prison1,0,0,0,0 monster Skeleton Prisoner 1196,30,0,0,0
|
||||
gl_prison1,0,0,0,0 monster Cramp 1209,5,0,0,0
|
||||
gl_prison1,0,0,0,0 monster Hunter Fly 1035,10,0,0,0
|
||||
gl_prison1,0,0,0,0 monster Injustice 1257,40,0,0,0
|
||||
gl_prison1,0,0,0,0 monster Zealotus 1200,1,3600000,1800000,1
|
||||
gl_prison1,0,0,0,0 monster Rybio 1201,10,0,0,0
|
||||
gl_prison1,0,0,0,0 monster Phendark 1202,10,0,0,0
|
||||
gl_prison1,0,0 monster Skeleton Prisoner 1196,30
|
||||
gl_prison1,0,0 monster Cramp 1209,5
|
||||
gl_prison1,0,0 monster Hunter Fly 1035,10
|
||||
gl_prison1,0,0 monster Injustice 1257,40
|
||||
gl_prison1,0,0 monster Zealotus 1200,1,3600000,1800000
|
||||
gl_prison1,0,0 monster Rybio 1201,10
|
||||
gl_prison1,0,0 monster Phendark 1202,10
|
||||
|
||||
//==================================================
|
||||
// glast_01 - Glast Heim
|
||||
//==================================================
|
||||
glast_01,0,0,0,0 monster Abysmal Knight 1219,2,600000,300000,1
|
||||
glast_01,0,0,0,0 monster Gargoyle 1253,10,0,0,1
|
||||
glast_01,233,209,15,15 monster Green Plant 1080,8,360000,180000,1
|
||||
glast_01,233,209,15,15 monster Blue Plant 1079,2,900000,450000,1
|
||||
glast_01,233,209,15,15 monster Shining Plant 1083,1,1800000,900000,1
|
||||
glast_01,0,0 monster Abysmal Knight 1219,2,600000,300000
|
||||
glast_01,0,0 monster Gargoyle 1253,10
|
||||
glast_01,233,209,15,15 monster Green Plant 1080,8,360000,180000
|
||||
glast_01,233,209,15,15 monster Blue Plant 1079,2,900000,450000
|
||||
glast_01,233,209,15,15 monster Shining Plant 1083,1,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// gl_church - Glast Heim St. Abbey
|
||||
//==================================================
|
||||
gl_church,0,0,0,0 monster Wraith 1192,5,0,0,0
|
||||
gl_church,0,0,0,0 monster Evil Druid 1117,60,0,0,0
|
||||
gl_church,0,0,0,0 monster Ghoul 1036,50,0,0,0
|
||||
gl_church,0,0,0,0 monster Dark Illusion 1302,1,3600000,1800000,0
|
||||
gl_church,0,0,0,0 monster Mimic 1191,5,0,0,0
|
||||
gl_church,155,92,10,10 monster Mimic 1191,1,30000,15000,0
|
||||
gl_church,155,75,10,10 monster Mimic 1191,2,60000,30000,0
|
||||
gl_church,155,54,10,10 monster Mimic 1191,1,30000,15000,0
|
||||
gl_church,0,0 monster Wraith 1192,5
|
||||
gl_church,0,0 monster Evil Druid 1117,60
|
||||
gl_church,0,0 monster Ghoul 1036,50
|
||||
gl_church,0,0 monster Dark Illusion 1302,1,3600000,1800000
|
||||
gl_church,0,0 monster Mimic 1191,5
|
||||
gl_church,155,92,10,10 monster Mimic 1191,1,30000,15000
|
||||
gl_church,155,75,10,10 monster Mimic 1191,2,60000,30000
|
||||
gl_church,155,54,10,10 monster Mimic 1191,1,30000,15000
|
||||
|
||||
//==================================================
|
||||
// gl_chyard - Glast Heim Churchyard
|
||||
//==================================================
|
||||
gl_chyard,0,0,0,0 monster Ghoul 1036,35,0,0,0
|
||||
gl_chyard,0,0,0,0 monster Zombie 1015,20,0,0,0
|
||||
gl_chyard,0,0,0,0 monster Wraith 1192,45,0,0,0
|
||||
gl_chyard,0,0,0,0 monster Evil Druid 1117,10,0,0,0
|
||||
gl_chyard,0,0,0,0 monster Hunter Fly 1035,3,0,0,0
|
||||
gl_chyard,0,0,0,0 monster Mimic 1191,3,0,0,0
|
||||
gl_chyard,0,0 monster Ghoul 1036,35
|
||||
gl_chyard,0,0 monster Zombie 1015,20
|
||||
gl_chyard,0,0 monster Wraith 1192,45
|
||||
gl_chyard,0,0 monster Evil Druid 1117,10
|
||||
gl_chyard,0,0 monster Hunter Fly 1035,3
|
||||
gl_chyard,0,0 monster Mimic 1191,3
|
||||
gl_chyard,0,0,0,0 boss_monster Dark Lord 1272,1,3600000,600000,1
|
||||
|
||||
//==================================================
|
||||
// gl_sew01 - Glast Heim Culvert F1
|
||||
//==================================================
|
||||
gl_sew01,0,0,0,0 monster Gargoyle 1253,30,0,0,0
|
||||
gl_sew01,0,0,0,0 monster Arclouze 1194,10,0,0,0
|
||||
gl_sew01,0,0,0,0 monster Whisper 1179,40,0,0,0
|
||||
gl_sew01,0,0 monster Gargoyle 1253,30
|
||||
gl_sew01,0,0 monster Arclouze 1194,10
|
||||
gl_sew01,0,0 monster Whisper 1179,40
|
||||
|
||||
//==================================================
|
||||
// gl_sew02 - Glast Heim Culvert F2
|
||||
//==================================================
|
||||
gl_sew02,0,0,0,0 monster Gargoyle 1253,55,0,0,0
|
||||
gl_sew02,0,0,0,0 monster Cramp 1209,15,0,0,0
|
||||
gl_sew02,0,0 monster Gargoyle 1253,55
|
||||
gl_sew02,0,0 monster Cramp 1209,15
|
||||
|
||||
//==================================================
|
||||
// gl_sew03 - Glast Heim Culvert F3
|
||||
//==================================================
|
||||
gl_sew03,0,0,0,0 monster Sting 1207,70,0,0,0
|
||||
gl_sew03,0,0,0,0 monster Gargoyle 1253,37,0,0,0
|
||||
gl_sew03,147,7,5,1 monster Gargoyle 1253,1,2400000,1800000,0
|
||||
gl_sew03,140,7,5,1 monster Gargoyle 1253,1,3600000,1800000,0
|
||||
gl_sew03,158,7,5,1 monster Gargoyle 1253,1,3600000,1800000,0
|
||||
gl_sew03,0,0 monster Sting 1207,70
|
||||
gl_sew03,0,0 monster Gargoyle 1253,37
|
||||
gl_sew03,147,7,5,1 monster Gargoyle 1253,1,2400000,1800000
|
||||
gl_sew03,140,7,5,1 monster Gargoyle 1253,1,3600000,1800000
|
||||
gl_sew03,158,7,5,1 monster Gargoyle 1253,1,3600000,1800000
|
||||
|
||||
//==================================================
|
||||
// gl_sew04 - Glast Heim Culvert F4
|
||||
//==================================================
|
||||
gl_sew04,0,0,0,0 monster Anolian 1206,100,120000,0,0
|
||||
gl_sew04,0,0,0,0 monster Gargoyle 1253,20,0,0,0
|
||||
gl_sew04,0,0,0,0 monster Drainliar 1111,10,0,0,0
|
||||
gl_sew04,0,0 monster Anolian 1206,100,120000
|
||||
gl_sew04,0,0 monster Gargoyle 1253,20
|
||||
gl_sew04,0,0 monster Drainliar 1111,10
|
||||
|
||||
//==================================================
|
||||
// gl_step - Glast Heim Staircase Dungeon
|
||||
//==================================================
|
||||
gl_step,0,0,0,0 monster Mimic 1191,5,60000,30000,0
|
||||
gl_step,0,0,0,0 monster Raydric Archer 1276,10,0,0,0
|
||||
gl_step,0,0,0,0 monster Wind Ghost 1263,100,120000,0,0
|
||||
gl_step,0,0 monster Mimic 1191,5,60000,30000
|
||||
gl_step,0,0 monster Raydric Archer 1276,10
|
||||
gl_step,0,0 monster Wind Ghost 1263,100,120000
|
||||
|
||||
//==================================================
|
||||
// gl_knt01 - Inside Glast Heim Chivalry F1
|
||||
//==================================================
|
||||
gl_knt01,0,0,0,0 monster Raydric 1163,60,0,0,0
|
||||
gl_knt01,0,0,0,0 monster Raydric Archer 1276,20,0,0,0
|
||||
gl_knt01,0,0,0,0 monster Khalitzburg 1132,10,0,0,0
|
||||
gl_knt01,0,0,0,0 monster Abysmal Knight 1219,10,0,0,0
|
||||
gl_knt01,0,0,0,0 monster Alice 1275,1,0,0,0
|
||||
gl_knt01,21,278,0,0 monster Giant Whisper 1186,1,3600000,1800000,1
|
||||
gl_knt01,122,266,0,0 monster Rideword 1195,1,120000,60000,1
|
||||
gl_knt01,33,120,30,30 monster Rideword 1195,10,120000,60000,1
|
||||
gl_knt01,26,223,20,20 monster Rideword 1195,10,120000,60000,1
|
||||
gl_knt01,9,184,0,0 monster Black Mushroom 1084,1,3600000,1800000,1
|
||||
gl_knt01,8,184,0,0 monster Black Mushroom 1084,1,3600000,1800000,1
|
||||
gl_knt01,7,184,0,0 monster Black Mushroom 1084,1,3600000,1800000,1
|
||||
gl_knt01,6,184,0,0 monster Black Mushroom 1084,1,3600000,1800000,1
|
||||
gl_knt01,5,184,0,0 monster Black Mushroom 1084,1,3600000,1800000,1
|
||||
gl_knt01,4,184,0,0 monster Black Mushroom 1084,1,3600000,1800000,1
|
||||
gl_knt01,9,185,0,0 monster Black Mushroom 1084,1,3600000,1800000,1
|
||||
gl_knt01,8,185,0,0 monster Black Mushroom 1084,1,3600000,1800000,1
|
||||
gl_knt01,7,185,0,0 monster Black Mushroom 1084,1,3600000,1800000,1
|
||||
gl_knt01,6,185,0,0 monster Black Mushroom 1084,1,3600000,1800000,1
|
||||
gl_knt01,5,185,0,0 monster Black Mushroom 1084,1,3600000,1800000,1
|
||||
gl_knt01,4,185,0,0 monster Black Mushroom 1084,1,3600000,1800000,1
|
||||
gl_knt01,0,0 monster Raydric 1163,60
|
||||
gl_knt01,0,0 monster Raydric Archer 1276,20
|
||||
gl_knt01,0,0 monster Khalitzburg 1132,10
|
||||
gl_knt01,0,0 monster Abysmal Knight 1219,10
|
||||
gl_knt01,0,0 monster Alice 1275,1
|
||||
gl_knt01,21,278 monster Giant Whisper 1186,1,3600000,1800000
|
||||
gl_knt01,122,266 monster Rideword 1195,1,120000,60000
|
||||
gl_knt01,33,120,30,30 monster Rideword 1195,10,120000,60000
|
||||
gl_knt01,26,223,20,20 monster Rideword 1195,10,120000,60000
|
||||
gl_knt01,9,184 monster Black Mushroom 1084,1,3600000,1800000
|
||||
gl_knt01,8,184 monster Black Mushroom 1084,1,3600000,1800000
|
||||
gl_knt01,7,184 monster Black Mushroom 1084,1,3600000,1800000
|
||||
gl_knt01,6,184 monster Black Mushroom 1084,1,3600000,1800000
|
||||
gl_knt01,5,184 monster Black Mushroom 1084,1,3600000,1800000
|
||||
gl_knt01,4,184 monster Black Mushroom 1084,1,3600000,1800000
|
||||
gl_knt01,9,185 monster Black Mushroom 1084,1,3600000,1800000
|
||||
gl_knt01,8,185 monster Black Mushroom 1084,1,3600000,1800000
|
||||
gl_knt01,7,185 monster Black Mushroom 1084,1,3600000,1800000
|
||||
gl_knt01,6,185 monster Black Mushroom 1084,1,3600000,1800000
|
||||
gl_knt01,5,185 monster Black Mushroom 1084,1,3600000,1800000
|
||||
gl_knt01,4,185 monster Black Mushroom 1084,1,3600000,1800000
|
||||
|
||||
//==================================================
|
||||
// gl_knt02 - Inside Glast Heim Chivalry F2
|
||||
//==================================================
|
||||
gl_knt02,0,0,0,0 monster Raydric 1163,50,0,0,0
|
||||
gl_knt02,0,0,0,0 monster Raydric Archer 1276,20,0,0,0
|
||||
gl_knt02,0,0,0,0 monster Khalitzburg 1132,30,0,0,0
|
||||
gl_knt02,0,0,0,0 monster Bloody Knight 1268,1,3600000,1800000,1
|
||||
gl_knt02,0,0,0,0 monster Alice 1275,1,0,0,0
|
||||
gl_knt02,0,0,0,0 monster Mysteltainn 1203,1,1800000,1200000,0
|
||||
gl_knt02,0,0,0,0 monster Abysmal Knight 1219,5,0,0,0
|
||||
gl_knt02,149,26,5,5 monster Abysmal Knight 1219,1,3600000,1800000,1
|
||||
gl_knt02,99,49,5,5 monster Khalitzburg 1132,1,1800000,900000,1
|
||||
gl_knt02,62,80,5,5 monster Khalitzburg 1132,1,1800000,900000,1
|
||||
gl_knt02,82,134,5,5 monster Khalitzburg 1132,1,1800000,900000,1
|
||||
gl_knt02,60,242,5,5 monster Khalitzburg 1132,1,1800000,900000,1
|
||||
gl_knt02,118,241,5,5 monster Khalitzburg 1132,1,1800000,900000,1
|
||||
gl_knt02,114,194,5,5 monster Khalitzburg 1132,1,1800000,900000,1
|
||||
gl_knt02,196,239,5,5 monster Khalitzburg 1132,1,1800000,900000,1
|
||||
gl_knt02,208,45,5,5 monster Khalitzburg 1132,1,1800000,900000,1
|
||||
gl_knt02,243,74,5,5 monster Khalitzburg 1132,1,1800000,900000,1
|
||||
gl_knt02,232,132,5,5 monster Khalitzburg 1132,1,1800000,900000,1
|
||||
gl_knt02,0,0 monster Raydric 1163,50
|
||||
gl_knt02,0,0 monster Raydric Archer 1276,20
|
||||
gl_knt02,0,0 monster Khalitzburg 1132,30
|
||||
gl_knt02,0,0 monster Bloody Knight 1268,1,3600000,1800000
|
||||
gl_knt02,0,0 monster Alice 1275,1
|
||||
gl_knt02,0,0 monster Mysteltainn 1203,1,1800000,1200000
|
||||
gl_knt02,0,0 monster Abysmal Knight 1219,5
|
||||
gl_knt02,149,26,5,5 monster Abysmal Knight 1219,1,3600000,1800000
|
||||
gl_knt02,99,49,5,5 monster Khalitzburg 1132,1,1800000,900000
|
||||
gl_knt02,62,80,5,5 monster Khalitzburg 1132,1,1800000,900000
|
||||
gl_knt02,82,134,5,5 monster Khalitzburg 1132,1,1800000,900000
|
||||
gl_knt02,60,242,5,5 monster Khalitzburg 1132,1,1800000,900000
|
||||
gl_knt02,118,241,5,5 monster Khalitzburg 1132,1,1800000,900000
|
||||
gl_knt02,114,194,5,5 monster Khalitzburg 1132,1,1800000,900000
|
||||
gl_knt02,196,239,5,5 monster Khalitzburg 1132,1,1800000,900000
|
||||
gl_knt02,208,45,5,5 monster Khalitzburg 1132,1,1800000,900000
|
||||
gl_knt02,243,74,5,5 monster Khalitzburg 1132,1,1800000,900000
|
||||
gl_knt02,232,132,5,5 monster Khalitzburg 1132,1,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// gl_dun01 - The Lowest Cave in Glast Heim F1
|
||||
//==================================================
|
||||
gl_dun01,0,0,0,0 monster Arclouze 1194,50,0,0,0
|
||||
gl_dun01,0,0,0,0 monster Sting 1207,40,0,0,0
|
||||
gl_dun01,0,0 monster Arclouze 1194,50
|
||||
gl_dun01,0,0 monster Sting 1207,40
|
||||
|
||||
//==================================================
|
||||
// gl_dun02 - The Lowest Cave in Glast Heim F2
|
||||
//==================================================
|
||||
gl_dun02,0,0,0,0 monster Majoruros 1310,45,0,0,0
|
||||
gl_dun02,0,0,0,0 monster Gargoyle 1253,15,0,0,0
|
||||
gl_dun02,0,0 monster Majoruros 1310,45
|
||||
gl_dun02,0,0 monster Gargoyle 1253,15
|
||||
|
||||
@@ -14,39 +14,39 @@
|
||||
//==================================================
|
||||
// gld_dun01 - Baldur Guild Dungeon
|
||||
//==================================================
|
||||
gld_dun01,0,0,0,0 monster Skeleton General 1290,10,0,0,0
|
||||
gld_dun01,0,0,0,0 monster Am Mut 1301,20,0,0,0
|
||||
gld_dun01,0,0,0,0 monster Cat o' Nine Tails 1307,3,1200000,0,0
|
||||
gld_dun01,0,0,0,0 monster Gajomart 1309,10,0,0,0
|
||||
gld_dun01,0,0 monster Skeleton General 1290,10
|
||||
gld_dun01,0,0 monster Am Mut 1301,20
|
||||
gld_dun01,0,0 monster Cat o' Nine Tails 1307,3,1200000,0,0
|
||||
gld_dun01,0,0 monster Gajomart 1309,10
|
||||
gld_dun01,0,0,0,0 boss_monster Eddga 1115,1,28800000,600000,1
|
||||
gld_dun01,0,0,0,0 monster Vagabond Wolf 1092,1,14400000,7200000,1
|
||||
gld_dun01,0,0 monster Vagabond Wolf 1092,1,14400000,7200000
|
||||
|
||||
//==================================================
|
||||
// gld_dun02 - Luina Guild Dungeon
|
||||
//==================================================
|
||||
gld_dun02,0,0,0,0 monster Owl Baron 1295,3,0,0,0
|
||||
gld_dun02,0,0,0,0 monster Giant Spider 1304,10,240000,120000,0
|
||||
gld_dun02,0,0,0,0 monster Ancient Worm 1305,5,120000,60000,0
|
||||
gld_dun02,0,0,0,0 monster Killer Mantis 1294,5,120000,60000,0
|
||||
gld_dun02,0,0,0,0 monster Giant Hornet 1303,10,120000,60000,0
|
||||
gld_dun02,0,0 monster Owl Baron 1295,3
|
||||
gld_dun02,0,0 monster Giant Spider 1304,10,240000,120000
|
||||
gld_dun02,0,0 monster Ancient Worm 1305,5,120000,60000
|
||||
gld_dun02,0,0 monster Killer Mantis 1294,5,120000,60000
|
||||
gld_dun02,0,0 monster Giant Hornet 1303,10,120000,60000
|
||||
gld_dun02,0,0,0,0 boss_monster Doppelganger 1046,1,28800000,600000,1
|
||||
|
||||
//==================================================
|
||||
// gld_dun03 - Valkyrie Guild Dungeon
|
||||
//==================================================
|
||||
gld_dun03,0,0,0,0 monster Maya Purple 1289,3,1200000,600000,0
|
||||
gld_dun03,0,0,0,0 monster Caterpillar 1300,20,0,0,0
|
||||
gld_dun03,0,0,0,0 monster Gullinbursti 1311,10,0,0,0
|
||||
gld_dun03,0,0,0,0 monster Creamy Fear 1293,20,0,0,0
|
||||
gld_dun03,0,0,0,0 monster Leib Olmai 1306,20,0,0,0
|
||||
gld_dun03,0,0 monster Maya Purple 1289,3,1200000,600000
|
||||
gld_dun03,0,0 monster Caterpillar 1300,20
|
||||
gld_dun03,0,0 monster Gullinbursti 1311,10
|
||||
gld_dun03,0,0 monster Creamy Fear 1293,20
|
||||
gld_dun03,0,0 monster Leib Olmai 1306,20
|
||||
gld_dun03,0,0,0,0 boss_monster Maya 1147,1,28800000,600000,1
|
||||
|
||||
//==================================================
|
||||
// gld_dun04 - Britoniah Guild Dungeon
|
||||
//==================================================
|
||||
gld_dun04,0,0,0,0 monster Wraith Dead 1291,20,0,0,0
|
||||
gld_dun04,0,0,0,0 monster Mini Demon 1292,20,0,0,0
|
||||
gld_dun04,0,0,0,0 monster Zombie Master 1298,20,0,0,0
|
||||
gld_dun04,0,0,0,0 monster Dark Illusion 1302,1,1200000,0,0
|
||||
gld_dun04,0,0 monster Wraith Dead 1291,20
|
||||
gld_dun04,0,0 monster Mini Demon 1292,20
|
||||
gld_dun04,0,0 monster Zombie Master 1298,20
|
||||
gld_dun04,0,0 monster Dark Illusion 1302,1,1200000
|
||||
gld_dun04,0,0,0,0 boss_monster Dark Lord 1272,1,28800000,600000,1
|
||||
gld_dun04,0,0,0,0 monster Ghostring 1120,1,14400000,7200000,1
|
||||
gld_dun04,0,0 monster Ghostring 1120,1,14400000,7200000
|
||||
|
||||
@@ -14,16 +14,16 @@
|
||||
//==================================================
|
||||
// arug_dun01 - Arunafeltz Guild Dungeon
|
||||
//==================================================
|
||||
arug_dun01,0,0,0,0 monster Banshee Master 1974,22,0,0,0
|
||||
arug_dun01,0,0,0,0 monster Necromancer 1870,18,0,0,0
|
||||
arug_dun01,0,0,0,0 monster Beholder Master 1975,17,0,0,0
|
||||
arug_dun01,0,0,0,0 monster Fanat 1797,17,0,0,0
|
||||
arug_dun01,0,0,0,0 monster Aunoe 1796,17,0,0,0
|
||||
arug_dun01,0,0 monster Banshee Master 1974,22
|
||||
arug_dun01,0,0 monster Necromancer 1870,18
|
||||
arug_dun01,0,0 monster Beholder Master 1975,17
|
||||
arug_dun01,0,0 monster Fanat 1797,17
|
||||
arug_dun01,0,0 monster Aunoe 1796,17
|
||||
|
||||
//==================================================
|
||||
// schg_dun01 - Schwartzvald Guild Dungeon
|
||||
//==================================================
|
||||
schg_dun01,0,0,0,0 monster Hell Apocalypse 1978,20,0,0,0
|
||||
schg_dun01,0,0,0,0 monster Zakudam 1979,20,0,0,0
|
||||
schg_dun01,0,0,0,0 monster Heavy Metaling 1977,15,0,0,0
|
||||
schg_dun01,0,0,0,0 monster Cobalt Mineral 1976,15,0,0,0
|
||||
schg_dun01,0,0 monster Hell Apocalypse 1978,20
|
||||
schg_dun01,0,0 monster Zakudam 1979,20
|
||||
schg_dun01,0,0 monster Heavy Metaling 1977,15
|
||||
schg_dun01,0,0 monster Cobalt Mineral 1976,15
|
||||
|
||||
@@ -14,31 +14,31 @@
|
||||
//==================================================
|
||||
// gon_dun01 - Shrine of Gonryun Queen
|
||||
//==================================================
|
||||
gon_dun01,0,0,0,0 monster Bloody Butterfly 1408,55,650000,350000,0
|
||||
gon_dun01,0,0,0,0 monster Enchanted Peach Tree 1410,35,0,0,0
|
||||
gon_dun01,0,0,0,0 monster Zipper Bear 1417,30,0,0,0
|
||||
gon_dun01,0,0,0,0 monster Red Plant 1078,5,0,0,0
|
||||
gon_dun01,0,0,0,0 monster Yellow Plant 1081,10,0,0,0
|
||||
gon_dun01,0,0,0,0 monster White Plant 1082,10,0,0,0
|
||||
gon_dun01,0,0 monster Bloody Butterfly 1408,55,650000,350000
|
||||
gon_dun01,0,0 monster Enchanted Peach Tree 1410,35
|
||||
gon_dun01,0,0 monster Zipper Bear 1417,30
|
||||
gon_dun01,0,0 monster Red Plant 1078,5
|
||||
gon_dun01,0,0 monster Yellow Plant 1081,10
|
||||
gon_dun01,0,0 monster White Plant 1082,10
|
||||
|
||||
//==================================================
|
||||
// gon_dun02 - Hermit's Checkers
|
||||
//==================================================
|
||||
gon_dun02,241,226,15,20 monster Enchanted Peach Tree 1410,2,300000,150000,0
|
||||
gon_dun02,241,226,15,20 monster Baby Leopard 1415,4,600000,300000,0
|
||||
gon_dun02,241,226,15,20 monster Enchanted Peach Tree 1410,3,120000,60000,0
|
||||
gon_dun02,33,115,10,15 monster Enchanted Peach Tree 1410,1,300000,150000,0
|
||||
gon_dun02,33,115,10,15 monster Baby Leopard 1415,2,600000,300000,0
|
||||
gon_dun02,0,0,0,0 monster Taoist Hermit 1412,20,690000,390000,0
|
||||
gon_dun02,0,0,0,0 monster Bloody Butterfly 1408,20,0,0,0
|
||||
gon_dun02,0,0,0,0 monster Enchanted Peach Tree 1410,15,0,0,0
|
||||
gon_dun02,0,0,0,0 monster Yellow Plant 1081,10,0,0,0
|
||||
gon_dun02,241,226,15,20 monster Enchanted Peach Tree 1410,2,300000,150000
|
||||
gon_dun02,241,226,15,20 monster Baby Leopard 1415,4,600000,300000
|
||||
gon_dun02,241,226,15,20 monster Enchanted Peach Tree 1410,3,120000,60000
|
||||
gon_dun02,33,115,10,15 monster Enchanted Peach Tree 1410,1,300000,150000
|
||||
gon_dun02,33,115,10,15 monster Baby Leopard 1415,2,600000,300000
|
||||
gon_dun02,0,0 monster Taoist Hermit 1412,20,690000,390000
|
||||
gon_dun02,0,0 monster Bloody Butterfly 1408,20
|
||||
gon_dun02,0,0 monster Enchanted Peach Tree 1410,15
|
||||
gon_dun02,0,0 monster Yellow Plant 1081,10
|
||||
|
||||
//==================================================
|
||||
// gon_dun03 - Arcadia
|
||||
//==================================================
|
||||
gon_dun03,0,0,0,0 monster White Plant 1082,10,0,0,0
|
||||
gon_dun03,0,0,0,0 monster Hermit Plant 1413,20,600000,300000,0
|
||||
gon_dun03,0,0,0,0 monster Evil Nymph 1416,50,600000,300000,0
|
||||
gon_dun03,0,0,0,0 monster Taoist Hermit 1412,30,0,0,0
|
||||
gon_dun03,0,0 monster White Plant 1082,10
|
||||
gon_dun03,0,0 monster Hermit Plant 1413,20,600000,300000
|
||||
gon_dun03,0,0 monster Evil Nymph 1416,50,600000,300000
|
||||
gon_dun03,0,0 monster Taoist Hermit 1412,30
|
||||
gon_dun03,0,0,0,0 boss_monster Evil Snake Lord 1418,1,5650000,600000,0
|
||||
|
||||
@@ -15,55 +15,55 @@
|
||||
//==================================================
|
||||
// ice_dun01 - Ice Cave
|
||||
//==================================================
|
||||
ice_dun01,0,0,0,0 monster Siroma 1776,75,0,0,0
|
||||
ice_dun01,0,0,0,0 monster Roween 1782,5,0,0,0
|
||||
ice_dun01,0,0,0,0 monster Gazeti 1778,2,0,0,0
|
||||
ice_dun01,0,0,0,0 monster Muscipular 1780,5,0,0,0
|
||||
ice_dun01,0,0 monster Siroma 1776,75
|
||||
ice_dun01,0,0 monster Roween 1782,5
|
||||
ice_dun01,0,0 monster Gazeti 1778,2
|
||||
ice_dun01,0,0 monster Muscipular 1780,5
|
||||
|
||||
//==================================================
|
||||
// ice_dun02 - Ice Cave
|
||||
//==================================================
|
||||
ice_dun02,0,0,0,0 monster Snowier 1775,70,0,0,0
|
||||
ice_dun02,0,0,0,0 monster Siroma 1776,30,0,0,0
|
||||
ice_dun02,0,0,0,0 monster Gazeti 1778,15,240000,0,0
|
||||
ice_dun02,0,0,0,0 monster Ice Titan 1777,7,0,0,0
|
||||
ice_dun02,33,271,4,4 monster Iceicle 1789,1,1320000,300000,0
|
||||
ice_dun02,110,242,5,5 monster Iceicle 1789,2,1020000,300000,0
|
||||
ice_dun02,150,280,4,4 monster Iceicle 1789,1,900000,300000,0
|
||||
ice_dun02,270,268,4,4 monster Iceicle 1789,1,1020000,300000,0
|
||||
ice_dun02,46,207,3,3 monster Iceicle 1789,1,1080000,300000,0
|
||||
ice_dun02,134,214,4,4 monster Iceicle 1789,1,840000,300000,0
|
||||
ice_dun02,102,178,4,4 monster Iceicle 1789,1,1020000,300000,0
|
||||
ice_dun02,207,165,5,5 monster Iceicle 1789,2,1080000,300000,0
|
||||
ice_dun02,206,222,4,4 monster Iceicle 1789,1,1020000,300000,0
|
||||
ice_dun02,270,136,3,3 monster Iceicle 1789,1,960000,300000,0
|
||||
ice_dun02,20,150,4,4 monster Iceicle 1789,1,960000,300000,0
|
||||
ice_dun02,46,103,5,5 monster Iceicle 1789,2,1320000,300000,0
|
||||
ice_dun02,172,90,3,3 monster Iceicle 1789,1,840000,300000,0
|
||||
ice_dun02,20,20,5,5 monster Iceicle 1789,1,960000,300000,0
|
||||
ice_dun02,143,28,3,3 monster Iceicle 1789,1,1020000,300000,0
|
||||
ice_dun02,280,20,5,5 monster Iceicle 1789,1,960000,300000,0
|
||||
ice_dun02,0,0 monster Snowier 1775,70
|
||||
ice_dun02,0,0 monster Siroma 1776,30
|
||||
ice_dun02,0,0 monster Gazeti 1778,15,240000
|
||||
ice_dun02,0,0 monster Ice Titan 1777,7
|
||||
ice_dun02,33,271,4,4 monster Iceicle 1789,1,1320000,300000
|
||||
ice_dun02,110,242,5,5 monster Iceicle 1789,2,1020000,300000
|
||||
ice_dun02,150,280,4,4 monster Iceicle 1789,1,900000,300000
|
||||
ice_dun02,270,268,4,4 monster Iceicle 1789,1,1020000,300000
|
||||
ice_dun02,46,207,3,3 monster Iceicle 1789,1,1080000,300000
|
||||
ice_dun02,134,214,4,4 monster Iceicle 1789,1,840000,300000
|
||||
ice_dun02,102,178,4,4 monster Iceicle 1789,1,1020000,300000
|
||||
ice_dun02,207,165,5,5 monster Iceicle 1789,2,1080000,300000
|
||||
ice_dun02,206,222,4,4 monster Iceicle 1789,1,1020000,300000
|
||||
ice_dun02,270,136,3,3 monster Iceicle 1789,1,960000,300000
|
||||
ice_dun02,20,150,4,4 monster Iceicle 1789,1,960000,300000
|
||||
ice_dun02,46,103,5,5 monster Iceicle 1789,2,1320000,300000
|
||||
ice_dun02,172,90,3,3 monster Iceicle 1789,1,840000,300000
|
||||
ice_dun02,20,20,5,5 monster Iceicle 1789,1,960000,300000
|
||||
ice_dun02,143,28,3,3 monster Iceicle 1789,1,1020000,300000
|
||||
ice_dun02,280,20,5,5 monster Iceicle 1789,1,960000,300000
|
||||
|
||||
//==================================================
|
||||
// ice_dun03 - Ice Cave
|
||||
//==================================================
|
||||
ice_dun03,0,0,0,0 monster Ice Titan 1777,12,0,0,0
|
||||
ice_dun03,0,0,0,0 monster Ice Titan 1777,10,7200000,3600000,0
|
||||
ice_dun03,0,0,0,0 monster Gazeti 1778,10,120000,0,0
|
||||
ice_dun03,0,0,0,0 monster Snowier 1775,15,0,0,0
|
||||
ice_dun03,113,239,85,50 monster Ice Titan 1777,12,180000,0,0
|
||||
ice_dun03,113,239,85,50 monster Gazeti 1778,8,300000,0,0
|
||||
ice_dun03,63,110,50,82 monster Ice Titan 1777,12,180000,0,0
|
||||
ice_dun03,63,110,50,82 monster Gazeti 1778,8,300000,0,0
|
||||
ice_dun03,189,66,80,40 monster Ice Titan 1777,12,180000,0,0
|
||||
ice_dun03,189,66,80,40 monster Gazeti 1778,8,300000,0,0
|
||||
ice_dun03,235,185,44,80 monster Ice Titan 1777,12,180000,0,0
|
||||
ice_dun03,235,185,44,80 monster Gazeti 1778,8,300000,0,0
|
||||
ice_dun03,50,243,10,10 monster Iceicle 1789,2,720000,300000,0
|
||||
ice_dun03,149,247,10,43 monster Iceicle 1789,5,1080000,300000,0
|
||||
ice_dun03,247,241,24,24 monster Iceicle 1789,3,960000,300000,0
|
||||
ice_dun03,255,150,25,20 monster Iceicle 1789,3,840000,300000,0
|
||||
ice_dun03,45,150,25,20 monster Iceicle 1789,3,960000,300000,0
|
||||
ice_dun03,61,59,33,33 monster Iceicle 1789,7,1080000,300000,0
|
||||
ice_dun03,150,55,24,36 monster Iceicle 1789,6,1080000,300000,0
|
||||
ice_dun03,247,54,24,28 monster Iceicle 1789,3,840000,300000,0
|
||||
ice_dun03,0,0 monster Ice Titan 1777,12
|
||||
ice_dun03,0,0 monster Ice Titan 1777,10,7200000,3600000
|
||||
ice_dun03,0,0 monster Gazeti 1778,10,120000
|
||||
ice_dun03,0,0 monster Snowier 1775,15
|
||||
ice_dun03,113,239,85,50 monster Ice Titan 1777,12,180000
|
||||
ice_dun03,113,239,85,50 monster Gazeti 1778,8,300000
|
||||
ice_dun03,63,110,50,82 monster Ice Titan 1777,12,180000
|
||||
ice_dun03,63,110,50,82 monster Gazeti 1778,8,300000
|
||||
ice_dun03,189,66,80,40 monster Ice Titan 1777,12,180000
|
||||
ice_dun03,189,66,80,40 monster Gazeti 1778,8,300000
|
||||
ice_dun03,235,185,44,80 monster Ice Titan 1777,12,180000
|
||||
ice_dun03,235,185,44,80 monster Gazeti 1778,8,300000
|
||||
ice_dun03,50,243,10,10 monster Iceicle 1789,2,720000,300000
|
||||
ice_dun03,149,247,10,43 monster Iceicle 1789,5,1080000,300000
|
||||
ice_dun03,247,241,24,24 monster Iceicle 1789,3,960000,300000
|
||||
ice_dun03,255,150,25,20 monster Iceicle 1789,3,840000,300000
|
||||
ice_dun03,45,150,25,20 monster Iceicle 1789,3,960000,300000
|
||||
ice_dun03,61,59,33,33 monster Iceicle 1789,7,1080000,300000
|
||||
ice_dun03,150,55,24,36 monster Iceicle 1789,6,1080000,300000
|
||||
ice_dun03,247,54,24,28 monster Iceicle 1789,3,840000,300000
|
||||
|
||||
@@ -16,41 +16,41 @@
|
||||
//==================================================
|
||||
// In_sphinx1 - Sphinx F1
|
||||
//==================================================
|
||||
in_sphinx1,0,0,0,0 monster Drainliar 1111,40,0,0,0
|
||||
in_sphinx1,0,0,0,0 monster Requiem 1164,20,0,0,0
|
||||
in_sphinx1,0,0,0,0 monster Zerom 1178,20,0,0,0
|
||||
in_sphinx1,0,0,0,0 monster Matyr 1146,10,0,0,0
|
||||
in_sphinx1,0,0 monster Drainliar 1111,40
|
||||
in_sphinx1,0,0 monster Requiem 1164,20
|
||||
in_sphinx1,0,0 monster Zerom 1178,20
|
||||
in_sphinx1,0,0 monster Matyr 1146,10
|
||||
|
||||
//==================================================
|
||||
// In_sphinx2 - Sphinx F2
|
||||
//==================================================
|
||||
in_sphinx2,0,0,0,0 monster Drainliar 1111,15,0,0,0
|
||||
in_sphinx2,0,0,0,0 monster Requiem 1164,50,0,0,0
|
||||
in_sphinx2,0,0,0,0 monster Zerom 1178,50,0,0,0
|
||||
in_sphinx2,0,0,0,0 monster Matyr 1146,20,0,0,0
|
||||
in_sphinx2,0,0 monster Drainliar 1111,15
|
||||
in_sphinx2,0,0 monster Requiem 1164,50
|
||||
in_sphinx2,0,0 monster Zerom 1178,50
|
||||
in_sphinx2,0,0 monster Matyr 1146,20
|
||||
|
||||
//==================================================
|
||||
// In_sphinx3 - Sphinx F3
|
||||
//==================================================
|
||||
in_sphinx3,0,0,0,0 monster Matyr 1146,15,0,0,0
|
||||
in_sphinx3,0,0,0,0 monster Pasana 1154,5,0,0,0
|
||||
in_sphinx3,0,0,0,0 monster Marduk 1140,65,0,0,0
|
||||
in_sphinx3,0,0,0,0 monster Mimic 1191,5,600000,300000,1
|
||||
in_sphinx3,0,0 monster Matyr 1146,15
|
||||
in_sphinx3,0,0 monster Pasana 1154,5
|
||||
in_sphinx3,0,0 monster Marduk 1140,65
|
||||
in_sphinx3,0,0 monster Mimic 1191,5,600000,300000
|
||||
|
||||
//==================================================
|
||||
// In_sphinx4 - Sphinx F4
|
||||
//==================================================
|
||||
in_sphinx4,0,0,0,0 monster Minorous 1149,50,0,0,0
|
||||
in_sphinx4,0,0,0,0 monster Anubis 1098,15,0,0,0
|
||||
in_sphinx4,0,0,0,0 monster Mimic 1191,4,600000,300000,1
|
||||
in_sphinx4,0,0,0,0 monster Pasana 1154,20,0,0,0
|
||||
in_sphinx4,0,0 monster Minorous 1149,50
|
||||
in_sphinx4,0,0 monster Anubis 1098,15
|
||||
in_sphinx4,0,0 monster Mimic 1191,4,600000,300000
|
||||
in_sphinx4,0,0 monster Pasana 1154,20
|
||||
|
||||
//==================================================
|
||||
// In_sphinx5 - Sphinx F5
|
||||
//==================================================
|
||||
in_sphinx5,0,0,0,0 monster Pasana 1154,70,0,0,0
|
||||
in_sphinx5,0,0,0,0 monster Matyr 1146,10,0,0,0
|
||||
in_sphinx5,0,0,0,0 monster Side Winder 1037,20,0,0,0
|
||||
in_sphinx5,0,0,0,0 monster Anubis 1098,10,0,0,0
|
||||
in_sphinx5,0,0,0,0 monster Mimic 1191,7,600000,300000,1
|
||||
in_sphinx5,0,0 monster Pasana 1154,70
|
||||
in_sphinx5,0,0 monster Matyr 1146,10
|
||||
in_sphinx5,0,0 monster Side Winder 1037,20
|
||||
in_sphinx5,0,0 monster Anubis 1098,10
|
||||
in_sphinx5,0,0 monster Mimic 1191,7,600000,300000
|
||||
in_sphinx5,0,0,0,0 boss_monster Pharaoh 1157,1,3600000,600000,1
|
||||
|
||||
@@ -14,101 +14,101 @@
|
||||
//==================================================
|
||||
// iz_dun00 - Undersea Tunnel F1
|
||||
//==================================================
|
||||
iz_dun00,0,0,0,0 monster Plankton 1161,65,0,0,0
|
||||
iz_dun00,0,0,0,0 monster Marina 1141,45,0,0,0
|
||||
iz_dun00,0,0,0,0 monster Kukre 1070,15,0,0,0
|
||||
iz_dun00,0,0,0,0 monster Hydra 1068,15,0,0,0
|
||||
iz_dun00,0,0,0,0 monster Vadon 1066,15,0,0,0
|
||||
iz_dun00,0,0,0,0 monster Black Mushroom 1084,5,180000,90000,1
|
||||
iz_dun00,0,0 monster Plankton 1161,65
|
||||
iz_dun00,0,0 monster Marina 1141,45
|
||||
iz_dun00,0,0 monster Kukre 1070,15
|
||||
iz_dun00,0,0 monster Hydra 1068,15
|
||||
iz_dun00,0,0 monster Vadon 1066,15
|
||||
iz_dun00,0,0 monster Black Mushroom 1084,5,180000,90000
|
||||
|
||||
//==================================================
|
||||
// iz_dun01 - Undersea Tunnel F2
|
||||
//==================================================
|
||||
iz_dun01,0,0,0,0 monster Plankton 1161,10,0,0,0
|
||||
iz_dun01,0,0,0,0 monster Marina 1141,15,0,0,0
|
||||
iz_dun01,0,0,0,0 monster Kukre 1070,50,0,0,0
|
||||
iz_dun01,0,0,0,0 monster Hydra 1068,30,0,0,0
|
||||
iz_dun01,0,0,0,0 monster Vadon 1066,60,0,0,0
|
||||
iz_dun01,0,0,0,0 monster Cornutus 1067,15,300000,150000,1
|
||||
iz_dun01,0,0,0,0 monster Black Mushroom 1084,10,180000,90000,1
|
||||
iz_dun01,0,0 monster Plankton 1161,10
|
||||
iz_dun01,0,0 monster Marina 1141,15
|
||||
iz_dun01,0,0 monster Kukre 1070,50
|
||||
iz_dun01,0,0 monster Hydra 1068,30
|
||||
iz_dun01,0,0 monster Vadon 1066,60
|
||||
iz_dun01,0,0 monster Cornutus 1067,15,300000,150000
|
||||
iz_dun01,0,0 monster Black Mushroom 1084,10,180000,90000
|
||||
|
||||
//==================================================
|
||||
// iz_dun02 - Undersea Tunnel F3
|
||||
//==================================================
|
||||
iz_dun02,0,0,0,0 monster Hydra 1068,40,0,0,0
|
||||
iz_dun02,0,0,0,0 monster Cornutus 1067,60,0,0,0
|
||||
iz_dun02,0,0,0,0 monster Marse 1144,40,0,0,0
|
||||
iz_dun02,0,0,0,0 monster Obeaune 1044,40,0,0,0
|
||||
iz_dun02,0,0,0,0 monster Merman 1264,1,1800000,1200000,0
|
||||
iz_dun02,0,0,0,0 monster Black Mushroom 1084,15,180000,90000,1
|
||||
iz_dun02,0,0 monster Hydra 1068,40
|
||||
iz_dun02,0,0 monster Cornutus 1067,60
|
||||
iz_dun02,0,0 monster Marse 1144,40
|
||||
iz_dun02,0,0 monster Obeaune 1044,40
|
||||
iz_dun02,0,0 monster Merman 1264,1,1800000,1200000
|
||||
iz_dun02,0,0 monster Black Mushroom 1084,15,180000,90000
|
||||
|
||||
//==================================================
|
||||
// iz_dun03 - Undersea Tunnel F4
|
||||
//==================================================
|
||||
iz_dun03,0,0,0,0 monster Hydra 1068,10,0,0,0
|
||||
iz_dun03,0,0,0,0 monster Phen 1158,45,0,0,0
|
||||
iz_dun03,0,0,0,0 monster Marine Sphere 1142,20,0,0,0
|
||||
iz_dun03,0,0,0,0 monster Swordfish 1069,40,0,0,0
|
||||
iz_dun03,0,0,0,0 monster Marc 1045,40,0,0,0
|
||||
iz_dun03,203,59,0,0 monster Hydra 1068,1,312000,150000,0
|
||||
iz_dun03,203,56,0,0 monster Hydra 1068,1,323000,150000,0
|
||||
iz_dun03,203,53,0,0 monster Hydra 1068,1,317000,150000,0
|
||||
iz_dun03,203,50,0,0 monster Hydra 1068,1,323000,150000,0
|
||||
iz_dun03,203,47,0,0 monster Hydra 1068,1,305000,150000,0
|
||||
iz_dun03,204,60,0,0 monster Hydra 1068,1,304000,150000,0
|
||||
iz_dun03,204,57,0,0 monster Hydra 1068,1,302000,150000,0
|
||||
iz_dun03,204,54,0,0 monster Hydra 1068,1,310000,150000,0
|
||||
iz_dun03,204,51,0,0 monster Hydra 1068,1,309000,150000,0
|
||||
iz_dun03,204,48,0,0 monster Hydra 1068,1,313000,150000,0
|
||||
iz_dun03,191,144,0,0 monster Hydra 1068,1,321000,150000,0
|
||||
iz_dun03,194,144,0,0 monster Hydra 1068,1,316000,150000,0
|
||||
iz_dun03,197,144,0,0 monster Hydra 1068,1,296000,150000,0
|
||||
iz_dun03,200,144,0,0 monster Hydra 1068,1,282000,150000,0
|
||||
iz_dun03,203,144,0,0 monster Hydra 1068,1,310000,150000,0
|
||||
iz_dun03,206,144,0,0 monster Hydra 1068,1,305000,150000,0
|
||||
iz_dun03,209,144,0,0 monster Hydra 1068,1,308000,150000,0
|
||||
iz_dun03,212,144,0,0 monster Hydra 1068,1,321000,150000,0
|
||||
iz_dun03,193,143,0,0 monster Hydra 1068,1,300000,150000,0
|
||||
iz_dun03,196,143,0,0 monster Hydra 1068,1,300000,150000,0
|
||||
iz_dun03,199,143,0,0 monster Hydra 1068,1,300000,150000,0
|
||||
iz_dun03,202,143,0,0 monster Hydra 1068,1,300000,150000,0
|
||||
iz_dun03,205,143,0,0 monster Hydra 1068,1,300000,150000,0
|
||||
iz_dun03,208,143,0,0 monster Hydra 1068,1,300000,150000,0
|
||||
iz_dun03,211,143,0,0 monster Hydra 1068,1,300000,150000,0
|
||||
iz_dun03,176,260,0,0 monster Hydra 1068,1,300000,150000,0
|
||||
iz_dun03,180,251,0,0 monster Hydra 1068,1,300000,150000,0
|
||||
iz_dun03,178,253,0,0 monster Hydra 1068,1,300000,150000,0
|
||||
iz_dun03,108,249,0,0 monster Hydra 1068,1,300000,150000,0
|
||||
iz_dun03,80,163,0,0 monster Hydra 1068,1,300000,150000,0
|
||||
iz_dun03,0,0,0,0 monster Merman 1264,3,1800000,1200000,0
|
||||
iz_dun03,0,0 monster Hydra 1068,10
|
||||
iz_dun03,0,0 monster Phen 1158,45
|
||||
iz_dun03,0,0 monster Marine Sphere 1142,20
|
||||
iz_dun03,0,0 monster Swordfish 1069,40
|
||||
iz_dun03,0,0 monster Marc 1045,40
|
||||
iz_dun03,203,59 monster Hydra 1068,1,312000,150000
|
||||
iz_dun03,203,56 monster Hydra 1068,1,323000,150000
|
||||
iz_dun03,203,53 monster Hydra 1068,1,317000,150000
|
||||
iz_dun03,203,50 monster Hydra 1068,1,323000,150000
|
||||
iz_dun03,203,47 monster Hydra 1068,1,305000,150000
|
||||
iz_dun03,204,60 monster Hydra 1068,1,304000,150000
|
||||
iz_dun03,204,57 monster Hydra 1068,1,302000,150000
|
||||
iz_dun03,204,54 monster Hydra 1068,1,310000,150000
|
||||
iz_dun03,204,51 monster Hydra 1068,1,309000,150000
|
||||
iz_dun03,204,48 monster Hydra 1068,1,313000,150000
|
||||
iz_dun03,191,144 monster Hydra 1068,1,321000,150000
|
||||
iz_dun03,194,144 monster Hydra 1068,1,316000,150000
|
||||
iz_dun03,197,144 monster Hydra 1068,1,296000,150000
|
||||
iz_dun03,200,144 monster Hydra 1068,1,282000,150000
|
||||
iz_dun03,203,144 monster Hydra 1068,1,310000,150000
|
||||
iz_dun03,206,144 monster Hydra 1068,1,305000,150000
|
||||
iz_dun03,209,144 monster Hydra 1068,1,308000,150000
|
||||
iz_dun03,212,144 monster Hydra 1068,1,321000,150000
|
||||
iz_dun03,193,143 monster Hydra 1068,1,300000,150000
|
||||
iz_dun03,196,143 monster Hydra 1068,1,300000,150000
|
||||
iz_dun03,199,143 monster Hydra 1068,1,300000,150000
|
||||
iz_dun03,202,143 monster Hydra 1068,1,300000,150000
|
||||
iz_dun03,205,143 monster Hydra 1068,1,300000,150000
|
||||
iz_dun03,208,143 monster Hydra 1068,1,300000,150000
|
||||
iz_dun03,211,143 monster Hydra 1068,1,300000,150000
|
||||
iz_dun03,176,260 monster Hydra 1068,1,300000,150000
|
||||
iz_dun03,180,251 monster Hydra 1068,1,300000,150000
|
||||
iz_dun03,178,253 monster Hydra 1068,1,300000,150000
|
||||
iz_dun03,108,249 monster Hydra 1068,1,300000,150000
|
||||
iz_dun03,80,163 monster Hydra 1068,1,300000,150000
|
||||
iz_dun03,0,0 monster Merman 1264,3,1800000,1200000
|
||||
|
||||
//==================================================
|
||||
// iz_dun04 - Undersea Tunnel F5
|
||||
//==================================================
|
||||
iz_dun04,0,0,0,0 monster Marine Sphere 1142,10,0,0,0
|
||||
iz_dun04,0,0,0,0 monster Swordfish 1069,10,0,0,0
|
||||
iz_dun04,0,0,0,0 monster Merman 1264,40,0,0,0
|
||||
iz_dun04,0,0,0,0 monster Strouf 1065,50,600000,300000,1
|
||||
iz_dun04,58,135,0,0 monster Hydra 1068,1,305000,150000,0
|
||||
iz_dun04,61,135,0,0 monster Hydra 1068,1,300000,150000,0
|
||||
iz_dun04,42,129,0,0 monster Hydra 1068,1,312000,150000,0
|
||||
iz_dun04,42,116,0,0 monster Hydra 1068,1,306000,150000,0
|
||||
iz_dun04,38,129,0,0 monster Hydra 1068,1,300000,150000,0
|
||||
iz_dun04,33,129,0,0 monster Hydra 1068,1,308000,150000,0
|
||||
iz_dun04,38,115,0,0 monster Hydra 1068,1,300000,150000,0
|
||||
iz_dun04,33,115,0,0 monster Hydra 1068,1,321000,150000,0
|
||||
iz_dun04,79,246,0,0 monster Hydra 1068,1,300000,150000,0
|
||||
iz_dun04,80,246,0,0 monster Hydra 1068,1,294000,150000,0
|
||||
iz_dun04,79,234,0,0 monster Hydra 1068,1,302000,150000,0
|
||||
iz_dun04,80,233,0,0 monster Hydra 1068,1,318000,150000,0
|
||||
iz_dun04,111,41,0,0 monster Hydra 1068,1,300000,150000,0
|
||||
iz_dun04,111,38,0,0 monster Hydra 1068,1,303000,150000,0
|
||||
iz_dun04,111,35,0,0 monster Hydra 1068,1,300000,150000,0
|
||||
iz_dun04,69,243,0,0 monster Hydra 1068,1,321000,150000,0
|
||||
iz_dun04,124,233,0,0 monster Hydra 1068,1,300000,150000,0
|
||||
iz_dun04,134,233,0,0 monster Hydra 1068,1,305000,150000,0
|
||||
iz_dun04,0,0,0,0 monster Deviace 1108,3,0,0,0
|
||||
iz_dun04,103,231,10,10 monster Merman 1264,3,150000,0,0
|
||||
iz_dun04,160,231,10,10 monster Merman 1264,3,170000,0,0
|
||||
iz_dun04,95,147,10,10 monster Merman 1264,3,150000,0,0
|
||||
iz_dun04,130,216,15,15 monster Merman 1264,3,160000,0,0
|
||||
iz_dun04,0,0 monster Marine Sphere 1142,10
|
||||
iz_dun04,0,0 monster Swordfish 1069,10
|
||||
iz_dun04,0,0 monster Merman 1264,40
|
||||
iz_dun04,0,0 monster Strouf 1065,50,600000,300000
|
||||
iz_dun04,58,135 monster Hydra 1068,1,305000,150000
|
||||
iz_dun04,61,135 monster Hydra 1068,1,300000,150000
|
||||
iz_dun04,42,129 monster Hydra 1068,1,312000,150000
|
||||
iz_dun04,42,116 monster Hydra 1068,1,306000,150000
|
||||
iz_dun04,38,129 monster Hydra 1068,1,300000,150000
|
||||
iz_dun04,33,129 monster Hydra 1068,1,308000,150000
|
||||
iz_dun04,38,115 monster Hydra 1068,1,300000,150000
|
||||
iz_dun04,33,115 monster Hydra 1068,1,321000,150000
|
||||
iz_dun04,79,246 monster Hydra 1068,1,300000,150000
|
||||
iz_dun04,80,246 monster Hydra 1068,1,294000,150000
|
||||
iz_dun04,79,234 monster Hydra 1068,1,302000,150000
|
||||
iz_dun04,80,233 monster Hydra 1068,1,318000,150000
|
||||
iz_dun04,111,41 monster Hydra 1068,1,300000,150000
|
||||
iz_dun04,111,38 monster Hydra 1068,1,303000,150000
|
||||
iz_dun04,111,35 monster Hydra 1068,1,300000,150000
|
||||
iz_dun04,69,243 monster Hydra 1068,1,321000,150000
|
||||
iz_dun04,124,233 monster Hydra 1068,1,300000,150000
|
||||
iz_dun04,134,233 monster Hydra 1068,1,305000,150000
|
||||
iz_dun04,0,0 monster Deviace 1108,3
|
||||
iz_dun04,103,231,10,10 monster Merman 1264,3,150000
|
||||
iz_dun04,160,231,10,10 monster Merman 1264,3,170000
|
||||
iz_dun04,95,147,10,10 monster Merman 1264,3,150000
|
||||
iz_dun04,130,216,15,15 monster Merman 1264,3,160000
|
||||
|
||||
@@ -21,40 +21,40 @@
|
||||
// - Juperos 01
|
||||
//========================================================================================
|
||||
|
||||
juperos_01,100,180,60,70 monster Venatu 1679,15,300000,0,1
|
||||
juperos_01,100,180,60,70 monster Venatu 1676,25,300000,0,1
|
||||
juperos_01,100,180,60,70 monster Venatu 1677,20,300000,0,1
|
||||
juperos_01,100,180,60,70 monster Venatu 1678,25,300000,0,1
|
||||
juperos_01,192,132,60,80 monster Venatu 1679,35,300000,0,1
|
||||
juperos_01,192,132,60,80 monster Venatu 1676,45,300000,0,1
|
||||
juperos_01,192,132,60,80 monster Venatu 1677,50,300000,0,1
|
||||
juperos_01,192,132,60,80 monster Venatu 1678,45,300000,0,1
|
||||
juperos_01,0,0,0,0 monster Dimik 1670,5,0,0,1
|
||||
juperos_01,0,0,0,0 monster Dimik 1671,5,0,0,1
|
||||
juperos_01,0,0,0,0 monster Dimik 1672,5,0,0,1
|
||||
juperos_01,0,0,0,0 monster Dimik 1673,5,0,0,1
|
||||
juperos_01,232,202,25,25 monster Dimik 1670,5,420000,0,0
|
||||
juperos_01,100,180,60,70 monster Venatu 1679,15,300000
|
||||
juperos_01,100,180,60,70 monster Venatu 1676,25,300000
|
||||
juperos_01,100,180,60,70 monster Venatu 1677,20,300000
|
||||
juperos_01,100,180,60,70 monster Venatu 1678,25,300000
|
||||
juperos_01,192,132,60,80 monster Venatu 1679,35,300000
|
||||
juperos_01,192,132,60,80 monster Venatu 1676,45,300000
|
||||
juperos_01,192,132,60,80 monster Venatu 1677,50,300000
|
||||
juperos_01,192,132,60,80 monster Venatu 1678,45,300000
|
||||
juperos_01,0,0 monster Dimik 1670,5
|
||||
juperos_01,0,0 monster Dimik 1671,5
|
||||
juperos_01,0,0 monster Dimik 1672,5
|
||||
juperos_01,0,0 monster Dimik 1673,5
|
||||
juperos_01,232,202,25,25 monster Dimik 1670,5,420000
|
||||
|
||||
//========================================================================================
|
||||
// - Juperos 02
|
||||
//========================================================================================
|
||||
|
||||
juperos_02,0,0,0,0 monster Venatu 1679,50,0,0,1
|
||||
juperos_02,0,0,0,0 monster Venatu 1676,65,0,0,1
|
||||
juperos_02,0,0,0,0 monster Venatu 1677,65,0,0,1
|
||||
juperos_02,0,0,0,0 monster Venatu 1678,65,0,0,1
|
||||
juperos_02,0,0,0,0 monster Apocalypse 1365,70,0,0,1
|
||||
juperos_02,0,0 monster Venatu 1679,50
|
||||
juperos_02,0,0 monster Venatu 1676,65
|
||||
juperos_02,0,0 monster Venatu 1677,65
|
||||
juperos_02,0,0 monster Venatu 1678,65
|
||||
juperos_02,0,0 monster Apocalypse 1365,70
|
||||
|
||||
//========================================================================================
|
||||
// - Juperos Core
|
||||
//========================================================================================
|
||||
|
||||
jupe_core,0,0,0,0 monster Venatu 1676,25,0,0,1
|
||||
jupe_core,0,0,0,0 monster Venatu 1677,25,0,0,1
|
||||
jupe_core,0,0,0,0 monster Venatu 1678,25,0,0,1
|
||||
jupe_core,0,0,0,0 monster Dimik 1670,40,0,0,1
|
||||
jupe_core,0,0,0,0 monster Dimik 1671,40,0,0,1
|
||||
jupe_core,0,0,0,0 monster Dimik 1672,40,0,0,1
|
||||
jupe_core,0,0,0,0 monster Dimik 1673,40,0,0,1
|
||||
jupe_core,0,0,0,0 monster Archdam 1668,40,0,0,1
|
||||
jupe_core,0,0 monster Venatu 1676,25
|
||||
jupe_core,0,0 monster Venatu 1677,25
|
||||
jupe_core,0,0 monster Venatu 1678,25
|
||||
jupe_core,0,0 monster Dimik 1670,40
|
||||
jupe_core,0,0 monster Dimik 1671,40
|
||||
jupe_core,0,0 monster Dimik 1672,40
|
||||
jupe_core,0,0 monster Dimik 1673,40
|
||||
jupe_core,0,0 monster Archdam 1668,40
|
||||
jupe_core,0,0,0,0 boss_monster Vesper 1685,1,7200000,600000,1
|
||||
|
||||
@@ -16,47 +16,47 @@
|
||||
//==================================================
|
||||
// kh_kiehl01
|
||||
//==================================================
|
||||
kh_kiehl01,0,0,0,0 monster Constant 1745,10,0,0,0
|
||||
kh_kiehl01,80,22,3,3 monster Aliot 1740,1,180000,120000,0
|
||||
kh_kiehl01,105,40,3,3 monster Aliza 1746,1,180000,120000,0
|
||||
kh_kiehl01,105,40,3,3 monster Aliza 1737,1,180000,120000,0
|
||||
kh_kiehl01,135,24,3,3 monster Alicel 1739,1,180000,120000,0
|
||||
kh_kiehl01,173,90,3,3 monster Aliot 1740,1,180000,120000,0
|
||||
kh_kiehl01,156,101,3,3 monster Aliza 1746,1,180000,120000,0
|
||||
kh_kiehl01,128,102,3,3 monster Alicel 1739,1,180000,120000,0
|
||||
kh_kiehl01,128,102,3,3 monster Aliot 1740,1,180000,120000,0
|
||||
kh_kiehl01,37,110,3,3 monster Alicel 1739,1,180000,120000,0
|
||||
kh_kiehl01,37,110,3,3 monster Alicel 1735,1,180000,120000,0
|
||||
kh_kiehl01,32,124,3,3 monster Aliot 1740,1,180000,120000,0
|
||||
kh_kiehl01,67,171,5,5 monster Aliot 1740,1,180000,120000,0
|
||||
kh_kiehl01,67,171,5,5 monster Aliot 1736,1,180000,120000,0
|
||||
kh_kiehl01,85,154,3,3 monster Alicel 1739,1,180000,120000,0
|
||||
kh_kiehl01,85,154,3,3 monster Aliot 1740,1,180000,120000,0
|
||||
kh_kiehl01,106,154,3,3 monster Aliza 1746,1,180000,120000,0
|
||||
kh_kiehl01,122,155,3,3 monster Aliot 1740,1,180000,120000,0
|
||||
kh_kiehl01,122,155,3,3 monster Aliot 1736,1,180000,120000,0
|
||||
kh_kiehl01,122,155,3,3 monster Alicel 1739,1,180000,120000,0
|
||||
kh_kiehl01,122,155,3,3 monster Aliza 1746,1,180000,120000,0
|
||||
kh_kiehl01,0,0 monster Constant 1745,10
|
||||
kh_kiehl01,80,22,3,3 monster Aliot 1740,1,180000,120000
|
||||
kh_kiehl01,105,40,3,3 monster Aliza 1746,1,180000,120000
|
||||
kh_kiehl01,105,40,3,3 monster Aliza 1737,1,180000,120000
|
||||
kh_kiehl01,135,24,3,3 monster Alicel 1739,1,180000,120000
|
||||
kh_kiehl01,173,90,3,3 monster Aliot 1740,1,180000,120000
|
||||
kh_kiehl01,156,101,3,3 monster Aliza 1746,1,180000,120000
|
||||
kh_kiehl01,128,102,3,3 monster Alicel 1739,1,180000,120000
|
||||
kh_kiehl01,128,102,3,3 monster Aliot 1740,1,180000,120000
|
||||
kh_kiehl01,37,110,3,3 monster Alicel 1739,1,180000,120000
|
||||
kh_kiehl01,37,110,3,3 monster Alicel 1735,1,180000,120000
|
||||
kh_kiehl01,32,124,3,3 monster Aliot 1740,1,180000,120000
|
||||
kh_kiehl01,67,171,5,5 monster Aliot 1740,1,180000,120000
|
||||
kh_kiehl01,67,171,5,5 monster Aliot 1736,1,180000,120000
|
||||
kh_kiehl01,85,154,3,3 monster Alicel 1739,1,180000,120000
|
||||
kh_kiehl01,85,154,3,3 monster Aliot 1740,1,180000,120000
|
||||
kh_kiehl01,106,154,3,3 monster Aliza 1746,1,180000,120000
|
||||
kh_kiehl01,122,155,3,3 monster Aliot 1740,1,180000,120000
|
||||
kh_kiehl01,122,155,3,3 monster Aliot 1736,1,180000,120000
|
||||
kh_kiehl01,122,155,3,3 monster Alicel 1739,1,180000,120000
|
||||
kh_kiehl01,122,155,3,3 monster Aliza 1746,1,180000,120000
|
||||
|
||||
//==================================================
|
||||
// kh_dun01 - Machine doll factory, 1st floor
|
||||
//==================================================
|
||||
kh_dun01,83,179,70,40 monster Alice 1275,9,1800000,1200000,0
|
||||
kh_dun01,83,179,30,20 monster Aliza 1737,15,300000,240000,0
|
||||
kh_dun01,83,179,70,40 monster Constant 1738,3,0,0,0
|
||||
kh_dun01,120,104,105,80 monster Alice 1275,16,1800000,1200000,0
|
||||
kh_dun01,120,104,105,80 monster Aliza 1737,30,300000,240000,0
|
||||
kh_dun01,120,104,105,80 monster Constant 1738,5,0,0,0
|
||||
kh_dun01,0,0,0,0 monster Constant 1745,5,0,0,0
|
||||
kh_dun01,0,0,0,0 monster Aliot 1736,3,600000,300000,0
|
||||
kh_dun01,0,0,0,0 monster Alicel 1735,3,600000,300000,0
|
||||
kh_dun01,83,179,70,40 monster Alice 1275,9,1800000,1200000
|
||||
kh_dun01,83,179,30,20 monster Aliza 1737,15,300000,240000
|
||||
kh_dun01,83,179,70,40 monster Constant 1738,3
|
||||
kh_dun01,120,104,105,80 monster Alice 1275,16,1800000,1200000
|
||||
kh_dun01,120,104,105,80 monster Aliza 1737,30,300000,240000
|
||||
kh_dun01,120,104,105,80 monster Constant 1738,5
|
||||
kh_dun01,0,0 monster Constant 1745,5
|
||||
kh_dun01,0,0 monster Aliot 1736,3,600000,300000
|
||||
kh_dun01,0,0 monster Alicel 1735,3,600000,300000
|
||||
|
||||
//==================================================
|
||||
// kh_dun02 - Machine doll factory, 2nd floor
|
||||
//==================================================
|
||||
kh_dun02,0,0,0,0 monster Aliot 1736,25,0,0,0
|
||||
kh_dun02,0,0,0,0 monster Alicel 1735,30,0,0,0
|
||||
kh_dun02,0,0,0,0 monster Aliza 1737,10,0,0,0
|
||||
kh_dun02,0,0,0,0 monster Constant 1738,15,1800000,1200000,0
|
||||
kh_dun02,0,0,0,0 monster Constant 1745,5,0,0,0
|
||||
kh_dun02,0,0 monster Aliot 1736,25
|
||||
kh_dun02,0,0 monster Alicel 1735,30
|
||||
kh_dun02,0,0 monster Aliza 1737,10
|
||||
kh_dun02,0,0 monster Constant 1738,15,1800000,1200000
|
||||
kh_dun02,0,0 monster Constant 1745,5
|
||||
kh_dun02,0,0,0,0 boss_monster Kiel D-01 1734,1,7200000,3600000,0
|
||||
|
||||
@@ -26,197 +26,197 @@
|
||||
//========================================================================================
|
||||
// lhz_dun01 - Bio-life Labs 1F
|
||||
//========================================================================================
|
||||
lhz_dun01,0,0,0,0 monster Metaling 1613,50,0,0,0
|
||||
lhz_dun01,0,0,0,0 monster Anopheles 1627,70,0,0,0
|
||||
lhz_dun01,0,0,0,0 monster Remover 1682,100,0,0,0
|
||||
lhz_dun01,0,0,0,0 monster Egnigem Cenia 1652,1,0,0,0
|
||||
lhz_dun01,0,0,0,0 monster Wickebine Tres 1653,1,0,0,0
|
||||
lhz_dun01,0,0,0,0 monster Armeyer Dinze 1654,1,0,0,0
|
||||
lhz_dun01,0,0,0,0 monster Errende Ebecee 1655,1,0,0,0
|
||||
lhz_dun01,0,0,0,0 monster Kavach Icarus 1656,1,0,0,0
|
||||
lhz_dun01,0,0,0,0 monster Laurell Weinder 1657,1,0,0,0
|
||||
lhz_dun01,150,50,16,18 monster Egnigem Cenia 1652,1,900000,800000,1
|
||||
lhz_dun01,150,50,16,18 monster Wickebine Tres 1653,1,900000,800000,1
|
||||
lhz_dun01,150,50,16,18 monster Armeyer Dinze 1654,1,900000,800000,1
|
||||
lhz_dun01,150,50,16,18 monster Errende Ebecee 1655,5,900000,800000,1
|
||||
lhz_dun01,150,50,16,18 monster Kavach Icarus 1656,5,600000,300000,1
|
||||
lhz_dun01,150,50,16,18 monster Laurell Weinder 1657,5,600000,300000,1
|
||||
lhz_dun01,250,150,18,30 monster Egnigem Cenia 1652,4,900000,800000,1
|
||||
lhz_dun01,250,150,18,30 monster Wickebine Tres 1653,4,600000,300000,1
|
||||
lhz_dun01,250,150,18,30 monster Armeyer Dinze 1654,4,900000,800000,1
|
||||
lhz_dun01,250,150,18,30 monster Errende Ebecee 1655,2,900000,800000,1
|
||||
lhz_dun01,250,150,18,30 monster Kavach Icarus 1656,2,900000,800000,1
|
||||
lhz_dun01,250,150,18,30 monster Laurell Weinder 1657,2,600000,300000,1
|
||||
lhz_dun01,50,150,11,35 monster Egnigem Cenia 1652,1,600000,300000,1
|
||||
lhz_dun01,50,150,11,35 monster Wickebine Tres 1653,4,900000,800000,1
|
||||
lhz_dun01,50,150,11,35 monster Armeyer Dinze 1654,1,900000,800000,1
|
||||
lhz_dun01,50,150,11,35 monster Errende Ebecee 1655,4,900000,800000,1
|
||||
lhz_dun01,50,150,11,35 monster Kavach Icarus 1656,4,900000,800000,1
|
||||
lhz_dun01,50,150,11,35 monster Laurell Weinder 1657,2,600000,300000,1
|
||||
lhz_dun01,192,61,18,30 monster Egnigem Cenia 1652,1,900000,800000,1
|
||||
lhz_dun01,192,61,18,30 monster Wickebine Tres 1653,1,900000,800000,1
|
||||
lhz_dun01,192,61,18,30 monster Armeyer Dinze 1654,1,900000,800000,1
|
||||
lhz_dun01,192,61,18,30 monster Errende Ebecee 1655,1,900000,800000,1
|
||||
lhz_dun01,192,61,18,30 monster Kavach Icarus 1656,1,900000,800000,1
|
||||
lhz_dun01,192,61,18,30 monster Laurell Weinder 1657,1,900000,800000,1
|
||||
lhz_dun01,0,0,0,0 monster Gemini-S58 1681,1,7200000,5400000,0
|
||||
lhz_dun01,0,0 monster Metaling 1613,50
|
||||
lhz_dun01,0,0 monster Anopheles 1627,70
|
||||
lhz_dun01,0,0 monster Remover 1682,100
|
||||
lhz_dun01,0,0 monster Egnigem Cenia 1652,1
|
||||
lhz_dun01,0,0 monster Wickebine Tres 1653,1
|
||||
lhz_dun01,0,0 monster Armeyer Dinze 1654,1
|
||||
lhz_dun01,0,0 monster Errende Ebecee 1655,1
|
||||
lhz_dun01,0,0 monster Kavach Icarus 1656,1
|
||||
lhz_dun01,0,0 monster Laurell Weinder 1657,1
|
||||
lhz_dun01,150,50,16,18 monster Egnigem Cenia 1652,1,900000,800000
|
||||
lhz_dun01,150,50,16,18 monster Wickebine Tres 1653,1,900000,800000
|
||||
lhz_dun01,150,50,16,18 monster Armeyer Dinze 1654,1,900000,800000
|
||||
lhz_dun01,150,50,16,18 monster Errende Ebecee 1655,5,900000,800000
|
||||
lhz_dun01,150,50,16,18 monster Kavach Icarus 1656,5,600000,300000
|
||||
lhz_dun01,150,50,16,18 monster Laurell Weinder 1657,5,600000,300000
|
||||
lhz_dun01,250,150,18,30 monster Egnigem Cenia 1652,4,900000,800000
|
||||
lhz_dun01,250,150,18,30 monster Wickebine Tres 1653,4,600000,300000
|
||||
lhz_dun01,250,150,18,30 monster Armeyer Dinze 1654,4,900000,800000
|
||||
lhz_dun01,250,150,18,30 monster Errende Ebecee 1655,2,900000,800000
|
||||
lhz_dun01,250,150,18,30 monster Kavach Icarus 1656,2,900000,800000
|
||||
lhz_dun01,250,150,18,30 monster Laurell Weinder 1657,2,600000,300000
|
||||
lhz_dun01,50,150,11,35 monster Egnigem Cenia 1652,1,600000,300000
|
||||
lhz_dun01,50,150,11,35 monster Wickebine Tres 1653,4,900000,800000
|
||||
lhz_dun01,50,150,11,35 monster Armeyer Dinze 1654,1,900000,800000
|
||||
lhz_dun01,50,150,11,35 monster Errende Ebecee 1655,4,900000,800000
|
||||
lhz_dun01,50,150,11,35 monster Kavach Icarus 1656,4,900000,800000
|
||||
lhz_dun01,50,150,11,35 monster Laurell Weinder 1657,2,600000,300000
|
||||
lhz_dun01,192,61,18,30 monster Egnigem Cenia 1652,1,900000,800000
|
||||
lhz_dun01,192,61,18,30 monster Wickebine Tres 1653,1,900000,800000
|
||||
lhz_dun01,192,61,18,30 monster Armeyer Dinze 1654,1,900000,800000
|
||||
lhz_dun01,192,61,18,30 monster Errende Ebecee 1655,1,900000,800000
|
||||
lhz_dun01,192,61,18,30 monster Kavach Icarus 1656,1,900000,800000
|
||||
lhz_dun01,192,61,18,30 monster Laurell Weinder 1657,1,900000,800000
|
||||
lhz_dun01,0,0 monster Gemini-S58 1681,1,7200000,5400000
|
||||
|
||||
//========================================================================================
|
||||
// lhz_dun02 - Bio-life Labs 2F
|
||||
//========================================================================================
|
||||
lhz_dun02,0,0,0,0 monster Egnigem Cenia 1652,26,0,0,0
|
||||
lhz_dun02,0,0,0,0 monster Wickebine Tres 1653,26,0,0,0
|
||||
lhz_dun02,0,0,0,0 monster Armeyer Dinze 1654,26,0,0,0
|
||||
lhz_dun02,0,0,0,0 monster Errende Ebecee 1655,26,0,0,0
|
||||
lhz_dun02,0,0,0,0 monster Kavach Icarus 1656,26,0,0,0
|
||||
lhz_dun02,0,0,0,0 monster Laurell Weinder 1657,26,0,0,0
|
||||
lhz_dun02,150,150,56,54 monster Egnigem Cenia 1652,4,120000,60000,1
|
||||
lhz_dun02,150,150,56,54 monster Wickebine Tres 1653,4,120000,60000,1
|
||||
lhz_dun02,150,150,56,54 monster Armeyer Dinze 1654,4,120000,60000,1
|
||||
lhz_dun02,150,150,56,54 monster Errende Ebecee 1655,4,120000,60000,1
|
||||
lhz_dun02,150,150,56,54 monster Kavach Icarus 1656,4,120000,60000,1
|
||||
lhz_dun02,150,150,56,54 monster Laurell Weinder 1657,4,120000,60000,1
|
||||
lhz_dun02,150,150,105,90 monster Egnigem Cenia 1652,10,120000,60000,1
|
||||
lhz_dun02,150,150,105,90 monster Wickebine Tres 1653,10,120000,60000,1
|
||||
lhz_dun02,150,150,105,90 monster Armeyer Dinze 1654,10,120000,60000,1
|
||||
lhz_dun02,150,150,105,90 monster Errende Ebecee 1655,10,120000,60000,1
|
||||
lhz_dun02,150,150,105,90 monster Kavach Icarus 1656,10,120000,60000,1
|
||||
lhz_dun02,150,150,105,90 monster Laurell Weinder 1657,10,120000,60000,1
|
||||
lhz_dun02,0,0,0,0 monster Egnigem Cenia 1652,10,300000,150000,1
|
||||
lhz_dun02,0,0,0,0 monster Wickebine Tres 1653,10,300000,150000,1
|
||||
lhz_dun02,0,0,0,0 monster Armeyer Dinze 1654,10,300000,150000,1
|
||||
lhz_dun02,0,0,0,0 monster Errende Ebecee 1655,10,300000,150000,1
|
||||
lhz_dun02,0,0,0,0 monster Kavach Icarus 1656,10,300000,150000,1
|
||||
lhz_dun02,0,0,0,0 monster Laurell Weinder 1657,10,300000,150000,1
|
||||
lhz_dun02,0,0,0,0 monster Remover 1682,20,300000,150000,1
|
||||
lhz_dun02,0,0,0,0 monster Eremes Guile 1635,1,180000,120000,0
|
||||
lhz_dun02,0,0,0,0 monster Gemini-S58 1681,10,5400000,180000,0
|
||||
lhz_dun02,0,0 monster Egnigem Cenia 1652,26
|
||||
lhz_dun02,0,0 monster Wickebine Tres 1653,26
|
||||
lhz_dun02,0,0 monster Armeyer Dinze 1654,26
|
||||
lhz_dun02,0,0 monster Errende Ebecee 1655,26
|
||||
lhz_dun02,0,0 monster Kavach Icarus 1656,26
|
||||
lhz_dun02,0,0 monster Laurell Weinder 1657,26
|
||||
lhz_dun02,150,150,56,54 monster Egnigem Cenia 1652,4,120000,60000
|
||||
lhz_dun02,150,150,56,54 monster Wickebine Tres 1653,4,120000,60000
|
||||
lhz_dun02,150,150,56,54 monster Armeyer Dinze 1654,4,120000,60000
|
||||
lhz_dun02,150,150,56,54 monster Errende Ebecee 1655,4,120000,60000
|
||||
lhz_dun02,150,150,56,54 monster Kavach Icarus 1656,4,120000,60000
|
||||
lhz_dun02,150,150,56,54 monster Laurell Weinder 1657,4,120000,60000
|
||||
lhz_dun02,150,150,105,90 monster Egnigem Cenia 1652,10,120000,60000
|
||||
lhz_dun02,150,150,105,90 monster Wickebine Tres 1653,10,120000,60000
|
||||
lhz_dun02,150,150,105,90 monster Armeyer Dinze 1654,10,120000,60000
|
||||
lhz_dun02,150,150,105,90 monster Errende Ebecee 1655,10,120000,60000
|
||||
lhz_dun02,150,150,105,90 monster Kavach Icarus 1656,10,120000,60000
|
||||
lhz_dun02,150,150,105,90 monster Laurell Weinder 1657,10,120000,60000
|
||||
lhz_dun02,0,0 monster Egnigem Cenia 1652,10,300000,150000
|
||||
lhz_dun02,0,0 monster Wickebine Tres 1653,10,300000,150000
|
||||
lhz_dun02,0,0 monster Armeyer Dinze 1654,10,300000,150000
|
||||
lhz_dun02,0,0 monster Errende Ebecee 1655,10,300000,150000
|
||||
lhz_dun02,0,0 monster Kavach Icarus 1656,10,300000,150000
|
||||
lhz_dun02,0,0 monster Laurell Weinder 1657,10,300000,150000
|
||||
lhz_dun02,0,0 monster Remover 1682,20,300000,150000
|
||||
lhz_dun02,0,0 monster Eremes Guile 1635,1,180000,120000
|
||||
lhz_dun02,0,0 monster Gemini-S58 1681,10,5400000,180000
|
||||
lhz_dun02,0,0,0,0 boss_monster Egnigem Cenia 1658,1,7200000,600000,1
|
||||
|
||||
//========================================================================================
|
||||
// lhz_dun03 - Bio-life Labs 3F
|
||||
//========================================================================================
|
||||
lhz_dun03,140,235,116,30 monster Seyren Windsor 1634,4,180000,120000,0
|
||||
lhz_dun03,140,235,116,30 monster Eremes Guile 1635,4,180000,120000,0
|
||||
lhz_dun03,140,235,116,30 monster Howard Alt-Eisen 1636,4,180000,120000,0
|
||||
lhz_dun03,140,235,116,30 monster Margaretha Sorin 1637,4,180000,120000,0
|
||||
lhz_dun03,140,235,116,30 monster Cecil Damon 1638,4,180000,120000,0
|
||||
lhz_dun03,140,235,116,30 monster Kathryne Keyron 1639,4,180000,120000,0
|
||||
lhz_dun03,140,235,116,30 monster Seyren Windsor 1634,4,180000,120000
|
||||
lhz_dun03,140,235,116,30 monster Eremes Guile 1635,4,180000,120000
|
||||
lhz_dun03,140,235,116,30 monster Howard Alt-Eisen 1636,4,180000,120000
|
||||
lhz_dun03,140,235,116,30 monster Margaretha Sorin 1637,4,180000,120000
|
||||
lhz_dun03,140,235,116,30 monster Cecil Damon 1638,4,180000,120000
|
||||
lhz_dun03,140,235,116,30 monster Kathryne Keyron 1639,4,180000,120000
|
||||
|
||||
lhz_dun03,40,214,16,16 monster Seyren Windsor 1634,1,120000,60000,0
|
||||
lhz_dun03,40,214,16,16 monster Eremes Guile 1635,1,120000,60000,0
|
||||
lhz_dun03,40,214,16,16 monster Howard Alt-Eisen 1636,1,120000,60000,0
|
||||
lhz_dun03,40,214,16,16 monster Margaretha Sorin 1637,1,120000,60000,0
|
||||
lhz_dun03,40,214,16,16 monster Cecil Damon 1638,1,120000,60000,0
|
||||
lhz_dun03,40,214,16,16 monster Kathryne Keyron 1639,1,120000,60000,0
|
||||
lhz_dun03,40,214,16,16 monster Seyren Windsor 1634,1,120000,60000
|
||||
lhz_dun03,40,214,16,16 monster Eremes Guile 1635,1,120000,60000
|
||||
lhz_dun03,40,214,16,16 monster Howard Alt-Eisen 1636,1,120000,60000
|
||||
lhz_dun03,40,214,16,16 monster Margaretha Sorin 1637,1,120000,60000
|
||||
lhz_dun03,40,214,16,16 monster Cecil Damon 1638,1,120000,60000
|
||||
lhz_dun03,40,214,16,16 monster Kathryne Keyron 1639,1,120000,60000
|
||||
|
||||
lhz_dun03,240,213,16,17 monster Seyren Windsor 1634,1,120000,60000,0
|
||||
lhz_dun03,240,213,16,17 monster Eremes Guile 1635,1,120000,60000,0
|
||||
lhz_dun03,240,213,16,17 monster Howard Alt-Eisen 1636,1,120000,60000,0
|
||||
lhz_dun03,240,213,16,17 monster Margaretha Sorin 1637,1,120000,60000,0
|
||||
lhz_dun03,240,213,16,17 monster Cecil Damon 1638,1,120000,60000,0
|
||||
lhz_dun03,240,213,16,17 monster Kathryne Keyron 1639,1,120000,60000,0
|
||||
lhz_dun03,240,213,16,17 monster Seyren Windsor 1634,1,120000,60000
|
||||
lhz_dun03,240,213,16,17 monster Eremes Guile 1635,1,120000,60000
|
||||
lhz_dun03,240,213,16,17 monster Howard Alt-Eisen 1636,1,120000,60000
|
||||
lhz_dun03,240,213,16,17 monster Margaretha Sorin 1637,1,120000,60000
|
||||
lhz_dun03,240,213,16,17 monster Cecil Damon 1638,1,120000,60000
|
||||
lhz_dun03,240,213,16,17 monster Kathryne Keyron 1639,1,120000,60000
|
||||
|
||||
lhz_dun03,140,65,108,38 monster Seyren Windsor 1634,7,120000,160000,0
|
||||
lhz_dun03,140,65,108,38 monster Eremes Guile 1635,7,120000,160000,0
|
||||
lhz_dun03,140,65,108,38 monster Howard Alt-Eisen 1636,7,120000,160000,0
|
||||
lhz_dun03,140,65,108,38 monster Margaretha Sorin 1637,7,120000,160000,0
|
||||
lhz_dun03,140,65,108,38 monster Cecil Damon 1638,7,120000,60000,0
|
||||
lhz_dun03,140,65,108,38 monster Kathryne Keyron 1639,7,120000,60000,0
|
||||
lhz_dun03,140,65,108,38 monster Seyren Windsor 1634,7,120000,160000
|
||||
lhz_dun03,140,65,108,38 monster Eremes Guile 1635,7,120000,160000
|
||||
lhz_dun03,140,65,108,38 monster Howard Alt-Eisen 1636,7,120000,160000
|
||||
lhz_dun03,140,65,108,38 monster Margaretha Sorin 1637,7,120000,160000
|
||||
lhz_dun03,140,65,108,38 monster Cecil Damon 1638,7,120000,60000
|
||||
lhz_dun03,140,65,108,38 monster Kathryne Keyron 1639,7,120000,60000
|
||||
|
||||
lhz_dun03,140,31,8,15 monster Seyren Windsor 1634,1,600000,540000,0
|
||||
lhz_dun03,140,31,8,15 monster Eremes Guile 1635,1,540000,480000,0
|
||||
lhz_dun03,140,31,8,15 monster Howard Alt-Eisen 1636,1,600000,540000,0
|
||||
lhz_dun03,140,31,8,15 monster Margaretha Sorin 1637,1,540000,480000,0
|
||||
lhz_dun03,140,31,8,15 monster Cecil Damon 1638,1,600000,540000,0
|
||||
lhz_dun03,140,31,8,15 monster Kathryne Keyron 1639,1,540000,480000,0
|
||||
lhz_dun03,140,31,8,15 monster Seyren Windsor 1634,1,600000,540000
|
||||
lhz_dun03,140,31,8,15 monster Eremes Guile 1635,1,540000,480000
|
||||
lhz_dun03,140,31,8,15 monster Howard Alt-Eisen 1636,1,600000,540000
|
||||
lhz_dun03,140,31,8,15 monster Margaretha Sorin 1637,1,540000,480000
|
||||
lhz_dun03,140,31,8,15 monster Cecil Damon 1638,1,600000,540000
|
||||
lhz_dun03,140,31,8,15 monster Kathryne Keyron 1639,1,540000,480000
|
||||
|
||||
lhz_dun03,40,66,16,16 monster Seyren Windsor 1634,1,120000,60000,0
|
||||
lhz_dun03,40,66,16,16 monster Eremes Guile 1635,1,120000,60000,0
|
||||
lhz_dun03,40,66,16,16 monster Howard Alt-Eisen 1636,1,120000,60000,0
|
||||
lhz_dun03,40,66,16,16 monster Margaretha Sorin 1637,1,120000,60000,0
|
||||
lhz_dun03,40,66,16,16 monster Cecil Damon 1638,1,120000,60000,0
|
||||
lhz_dun03,40,66,16,16 monster Kathryne Keyron 1639,1,120000,60000,0
|
||||
lhz_dun03,40,66,16,16 monster Seyren Windsor 1634,1,120000,60000
|
||||
lhz_dun03,40,66,16,16 monster Eremes Guile 1635,1,120000,60000
|
||||
lhz_dun03,40,66,16,16 monster Howard Alt-Eisen 1636,1,120000,60000
|
||||
lhz_dun03,40,66,16,16 monster Margaretha Sorin 1637,1,120000,60000
|
||||
lhz_dun03,40,66,16,16 monster Cecil Damon 1638,1,120000,60000
|
||||
lhz_dun03,40,66,16,16 monster Kathryne Keyron 1639,1,120000,60000
|
||||
|
||||
lhz_dun03,240,66,16,16 monster Seyren Windsor 1634,1,120000,60000,0
|
||||
lhz_dun03,240,66,16,16 monster Eremes Guile 1635,1,120000,60000,0
|
||||
lhz_dun03,240,66,16,16 monster Howard Alt-Eisen 1636,1,120000,60000,0
|
||||
lhz_dun03,240,66,16,16 monster Margaretha Sorin 1637,1,120000,60000,0
|
||||
lhz_dun03,240,66,16,16 monster Cecil Damon 1638,1,120000,60000,0
|
||||
lhz_dun03,240,66,16,16 monster Kathryne Keyron 1639,1,120000,60000,0
|
||||
lhz_dun03,240,66,16,16 monster Seyren Windsor 1634,1,120000,60000
|
||||
lhz_dun03,240,66,16,16 monster Eremes Guile 1635,1,120000,60000
|
||||
lhz_dun03,240,66,16,16 monster Howard Alt-Eisen 1636,1,120000,60000
|
||||
lhz_dun03,240,66,16,16 monster Margaretha Sorin 1637,1,120000,60000
|
||||
lhz_dun03,240,66,16,16 monster Cecil Damon 1638,1,120000,60000
|
||||
lhz_dun03,240,66,16,16 monster Kathryne Keyron 1639,1,120000,60000
|
||||
|
||||
lhz_dun03,54,131,35,39 monster Seyren Windsor 1634,5,180000,120000,0
|
||||
lhz_dun03,54,131,35,39 monster Eremes Guile 1635,5,180000,120000,0
|
||||
lhz_dun03,54,131,35,39 monster Howard Alt-Eisen 1636,5,180000,120000,0
|
||||
lhz_dun03,54,131,35,39 monster Margaretha Sorin 1637,5,180000,120000,0
|
||||
lhz_dun03,54,131,35,39 monster Cecil Damon 1638,5,120000,60000,0
|
||||
lhz_dun03,54,131,35,39 monster Kathryne Keyron 1639,5,120000,60000,0
|
||||
lhz_dun03,54,131,35,39 monster Seyren Windsor 1634,5,180000,120000
|
||||
lhz_dun03,54,131,35,39 monster Eremes Guile 1635,5,180000,120000
|
||||
lhz_dun03,54,131,35,39 monster Howard Alt-Eisen 1636,5,180000,120000
|
||||
lhz_dun03,54,131,35,39 monster Margaretha Sorin 1637,5,180000,120000
|
||||
lhz_dun03,54,131,35,39 monster Cecil Damon 1638,5,120000,60000
|
||||
lhz_dun03,54,131,35,39 monster Kathryne Keyron 1639,5,120000,60000
|
||||
|
||||
lhz_dun03,228,137,35,39 monster Seyren Windsor 1634,5,180000,120000,0
|
||||
lhz_dun03,228,137,35,39 monster Eremes Guile 1635,5,180000,120000,0
|
||||
lhz_dun03,228,137,35,39 monster Howard Alt-Eisen 1636,5,180000,120000,0
|
||||
lhz_dun03,228,137,35,39 monster Margaretha Sorin 1637,5,180000,120000,0
|
||||
lhz_dun03,228,137,35,39 monster Cecil Damon 1638,5,120000,60000,0
|
||||
lhz_dun03,228,137,35,39 monster Kathryne Keyron 1639,5,120000,60000,0
|
||||
lhz_dun03,228,137,35,39 monster Seyren Windsor 1634,5,180000,120000
|
||||
lhz_dun03,228,137,35,39 monster Eremes Guile 1635,5,180000,120000
|
||||
lhz_dun03,228,137,35,39 monster Howard Alt-Eisen 1636,5,180000,120000
|
||||
lhz_dun03,228,137,35,39 monster Margaretha Sorin 1637,5,180000,120000
|
||||
lhz_dun03,228,137,35,39 monster Cecil Damon 1638,5,120000,60000
|
||||
lhz_dun03,228,137,35,39 monster Kathryne Keyron 1639,5,120000,60000
|
||||
|
||||
lhz_dun03,138,138,36,34 monster Seyren Windsor 1634,3,120000,60000,0
|
||||
lhz_dun03,138,138,36,34 monster Eremes Guile 1635,3,120000,60000,0
|
||||
lhz_dun03,138,138,36,34 monster Howard Alt-Eisen 1636,3,120000,60000,0
|
||||
lhz_dun03,138,138,36,34 monster Margaretha Sorin 1637,3,180000,120000,0
|
||||
lhz_dun03,138,138,36,34 monster Cecil Damon 1638,4,0,0,0
|
||||
lhz_dun03,138,138,36,34 monster Kathryne Keyron 1639,4,0,0,0
|
||||
lhz_dun03,138,138,36,34 monster Seyren Windsor 1634,3,120000,60000
|
||||
lhz_dun03,138,138,36,34 monster Eremes Guile 1635,3,120000,60000
|
||||
lhz_dun03,138,138,36,34 monster Howard Alt-Eisen 1636,3,120000,60000
|
||||
lhz_dun03,138,138,36,34 monster Margaretha Sorin 1637,3,180000,120000
|
||||
lhz_dun03,138,138,36,34 monster Cecil Damon 1638,4
|
||||
lhz_dun03,138,138,36,34 monster Kathryne Keyron 1639,4
|
||||
|
||||
lhz_dun03,140,192,66,21 monster Seyren Windsor 1634,7,120000,60000,0
|
||||
lhz_dun03,140,192,66,21 monster Eremes Guile 1635,7,180000,120000,0
|
||||
lhz_dun03,140,192,66,21 monster Howard Alt-Eisen 1636,7,120000,60000,0
|
||||
lhz_dun03,140,192,66,21 monster Margaretha Sorin 1637,7,180000,120000,0
|
||||
lhz_dun03,140,192,66,21 monster Cecil Damon 1638,7,120000,60000,0
|
||||
lhz_dun03,140,192,66,21 monster Kathryne Keyron 1639,7,120000,60000,0
|
||||
lhz_dun03,140,192,66,21 monster Seyren Windsor 1634,7,120000,60000
|
||||
lhz_dun03,140,192,66,21 monster Eremes Guile 1635,7,180000,120000
|
||||
lhz_dun03,140,192,66,21 monster Howard Alt-Eisen 1636,7,120000,60000
|
||||
lhz_dun03,140,192,66,21 monster Margaretha Sorin 1637,7,180000,120000
|
||||
lhz_dun03,140,192,66,21 monster Cecil Damon 1638,7,120000,60000
|
||||
lhz_dun03,140,192,66,21 monster Kathryne Keyron 1639,7,120000,60000
|
||||
|
||||
lhz_dun03,89,164,4,8 monster Kathryne Keyron 1639,1,120000,60000,0
|
||||
lhz_dun03,89,164,4,8 monster Cecil Damon 1638,3,120000,60000,0
|
||||
lhz_dun03,107,167,4,5 monster Kathryne Keyron 1639,1,120000,60000,0
|
||||
lhz_dun03,107,167,4,5 monster Cecil Damon 1638,3,120000,60000,0
|
||||
lhz_dun03,171,167,4,5 monster Kathryne Keyron 1639,1,120000,60000,0
|
||||
lhz_dun03,171,167,4,5 monster Cecil Damon 1638,3,120000,60000,0
|
||||
lhz_dun03,189,164,4,8 monster Kathryne Keyron 1639,1,120000,60000,0
|
||||
lhz_dun03,189,164,4,8 monster Cecil Damon 1638,3,120000,60000,0
|
||||
lhz_dun03,89,113,4,9 monster Kathryne Keyron 1639,1,120000,60000,0
|
||||
lhz_dun03,89,113,4,9 monster Cecil Damon 1638,3,120000,60000,0
|
||||
lhz_dun03,107,109,4,5 monster Kathryne Keyron 1639,1,120000,60000,0
|
||||
lhz_dun03,107,109,4,5 monster Cecil Damon 1638,3,120000,60000,0
|
||||
lhz_dun03,171,109,4,5 monster Kathryne Keyron 1639,1,120000,60000,0
|
||||
lhz_dun03,171,109,4,5 monster Cecil Damon 1638,3,120000,60000,0
|
||||
lhz_dun03,189,113,4,9 monster Kathryne Keyron 1639,1,120000,60000,0
|
||||
lhz_dun03,189,113,4,9 monster Cecil Damon 1638,3,120000,60000,0
|
||||
lhz_dun03,89,164,4,8 monster Kathryne Keyron 1639,1,120000,60000
|
||||
lhz_dun03,89,164,4,8 monster Cecil Damon 1638,3,120000,60000
|
||||
lhz_dun03,107,167,4,5 monster Kathryne Keyron 1639,1,120000,60000
|
||||
lhz_dun03,107,167,4,5 monster Cecil Damon 1638,3,120000,60000
|
||||
lhz_dun03,171,167,4,5 monster Kathryne Keyron 1639,1,120000,60000
|
||||
lhz_dun03,171,167,4,5 monster Cecil Damon 1638,3,120000,60000
|
||||
lhz_dun03,189,164,4,8 monster Kathryne Keyron 1639,1,120000,60000
|
||||
lhz_dun03,189,164,4,8 monster Cecil Damon 1638,3,120000,60000
|
||||
lhz_dun03,89,113,4,9 monster Kathryne Keyron 1639,1,120000,60000
|
||||
lhz_dun03,89,113,4,9 monster Cecil Damon 1638,3,120000,60000
|
||||
lhz_dun03,107,109,4,5 monster Kathryne Keyron 1639,1,120000,60000
|
||||
lhz_dun03,107,109,4,5 monster Cecil Damon 1638,3,120000,60000
|
||||
lhz_dun03,171,109,4,5 monster Kathryne Keyron 1639,1,120000,60000
|
||||
lhz_dun03,171,109,4,5 monster Cecil Damon 1638,3,120000,60000
|
||||
lhz_dun03,189,113,4,9 monster Kathryne Keyron 1639,1,120000,60000
|
||||
lhz_dun03,189,113,4,9 monster Cecil Damon 1638,3,120000,60000
|
||||
|
||||
lhz_dun03,96,164,13,8 monster Seyren Windsor 1634,2,300000,120000,0
|
||||
lhz_dun03,96,164,13,8 monster Eremes Guile 1635,2,300000,120000,0
|
||||
lhz_dun03,96,164,13,8 monster Margaretha Sorin 1637,2,300000,120000,0
|
||||
lhz_dun03,96,164,13,8 monster Cecil Damon 1638,5,0,0,0
|
||||
lhz_dun03,96,164,13,8 monster Kathryne Keyron 1639,3,0,0,0
|
||||
lhz_dun03,180,164,13,8 monster Seyren Windsor 1634,2,300000,120000,0
|
||||
lhz_dun03,180,164,13,8 monster Howard Alt-Eisen 1636,2,300000,120000,0
|
||||
lhz_dun03,180,164,13,8 monster Margaretha Sorin 1637,2,300000,120000,0
|
||||
lhz_dun03,180,164,13,8 monster Cecil Damon 1638,5,0,0,0
|
||||
lhz_dun03,180,164,13,8 monster Kathryne Keyron 1639,3,0,0,0
|
||||
lhz_dun03,98,113,13,9 monster Seyren Windsor 1634,2,300000,120000,0
|
||||
lhz_dun03,98,113,13,9 monster Eremes Guile 1635,2,300000,120000,0
|
||||
lhz_dun03,98,113,13,9 monster Howard Alt-Eisen 1636,2,300000,120000,0
|
||||
lhz_dun03,98,113,13,9 monster Cecil Damon 1638,5,0,0,0
|
||||
lhz_dun03,98,113,13,9 monster Kathryne Keyron 1639,3,0,0,0
|
||||
lhz_dun03,180,113,13,9 monster Eremes Guile 1635,2,300000,120000,0
|
||||
lhz_dun03,180,113,13,9 monster Howard Alt-Eisen 1636,2,300000,120000,0
|
||||
lhz_dun03,180,113,13,9 monster Margaretha Sorin 1637,2,300000,120000,0
|
||||
lhz_dun03,180,113,13,9 monster Cecil Damon 1638,5,0,0,0
|
||||
lhz_dun03,180,113,13,9 monster Kathryne Keyron 1639,3,0,0,0
|
||||
lhz_dun03,96,164,13,8 monster Seyren Windsor 1634,2,300000,120000
|
||||
lhz_dun03,96,164,13,8 monster Eremes Guile 1635,2,300000,120000
|
||||
lhz_dun03,96,164,13,8 monster Margaretha Sorin 1637,2,300000,120000
|
||||
lhz_dun03,96,164,13,8 monster Cecil Damon 1638,5
|
||||
lhz_dun03,96,164,13,8 monster Kathryne Keyron 1639,3
|
||||
lhz_dun03,180,164,13,8 monster Seyren Windsor 1634,2,300000,120000
|
||||
lhz_dun03,180,164,13,8 monster Howard Alt-Eisen 1636,2,300000,120000
|
||||
lhz_dun03,180,164,13,8 monster Margaretha Sorin 1637,2,300000,120000
|
||||
lhz_dun03,180,164,13,8 monster Cecil Damon 1638,5
|
||||
lhz_dun03,180,164,13,8 monster Kathryne Keyron 1639,3
|
||||
lhz_dun03,98,113,13,9 monster Seyren Windsor 1634,2,300000,120000
|
||||
lhz_dun03,98,113,13,9 monster Eremes Guile 1635,2,300000,120000
|
||||
lhz_dun03,98,113,13,9 monster Howard Alt-Eisen 1636,2,300000,120000
|
||||
lhz_dun03,98,113,13,9 monster Cecil Damon 1638,5
|
||||
lhz_dun03,98,113,13,9 monster Kathryne Keyron 1639,3
|
||||
lhz_dun03,180,113,13,9 monster Eremes Guile 1635,2,300000,120000
|
||||
lhz_dun03,180,113,13,9 monster Howard Alt-Eisen 1636,2,300000,120000
|
||||
lhz_dun03,180,113,13,9 monster Margaretha Sorin 1637,2,300000,120000
|
||||
lhz_dun03,180,113,13,9 monster Cecil Damon 1638,5
|
||||
lhz_dun03,180,113,13,9 monster Kathryne Keyron 1639,3
|
||||
|
||||
lhz_dun03,114,138,12,16 monster Lord Knight Seyren 1640,1,2700000,2400000,1
|
||||
lhz_dun03,163,138,12,16 monster Whitesmith Howard 1642,1,3000000,2700000,1
|
||||
lhz_dun03,139,158,20,11 monster Assassin Cross Eremes 1641,1,2580000,2340000,1
|
||||
lhz_dun03,139,117,20,11 monster Sniper Cecil 1644,1,2700000,2500000,1
|
||||
lhz_dun03,138,138,36,34 monster High Priest Margaretha 1643,1,3300000,3000000,1
|
||||
lhz_dun03,138,138,36,34 monster High Wizard Kathryne 1645,1,2580000,2460000,1
|
||||
lhz_dun03,114,138,12,16 monster Lord Knight Seyren 1640,1,2700000,2400000
|
||||
lhz_dun03,163,138,12,16 monster Whitesmith Howard 1642,1,3000000,2700000
|
||||
lhz_dun03,139,158,20,11 monster Assassin Cross Eremes 1641,1,2580000,2340000
|
||||
lhz_dun03,139,117,20,11 monster Sniper Cecil 1644,1,2700000,2500000
|
||||
lhz_dun03,138,138,36,34 monster High Priest Margaretha 1643,1,3300000,3000000
|
||||
lhz_dun03,138,138,36,34 monster High Wizard Kathryne 1645,1,2580000,2460000
|
||||
|
||||
lhz_dun03,2,2,0 script summon_boss_lt -1,{
|
||||
OnInit:
|
||||
|
||||
@@ -15,29 +15,29 @@
|
||||
//==================================================
|
||||
// lou_dun01 - The Royal Tomb
|
||||
//==================================================
|
||||
lou_dun01,0,0,0,0 monster Horong 1129,15,0,0,0
|
||||
lou_dun01,0,0,0,0 monster Mi Gao 1516,15,0,0,0
|
||||
lou_dun01,215,159,40,80 monster Side Winder 1037,10,300000,120000,0
|
||||
lou_dun01,215,159,40,80 monster Jing Guai 1517,25,300000,120000,0
|
||||
lou_dun01,0,0,0,0 monster Jing Guai 1517,20,0,0,0
|
||||
lou_dun01,0,0,0,0 monster Grizzly 1381,15,0,0,0
|
||||
lou_dun01,0,0,0,0 monster Leib Olmai 1306,1,300000,120000,0
|
||||
lou_dun01,197,77,10,10 monster Black Mushroom 1084,5,0,0,0
|
||||
lou_dun01,0,0,0,0 monster Shining Plant 1083,5,0,0,0
|
||||
lou_dun01,0,0 monster Horong 1129,15
|
||||
lou_dun01,0,0 monster Mi Gao 1516,15
|
||||
lou_dun01,215,159,40,80 monster Side Winder 1037,10,300000,120000
|
||||
lou_dun01,215,159,40,80 monster Jing Guai 1517,25,300000,120000
|
||||
lou_dun01,0,0 monster Jing Guai 1517,20
|
||||
lou_dun01,0,0 monster Grizzly 1381,15
|
||||
lou_dun01,0,0 monster Leib Olmai 1306,1,300000,120000
|
||||
lou_dun01,197,77,10,10 monster Black Mushroom 1084,5
|
||||
lou_dun01,0,0 monster Shining Plant 1083,5
|
||||
|
||||
//==================================================
|
||||
// lou_dun02 - Inside the Royal Tomb
|
||||
//==================================================
|
||||
lou_dun02,0,0,0,0 monster Yao Jun 1512,40,300000,120000,0
|
||||
lou_dun02,0,0,0,0 monster Munak 1026,25,0,0,0
|
||||
lou_dun02,0,0,0,0 monster Zhu Po Long 1514,5,0,0,0
|
||||
lou_dun02,0,0,0,0 monster Mimic 1191,5,0,0,0
|
||||
lou_dun02,0,0 monster Yao Jun 1512,40,300000,120000
|
||||
lou_dun02,0,0 monster Munak 1026,25
|
||||
lou_dun02,0,0 monster Zhu Po Long 1514,5
|
||||
lou_dun02,0,0 monster Mimic 1191,5
|
||||
|
||||
//==================================================
|
||||
// lou_dun03 - Suei Long Gon
|
||||
//==================================================
|
||||
lou_dun03,0,0,0,0 monster Yao Jun 1512,25,120000,60000,0
|
||||
lou_dun03,0,0,0,0 monster Zhu Po Long 1514,25,120000,60000,0
|
||||
lou_dun03,0,0,0,0 monster Mao Guai 1513,15,0,0,0
|
||||
lou_dun03,0,0,0,0 monster Green Maiden 1631,5,3000000,1800000,1
|
||||
lou_dun03,0,0 monster Yao Jun 1512,25,120000,60000
|
||||
lou_dun03,0,0 monster Zhu Po Long 1514,25,120000,60000
|
||||
lou_dun03,0,0 monster Mao Guai 1513,15
|
||||
lou_dun03,0,0 monster Green Maiden 1631,5,3000000,1800000
|
||||
lou_dun03,0,0,0,0 boss_monster White Lady 1630,1,7000000,600000,1
|
||||
|
||||
@@ -15,29 +15,29 @@
|
||||
//==================================================
|
||||
// mag_dun01 - Nogg Road F1
|
||||
//==================================================
|
||||
mag_dun01,0,0,0,0 monster Blazer 1367,20,0,0,0
|
||||
mag_dun01,0,0,0,0 monster Lava Golem 1366,20,600000,300000,0
|
||||
mag_dun01,0,0,0,0 monster Kaho 1072,20,0,0,0
|
||||
mag_dun01,0,0,0,0 monster Explosion 1383,30,0,0,0
|
||||
mag_dun01,0,0,0,0 monster Grizzly 1381,10,0,0,0
|
||||
mag_dun01,0,0 monster Blazer 1367,20
|
||||
mag_dun01,0,0 monster Lava Golem 1366,20,600000,300000
|
||||
mag_dun01,0,0 monster Kaho 1072,20
|
||||
mag_dun01,0,0 monster Explosion 1383,30
|
||||
mag_dun01,0,0 monster Grizzly 1381,10
|
||||
|
||||
//==================================================
|
||||
// mag_dun02 - Nogg Road F2
|
||||
//==================================================
|
||||
mag_dun02,0,0,0,0 monster Gig 1387,10,0,0,0
|
||||
mag_dun02,0,0,0,0 monster Deleter 1384,25,0,0,0
|
||||
mag_dun02,0,0,0,0 monster Deleter 1385,25,0,0,0
|
||||
mag_dun02,0,0,0,0 monster Diabolic 1382,10,120000,30000,0
|
||||
mag_dun02,0,0,0,0 monster Nightmare Terror 1379,15,0,0,0
|
||||
mag_dun02,0,0,0,0 monster Nightmare Terror 1379,10,60000,30000,0
|
||||
mag_dun02,110,190,50,20 monster Blazer 1367,5,300000,150000,0
|
||||
mag_dun02,110,190,50,20 monster Nightmare Terror 1379,4,180000,150000,0
|
||||
mag_dun02,200,120,40,40 monster Blazer 1367,15,300000,150000,0
|
||||
mag_dun02,103,102,58,59 monster Nightmare Terror 1379,10,300000,150000,0
|
||||
mag_dun02,120,202,20,20 monster Deleter 1384,3,300000,150000,0
|
||||
mag_dun02,184,170,43,55 monster Deleter 1384,7,300000,150000,0
|
||||
mag_dun02,184,170,43,55 monster Deleter 1385,10,300000,150000,0
|
||||
mag_dun02,184,170,43,55 monster Nightmare Terror 1379,7,300000,150000,0
|
||||
mag_dun02,197,59,50,37 monster Deleter 1384,3,300000,150000,0
|
||||
mag_dun02,197,59,50,37 monster Deleter 1385,5,300000,150000,0
|
||||
mag_dun02,197,59,50,37 monster Diabolic 1382,5,300000,30000,0
|
||||
mag_dun02,0,0 monster Gig 1387,10
|
||||
mag_dun02,0,0 monster Deleter 1384,25
|
||||
mag_dun02,0,0 monster Deleter 1385,25
|
||||
mag_dun02,0,0 monster Diabolic 1382,10,120000,30000
|
||||
mag_dun02,0,0 monster Nightmare Terror 1379,15
|
||||
mag_dun02,0,0 monster Nightmare Terror 1379,10,60000,30000
|
||||
mag_dun02,110,190,50,20 monster Blazer 1367,5,300000,150000
|
||||
mag_dun02,110,190,50,20 monster Nightmare Terror 1379,4,180000,150000
|
||||
mag_dun02,200,120,40,40 monster Blazer 1367,15,300000,150000
|
||||
mag_dun02,103,102,58,59 monster Nightmare Terror 1379,10,300000,150000
|
||||
mag_dun02,120,202,20,20 monster Deleter 1384,3,300000,150000
|
||||
mag_dun02,184,170,43,55 monster Deleter 1384,7,300000,150000
|
||||
mag_dun02,184,170,43,55 monster Deleter 1385,10,300000,150000
|
||||
mag_dun02,184,170,43,55 monster Nightmare Terror 1379,7,300000,150000
|
||||
mag_dun02,197,59,50,37 monster Deleter 1384,3,300000,150000
|
||||
mag_dun02,197,59,50,37 monster Deleter 1385,5,300000,150000
|
||||
mag_dun02,197,59,50,37 monster Diabolic 1382,5,300000,30000
|
||||
|
||||
@@ -13,24 +13,24 @@
|
||||
//==================================================
|
||||
// mjo_dun01 - Mjolnir Dead Pit F1
|
||||
//==================================================
|
||||
mjo_dun01,0,0,0,0 monster Familiar 1005,30,0,0,0
|
||||
mjo_dun01,0,0,0,0 monster Tarou 1175,60,0,0,0
|
||||
mjo_dun01,0,0,0,0 monster Martin 1145,20,0,0,0
|
||||
mjo_dun01,0,0 monster Familiar 1005,30
|
||||
mjo_dun01,0,0 monster Tarou 1175,60
|
||||
mjo_dun01,0,0 monster Martin 1145,20
|
||||
|
||||
//==================================================
|
||||
// mjo_dun02 - Mjolnir Dead Pit F2
|
||||
//==================================================
|
||||
mjo_dun02,0,0,0,0 monster Martin 1145,60,0,0,0
|
||||
mjo_dun02,0,0,0,0 monster Drainliar 1111,20,0,0,0
|
||||
mjo_dun02,0,0,0,0 monster Skeleton Worker 1169,20,0,0,0
|
||||
mjo_dun02,0,0,0,0 monster Giearth 1121,35,30000,10000,0
|
||||
mjo_dun02,0,0 monster Martin 1145,60
|
||||
mjo_dun02,0,0 monster Drainliar 1111,20
|
||||
mjo_dun02,0,0 monster Skeleton Worker 1169,20
|
||||
mjo_dun02,0,0 monster Giearth 1121,35,30000,10000
|
||||
|
||||
//==================================================
|
||||
// mjo_dun03 - Mjolnir Dead Pit F3
|
||||
//==================================================
|
||||
mjo_dun03,0,0,0,0 monster Martin 1145,5,0,0,0
|
||||
mjo_dun03,0,0,0,0 monster Skeleton Worker 1169,70,0,0,0
|
||||
mjo_dun03,0,0,0,0 monster Giearth 1121,5,0,0,0
|
||||
mjo_dun03,0,0,0,0 monster Myst 1151,35,0,0,0
|
||||
mjo_dun03,0,0,0,0 monster Cramp 1209,2,300000,150000,0
|
||||
mjo_dun03,0,0,0,0 monster Cramp 1209,1,50000,25000,0
|
||||
mjo_dun03,0,0 monster Martin 1145,5
|
||||
mjo_dun03,0,0 monster Skeleton Worker 1169,70
|
||||
mjo_dun03,0,0 monster Giearth 1121,5
|
||||
mjo_dun03,0,0 monster Myst 1151,35
|
||||
mjo_dun03,0,0 monster Cramp 1209,2,300000,150000
|
||||
mjo_dun03,0,0 monster Cramp 1209,1,50000,25000
|
||||
|
||||
@@ -15,50 +15,50 @@
|
||||
//==================================================
|
||||
// moc_pryd01 - Inside Pyramid F1
|
||||
//==================================================
|
||||
moc_pryd01,0,0,0,0 monster Familiar 1005,50,0,0,0
|
||||
moc_pryd01,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
moc_pryd01,0,0 monster Familiar 1005,50
|
||||
moc_pryd01,0,0 monster Poporing 1031,20
|
||||
|
||||
//==================================================
|
||||
// moc_pryd02 - Inside Pyramid F2
|
||||
//==================================================
|
||||
moc_pryd02,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
moc_pryd02,0,0,0,0 monster Drainliar 1111,20,0,0,0
|
||||
moc_pryd02,0,0,0,0 monster Mummy 1041,30,0,0,0
|
||||
moc_pryd02,0,0,0,0 monster Isis 1029,5,0,0,0
|
||||
moc_pryd02,0,0,0,0 monster Soldier Skeleton 1028,30,0,0,0
|
||||
moc_pryd02,0,0,0,0 monster Archer Skeleton 1016,30,0,0,0
|
||||
moc_pryd02,0,0 monster Poporing 1031,20
|
||||
moc_pryd02,0,0 monster Drainliar 1111,20
|
||||
moc_pryd02,0,0 monster Mummy 1041,30
|
||||
moc_pryd02,0,0 monster Isis 1029,5
|
||||
moc_pryd02,0,0 monster Soldier Skeleton 1028,30
|
||||
moc_pryd02,0,0 monster Archer Skeleton 1016,30
|
||||
|
||||
//==================================================
|
||||
// moc_pryd03 - Inside Pyramid F3
|
||||
//==================================================
|
||||
moc_pryd03,0,0,0,0 monster Drainliar 1111,5,0,0,0
|
||||
moc_pryd03,0,0,0,0 monster Mimic 1191,5,0,0,0
|
||||
moc_pryd03,0,0,0,0 monster Matyr 1146,10,0,0,0
|
||||
moc_pryd03,0,0,0,0 monster Mummy 1041,70,0,0,0
|
||||
moc_pryd03,0,0,0,0 monster Verit 1032,20,600000,300000,1
|
||||
moc_pryd03,0,0 monster Drainliar 1111,5
|
||||
moc_pryd03,0,0 monster Mimic 1191,5
|
||||
moc_pryd03,0,0 monster Matyr 1146,10
|
||||
moc_pryd03,0,0 monster Mummy 1041,70
|
||||
moc_pryd03,0,0 monster Verit 1032,20,600000,300000
|
||||
|
||||
//==================================================
|
||||
// moc_pryd04 - Inside Pyramid F4
|
||||
//==================================================
|
||||
moc_pryd04,0,0,0,0 monster Mummy 1041,25,0,0,0
|
||||
moc_pryd04,0,0,0,0 monster Ancient Mummy 1297,3,0,0,0
|
||||
moc_pryd04,0,0,0,0 monster Isis 1029,50,150000,75000,0
|
||||
moc_pryd04,0,0,0,0 monster Mimic 1191,15,600000,300000,1
|
||||
moc_pryd04,0,0 monster Mummy 1041,25
|
||||
moc_pryd04,0,0 monster Ancient Mummy 1297,3
|
||||
moc_pryd04,0,0 monster Isis 1029,50,150000,75000
|
||||
moc_pryd04,0,0 monster Mimic 1191,15,600000,300000
|
||||
moc_pryd04,0,0,0,0 boss_monster Osiris 1038,1,3600000,600000,0
|
||||
moc_pryd04,0,0,0,0 monster Matyr 1146,20,0,0,0
|
||||
moc_pryd04,0,0 monster Matyr 1146,20
|
||||
|
||||
//==================================================
|
||||
// moc_pryd05 - Inside Pyramid B1
|
||||
//==================================================
|
||||
moc_pryd05,0,0,0,0 monster Minorous 1149,60,0,0,0
|
||||
moc_pryd05,0,0,0,0 monster Mummy 1041,10,0,0,0
|
||||
moc_pryd05,0,0,0,0 monster Verit 1032,50,0,0,0
|
||||
moc_pryd05,0,0 monster Minorous 1149,60
|
||||
moc_pryd05,0,0 monster Mummy 1041,10
|
||||
moc_pryd05,0,0 monster Verit 1032,50
|
||||
|
||||
//==================================================
|
||||
// moc_pryd06 - Inside Pyramid B2
|
||||
//==================================================
|
||||
moc_pryd06,0,0,0,0 monster Verit 1032,10,0,0,0
|
||||
moc_pryd06,0,0,0,0 monster Arclouze 1194,20,0,0,0
|
||||
moc_pryd06,100,90,80,50 monster Ancient Mummy 1297,20,0,0,0
|
||||
moc_pryd06,100,90,80,50 monster Mimic 1191,20,0,0,0
|
||||
moc_pryd06,0,0 monster Verit 1032,10
|
||||
moc_pryd06,0,0 monster Arclouze 1194,20
|
||||
moc_pryd06,100,90,80,50 monster Ancient Mummy 1297,20
|
||||
moc_pryd06,100,90,80,50 monster Mimic 1191,20
|
||||
moc_pryd06,102,85,1,1 boss_monster Amon Ra 1511,1,3600000,600000,0
|
||||
|
||||
@@ -16,34 +16,34 @@
|
||||
//==================================================
|
||||
// mosk_dun01 - Moscovia Dungeon 1
|
||||
//==================================================
|
||||
mosk_dun01,64,236,100,100 monster Wood Goblin 1880,15,10000,0,1
|
||||
mosk_dun01,64,236,100,100 monster Les 1881,7,10000,0,1
|
||||
mosk_dun01,99,162,100,100 monster Wood Goblin 1880,15,10000,0,1
|
||||
mosk_dun01,99,162,100,100 monster Les 1881,7,10000,0,1
|
||||
mosk_dun01,150,80,100,5 monster Wood Goblin 1880,30,10000,0,1
|
||||
mosk_dun01,150,80,100,5 monster Les 1881,15,10000,0,1
|
||||
mosk_dun01,241,177,10,10 monster Wood Goblin 1880,3,10000,0,1
|
||||
mosk_dun01,241,177,10,10 monster Les 1881,2,10000,0,1
|
||||
mosk_dun01,198,223,10,10 monster Wood Goblin 1880,3,10000,0,1
|
||||
mosk_dun01,198,223,10,10 monster Les 1881,2,10000,0,1
|
||||
mosk_dun01,0,0,0,0 monster Poporing 1031,20,10000,0,1
|
||||
mosk_dun01,0,0,0,0 monster Mantis 1139,10,20000,0,0
|
||||
mosk_dun01,64,236,100,100 monster Wood Goblin 1880,15,10000
|
||||
mosk_dun01,64,236,100,100 monster Les 1881,7,10000
|
||||
mosk_dun01,99,162,100,100 monster Wood Goblin 1880,15,10000
|
||||
mosk_dun01,99,162,100,100 monster Les 1881,7,10000
|
||||
mosk_dun01,150,80,100,5 monster Wood Goblin 1880,30,10000
|
||||
mosk_dun01,150,80,100,5 monster Les 1881,15,10000
|
||||
mosk_dun01,241,177,10,10 monster Wood Goblin 1880,3,10000
|
||||
mosk_dun01,241,177,10,10 monster Les 1881,2,10000
|
||||
mosk_dun01,198,223,10,10 monster Wood Goblin 1880,3,10000
|
||||
mosk_dun01,198,223,10,10 monster Les 1881,2,10000
|
||||
mosk_dun01,0,0 monster Poporing 1031,20,10000
|
||||
mosk_dun01,0,0 monster Mantis 1139,10,20000
|
||||
|
||||
//==================================================
|
||||
// mosk_dun02 - Moscovia Dungeon 2
|
||||
//==================================================
|
||||
mosk_dun02,0,0,0,0 monster Wood Goblin 1880,30,10000,10000,1
|
||||
mosk_dun02,0,0,0,0 monster Les 1881,40,10000,10000,1
|
||||
mosk_dun02,0,0,0,0 monster Baba Yaga 1882,20,20000,10000,1
|
||||
mosk_dun02,0,0,0,0 monster Uzhas 1883,5,20000,10000,1
|
||||
mosk_dun02,0,0 monster Wood Goblin 1880,30,10000,10000
|
||||
mosk_dun02,0,0 monster Les 1881,40,10000,10000
|
||||
mosk_dun02,0,0 monster Baba Yaga 1882,20,20000,10000
|
||||
mosk_dun02,0,0 monster Uzhas 1883,5,20000,10000
|
||||
|
||||
//==================================================
|
||||
// mosk_dun03 - Moscovia Dungeon 3
|
||||
//==================================================
|
||||
mosk_dun03,0,0,0,0 monster Baba Yaga 1882,60,10000,10000,1
|
||||
mosk_dun03,0,0,0,0 monster Uzhas 1883,35,20000,10000,1
|
||||
mosk_dun03,0,0,0,0 monster Mavka 1884,15,20000,10000,1
|
||||
mosk_dun03,0,0,0,0 monster Yellow Plant 1081,10,0,0,0
|
||||
mosk_dun03,0,0,0,0 monster White Plant 1082,10,0,0,0
|
||||
mosk_dun03,0,0,0,0 monster Shining Plant 1083,5,10000,0,0
|
||||
mosk_dun03,0,0 monster Baba Yaga 1882,60,10000,10000
|
||||
mosk_dun03,0,0 monster Uzhas 1883,35,20000,10000
|
||||
mosk_dun03,0,0 monster Mavka 1884,15,20000,10000
|
||||
mosk_dun03,0,0 monster Yellow Plant 1081,10
|
||||
mosk_dun03,0,0 monster White Plant 1082,10
|
||||
mosk_dun03,0,0 monster Shining Plant 1083,5,10000
|
||||
mosk_dun03,207,221,5,5 boss_monster Gopinich 1885,1,7200000,600000,1
|
||||
|
||||
@@ -13,9 +13,9 @@
|
||||
//==================================================
|
||||
// nyd_dun01 - Yggdrasil Root Dungeon
|
||||
//==================================================
|
||||
nyd_dun01,0,0,0,0 monster Draco 2013,40,0,0,0
|
||||
nyd_dun01,0,0,0,0 monster Draco's Egg 2014,10,0,0,0
|
||||
nyd_dun01,0,0,0,0 monster Aqua Elemental 2016,20,0,0,0
|
||||
nyd_dun01,0,0,0,0 monster Dark Pinguicula 2015,10,0,0,0
|
||||
nyd_dun01,0,0,0,0 monster Rata 2017,2,900000,0,0
|
||||
nyd_dun01,0,0,0,0 monster Duneyrr 2018,2,900000,0,0
|
||||
nyd_dun01,0,0 monster Draco 2013,40
|
||||
nyd_dun01,0,0 monster Draco's Egg 2014,10,0,0,0
|
||||
nyd_dun01,0,0 monster Aqua Elemental 2016,20
|
||||
nyd_dun01,0,0 monster Dark Pinguicula 2015,10
|
||||
nyd_dun01,0,0 monster Rata 2017,2,900000
|
||||
nyd_dun01,0,0 monster Duneyrr 2018,2,900000
|
||||
|
||||
@@ -15,53 +15,53 @@
|
||||
//==================================================
|
||||
// odin_tem01 - Odin Temple F1
|
||||
//==================================================
|
||||
odin_tem01,0,0,0,0 monster Breeze 1692,10,300000,240000,0
|
||||
odin_tem01,0,0,0,0 monster Plasma 1697,3,900000,300000,0
|
||||
odin_tem01,0,0,0,0 monster Plasma 1695,3,900000,300000,0
|
||||
odin_tem01,0,0,0,0 monster Plasma 1696,3,900000,300000,0
|
||||
odin_tem01,0,0,0,0 monster Plasma 1694,3,900000,300000,0
|
||||
odin_tem01,0,0,0,0 monster Plasma 1693,10,900000,300000,0
|
||||
odin_tem01,0,0,0,0 monster Frus 1753,5,0,0,0
|
||||
odin_tem01,0,0,0,0 monster Skogul 1752,5,0,0,0
|
||||
odin_tem01,0,0,0,0 monster Green Plant 1080,5,60000,30000,1
|
||||
odin_tem01,0,0,0,0 monster Yellow Plant 1081,5,60000,30000,1
|
||||
odin_tem01,0,0,0,0 monster Blue Plant 1079,5,600000,300000,1
|
||||
odin_tem01,0,0 monster Breeze 1692,10,300000,240000
|
||||
odin_tem01,0,0 monster Plasma 1697,3,900000,300000
|
||||
odin_tem01,0,0 monster Plasma 1695,3,900000,300000
|
||||
odin_tem01,0,0 monster Plasma 1696,3,900000,300000
|
||||
odin_tem01,0,0 monster Plasma 1694,3,900000,300000
|
||||
odin_tem01,0,0 monster Plasma 1693,10,900000,300000
|
||||
odin_tem01,0,0 monster Frus 1753,5
|
||||
odin_tem01,0,0 monster Skogul 1752,5
|
||||
odin_tem01,0,0 monster Green Plant 1080,5,60000,30000
|
||||
odin_tem01,0,0 monster Yellow Plant 1081,5,60000,30000
|
||||
odin_tem01,0,0 monster Blue Plant 1079,5,600000,300000
|
||||
|
||||
//==================================================
|
||||
// odin_tem02 - Odin Temple F2
|
||||
//==================================================
|
||||
odin_tem02,0,0,0,0 monster Plasma 1693,15,900000,300000,0
|
||||
odin_tem02,0,0,0,0 monster Skeggiold 1754,1,1800000,0,0
|
||||
odin_tem02,0,0,0,0 monster Skeggiold 1755,1,1800000,0,0
|
||||
odin_tem02,0,0,0,0 monster Frus 1753,30,0,0,0
|
||||
odin_tem02,0,0,0,0 monster Skogul 1752,30,0,0,0
|
||||
odin_tem02,160,330,3,3 monster Frus 1762,1,30000,15000,0
|
||||
odin_tem02,172,292,3,3 monster Skogul 1761,1,30000,15000,0
|
||||
odin_tem02,182,263,3,3 monster Frus 1762,1,30000,15000,0
|
||||
odin_tem02,190,236,3,3 monster Skogul 1761,1,30000,15000,0
|
||||
odin_tem02,205,198,3,3 monster Frus 1762,1,30000,15000,0
|
||||
odin_tem02,0,0,0,0 monster Valkyrie 1765,1,5400000,1800000,0
|
||||
odin_tem02,0,0,0,0 monster Blue Plant 1079,10,1800000,900000,1
|
||||
odin_tem02,0,0 monster Plasma 1693,15,900000,300000
|
||||
odin_tem02,0,0 monster Skeggiold 1754,1,1800000
|
||||
odin_tem02,0,0 monster Skeggiold 1755,1,1800000
|
||||
odin_tem02,0,0 monster Frus 1753,30
|
||||
odin_tem02,0,0 monster Skogul 1752,30
|
||||
odin_tem02,160,330,3,3 monster Frus 1762,1,30000,15000
|
||||
odin_tem02,172,292,3,3 monster Skogul 1761,1,30000,15000
|
||||
odin_tem02,182,263,3,3 monster Frus 1762,1,30000,15000
|
||||
odin_tem02,190,236,3,3 monster Skogul 1761,1,30000,15000
|
||||
odin_tem02,205,198,3,3 monster Frus 1762,1,30000,15000
|
||||
odin_tem02,0,0 monster Valkyrie 1765,1,5400000,1800000
|
||||
odin_tem02,0,0 monster Blue Plant 1079,10,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// odin_tem03 - Odin Temple F3
|
||||
//==================================================
|
||||
odin_tem03,0,0,0,0 monster Plasma 1693,20,900000,300000,0
|
||||
odin_tem03,0,0,0,0 monster Skeggiold 1754,16,0,0,0
|
||||
odin_tem03,0,0,0,0 monster Skeggiold 1755,16,0,0,0
|
||||
odin_tem03,0,0,0,0 monster Frus 1753,4,0,0,0
|
||||
odin_tem03,0,0,0,0 monster Skogul 1752,4,0,0,0
|
||||
odin_tem03,116,65,3,3 monster Frus 1762,1,30000,15000,0
|
||||
odin_tem03,100,110,3,3 monster Skogul 1761,1,30000,15000,0
|
||||
odin_tem03,94,132,3,3 monster Frus 1762,1,30000,15000,0
|
||||
odin_tem03,90,173,3,3 monster Frus 1762,1,30000,15000,0
|
||||
odin_tem03,111,188,3,3 monster Skogul 1761,1,30000,15000,0
|
||||
odin_tem03,151,210,3,3 monster Skogul 1761,1,30000,15000,0
|
||||
odin_tem03,178,224,3,3 monster Skogul 1761,1,30000,15000,0
|
||||
odin_tem03,205,240,3,3 monster Frus 1762,1,30000,15000,0
|
||||
odin_tem03,238,265,3,3 monster Skogul 1761,1,30000,15000,0
|
||||
odin_tem03,256,271,3,3 monster Frus 1762,1,30000,15000,0
|
||||
odin_tem03,0,0,0,0 monster Valkyrie 1765,2,1800000,1200000,0
|
||||
odin_tem03,0,0 monster Plasma 1693,20,900000,300000
|
||||
odin_tem03,0,0 monster Skeggiold 1754,16
|
||||
odin_tem03,0,0 monster Skeggiold 1755,16
|
||||
odin_tem03,0,0 monster Frus 1753,4
|
||||
odin_tem03,0,0 monster Skogul 1752,4
|
||||
odin_tem03,116,65,3,3 monster Frus 1762,1,30000,15000
|
||||
odin_tem03,100,110,3,3 monster Skogul 1761,1,30000,15000
|
||||
odin_tem03,94,132,3,3 monster Frus 1762,1,30000,15000
|
||||
odin_tem03,90,173,3,3 monster Frus 1762,1,30000,15000
|
||||
odin_tem03,111,188,3,3 monster Skogul 1761,1,30000,15000
|
||||
odin_tem03,151,210,3,3 monster Skogul 1761,1,30000,15000
|
||||
odin_tem03,178,224,3,3 monster Skogul 1761,1,30000,15000
|
||||
odin_tem03,205,240,3,3 monster Frus 1762,1,30000,15000
|
||||
odin_tem03,238,265,3,3 monster Skogul 1761,1,30000,15000
|
||||
odin_tem03,256,271,3,3 monster Frus 1762,1,30000,15000
|
||||
odin_tem03,0,0 monster Valkyrie 1765,2,1800000,1200000
|
||||
odin_tem03,0,0,0,0 boss_monster Valkyrie Randgris 1751,1,28800000,600000,1
|
||||
odin_tem03,0,0,0,0 monster Blue Plant 1079,15,1800000,900000,1
|
||||
odin_tem03,0,0,0,0 monster Shining Plant 1083,15,1800000,900000,1
|
||||
odin_tem03,0,0 monster Blue Plant 1079,15,1800000,900000
|
||||
odin_tem03,0,0 monster Shining Plant 1083,15,1800000,900000
|
||||
|
||||
@@ -13,29 +13,29 @@
|
||||
//==================================================
|
||||
// orcsdun01 - Orc Dungeon F1
|
||||
//==================================================
|
||||
orcsdun01,0,0,0,0 monster Steel Chonchon 1042,10,0,0,0
|
||||
orcsdun01,0,0,0,0 monster Familiar 1005,15,0,0,0
|
||||
orcsdun01,0,0,0,0 monster Drainliar 1111,5,0,0,0
|
||||
orcsdun01,0,0,0,0 monster Orc Zombie 1153,10,3000,5000,0
|
||||
orcsdun01,0,0,0,0 monster Orc Zombie 1153,30,60000,30000,0
|
||||
orcsdun01,0,0,0,0 monster Orc Zombie 1153,40,120000,60000,0
|
||||
orcsdun01,0,0,0,0 monster Orc Skeleton 1152,10,180000,60000,0
|
||||
orcsdun01,167,133,5,5 monster Black Mushroom 1084,5,900000,450000,1
|
||||
orcsdun01,67,34,5,5 monster Black Mushroom 1084,5,900000,450000,1
|
||||
orcsdun01,83,50,5,5 monster White Plant 1082,2,180000,90000,1
|
||||
orcsdun01,58,67,10,10 monster White Plant 1082,3,180000,90000,1
|
||||
orcsdun01,0,0 monster Steel Chonchon 1042,10
|
||||
orcsdun01,0,0 monster Familiar 1005,15
|
||||
orcsdun01,0,0 monster Drainliar 1111,5
|
||||
orcsdun01,0,0 monster Orc Zombie 1153,10,3000,5000
|
||||
orcsdun01,0,0 monster Orc Zombie 1153,30,60000,30000
|
||||
orcsdun01,0,0 monster Orc Zombie 1153,40,120000,60000
|
||||
orcsdun01,0,0 monster Orc Skeleton 1152,10,180000,60000
|
||||
orcsdun01,167,133,5,5 monster Black Mushroom 1084,5,900000,450000
|
||||
orcsdun01,67,34,5,5 monster Black Mushroom 1084,5,900000,450000
|
||||
orcsdun01,83,50,5,5 monster White Plant 1082,2,180000,90000
|
||||
orcsdun01,58,67,10,10 monster White Plant 1082,3,180000,90000
|
||||
|
||||
//==================================================
|
||||
// orcsdun02 - Orc Dungeon F2
|
||||
//==================================================
|
||||
orcsdun02,0,0,0,0 monster Steel Chonchon 1042,20,0,0,0
|
||||
orcsdun02,0,0,0,0 monster Drainliar 1111,20,0,0,0
|
||||
orcsdun02,0,0,0,0 monster Orc Skeleton 1152,10,3000,5000,0
|
||||
orcsdun02,0,0,0,0 monster Orc Skeleton 1152,20,60000,30000,0
|
||||
orcsdun02,0,0,0,0 monster Orc Skeleton 1152,20,120000,60000,0
|
||||
orcsdun02,0,0,0,0 monster Zenorc 1177,30,3000,5000,0
|
||||
orcsdun02,0,0,0,0 monster Zenorc 1177,20,60000,30000,0
|
||||
orcsdun02,0,0,0,0 monster Orc Archer 1189,5,1800000,900000,1
|
||||
orcsdun02,0,0,0,0 monster Black Mushroom 1084,5,180000,90000,1
|
||||
orcsdun02,105,37,10,10 monster White Plant 1082,2,180000,90000,1
|
||||
orcsdun02,37,44,10,10 monster White Plant 1082,3,180000,90000,1
|
||||
orcsdun02,0,0 monster Steel Chonchon 1042,20
|
||||
orcsdun02,0,0 monster Drainliar 1111,20
|
||||
orcsdun02,0,0 monster Orc Skeleton 1152,10,3000,5000
|
||||
orcsdun02,0,0 monster Orc Skeleton 1152,20,60000,30000
|
||||
orcsdun02,0,0 monster Orc Skeleton 1152,20,120000,60000
|
||||
orcsdun02,0,0 monster Zenorc 1177,30,3000,5000
|
||||
orcsdun02,0,0 monster Zenorc 1177,20,60000,30000
|
||||
orcsdun02,0,0 monster Orc Archer 1189,5,1800000,900000
|
||||
orcsdun02,0,0 monster Black Mushroom 1084,5,180000,90000
|
||||
orcsdun02,105,37,10,10 monster White Plant 1082,2,180000,90000
|
||||
orcsdun02,37,44,10,10 monster White Plant 1082,3,180000,90000
|
||||
|
||||
@@ -15,148 +15,148 @@
|
||||
//==================================================
|
||||
// pay_dun00 - Payon Cave F1
|
||||
//==================================================
|
||||
pay_dun00,0,0,0,0 monster Familiar 1005,15,0,0,0
|
||||
pay_dun00,0,0,0,0 monster Zombie 1015,20,0,0,0
|
||||
pay_dun00,0,0,0,0 monster Skeleton 1076,35,0,0,0
|
||||
pay_dun00,0,0,0,0 monster Poporing 1031,15,0,0,0
|
||||
pay_dun00,0,0,0,0 monster Red Plant 1078,15,180000,90000,1
|
||||
pay_dun00,140,140,5,5 monster Black Mushroom 1084,3,360000,180000,1
|
||||
pay_dun00,0,0 monster Familiar 1005,15
|
||||
pay_dun00,0,0 monster Zombie 1015,20
|
||||
pay_dun00,0,0 monster Skeleton 1076,35
|
||||
pay_dun00,0,0 monster Poporing 1031,15
|
||||
pay_dun00,0,0 monster Red Plant 1078,15,180000,90000
|
||||
pay_dun00,140,140,5,5 monster Black Mushroom 1084,3,360000,180000
|
||||
|
||||
//==================================================
|
||||
// pay_dun01 - Payon Cave F2
|
||||
//==================================================
|
||||
pay_dun01,0,0,0,0 monster Drainliar 1111,5,0,0,0
|
||||
pay_dun01,0,0,0,0 monster Eggyra 1116,15,0,0,0
|
||||
pay_dun01,0,0,0,0 monster Soldier Skeleton 1028,50,300000,150000,1
|
||||
pay_dun01,0,0,0,0 monster Archer Skeleton 1016,30,300000,150000,1
|
||||
pay_dun01,235,54,10,10 monster Black Mushroom 1084,7,900000,450000,1
|
||||
pay_dun01,0,0,0,0 monster Red Plant 1078,10,180000,90000,1
|
||||
pay_dun01,0,0 monster Drainliar 1111,5
|
||||
pay_dun01,0,0 monster Eggyra 1116,15
|
||||
pay_dun01,0,0 monster Soldier Skeleton 1028,50,300000,150000
|
||||
pay_dun01,0,0 monster Archer Skeleton 1016,30,300000,150000
|
||||
pay_dun01,235,54,10,10 monster Black Mushroom 1084,7,900000,450000
|
||||
pay_dun01,0,0 monster Red Plant 1078,10,180000,90000
|
||||
|
||||
//==================================================
|
||||
// pay_dun02 - Payon Cave F3
|
||||
//==================================================
|
||||
pay_dun02,0,0,0,0 monster Soldier Skeleton 1028,15,180000,90000,1
|
||||
pay_dun02,0,0,0,0 monster Munak 1026,40,0,0,0
|
||||
pay_dun02,0,0,0,0 monster Bongun 1188,30,0,0,0
|
||||
pay_dun02,0,0,0,0 monster Poporing 1031,10,0,0,0
|
||||
pay_dun02,0,0,0,0 monster Archer Skeleton 1016,20,180000,90000,1
|
||||
pay_dun02,116,205,0,0 monster Hydra 1068,1,345000,100000,1
|
||||
pay_dun02,116,199,0,0 monster Hydra 1068,1,306000,100000,1
|
||||
pay_dun02,116,196,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
pay_dun02,116,190,0,0 monster Hydra 1068,1,326000,100000,1
|
||||
pay_dun02,117,206,0,0 monster Hydra 1068,1,302000,100000,1
|
||||
pay_dun02,117,200,0,0 monster Hydra 1068,1,275000,100000,1
|
||||
pay_dun02,117,197,0,0 monster Hydra 1068,1,314000,100000,1
|
||||
pay_dun02,117,191,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
pay_dun02,118,207,0,0 monster Hydra 1068,1,332000,100000,1
|
||||
pay_dun02,118,201,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
pay_dun02,118,198,0,0 monster Hydra 1068,1,312000,100000,1
|
||||
pay_dun02,118,192,0,0 monster Hydra 1068,1,285000,100000,1
|
||||
pay_dun02,119,205,0,0 monster Hydra 1068,1,324000,100000,1
|
||||
pay_dun02,119,199,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
pay_dun02,119,196,0,0 monster Hydra 1068,1,315000,100000,1
|
||||
pay_dun02,120,203,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
pay_dun02,120,200,0,0 monster Hydra 1068,1,303000,100000,1
|
||||
pay_dun02,120,194,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
pay_dun02,121,200,0,0 monster Hydra 1068,1,333000,100000,1
|
||||
pay_dun02,122,200,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
pay_dun02,122,197,0,0 monster Hydra 1068,1,321000,100000,1
|
||||
pay_dun02,110,194,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
pay_dun02,113,194,0,0 monster Hydra 1068,1,319000,100000,1
|
||||
pay_dun02,109,193,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
pay_dun02,113,193,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
pay_dun02,109,192,0,0 monster Hydra 1068,1,374000,100000,1
|
||||
pay_dun02,112,192,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
pay_dun02,108,191,0,0 monster Hydra 1068,1,332000,100000,1
|
||||
pay_dun02,111,191,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
pay_dun02,107,190,0,0 monster Hydra 1068,1,320000,100000,1
|
||||
pay_dun02,110,190,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
pay_dun02,227,185,0,0 monster Mandragora 1020,1,300000,100000,1
|
||||
pay_dun02,227,184,0,0 monster Mandragora 1020,1,300000,100000,1
|
||||
pay_dun02,229,183,0,0 monster Mandragora 1020,1,300000,100000,1
|
||||
pay_dun02,214,266,0,0 monster Red Plant 1078,1,600000,300000,1
|
||||
pay_dun02,37,243,0,0 monster Black Mushroom 1084,1,600000,300000,1
|
||||
pay_dun02,37,243,0,0 monster Nine Tail 1180,1,3600000,1800000,1
|
||||
pay_dun02,111,199,10,10 monster Black Mushroom 1084,7,900000,450000,1
|
||||
pay_dun02,110,216,20,10 monster White Plant 1082,3,180000,90000,1
|
||||
pay_dun02,132,84,10,10 monster White Plant 1082,3,180000,90000,1
|
||||
pay_dun02,197,113,10,10 monster Red Plant 1078,4,180000,90000,1
|
||||
pay_dun02,55,254,10,10 monster Red Plant 1078,4,180000,90000,1
|
||||
pay_dun02,0,0 monster Soldier Skeleton 1028,15,180000,90000
|
||||
pay_dun02,0,0 monster Munak 1026,40
|
||||
pay_dun02,0,0 monster Bongun 1188,30
|
||||
pay_dun02,0,0 monster Poporing 1031,10
|
||||
pay_dun02,0,0 monster Archer Skeleton 1016,20,180000,90000
|
||||
pay_dun02,116,205 monster Hydra 1068,1,345000,100000
|
||||
pay_dun02,116,199 monster Hydra 1068,1,306000,100000
|
||||
pay_dun02,116,196 monster Hydra 1068,1,300000,100000
|
||||
pay_dun02,116,190 monster Hydra 1068,1,326000,100000
|
||||
pay_dun02,117,206 monster Hydra 1068,1,302000,100000
|
||||
pay_dun02,117,200 monster Hydra 1068,1,275000,100000
|
||||
pay_dun02,117,197 monster Hydra 1068,1,314000,100000
|
||||
pay_dun02,117,191 monster Hydra 1068,1,300000,100000
|
||||
pay_dun02,118,207 monster Hydra 1068,1,332000,100000
|
||||
pay_dun02,118,201 monster Hydra 1068,1,300000,100000
|
||||
pay_dun02,118,198 monster Hydra 1068,1,312000,100000
|
||||
pay_dun02,118,192 monster Hydra 1068,1,285000,100000
|
||||
pay_dun02,119,205 monster Hydra 1068,1,324000,100000
|
||||
pay_dun02,119,199 monster Hydra 1068,1,300000,100000
|
||||
pay_dun02,119,196 monster Hydra 1068,1,315000,100000
|
||||
pay_dun02,120,203 monster Hydra 1068,1,300000,100000
|
||||
pay_dun02,120,200 monster Hydra 1068,1,303000,100000
|
||||
pay_dun02,120,194 monster Hydra 1068,1,300000,100000
|
||||
pay_dun02,121,200 monster Hydra 1068,1,333000,100000
|
||||
pay_dun02,122,200 monster Hydra 1068,1,300000,100000
|
||||
pay_dun02,122,197 monster Hydra 1068,1,321000,100000
|
||||
pay_dun02,110,194 monster Hydra 1068,1,300000,100000
|
||||
pay_dun02,113,194 monster Hydra 1068,1,319000,100000
|
||||
pay_dun02,109,193 monster Hydra 1068,1,300000,100000
|
||||
pay_dun02,113,193 monster Hydra 1068,1,300000,100000
|
||||
pay_dun02,109,192 monster Hydra 1068,1,374000,100000
|
||||
pay_dun02,112,192 monster Hydra 1068,1,300000,100000
|
||||
pay_dun02,108,191 monster Hydra 1068,1,332000,100000
|
||||
pay_dun02,111,191 monster Hydra 1068,1,300000,100000
|
||||
pay_dun02,107,190 monster Hydra 1068,1,320000,100000
|
||||
pay_dun02,110,190 monster Hydra 1068,1,300000,100000
|
||||
pay_dun02,227,185 monster Mandragora 1020,1,300000,100000
|
||||
pay_dun02,227,184 monster Mandragora 1020,1,300000,100000
|
||||
pay_dun02,229,183 monster Mandragora 1020,1,300000,100000
|
||||
pay_dun02,214,266 monster Red Plant 1078,1,600000,300000
|
||||
pay_dun02,37,243 monster Black Mushroom 1084,1,600000,300000
|
||||
pay_dun02,37,243 monster Nine Tail 1180,1,3600000,1800000
|
||||
pay_dun02,111,199,10,10 monster Black Mushroom 1084,7,900000,450000
|
||||
pay_dun02,110,216,20,10 monster White Plant 1082,3,180000,90000
|
||||
pay_dun02,132,84,10,10 monster White Plant 1082,3,180000,90000
|
||||
pay_dun02,197,113,10,10 monster Red Plant 1078,4,180000,90000
|
||||
pay_dun02,55,254,10,10 monster Red Plant 1078,4,180000,90000
|
||||
|
||||
//==================================================
|
||||
// pay_dun03 - Payon Cave F4
|
||||
//==================================================
|
||||
pay_dun03,0,0,0,0 monster Sohee 1170,50,0,0,0
|
||||
pay_dun03,0,0,0,0 monster Munak 1026,3,0,0,0
|
||||
pay_dun03,0,0,0,0 monster Bongun 1188,3,0,0,0
|
||||
pay_dun03,0,0,0,0 monster Nine Tail 1180,1,0,0,0
|
||||
pay_dun03,0,0,0,0 monster Nine Tail 1180,1,3600000,1800000,0
|
||||
pay_dun03,154,112,0,0 monster Whisper 1185,1,1800000,0,1
|
||||
pay_dun03,161,117,0,0 monster Whisper 1185,1,1800000,0,1
|
||||
pay_dun03,81,61,0,0 monster Whisper 1185,1,1800000,0,1
|
||||
pay_dun03,84,63,0,0 monster Whisper 1185,1,1800000,0,1
|
||||
pay_dun03,89,147,0,0 monster Giant Whisper 1186,1,14400000,0,1
|
||||
pay_dun03,66,73,0,0 monster Hydra 1068,1,600000,300000,1
|
||||
pay_dun03,68,72,0,0 monster Hydra 1068,1,600000,300000,1
|
||||
pay_dun03,67,71,0,0 monster Hydra 1068,1,600000,300000,1
|
||||
pay_dun03,63,70,0,0 monster Hydra 1068,1,600000,300000,1
|
||||
pay_dun03,58,69,0,0 monster Hydra 1068,1,600000,300000,1
|
||||
pay_dun03,67,69,0,0 monster Hydra 1068,1,600000,300000,1
|
||||
pay_dun03,60,68,0,0 monster Hydra 1068,1,600000,300000,1
|
||||
pay_dun03,69,68,0,0 monster Hydra 1068,1,600000,300000,1
|
||||
pay_dun03,62,67,0,0 monster Hydra 1068,1,600000,300000,1
|
||||
pay_dun03,71,67,0,0 monster Hydra 1068,1,600000,300000,1
|
||||
pay_dun03,64,66,0,0 monster Hydra 1068,1,600000,300000,1
|
||||
pay_dun03,57,65,0,0 monster Hydra 1068,1,600000,300000,1
|
||||
pay_dun03,66,65,0,0 monster Hydra 1068,1,600000,300000,1
|
||||
pay_dun03,59,64,0,0 monster Hydra 1068,1,600000,300000,1
|
||||
pay_dun03,68,64,0,0 monster Hydra 1068,1,600000,300000,1
|
||||
pay_dun03,71,64,0,0 monster Hydra 1068,1,600000,300000,1
|
||||
pay_dun03,66,63,0,0 monster Hydra 1068,1,600000,300000,1
|
||||
pay_dun03,71,243,0,0 monster Sohee 1170,2,300000,100000,1
|
||||
pay_dun03,86,248,0,0 monster Sohee 1170,2,300000,100000,1
|
||||
pay_dun03,85,178,0,0 monster Sohee 1170,2,300000,100000,1
|
||||
pay_dun03,115,190,0,0 monster Sohee 1170,2,300000,100000,1
|
||||
pay_dun03,230,244,0,0 monster Sohee 1170,2,300000,100000,1
|
||||
pay_dun03,240,244,0,0 monster Sohee 1170,2,300000,100000,1
|
||||
pay_dun03,219,244,0,0 monster Sohee 1170,2,300000,100000,1
|
||||
pay_dun03,243,220,0,0 monster Sohee 1170,2,300000,100000,1
|
||||
pay_dun03,219,185,0,0 monster Sohee 1170,2,300000,100000,1
|
||||
pay_dun03,228,185,0,0 monster Sohee 1170,2,300000,100000,1
|
||||
pay_dun03,228,61,0,0 monster Red Plant 1078,1,600000,300000,1
|
||||
pay_dun03,138,42,0,0 monster Blue Plant 1079,1,600000,300000,1
|
||||
pay_dun03,120,186,0,0 monster Green Plant 1080,1,600000,300000,1
|
||||
pay_dun03,88,35,0,0 monster Yellow Plant 1081,1,600000,300000,1
|
||||
pay_dun03,126,135,0,0 monster Mandragora 1020,1,300000,100000,1
|
||||
pay_dun03,126,134,0,0 monster Mandragora 1020,1,300000,100000,1
|
||||
pay_dun03,126,133,0,0 monster Mandragora 1020,1,300000,100000,1
|
||||
pay_dun03,126,132,0,0 monster Mandragora 1020,1,300000,100000,1
|
||||
pay_dun03,126,131,0,0 monster Mandragora 1020,1,300000,100000,1
|
||||
pay_dun03,179,134,0,0 monster Mandragora 1020,1,300000,100000,1
|
||||
pay_dun03,179,133,0,0 monster Mandragora 1020,1,300000,100000,1
|
||||
pay_dun03,179,132,0,0 monster Mandragora 1020,1,300000,100000,1
|
||||
pay_dun03,179,131,0,0 monster Mandragora 1020,1,300000,100000,1
|
||||
pay_dun03,179,130,0,0 monster Mandragora 1020,1,300000,100000,1
|
||||
pay_dun03,0,0,0,0 monster Greatest General 1277,3,0,0,0
|
||||
pay_dun03,0,0,0,0 monster Red Plant 1078,15,180000,90000,1
|
||||
pay_dun03,246,56,20,20 monster White Plant 1082,3,180000,90000,1
|
||||
pay_dun03,52,262,10,4 monster White Plant 1082,2,180000,90000,1
|
||||
pay_dun03,0,0 monster Sohee 1170,50
|
||||
pay_dun03,0,0 monster Munak 1026,3
|
||||
pay_dun03,0,0 monster Bongun 1188,3
|
||||
pay_dun03,0,0 monster Nine Tail 1180,1
|
||||
pay_dun03,0,0 monster Nine Tail 1180,1,3600000,1800000
|
||||
pay_dun03,154,112 monster Whisper 1185,1,1800000
|
||||
pay_dun03,161,117 monster Whisper 1185,1,1800000
|
||||
pay_dun03,81,61 monster Whisper 1185,1,1800000
|
||||
pay_dun03,84,63 monster Whisper 1185,1,1800000
|
||||
pay_dun03,89,147 monster Giant Whisper 1186,1,14400000
|
||||
pay_dun03,66,73 monster Hydra 1068,1,600000,300000
|
||||
pay_dun03,68,72 monster Hydra 1068,1,600000,300000
|
||||
pay_dun03,67,71 monster Hydra 1068,1,600000,300000
|
||||
pay_dun03,63,70 monster Hydra 1068,1,600000,300000
|
||||
pay_dun03,58,69 monster Hydra 1068,1,600000,300000
|
||||
pay_dun03,67,69 monster Hydra 1068,1,600000,300000
|
||||
pay_dun03,60,68 monster Hydra 1068,1,600000,300000
|
||||
pay_dun03,69,68 monster Hydra 1068,1,600000,300000
|
||||
pay_dun03,62,67 monster Hydra 1068,1,600000,300000
|
||||
pay_dun03,71,67 monster Hydra 1068,1,600000,300000
|
||||
pay_dun03,64,66 monster Hydra 1068,1,600000,300000
|
||||
pay_dun03,57,65 monster Hydra 1068,1,600000,300000
|
||||
pay_dun03,66,65 monster Hydra 1068,1,600000,300000
|
||||
pay_dun03,59,64 monster Hydra 1068,1,600000,300000
|
||||
pay_dun03,68,64 monster Hydra 1068,1,600000,300000
|
||||
pay_dun03,71,64 monster Hydra 1068,1,600000,300000
|
||||
pay_dun03,66,63 monster Hydra 1068,1,600000,300000
|
||||
pay_dun03,71,243 monster Sohee 1170,2,300000,100000
|
||||
pay_dun03,86,248 monster Sohee 1170,2,300000,100000
|
||||
pay_dun03,85,178 monster Sohee 1170,2,300000,100000
|
||||
pay_dun03,115,190 monster Sohee 1170,2,300000,100000
|
||||
pay_dun03,230,244 monster Sohee 1170,2,300000,100000
|
||||
pay_dun03,240,244 monster Sohee 1170,2,300000,100000
|
||||
pay_dun03,219,244 monster Sohee 1170,2,300000,100000
|
||||
pay_dun03,243,220 monster Sohee 1170,2,300000,100000
|
||||
pay_dun03,219,185 monster Sohee 1170,2,300000,100000
|
||||
pay_dun03,228,185 monster Sohee 1170,2,300000,100000
|
||||
pay_dun03,228,61 monster Red Plant 1078,1,600000,300000
|
||||
pay_dun03,138,42 monster Blue Plant 1079,1,600000,300000
|
||||
pay_dun03,120,186 monster Green Plant 1080,1,600000,300000
|
||||
pay_dun03,88,35 monster Yellow Plant 1081,1,600000,300000
|
||||
pay_dun03,126,135 monster Mandragora 1020,1,300000,100000
|
||||
pay_dun03,126,134 monster Mandragora 1020,1,300000,100000
|
||||
pay_dun03,126,133 monster Mandragora 1020,1,300000,100000
|
||||
pay_dun03,126,132 monster Mandragora 1020,1,300000,100000
|
||||
pay_dun03,126,131 monster Mandragora 1020,1,300000,100000
|
||||
pay_dun03,179,134 monster Mandragora 1020,1,300000,100000
|
||||
pay_dun03,179,133 monster Mandragora 1020,1,300000,100000
|
||||
pay_dun03,179,132 monster Mandragora 1020,1,300000,100000
|
||||
pay_dun03,179,131 monster Mandragora 1020,1,300000,100000
|
||||
pay_dun03,179,130 monster Mandragora 1020,1,300000,100000
|
||||
pay_dun03,0,0 monster Greatest General 1277,3
|
||||
pay_dun03,0,0 monster Red Plant 1078,15,180000,90000
|
||||
pay_dun03,246,56,20,20 monster White Plant 1082,3,180000,90000
|
||||
pay_dun03,52,262,10,4 monster White Plant 1082,2,180000,90000
|
||||
|
||||
//==================================================
|
||||
// pay_dun04 - Payon Cave F5
|
||||
//==================================================
|
||||
pay_dun04,0,0,0,0 monster Dokebi 1110,40,0,0,0
|
||||
pay_dun04,0,0,0,0 monster Horong 1129,30,0,0,0
|
||||
pay_dun04,0,0 monster Dokebi 1110,40
|
||||
pay_dun04,0,0 monster Horong 1129,30
|
||||
pay_dun04,120,115,0,0 boss_monster Moonlight Flower 1150,1,3600000,600000,1
|
||||
pay_dun04,0,0,0,0 monster Greatest General 1277,15,0,0,0
|
||||
pay_dun04,0,0,0,0 monster Archer Skeleton 1016,15,0,0,0
|
||||
pay_dun04,0,0,0,0 monster Nine Tail 1180,30,60000,30000,0
|
||||
pay_dun04,0,0,0,0 monster Skeleton General 1290,1,0,0,0
|
||||
pay_dun04,0,0,0,0 monster Am Mut 1301,1,0,0,0
|
||||
pay_dun04,120,115,0,0 monster Cat o' Nine Tails 1307,1,3600000,7200000,1
|
||||
pay_dun04,120,120,10,10 monster Shining Plant 1083,1,1800000,900000,1
|
||||
pay_dun04,28,110,5,5 monster Shining Plant 1083,1,1800000,900000,1
|
||||
pay_dun04,0,0,0,0 monster Red Plant 1078,10,180000,90000,1
|
||||
pay_dun04,107,206,5,5 monster White Plant 1082,2,180000,90000,1
|
||||
pay_dun04,28,110,10,10 monster White Plant 1082,2,180000,90000,1
|
||||
pay_dun04,190,207,5,5 monster White Plant 1082,2,180000,90000,1
|
||||
pay_dun04,0,0 monster Greatest General 1277,15
|
||||
pay_dun04,0,0 monster Archer Skeleton 1016,15
|
||||
pay_dun04,0,0 monster Nine Tail 1180,30,60000,30000
|
||||
pay_dun04,0,0 monster Skeleton General 1290,1
|
||||
pay_dun04,0,0 monster Am Mut 1301,1
|
||||
pay_dun04,120,115 monster Cat o' Nine Tails 1307,1,3600000,7200000,1
|
||||
pay_dun04,120,120,10,10 monster Shining Plant 1083,1,1800000,900000
|
||||
pay_dun04,28,110,5,5 monster Shining Plant 1083,1,1800000,900000
|
||||
pay_dun04,0,0 monster Red Plant 1078,10,180000,90000
|
||||
pay_dun04,107,206,5,5 monster White Plant 1082,2,180000,90000
|
||||
pay_dun04,28,110,10,10 monster White Plant 1082,2,180000,90000
|
||||
pay_dun04,190,207,5,5 monster White Plant 1082,2,180000,90000
|
||||
|
||||
@@ -16,88 +16,88 @@
|
||||
// prt_maze01 - Labyrinth Forest F1
|
||||
//==================================================
|
||||
|
||||
prt_maze01,179,20,21,21 monster Poring 1002,5,120000,40000,1
|
||||
prt_maze01,139,20,21,21 monster Lunatic 1063,5,120000,40000,1
|
||||
prt_maze01,99,20,21,21 monster Fabre 1007,5,120000,40000,1
|
||||
prt_maze01,99,20,21,21 monster Creamy 1018,1,120000,40000,1
|
||||
prt_maze01,59,20,21,21 monster Pupa 1008,5,120000,40000,1
|
||||
prt_maze01,19,20,21,21 monster Poporing 1031,5,120000,40000,1
|
||||
prt_maze01,179,60,21,21 monster Rocker 1052,5,120000,40000,1
|
||||
prt_maze01,139,60,21,21 monster Bigfoot 1060,5,120000,40000,1
|
||||
prt_maze01,99,60,21,21 monster Smokie 1056,5,120000,40000,1
|
||||
prt_maze01,59,60,21,21 monster Boa 1025,5,120000,40000,1
|
||||
prt_maze01,19,60,21,21 monster Wolf 1013,5,120000,40000,1
|
||||
prt_maze01,179,100,21,21 monster Argiope 1099,3,120000,40000,1
|
||||
prt_maze01,139,100,21,21 monster Argos 1100,3,120000,40000,1
|
||||
prt_maze01,99,100,21,21 monster Chonchon 1011,5,120000,40000,1
|
||||
prt_maze01,59,100,21,21 monster Horn 1128,5,120000,40000,1
|
||||
prt_maze01,19,100,21,21 monster Hunter Fly 1035,3,120000,40000,1
|
||||
prt_maze01,179,140,21,21 monster Mantis 1139,3,120000,40000,1
|
||||
prt_maze01,139,140,21,21 monster Stainer 1174,5,120000,40000,1
|
||||
prt_maze01,99,140,21,21 monster Side Winder 1037,3,120000,40000,1
|
||||
prt_maze01,59,140,21,21 monster Yoyo 1057,4,120000,40000,1
|
||||
prt_maze01,59,140,21,21 monster Choco 1214,2,120000,40000,1
|
||||
prt_maze01,19,140,21,21 monster Steel Chonchon 1042,5,120000,40000,1
|
||||
prt_maze01,179,180,21,21 monster Coco 1104,5,120000,40000,1
|
||||
prt_maze01,139,180,21,21 monster Caramel 1103,5,120000,40000,1
|
||||
prt_maze01,99,180,21,21 monster Dustiness 1114,5,120000,40000,1
|
||||
prt_maze01,59,180,21,21 monster Martin 1145,5,120000,40000,1
|
||||
prt_maze01,19,180,21,21 monster Savage 1166,3,120000,40000,1
|
||||
prt_maze01,19,180,21,21 monster Savage 1166,5,120000,40000,1
|
||||
prt_maze01,0,0,0,0 monster Hunter Fly 1035,1,0,0,0
|
||||
prt_maze01,0,0,0,0 monster Vagabond Wolf 1092,1,3600000,1800000,0
|
||||
prt_maze01,101,138,5,5 monster Shining Plant 1083,1,1800000,900000,1
|
||||
prt_maze01,101,138,5,5 monster White Plant 1082,1,1800000,900000,1
|
||||
prt_maze01,99,181,5,5 monster White Plant 1082,2,1800000,900000,1
|
||||
prt_maze01,60,140,10,15 monster Blue Plant 1079,1,1800000,900000,1
|
||||
prt_maze01,61,101,10,10 monster Yellow Plant 1081,1,1800000,900000,1
|
||||
prt_maze01,141,100,10,10 monster Shining Plant 1083,1,1800000,900000,1
|
||||
prt_maze01,141,100,10,10 monster Blue Plant 1079,1,1800000,900000,1
|
||||
prt_maze01,0,0,0,0 monster Red Plant 1078,5,180000,90000,1
|
||||
prt_maze01,100,100,10,10 monster Blue Plant 1079,1,1800000,900000,1
|
||||
prt_maze01,100,100,10,10 monster Yellow Plant 1081,1,1800000,900000,1
|
||||
prt_maze01,176,132,5,5 monster Black Mushroom 1084,3,180000,90000,1
|
||||
prt_maze01,181,149,3,3 monster Black Mushroom 1084,2,180000,90000,1
|
||||
prt_maze01,178,60,10,10 monster Red Mushroom 1085,3,180000,90000,1
|
||||
prt_maze01,168,60,3,3 monster Red Mushroom 1085,2,180000,90000,1
|
||||
prt_maze01,179,20,21,21 monster Poring 1002,5,120000,40000
|
||||
prt_maze01,139,20,21,21 monster Lunatic 1063,5,120000,40000
|
||||
prt_maze01,99,20,21,21 monster Fabre 1007,5,120000,40000
|
||||
prt_maze01,99,20,21,21 monster Creamy 1018,1,120000,40000
|
||||
prt_maze01,59,20,21,21 monster Pupa 1008,5,120000,40000
|
||||
prt_maze01,19,20,21,21 monster Poporing 1031,5,120000,40000
|
||||
prt_maze01,179,60,21,21 monster Rocker 1052,5,120000,40000
|
||||
prt_maze01,139,60,21,21 monster Bigfoot 1060,5,120000,40000
|
||||
prt_maze01,99,60,21,21 monster Smokie 1056,5,120000,40000
|
||||
prt_maze01,59,60,21,21 monster Boa 1025,5,120000,40000
|
||||
prt_maze01,19,60,21,21 monster Wolf 1013,5,120000,40000
|
||||
prt_maze01,179,100,21,21 monster Argiope 1099,3,120000,40000
|
||||
prt_maze01,139,100,21,21 monster Argos 1100,3,120000,40000
|
||||
prt_maze01,99,100,21,21 monster Chonchon 1011,5,120000,40000
|
||||
prt_maze01,59,100,21,21 monster Horn 1128,5,120000,40000
|
||||
prt_maze01,19,100,21,21 monster Hunter Fly 1035,3,120000,40000
|
||||
prt_maze01,179,140,21,21 monster Mantis 1139,3,120000,40000
|
||||
prt_maze01,139,140,21,21 monster Stainer 1174,5,120000,40000
|
||||
prt_maze01,99,140,21,21 monster Side Winder 1037,3,120000,40000
|
||||
prt_maze01,59,140,21,21 monster Yoyo 1057,4,120000,40000
|
||||
prt_maze01,59,140,21,21 monster Choco 1214,2,120000,40000
|
||||
prt_maze01,19,140,21,21 monster Steel Chonchon 1042,5,120000,40000
|
||||
prt_maze01,179,180,21,21 monster Coco 1104,5,120000,40000
|
||||
prt_maze01,139,180,21,21 monster Caramel 1103,5,120000,40000
|
||||
prt_maze01,99,180,21,21 monster Dustiness 1114,5,120000,40000
|
||||
prt_maze01,59,180,21,21 monster Martin 1145,5,120000,40000
|
||||
prt_maze01,19,180,21,21 monster Savage 1166,3,120000,40000
|
||||
prt_maze01,19,180,21,21 monster Savage 1166,5,120000,40000
|
||||
prt_maze01,0,0 monster Hunter Fly 1035,1
|
||||
prt_maze01,0,0 monster Vagabond Wolf 1092,1,3600000,1800000
|
||||
prt_maze01,101,138,5,5 monster Shining Plant 1083,1,1800000,900000
|
||||
prt_maze01,101,138,5,5 monster White Plant 1082,1,1800000,900000
|
||||
prt_maze01,99,181,5,5 monster White Plant 1082,2,1800000,900000
|
||||
prt_maze01,60,140,10,15 monster Blue Plant 1079,1,1800000,900000
|
||||
prt_maze01,61,101,10,10 monster Yellow Plant 1081,1,1800000,900000
|
||||
prt_maze01,141,100,10,10 monster Shining Plant 1083,1,1800000,900000
|
||||
prt_maze01,141,100,10,10 monster Blue Plant 1079,1,1800000,900000
|
||||
prt_maze01,0,0 monster Red Plant 1078,5,180000,90000
|
||||
prt_maze01,100,100,10,10 monster Blue Plant 1079,1,1800000,900000
|
||||
prt_maze01,100,100,10,10 monster Yellow Plant 1081,1,1800000,900000
|
||||
prt_maze01,176,132,5,5 monster Black Mushroom 1084,3,180000,90000
|
||||
prt_maze01,181,149,3,3 monster Black Mushroom 1084,2,180000,90000
|
||||
prt_maze01,178,60,10,10 monster Red Mushroom 1085,3,180000,90000
|
||||
prt_maze01,168,60,3,3 monster Red Mushroom 1085,2,180000,90000
|
||||
|
||||
//==================================================
|
||||
// prt_maze02 - Labyrinth Forest F2
|
||||
//==================================================
|
||||
prt_maze02,0,0,0,0 monster Poporing 1031,25,0,0,0
|
||||
prt_maze02,0,0,0,0 monster Bigfoot 1060,5,0,0,0
|
||||
prt_maze02,0,0,0,0 monster Sasquatch 1243,1,900000,40000,0
|
||||
prt_maze02,0,0,0,0 monster Leib Olmai 1306,1,1800000,900000,0
|
||||
prt_maze02,0,0 monster Poporing 1031,25
|
||||
prt_maze02,0,0 monster Bigfoot 1060,5
|
||||
prt_maze02,0,0 monster Sasquatch 1243,1,900000,40000
|
||||
prt_maze02,0,0 monster Leib Olmai 1306,1,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// prt_maze03 - Labyrinth Forest F3
|
||||
//==================================================
|
||||
prt_maze03,0,0,0,0 monster Poporing 1031,45,0,0,0
|
||||
prt_maze03,0,0,0,0 monster Side Winder 1037,10,0,0,0
|
||||
prt_maze03,0,0,0,0 monster Hunter Fly 1035,30,0,0,0
|
||||
prt_maze03,0,0,0,0 monster Ghostring 1120,1,6800000,3400000,1
|
||||
prt_maze03,0,0,0,0 monster Killer Mantis 1294,1,0,0,0
|
||||
prt_maze03,150,50,70,70 monster Side Winder 1037,20,300000,150000,0
|
||||
prt_maze03,150,50,70,70 monster Vocal 1088,1,1920000,1500000,1
|
||||
prt_maze03,50,150,70,70 monster Stem Worm 1215,20,300000,150000,0
|
||||
prt_maze03,50,150,70,70 monster Vagabond Wolf 1092,1,1920000,150000,1
|
||||
prt_maze03,170,170,70,70 monster Mantis 1139,30,60000,30000,0
|
||||
prt_maze03,170,170,70,70 monster Eclipse 1093,1,1920000,150000,1
|
||||
prt_maze03,23,23,70,70 monster Mastering 1090,1,1920000,150000,1
|
||||
prt_maze03,0,0 monster Poporing 1031,45
|
||||
prt_maze03,0,0 monster Side Winder 1037,10
|
||||
prt_maze03,0,0 monster Hunter Fly 1035,30
|
||||
prt_maze03,0,0 monster Ghostring 1120,1,6800000,3400000
|
||||
prt_maze03,0,0 monster Killer Mantis 1294,1
|
||||
prt_maze03,150,50,70,70 monster Side Winder 1037,20,300000,150000
|
||||
prt_maze03,150,50,70,70 monster Vocal 1088,1,1920000,1500000
|
||||
prt_maze03,50,150,70,70 monster Stem Worm 1215,20,300000,150000
|
||||
prt_maze03,50,150,70,70 monster Vagabond Wolf 1092,1,1920000,150000
|
||||
prt_maze03,170,170,70,70 monster Mantis 1139,30,60000,30000
|
||||
prt_maze03,170,170,70,70 monster Eclipse 1093,1,1920000,150000
|
||||
prt_maze03,23,23,70,70 monster Mastering 1090,1,1920000,150000
|
||||
prt_maze03,100,100,80,80 monster Baphomet Jr. 1101,25,0,0,0
|
||||
prt_maze03,0,0,0,0 boss_monster Baphomet 1039,1,7200000,600000,1
|
||||
prt_maze03,61,98,10,10 monster Shining Plant 1083,1,1800000,900000,1
|
||||
prt_maze03,61,98,10,10 monster Blue Plant 1079,1,1800000,900000,1
|
||||
prt_maze03,61,98,10,10 monster Yellow Plant 1081,1,1800000,900000,1
|
||||
prt_maze03,57,56,10,10 monster Shining Plant 1083,1,1800000,900000,1
|
||||
prt_maze03,15,15,10,10 monster Shining Plant 1083,1,1800000,900000,1
|
||||
prt_maze03,137,140,3,3 monster Shining Plant 1083,1,1800000,900000,1
|
||||
prt_maze03,17,58,10,10 monster Shining Plant 1083,1,1800000,900000,1
|
||||
prt_maze03,17,58,10,10 monster Blue Plant 1079,1,1800000,900000,1
|
||||
prt_maze03,99,141,10,10 monster Blue Plant 1079,2,1800000,900000,1
|
||||
prt_maze03,99,21,10,10 monster Blue Plant 1079,1,1800000,900000,1
|
||||
prt_maze03,0,0,0,0 monster Red Plant 1078,5,180000,90000,1
|
||||
prt_maze03,99,21,10,10 monster Black Mushroom 1084,3,180000,90000,1
|
||||
prt_maze03,54,15,10,10 monster Black Mushroom 1084,3,180000,90000,1
|
||||
prt_maze03,171,180,3,3 monster Red Mushroom 1085,2,180000,90000,1
|
||||
prt_maze03,174,187,3,3 monster Red Mushroom 1085,3,180000,90000,1
|
||||
prt_maze03,61,98,10,10 monster Shining Plant 1083,1,1800000,900000
|
||||
prt_maze03,61,98,10,10 monster Blue Plant 1079,1,1800000,900000
|
||||
prt_maze03,61,98,10,10 monster Yellow Plant 1081,1,1800000,900000
|
||||
prt_maze03,57,56,10,10 monster Shining Plant 1083,1,1800000,900000
|
||||
prt_maze03,15,15,10,10 monster Shining Plant 1083,1,1800000,900000
|
||||
prt_maze03,137,140,3,3 monster Shining Plant 1083,1,1800000,900000
|
||||
prt_maze03,17,58,10,10 monster Shining Plant 1083,1,1800000,900000
|
||||
prt_maze03,17,58,10,10 monster Blue Plant 1079,1,1800000,900000
|
||||
prt_maze03,99,141,10,10 monster Blue Plant 1079,2,1800000,900000
|
||||
prt_maze03,99,21,10,10 monster Blue Plant 1079,1,1800000,900000
|
||||
prt_maze03,0,0 monster Red Plant 1078,5,180000,90000
|
||||
prt_maze03,99,21,10,10 monster Black Mushroom 1084,3,180000,90000
|
||||
prt_maze03,54,15,10,10 monster Black Mushroom 1084,3,180000,90000
|
||||
prt_maze03,171,180,3,3 monster Red Mushroom 1085,2,180000,90000
|
||||
prt_maze03,174,187,3,3 monster Red Mushroom 1085,3,180000,90000
|
||||
|
||||
@@ -14,40 +14,40 @@
|
||||
//==================================================
|
||||
// prt_sewb1 - Prontera Culvert F1
|
||||
//==================================================
|
||||
prt_sewb1,0,0,0,0 monster Thief Bug Egg 1048,80,0,0,0
|
||||
prt_sewb1,0,0,0,0 monster Thief Bug 1051,30,0,0,0
|
||||
prt_sewb1,0,0,0,0 monster Familiar 1005,10,0,0,0
|
||||
prt_sewb1,0,0,0,0 monster Tarou 1175,10,0,0,0
|
||||
prt_sewb1,0,0 monster Thief Bug Egg 1048,80
|
||||
prt_sewb1,0,0 monster Thief Bug 1051,30
|
||||
prt_sewb1,0,0 monster Familiar 1005,10
|
||||
prt_sewb1,0,0 monster Tarou 1175,10
|
||||
|
||||
//==================================================
|
||||
// prt_sewb2 - Prontera Culvert F2
|
||||
//==================================================
|
||||
prt_sewb2,0,0,0,0 monster Thief Bug Egg 1048,20,0,0,0
|
||||
prt_sewb2,0,0,0,0 monster Thief Bug 1051,70,0,0,0
|
||||
prt_sewb2,0,0,0,0 monster Familiar 1005,10,0,0,0
|
||||
prt_sewb2,0,0,0,0 monster Spore 1014,20,0,0,0
|
||||
prt_sewb2,0,0,0,0 monster Plankton 1161,30,0,0,0
|
||||
prt_sewb2,0,0,0,0 monster Thief Bug Female 1053,10,0,0,0
|
||||
prt_sewb2,0,0,0,0 monster Tarou 1175,60,0,0,0
|
||||
prt_sewb2,0,0 monster Thief Bug Egg 1048,20
|
||||
prt_sewb2,0,0 monster Thief Bug 1051,70
|
||||
prt_sewb2,0,0 monster Familiar 1005,10
|
||||
prt_sewb2,0,0 monster Spore 1014,20
|
||||
prt_sewb2,0,0 monster Plankton 1161,30
|
||||
prt_sewb2,0,0 monster Thief Bug Female 1053,10
|
||||
prt_sewb2,0,0 monster Tarou 1175,60
|
||||
|
||||
//==================================================
|
||||
// prt_sewb3 - Prontera Culvert F3
|
||||
//==================================================
|
||||
prt_sewb3,0,0,0,0 monster Thief Bug Egg 1048,10,0,0,0
|
||||
prt_sewb3,0,0,0,0 monster Thief Bug 1051,20,0,0,0
|
||||
prt_sewb3,0,0,0,0 monster Thief Bug Female 1053,65,0,0,0
|
||||
prt_sewb3,0,0,0,0 monster Thief Bug Male 1054,65,0,0,0
|
||||
prt_sewb3,0,0,0,0 monster Tarou 1175,15,0,0,0
|
||||
prt_sewb3,0,0,0,0 monster Poison Spore 1077,15,0,0,0
|
||||
prt_sewb3,0,0,0,0 monster Familiar 1005,20,0,0,0
|
||||
prt_sewb3,0,0 monster Thief Bug Egg 1048,10
|
||||
prt_sewb3,0,0 monster Thief Bug 1051,20
|
||||
prt_sewb3,0,0 monster Thief Bug Female 1053,65
|
||||
prt_sewb3,0,0 monster Thief Bug Male 1054,65
|
||||
prt_sewb3,0,0 monster Tarou 1175,15
|
||||
prt_sewb3,0,0 monster Poison Spore 1077,15
|
||||
prt_sewb3,0,0 monster Familiar 1005,20
|
||||
|
||||
//==================================================
|
||||
// prt_sewb4 - Prontera Culvert F4
|
||||
//==================================================
|
||||
prt_sewb4,0,0,0,0 monster Thief Bug Egg 1048,10,0,0,0
|
||||
prt_sewb4,0,0,0,0 monster Thief Bug 1051,20,0,0,0
|
||||
prt_sewb4,0,0,0,0 monster Thief Bug Female 1053,20,0,0,0
|
||||
prt_sewb4,0,0,0,0 monster Thief Bug Male 1054,70,0,0,0
|
||||
prt_sewb4,0,0,0,0 monster Drainliar 1111,20,0,0,0
|
||||
prt_sewb4,0,0,0,0 monster Cramp 1209,5,0,0,0
|
||||
prt_sewb4,0,0 monster Thief Bug Egg 1048,10
|
||||
prt_sewb4,0,0 monster Thief Bug 1051,20
|
||||
prt_sewb4,0,0 monster Thief Bug Female 1053,20
|
||||
prt_sewb4,0,0 monster Thief Bug Male 1054,70
|
||||
prt_sewb4,0,0 monster Drainliar 1111,20
|
||||
prt_sewb4,0,0 monster Cramp 1209,5
|
||||
prt_sewb4,0,0,0,0 boss_monster Golden Thief Bug 1086,1,3600000,600000,1
|
||||
|
||||
@@ -15,68 +15,68 @@
|
||||
//==================================================
|
||||
// ra_san01
|
||||
//==================================================
|
||||
ra_san01,0,0,0,0 monster Vanberk 1771,20,180000,0,1
|
||||
ra_san01,0,0,0,0 monster Isilla 1772,10,0,0,1
|
||||
ra_san01,61,141,58,98 monster Vanberk 1771,20,300000,0,1
|
||||
ra_san01,61,141,58,98 monster Isilla 1772,10,180000,0,1
|
||||
ra_san01,61,141,58,98 monster Gremlin 1632,5,60000,0,1
|
||||
ra_san01,61,141,58,98 monster Hodremlin 1773,2,60000,0,1
|
||||
ra_san01,218,141,58,98 monster Vanberk 1771,20,300000,0,1
|
||||
ra_san01,218,141,58,98 monster Isilla 1772,10,180000,0,1
|
||||
ra_san01,218,141,58,98 monster Gremlin 1632,5,60000,0,1
|
||||
ra_san01,218,141,58,98 monster Hodremlin 1773,2,60000,0,1
|
||||
ra_san01,140,63,38,59 monster Vanberk 1771,7,180000,0,1
|
||||
ra_san01,140,63,38,59 monster Isilla 1772,3,180000,0,1
|
||||
ra_san01,140,63,38,59 monster Beholder 1633,3,60000,0,1
|
||||
ra_san01,140,63,38,59 monster Hodremlin 1773,1,60000,0,1
|
||||
ra_san01,140,226,50,51 monster Vanberk 1771,7,180000,0,1
|
||||
ra_san01,140,226,50,51 monster Isilla 1772,3,180000,0,1
|
||||
ra_san01,140,226,50,51 monster Beholder 1633,3,60000,0,1
|
||||
ra_san01,140,226,50,51 monster Hodremlin 1773,1,60000,0,1
|
||||
ra_san01,64,215,23,23 monster Vanberk 1771,2,420000,0,1
|
||||
ra_san01,215,215,23,23 monster Vanberk 1771,2,420000,0,1
|
||||
ra_san01,64,65,23,23 monster Vanberk 1771,2,420000,0,1
|
||||
ra_san01,215,65,23,23 monster Vanberk 1771,2,420000,0,1
|
||||
ra_san01,0,0 monster Vanberk 1771,20,180000
|
||||
ra_san01,0,0 monster Isilla 1772,10
|
||||
ra_san01,61,141,58,98 monster Vanberk 1771,20,300000
|
||||
ra_san01,61,141,58,98 monster Isilla 1772,10,180000
|
||||
ra_san01,61,141,58,98 monster Gremlin 1632,5,60000
|
||||
ra_san01,61,141,58,98 monster Hodremlin 1773,2,60000
|
||||
ra_san01,218,141,58,98 monster Vanberk 1771,20,300000
|
||||
ra_san01,218,141,58,98 monster Isilla 1772,10,180000
|
||||
ra_san01,218,141,58,98 monster Gremlin 1632,5,60000
|
||||
ra_san01,218,141,58,98 monster Hodremlin 1773,2,60000
|
||||
ra_san01,140,63,38,59 monster Vanberk 1771,7,180000
|
||||
ra_san01,140,63,38,59 monster Isilla 1772,3,180000
|
||||
ra_san01,140,63,38,59 monster Beholder 1633,3,60000
|
||||
ra_san01,140,63,38,59 monster Hodremlin 1773,1,60000
|
||||
ra_san01,140,226,50,51 monster Vanberk 1771,7,180000
|
||||
ra_san01,140,226,50,51 monster Isilla 1772,3,180000
|
||||
ra_san01,140,226,50,51 monster Beholder 1633,3,60000
|
||||
ra_san01,140,226,50,51 monster Hodremlin 1773,1,60000
|
||||
ra_san01,64,215,23,23 monster Vanberk 1771,2,420000
|
||||
ra_san01,215,215,23,23 monster Vanberk 1771,2,420000
|
||||
ra_san01,64,65,23,23 monster Vanberk 1771,2,420000
|
||||
ra_san01,215,65,23,23 monster Vanberk 1771,2,420000
|
||||
|
||||
//==================================================
|
||||
// ra_san02
|
||||
//==================================================
|
||||
ra_san02,0,0,0,0 monster Isilla 1772,35,0,0,0
|
||||
ra_san02,100,150,92,140 monster Isilla 1772,25,0,0,0
|
||||
ra_san02,240,147,50,145 monster Isilla 1772,25,0,0,0
|
||||
ra_san02,0,0,0,0 monster Vanberk 1771,10,0,0,0
|
||||
ra_san02,100,150,92,140 monster Vanberk 1771,10,0,0,0
|
||||
ra_san02,240,147,50,145 monster Vanberk 1771,10,0,0,0
|
||||
ra_san02,0,0,0,0 monster Gremlin 1632,10,0,0,0
|
||||
ra_san02,0,0,0,0 monster Hodremlin 1773,3,0,0,0
|
||||
ra_san02,0,0,0,0 monster Beholder 1633,10,0,0,0
|
||||
ra_san02,0,0,0,0 monster Seeker 1774,2,0,0,0
|
||||
ra_san02,0,0 monster Isilla 1772,35
|
||||
ra_san02,100,150,92,140 monster Isilla 1772,25
|
||||
ra_san02,240,147,50,145 monster Isilla 1772,25
|
||||
ra_san02,0,0 monster Vanberk 1771,10
|
||||
ra_san02,100,150,92,140 monster Vanberk 1771,10
|
||||
ra_san02,240,147,50,145 monster Vanberk 1771,10
|
||||
ra_san02,0,0 monster Gremlin 1632,10
|
||||
ra_san02,0,0 monster Hodremlin 1773,3
|
||||
ra_san02,0,0 monster Beholder 1633,10
|
||||
ra_san02,0,0 monster Seeker 1774,2
|
||||
|
||||
//==================================================
|
||||
// ra_san03
|
||||
//==================================================
|
||||
ra_san03,0,0,0,0 monster Beholder 1633,5,0,0,0
|
||||
ra_san03,0,0,0,0 monster Gremlin 1632,5,0,0,0
|
||||
ra_san03,148,221,145,71 monster Seeker 1774,40,0,0,0
|
||||
ra_san03,0,0,0,0 monster Hodremlin 1773,20,0,0,0
|
||||
ra_san03,148,79,146,71 monster Hodremlin 1773,40,0,0,0
|
||||
ra_san03,0,0 monster Beholder 1633,5
|
||||
ra_san03,0,0 monster Gremlin 1632,5
|
||||
ra_san03,148,221,145,71 monster Seeker 1774,40
|
||||
ra_san03,0,0 monster Hodremlin 1773,20
|
||||
ra_san03,148,79,146,71 monster Hodremlin 1773,40
|
||||
|
||||
//==================================================
|
||||
// ra_san04
|
||||
//==================================================
|
||||
ra_san04,0,0,0,0 monster Echio 1770,60,0,0,0
|
||||
ra_san04,0,0,0,0 monster Agav 1769,20,0,0,0
|
||||
ra_san04,0,0,0,0 monster Seeker 1774,10,0,0,0
|
||||
ra_san04,0,0,0,0 monster Hodremlin 1773,10,0,0,0
|
||||
ra_san04,0,0 monster Echio 1770,60
|
||||
ra_san04,0,0 monster Agav 1769,20
|
||||
ra_san04,0,0 monster Seeker 1774,10
|
||||
ra_san04,0,0 monster Hodremlin 1773,10
|
||||
|
||||
//==================================================
|
||||
// ra_san05
|
||||
//==================================================
|
||||
ra_san05,0,0,0,0 monster Agav 1769,70,0,0,0
|
||||
ra_san05,0,0,0,0 monster Echio 1770,20,0,0,0
|
||||
ra_san05,0,0,0,0 monster Isilla 1772,10,0,0,0
|
||||
ra_san05,0,0,0,0 monster Seeker 1774,20,0,0,0
|
||||
ra_san05,0,0,0,0 monster Hodremlin 1773,20,0,0,0
|
||||
ra_san05,0,0,0,0 monster Agav 1769,10,18000000,14400000,0
|
||||
ra_san05,0,0,0,0 monster Echio 1770,10,18000000,14400000,0
|
||||
ra_san05,0,0 monster Agav 1769,70
|
||||
ra_san05,0,0 monster Echio 1770,20
|
||||
ra_san05,0,0 monster Isilla 1772,10
|
||||
ra_san05,0,0 monster Seeker 1774,20
|
||||
ra_san05,0,0 monster Hodremlin 1773,20
|
||||
ra_san05,0,0 monster Agav 1769,10,18000000,14400000
|
||||
ra_san05,0,0 monster Echio 1770,10,18000000,14400000
|
||||
ra_san05,0,0,0,0 boss_monster Gloom Under Night 1768,1,18000000,600000,0
|
||||
|
||||
@@ -16,167 +16,167 @@
|
||||
//==================================================
|
||||
// tha_t01 - Thanatos Tower F1
|
||||
//==================================================
|
||||
tha_t01,0,0,0,0 monster Alice 1275,5,0,0,0
|
||||
tha_t01,0,0,0,0 monster Plasma 1695,20,0,0,0
|
||||
tha_t01,0,0,0,0 monster Rideword 1195,20,0,0,0
|
||||
tha_t01,0,0,0,0 monster Mimic 1191,20,0,0,0
|
||||
tha_t01,0,0,0,0 monster Lady Solace 1703,4,1800000,1200000,0
|
||||
tha_t01,0,0 monster Alice 1275,5
|
||||
tha_t01,0,0 monster Plasma 1695,20
|
||||
tha_t01,0,0 monster Rideword 1195,20
|
||||
tha_t01,0,0 monster Mimic 1191,20
|
||||
tha_t01,0,0 monster Lady Solace 1703,4,1800000,1200000
|
||||
|
||||
//==================================================
|
||||
// tha_t02 - Thanatos Tower F2
|
||||
//==================================================
|
||||
tha_t02,0,0,0,0 monster Alice 1275,10,0,0,0
|
||||
tha_t02,0,0,0,0 monster Plasma 1697,20,0,0,0
|
||||
tha_t02,0,0,0,0 monster Mimic 1191,30,0,0,0
|
||||
tha_t02,0,0,0,0 monster Ancient Mimic 1699,80,0,0,0
|
||||
tha_t02,0,0,0,0 monster Rideword 1195,10,0,0,0
|
||||
tha_t02,0,0,0,0 monster Death Word 1698,10,0,0,0
|
||||
tha_t02,0,0,0,0 monster Elder 1377,10,0,0,0
|
||||
tha_t02,0,0,0,0 monster Baroness of Retribution 1702,4,1800000,1200000,0
|
||||
tha_t02,0,0 monster Alice 1275,10
|
||||
tha_t02,0,0 monster Plasma 1697,20
|
||||
tha_t02,0,0 monster Mimic 1191,30
|
||||
tha_t02,0,0 monster Ancient Mimic 1699,80
|
||||
tha_t02,0,0 monster Rideword 1195,10
|
||||
tha_t02,0,0 monster Death Word 1698,10
|
||||
tha_t02,0,0 monster Elder 1377,10
|
||||
tha_t02,0,0 monster Baroness of Retribution 1702,4,1800000,1200000
|
||||
|
||||
//==================================================
|
||||
// tha_t03 - Thanatos Tower F3
|
||||
//==================================================
|
||||
tha_t03,0,0,0,0 monster Plasma 1696,20,0,0,0
|
||||
tha_t03,0,0,0,0 monster Rideword 1195,30,0,0,0
|
||||
tha_t03,0,0,0,0 monster Death Word 1698,80,0,0,0
|
||||
tha_t03,0,0,0,0 monster Mimic 1191,10,0,0,0
|
||||
tha_t03,0,0,0,0 monster Ancient Mimic 1699,10,0,0,0
|
||||
tha_t03,0,0,0,0 monster Elder 1377,10,0,0,0
|
||||
tha_t03,0,0,0,0 monster Mistress of Shelter 1701,4,1800000,1200000,0
|
||||
tha_t03,0,0 monster Plasma 1696,20
|
||||
tha_t03,0,0 monster Rideword 1195,30
|
||||
tha_t03,0,0 monster Death Word 1698,80
|
||||
tha_t03,0,0 monster Mimic 1191,10
|
||||
tha_t03,0,0 monster Ancient Mimic 1699,10
|
||||
tha_t03,0,0 monster Elder 1377,10
|
||||
tha_t03,0,0 monster Mistress of Shelter 1701,4,1800000,1200000
|
||||
|
||||
//==================================================
|
||||
// tha_t04 - Thanatos Tower F4
|
||||
//==================================================
|
||||
tha_t04,0,0,0,0 monster Plasma 1694,20,0,0,0
|
||||
tha_t04,0,0,0,0 monster Rideword 1195,20,0,0,0
|
||||
tha_t04,0,0,0,0 monster Death Word 1698,20,0,0,0
|
||||
tha_t04,0,0,0,0 monster Mimic 1191,20,0,0,0
|
||||
tha_t04,0,0,0,0 monster Ancient Mimic 1699,20,0,0,0
|
||||
tha_t04,0,0,0,0 monster Elder 1377,20,0,0,0
|
||||
tha_t04,0,0,0,0 monster Owl Baron 1295,10,0,0,0
|
||||
tha_t04,0,0,0,0 monster Owl Duke 1320,10,0,0,0
|
||||
tha_t04,0,0,0,0 monster Dame of Sentinel 1700,4,1800000,1200000,0
|
||||
tha_t04,0,0 monster Plasma 1694,20
|
||||
tha_t04,0,0 monster Rideword 1195,20
|
||||
tha_t04,0,0 monster Death Word 1698,20
|
||||
tha_t04,0,0 monster Mimic 1191,20
|
||||
tha_t04,0,0 monster Ancient Mimic 1699,20
|
||||
tha_t04,0,0 monster Elder 1377,20
|
||||
tha_t04,0,0 monster Owl Baron 1295,10
|
||||
tha_t04,0,0 monster Owl Duke 1320,10
|
||||
tha_t04,0,0 monster Dame of Sentinel 1700,4,1800000,1200000
|
||||
|
||||
//==================================================
|
||||
// tha_t05 - Thanatos Tower F5
|
||||
//==================================================
|
||||
tha_t05,61,179,55,55 monster Elder 1377,5,0,0,0
|
||||
tha_t05,61,179,55,55 monster Plasma 1697,10,0,0,0
|
||||
tha_t05,61,179,55,55 monster Death Word 1698,10,0,0,0
|
||||
tha_t05,61,179,55,55 monster Ancient Mimic 1699,10,0,0,0
|
||||
tha_t05,61,179,55,55 monster Owl Duke 1320,20,300000,120000,0
|
||||
tha_t05,61,179,55,55 monster Owl Baron 1295,5,300000,120000,0
|
||||
tha_t05,178,178,55,55 monster Elder 1377,5,0,0,0
|
||||
tha_t05,178,178,55,55 monster Plasma 1695,10,0,0,0
|
||||
tha_t05,178,178,55,55 monster Death Word 1698,10,0,0,0
|
||||
tha_t05,178,178,55,55 monster Ancient Mimic 1699,10,0,0,0
|
||||
tha_t05,178,178,55,55 monster Owl Duke 1320,20,300000,120000,0
|
||||
tha_t05,178,178,55,55 monster Owl Baron 1295,5,300000,120000,0
|
||||
tha_t05,178,63,55,5 monster Elder 1377,5,0,0,0
|
||||
tha_t05,178,63,55,55 monster Plasma 1696,10,0,0,0
|
||||
tha_t05,178,63,55,55 monster Death Word 1698,10,0,0,0
|
||||
tha_t05,178,63,55,55 monster Ancient Mimic 1699,10,0,0,0
|
||||
tha_t05,178,63,55,55 monster Owl Duke 1320,20,300000,120000,0
|
||||
tha_t05,178,63,55,55 monster Owl Baron 1295,5,300000,120000,0
|
||||
tha_t05,62,63,55,55 monster Elder 1377,5,0,0,0
|
||||
tha_t05,62,63,55,55 monster Plasma 1694,10,0,0,0
|
||||
tha_t05,62,63,55,55 monster Death Word 1698,10,0,0,0
|
||||
tha_t05,62,63,55,55 monster Ancient Mimic 1699,10,0,0,0
|
||||
tha_t05,62,63,55,55 monster Owl Duke 1320,20,300000,120000,0
|
||||
tha_t05,62,63,55,55 monster Owl Baron 1295,5,300000,120000,0
|
||||
tha_t05,0,0,0,0 monster Dolor of Thanatos 1707,2,1800000,1200000,0
|
||||
tha_t05,61,179,55,55 monster Elder 1377,5
|
||||
tha_t05,61,179,55,55 monster Plasma 1697,10
|
||||
tha_t05,61,179,55,55 monster Death Word 1698,10
|
||||
tha_t05,61,179,55,55 monster Ancient Mimic 1699,10
|
||||
tha_t05,61,179,55,55 monster Owl Duke 1320,20,300000,120000
|
||||
tha_t05,61,179,55,55 monster Owl Baron 1295,5,300000,120000
|
||||
tha_t05,178,178,55,55 monster Elder 1377,5
|
||||
tha_t05,178,178,55,55 monster Plasma 1695,10
|
||||
tha_t05,178,178,55,55 monster Death Word 1698,10
|
||||
tha_t05,178,178,55,55 monster Ancient Mimic 1699,10
|
||||
tha_t05,178,178,55,55 monster Owl Duke 1320,20,300000,120000
|
||||
tha_t05,178,178,55,55 monster Owl Baron 1295,5,300000,120000
|
||||
tha_t05,178,63,55,5 monster Elder 1377,5
|
||||
tha_t05,178,63,55,55 monster Plasma 1696,10
|
||||
tha_t05,178,63,55,55 monster Death Word 1698,10
|
||||
tha_t05,178,63,55,55 monster Ancient Mimic 1699,10
|
||||
tha_t05,178,63,55,55 monster Owl Duke 1320,20,300000,120000
|
||||
tha_t05,178,63,55,55 monster Owl Baron 1295,5,300000,120000
|
||||
tha_t05,62,63,55,55 monster Elder 1377,5
|
||||
tha_t05,62,63,55,55 monster Plasma 1694,10
|
||||
tha_t05,62,63,55,55 monster Death Word 1698,10
|
||||
tha_t05,62,63,55,55 monster Ancient Mimic 1699,10
|
||||
tha_t05,62,63,55,55 monster Owl Duke 1320,20,300000,120000
|
||||
tha_t05,62,63,55,55 monster Owl Baron 1295,5,300000,120000
|
||||
tha_t05,0,0 monster Dolor of Thanatos 1707,2,1800000,1200000
|
||||
|
||||
//==================================================
|
||||
// tha_t06 - Thanatos Tower F6
|
||||
//==================================================
|
||||
tha_t06,61,179,55,55 monster Elder 1377,5,0,0,0
|
||||
tha_t06,61,179,55,55 monster Plasma 1697,10,0,0,0
|
||||
tha_t06,61,179,55,55 monster Death Word 1698,10,0,0,0
|
||||
tha_t06,61,179,55,55 monster Ancient Mimic 1699,10,0,0,0
|
||||
tha_t06,61,179,55,55 monster Owl Baron 1295,10,300000,120000,0
|
||||
tha_t06,61,179,55,55 monster Owl Duke 1320,10,300000,120000,0
|
||||
tha_t06,178,178,55,55 monster Elder 1377,5,0,0,0
|
||||
tha_t06,178,178,55,55 monster Plasma 1695,10,0,0,0
|
||||
tha_t06,178,178,55,55 monster Death Word 1698,10,0,0,0
|
||||
tha_t06,178,178,55,55 monster Ancient Mimic 1699,10,0,0,0
|
||||
tha_t06,178,178,55,55 monster Owl Baron 1295,10,300000,120000,0
|
||||
tha_t06,178,178,55,55 monster Owl Duke 1320,10,300000,120000,0
|
||||
tha_t06,178,63,55,55 monster Elder 1377,5,0,0,0
|
||||
tha_t06,178,63,55,55 monster Plasma 1696,10,0,0,0
|
||||
tha_t06,178,63,55,55 monster Death Word 1698,10,0,0,0
|
||||
tha_t06,178,63,55,55 monster Ancient Mimic 1699,10,0,0,0
|
||||
tha_t06,178,63,55,55 monster Owl Baron 1295,10,300000,120000,0
|
||||
tha_t06,178,63,55,55 monster Owl Duke 1320,10,300000,120000,0
|
||||
tha_t06,62,63,55,55 monster Elder 1377,5,0,0,0
|
||||
tha_t06,62,63,55,55 monster Plasma 1694,10,0,0,0
|
||||
tha_t06,62,63,55,55 monster Death Word 1698,10,0,0,0
|
||||
tha_t06,62,63,55,55 monster Ancient Mimic 1699,10,0,0,0
|
||||
tha_t06,62,63,55,55 monster Owl Baron 1295,10,300000,120000,0
|
||||
tha_t06,62,63,55,55 monster Owl Duke 1320,10,300000,120000,0
|
||||
tha_t06,0,0,0,0 monster Maero of Thanatos 1706,2,1800000,1200000,0
|
||||
tha_t06,61,179,55,55 monster Elder 1377,5
|
||||
tha_t06,61,179,55,55 monster Plasma 1697,10
|
||||
tha_t06,61,179,55,55 monster Death Word 1698,10
|
||||
tha_t06,61,179,55,55 monster Ancient Mimic 1699,10
|
||||
tha_t06,61,179,55,55 monster Owl Baron 1295,10,300000,120000
|
||||
tha_t06,61,179,55,55 monster Owl Duke 1320,10,300000,120000
|
||||
tha_t06,178,178,55,55 monster Elder 1377,5
|
||||
tha_t06,178,178,55,55 monster Plasma 1695,10
|
||||
tha_t06,178,178,55,55 monster Death Word 1698,10
|
||||
tha_t06,178,178,55,55 monster Ancient Mimic 1699,10
|
||||
tha_t06,178,178,55,55 monster Owl Baron 1295,10,300000,120000
|
||||
tha_t06,178,178,55,55 monster Owl Duke 1320,10,300000,120000
|
||||
tha_t06,178,63,55,55 monster Elder 1377,5
|
||||
tha_t06,178,63,55,55 monster Plasma 1696,10
|
||||
tha_t06,178,63,55,55 monster Death Word 1698,10
|
||||
tha_t06,178,63,55,55 monster Ancient Mimic 1699,10
|
||||
tha_t06,178,63,55,55 monster Owl Baron 1295,10,300000,120000
|
||||
tha_t06,178,63,55,55 monster Owl Duke 1320,10,300000,120000
|
||||
tha_t06,62,63,55,55 monster Elder 1377,5
|
||||
tha_t06,62,63,55,55 monster Plasma 1694,10
|
||||
tha_t06,62,63,55,55 monster Death Word 1698,10
|
||||
tha_t06,62,63,55,55 monster Ancient Mimic 1699,10
|
||||
tha_t06,62,63,55,55 monster Owl Baron 1295,10,300000,120000
|
||||
tha_t06,62,63,55,55 monster Owl Duke 1320,10,300000,120000
|
||||
tha_t06,0,0 monster Maero of Thanatos 1706,2,1800000,1200000
|
||||
|
||||
//==================================================
|
||||
// tha_t07 - Thanatos Tower F7
|
||||
//==================================================
|
||||
tha_t07,70,105,40,75 monster Death Word 1698,10,300000,120000,0
|
||||
tha_t07,70,105,40,75 monster Ancient Mimic 1699,10,300000,120000,0
|
||||
tha_t07,70,105,40,75 monster Lady Solace 1703,7,300000,120000,0
|
||||
tha_t07,70,105,40,75 monster Mistress of Shelter 1701,7,300000,120000,0
|
||||
tha_t07,70,105,40,75 monster Baroness of Retribution 1702,15,0,0,0
|
||||
tha_t07,70,105,40,75 monster Dame of Sentinel 1700,7,300000,120000,0
|
||||
tha_t07,70,105,40,75 monster Despero of Thanatos 1705,2,1800000,1200000,0
|
||||
tha_t07,70,105,40,75 monster Death Word 1698,10,300000,120000
|
||||
tha_t07,70,105,40,75 monster Ancient Mimic 1699,10,300000,120000
|
||||
tha_t07,70,105,40,75 monster Lady Solace 1703,7,300000,120000
|
||||
tha_t07,70,105,40,75 monster Mistress of Shelter 1701,7,300000,120000
|
||||
tha_t07,70,105,40,75 monster Baroness of Retribution 1702,15
|
||||
tha_t07,70,105,40,75 monster Dame of Sentinel 1700,7,300000,120000
|
||||
tha_t07,70,105,40,75 monster Despero of Thanatos 1705,2,1800000,1200000
|
||||
|
||||
//==================================================
|
||||
// tha_t08 - Thanatos Tower F8
|
||||
//==================================================
|
||||
tha_t08,70,105,40,80 monster Death Word 1698,10,300000,120000,0
|
||||
tha_t08,70,105,40,80 monster Ancient Mimic 1699,10,300000,120000,0
|
||||
tha_t08,70,105,40,80 monster Lady Solace 1703,5,0,0,0
|
||||
tha_t08,70,105,40,80 monster Mistress of Shelter 1701,5,0,0,0
|
||||
tha_t08,70,105,40,80 monster Baroness of Retribution 1702,20,300000,120000,0
|
||||
tha_t08,70,105,40,80 monster Dame of Sentinel 1700,5,0,0,0
|
||||
tha_t08,70,105,40,80 monster Odium of Thanatos 1704,2,1800000,1200000,0
|
||||
tha_t08,70,105,40,80 monster Death Word 1698,10,300000,120000
|
||||
tha_t08,70,105,40,80 monster Ancient Mimic 1699,10,300000,120000
|
||||
tha_t08,70,105,40,80 monster Lady Solace 1703,5
|
||||
tha_t08,70,105,40,80 monster Mistress of Shelter 1701,5
|
||||
tha_t08,70,105,40,80 monster Baroness of Retribution 1702,20,300000,120000
|
||||
tha_t08,70,105,40,80 monster Dame of Sentinel 1700,5
|
||||
tha_t08,70,105,40,80 monster Odium of Thanatos 1704,2,1800000,1200000
|
||||
|
||||
//==================================================
|
||||
// tha_t09 - Thanatos Tower F9
|
||||
//==================================================
|
||||
tha_t09,50,129,35,35 monster Plasma 1694,5,0,0,0
|
||||
tha_t09,50,129,35,35 monster Lady Solace 1703,20,600000,0,0
|
||||
tha_t09,50,129,35,35 monster Baroness of Retribution 1702,5,420000,0,0
|
||||
tha_t09,50,129,35,35 monster Mistress of Shelter 1701,5,420000,0,0
|
||||
tha_t09,50,129,35,35 monster Dame of Sentinel 1700,5,420000,0,0
|
||||
tha_t09,50,129,35,35 monster Dolor of Thanatos 1707,1,1800000,1200000,0
|
||||
tha_t09,50,129,35,35 monster Dolor of Thanatos 1712,3,1800000,1200000,0
|
||||
tha_t09,50,129,35,35 monster Plasma 1694,5
|
||||
tha_t09,50,129,35,35 monster Lady Solace 1703,20,600000
|
||||
tha_t09,50,129,35,35 monster Baroness of Retribution 1702,5,420000
|
||||
tha_t09,50,129,35,35 monster Mistress of Shelter 1701,5,420000
|
||||
tha_t09,50,129,35,35 monster Dame of Sentinel 1700,5,420000
|
||||
tha_t09,50,129,35,35 monster Dolor of Thanatos 1707,1,1800000,1200000
|
||||
tha_t09,50,129,35,35 monster Dolor of Thanatos 1712,3,1800000,1200000
|
||||
|
||||
//==================================================
|
||||
// tha_t10 - Thanatos Tower F10
|
||||
//==================================================
|
||||
tha_t10,129,129,35,35 monster Plasma 1697,5,0,0,0
|
||||
tha_t10,129,129,35,35 monster Baroness of Retribution 1702,20,600000,0,0
|
||||
tha_t10,129,129,35,35 monster Lady Solace 1703,5,420000,0,0
|
||||
tha_t10,129,129,35,35 monster Mistress of Shelter 1701,5,420000,0,0
|
||||
tha_t10,129,129,35,35 monster Dame of Sentinel 1700,5,420000,0,0
|
||||
tha_t10,129,129,35,35 monster Maero of Thanatos 1706,1,1800000,1200000,0
|
||||
tha_t10,129,129,35,35 monster Maero of Thanatos 1711,3,1800000,1200000,0
|
||||
tha_t10,129,129,35,35 monster Plasma 1697,5
|
||||
tha_t10,129,129,35,35 monster Baroness of Retribution 1702,20,600000
|
||||
tha_t10,129,129,35,35 monster Lady Solace 1703,5,420000
|
||||
tha_t10,129,129,35,35 monster Mistress of Shelter 1701,5,420000
|
||||
tha_t10,129,129,35,35 monster Dame of Sentinel 1700,5,420000
|
||||
tha_t10,129,129,35,35 monster Maero of Thanatos 1706,1,1800000,1200000
|
||||
tha_t10,129,129,35,35 monster Maero of Thanatos 1711,3,1800000,1200000
|
||||
|
||||
//==================================================
|
||||
// tha_t11 - Thanatos Tower F11
|
||||
//==================================================
|
||||
tha_t11,50,51,35,35 monster Plasma 1695,5,0,0,0
|
||||
tha_t11,50,51,35,35 monster Mistress of Shelter 1701,20,600000,0,0
|
||||
tha_t11,50,51,35,35 monster Lady Solace 1703,5,420000,0,0
|
||||
tha_t11,50,51,35,35 monster Baroness of Retribution 1702,5,420000,0,0
|
||||
tha_t11,50,51,35,35 monster Dame of Sentinel 1700,5,420000,0,0
|
||||
tha_t11,50,51,35,35 monster Despero of Thanatos 1705,1,1800000,1200000,0
|
||||
tha_t11,50,51,35,35 monster Despero of Thanatos 1710,3,1800000,1200000,0
|
||||
tha_t11,50,51,35,35 monster Plasma 1695,5
|
||||
tha_t11,50,51,35,35 monster Mistress of Shelter 1701,20,600000
|
||||
tha_t11,50,51,35,35 monster Lady Solace 1703,5,420000
|
||||
tha_t11,50,51,35,35 monster Baroness of Retribution 1702,5,420000
|
||||
tha_t11,50,51,35,35 monster Dame of Sentinel 1700,5,420000
|
||||
tha_t11,50,51,35,35 monster Despero of Thanatos 1705,1,1800000,1200000
|
||||
tha_t11,50,51,35,35 monster Despero of Thanatos 1710,3,1800000,1200000
|
||||
|
||||
//==================================================
|
||||
// tha_t12 - Thanatos Tower F12
|
||||
//==================================================
|
||||
tha_t12,129,51,35,35 monster Plasma 1693,5,0,0,0
|
||||
tha_t12,129,51,35,35 monster Dame of Sentinel 1700,13,600000,0,0
|
||||
tha_t12,129,51,35,35 monster Lady Solace 1703,5,420000,0,0
|
||||
tha_t12,129,51,35,35 monster Mistress of Shelter 1701,5,420000,0,0
|
||||
tha_t12,129,51,35,35 monster Baroness of Retribution 1702,5,420000,0,0
|
||||
tha_t12,129,51,35,35 monster Odium of Thanatos 1709,4,1800000,1200000,0
|
||||
tha_t12,129,51,35,35 monster Plasma 1693,5
|
||||
tha_t12,129,51,35,35 monster Dame of Sentinel 1700,13,600000
|
||||
tha_t12,129,51,35,35 monster Lady Solace 1703,5,420000
|
||||
tha_t12,129,51,35,35 monster Mistress of Shelter 1701,5,420000
|
||||
tha_t12,129,51,35,35 monster Baroness of Retribution 1702,5,420000
|
||||
tha_t12,129,51,35,35 monster Odium of Thanatos 1709,4,1800000,1200000
|
||||
|
||||
@@ -17,52 +17,52 @@
|
||||
//============================================================
|
||||
|
||||
// ================= [Thor Volcano - 01] =====================
|
||||
thor_v01,0,0,0,0 monster Magmaring 1836,10,0,0,0
|
||||
thor_v01,0,0,0,0 monster Fire Imp 1837,5,0,0,0
|
||||
thor_v01,0,0,0,0 monster Fire Imp 1837,12,1800000,0,0
|
||||
thor_v01,80,255,65,35 monster Fire Imp 1837,2,0,0,0
|
||||
thor_v01,240,250,50,30 monster Fire Imp 1837,2,0,0,0
|
||||
thor_v01,90,100,50,50 monster Fire Imp 1837,2,0,0,0
|
||||
thor_v01,210,110,50,30 monster Fire Imp 1837,2,0,0,0
|
||||
thor_v01,0,0,0,0 monster Kasa 1833,25,0,0,0
|
||||
thor_v01,80,255,65,35 monster Kasa 1833,5,0,0,0
|
||||
thor_v01,240,250,50,30 monster Kasa 1833,5,0,0,0
|
||||
thor_v01,90,100,50,50 monster Kasa 1833,5,0,0,0
|
||||
thor_v01,210,110,50,30 monster Kasa 1833,5,0,0,0
|
||||
thor_v01,0,0,0,0 monster Sword Master 1829,5,420000,0,0
|
||||
thor_v01,0,0,0,0 monster Bow Master 1830,5,420000,0,0
|
||||
thor_v01,0,0,0,0 monster Salamander 1831,5,3600000,0,0
|
||||
thor_v01,0,0,0,0 monster Byorgue 1839,1,3600000,0,0
|
||||
thor_v01,0,0 monster Magmaring 1836,10
|
||||
thor_v01,0,0 monster Fire Imp 1837,5
|
||||
thor_v01,0,0 monster Fire Imp 1837,12,1800000
|
||||
thor_v01,80,255,65,35 monster Fire Imp 1837,2
|
||||
thor_v01,240,250,50,30 monster Fire Imp 1837,2
|
||||
thor_v01,90,100,50,50 monster Fire Imp 1837,2
|
||||
thor_v01,210,110,50,30 monster Fire Imp 1837,2
|
||||
thor_v01,0,0 monster Kasa 1833,25
|
||||
thor_v01,80,255,65,35 monster Kasa 1833,5
|
||||
thor_v01,240,250,50,30 monster Kasa 1833,5
|
||||
thor_v01,90,100,50,50 monster Kasa 1833,5
|
||||
thor_v01,210,110,50,30 monster Kasa 1833,5
|
||||
thor_v01,0,0 monster Sword Master 1829,5,420000
|
||||
thor_v01,0,0 monster Bow Master 1830,5,420000
|
||||
thor_v01,0,0 monster Salamander 1831,5,3600000
|
||||
thor_v01,0,0 monster Byorgue 1839,1,3600000
|
||||
|
||||
// ================= [Thor Volcano - 02] =====================
|
||||
thor_v02,0,0,0,0 monster Magmaring 1836,10,0,0,0
|
||||
thor_v02,0,0,0,0 monster Fire Imp 1837,5,0,0,0
|
||||
thor_v02,75,125,50,85 monster Fire Imp 1837,3,0,0,0
|
||||
thor_v02,168,162,50,50 monster Fire Imp 1837,2,0,0,0
|
||||
thor_v02,0,0,0,0 monster Kaho 1072,5,0,0,0
|
||||
thor_v02,75,125,50,85 monster Kaho 1072,3,0,0,0
|
||||
thor_v02,168,162,50,50 monster Kaho 1072,2,0,0,0
|
||||
thor_v02,0,0,0,0 monster Knocker 1838,20,0,0,0
|
||||
thor_v02,75,125,50,85 monster Knocker 1838,20,0,0,0
|
||||
thor_v02,168,162,50,50 monster Knocker 1838,15,0,0,0
|
||||
thor_v02,0,0,0,0 monster Salamander 1831,1,18000000,0,0
|
||||
thor_v02,0,0,0,0 monster Sword Master 1829,1,7200000,0,0
|
||||
thor_v02,0,0,0,0 monster Bow Master 1830,1,7200000,0,0
|
||||
thor_v02,0,0 monster Magmaring 1836,10
|
||||
thor_v02,0,0 monster Fire Imp 1837,5
|
||||
thor_v02,75,125,50,85 monster Fire Imp 1837,3
|
||||
thor_v02,168,162,50,50 monster Fire Imp 1837,2
|
||||
thor_v02,0,0 monster Kaho 1072,5
|
||||
thor_v02,75,125,50,85 monster Kaho 1072,3
|
||||
thor_v02,168,162,50,50 monster Kaho 1072,2
|
||||
thor_v02,0,0 monster Knocker 1838,20
|
||||
thor_v02,75,125,50,85 monster Knocker 1838,20
|
||||
thor_v02,168,162,50,50 monster Knocker 1838,15
|
||||
thor_v02,0,0 monster Salamander 1831,1,18000000
|
||||
thor_v02,0,0 monster Sword Master 1829,1,7200000
|
||||
thor_v02,0,0 monster Bow Master 1830,1,7200000
|
||||
|
||||
// ================= [Thor Volcano - 03] =====================
|
||||
thor_v03,0,0,0,0 monster Kasa 1833,16,0,0,0
|
||||
thor_v03,95,220,64,55 monster Kasa 1833,6,0,0,0
|
||||
thor_v03,223,224,65,60 monster Kasa 1833,6,0,0,0
|
||||
thor_v03,80,90,60,60 monster Kasa 1833,6,0,0,0
|
||||
thor_v03,218,81,60,60 monster Kasa 1833,6,0,0,0
|
||||
thor_v03,0,0,0,0 monster Salamander 1831,20,0,0,0
|
||||
thor_v03,95,220,64,55 monster Salamander 1831,10,0,0,0
|
||||
thor_v03,223,224,65,60 monster Salamander 1831,10,0,0,0
|
||||
thor_v03,80,90,60,60 monster Salamander 1831,10,0,0,0
|
||||
thor_v03,218,81,60,60 monster Salamander 1831,10,0,0,0
|
||||
thor_v03,0,0,0,0 monster Sword Master 1829,5,0,0,0
|
||||
thor_v03,0,0,0,0 monster Sword Master 1829,5,1800000,0,0
|
||||
thor_v03,0,0,0,0 monster Bow Master 1830,5,0,0,0
|
||||
thor_v03,0,0,0,0 monster Bow Master 1830,5,1800000,0,0
|
||||
thor_v03,0,0,0,0 monster Byorgue 1839,5,1800000,0,0
|
||||
thor_v03,0,0 monster Kasa 1833,16
|
||||
thor_v03,95,220,64,55 monster Kasa 1833,6
|
||||
thor_v03,223,224,65,60 monster Kasa 1833,6
|
||||
thor_v03,80,90,60,60 monster Kasa 1833,6
|
||||
thor_v03,218,81,60,60 monster Kasa 1833,6
|
||||
thor_v03,0,0 monster Salamander 1831,20
|
||||
thor_v03,95,220,64,55 monster Salamander 1831,10
|
||||
thor_v03,223,224,65,60 monster Salamander 1831,10
|
||||
thor_v03,80,90,60,60 monster Salamander 1831,10
|
||||
thor_v03,218,81,60,60 monster Salamander 1831,10
|
||||
thor_v03,0,0 monster Sword Master 1829,5
|
||||
thor_v03,0,0 monster Sword Master 1829,5,1800000
|
||||
thor_v03,0,0 monster Bow Master 1830,5
|
||||
thor_v03,0,0 monster Bow Master 1830,5,1800000
|
||||
thor_v03,0,0 monster Byorgue 1839,5,1800000
|
||||
thor_v03,0,0,0,0 boss_monster Ifrit 1832,1,39600000,600000,0
|
||||
|
||||
@@ -15,144 +15,144 @@
|
||||
//==================================================
|
||||
// treasure01 - Sunken Ship F1
|
||||
//==================================================
|
||||
treasure01,0,0,0,0 monster Kukre 1070,20,0,0,1
|
||||
treasure01,0,0,0,0 monster Whisper 1179,5,0,0,1
|
||||
treasure01,0,0,0,0 monster Whisper 1179,5,120000,60000,1
|
||||
treasure01,107,39,15,15 monster Poison Spore 1077,3,180000,90000,1
|
||||
treasure01,107,39,15,15 monster Hydra 1068,1,180000,90000,1
|
||||
treasure01,29,38,15,15 monster Poison Spore 1077,3,180000,90000,1
|
||||
treasure01,68,66,13,11 monster Hydra 1068,4,180000,90000,1
|
||||
treasure01,34,112,17,11 monster Pirate Skeleton 1071,5,180000,90000,1
|
||||
treasure01,106,111,9,9 monster Pirate Skeleton 1071,5,180000,90000,1
|
||||
treasure01,106,111,9,9 monster Pirate Skeleton 1071,5,180000,90000,1
|
||||
treasure01,67,161,0,0 monster Hydra 1068,1,263000,100000,1
|
||||
treasure01,67,160,0,0 monster Hydra 1068,1,293000,100000,1
|
||||
treasure01,68,161,0,0 monster Hydra 1068,1,317000,100000,1
|
||||
treasure01,68,160,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,69,161,0,0 monster Hydra 1068,1,305000,100000,1
|
||||
treasure01,69,160,0,0 monster Hydra 1068,1,290000,100000,1
|
||||
treasure01,70,161,0,0 monster Hydra 1068,1,302000,100000,1
|
||||
treasure01,70,160,0,0 monster Hydra 1068,1,306000,100000,1
|
||||
treasure01,48,161,0,0 monster Hydra 1068,1,316000,100000,1
|
||||
treasure01,48,160,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,49,161,0,0 monster Hydra 1068,1,310000,100000,1
|
||||
treasure01,49,160,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,50,161,0,0 monster Hydra 1068,1,308000,100000,1
|
||||
treasure01,50,160,0,0 monster Hydra 1068,1,301000,100000,1
|
||||
treasure01,51,161,0,0 monster Hydra 1068,1,314000,100000,1
|
||||
treasure01,51,160,0,0 monster Hydra 1068,1,270000,100000,1
|
||||
treasure01,86,161,0,0 monster Hydra 1068,1,285000,100000,1
|
||||
treasure01,86,160,0,0 monster Hydra 1068,1,310000,100000,1
|
||||
treasure01,87,161,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,87,160,0,0 monster Hydra 1068,1,268000,100000,1
|
||||
treasure01,88,161,0,0 monster Hydra 1068,1,281000,100000,1
|
||||
treasure01,88,160,0,0 monster Hydra 1068,1,296000,100000,1
|
||||
treasure01,89,161,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,89,160,0,0 monster Hydra 1068,1,305000,100000,1
|
||||
treasure01,60,182,0,0 monster Hydra 1068,1,313000,100000,1
|
||||
treasure01,76,182,0,0 monster Hydra 1068,1,269000,100000,1
|
||||
treasure01,82,154,11,9 monster Poison Spore 1077,3,100000,100000,1
|
||||
treasure01,54,154,11,9 monster Poison Spore 1077,3,100000,100000,1
|
||||
treasure01,58,165,5,5 monster Pirate Skeleton 1071,2,300000,100000,1
|
||||
treasure01,69,165,5,5 monster Pirate Skeleton 1071,2,300000,100000,1
|
||||
treasure01,79,165,5,5 monster Pirate Skeleton 1071,2,300000,100000,1
|
||||
treasure01,150,162,5,5 monster Pirate Skeleton 1071,3,300000,100000,1
|
||||
treasure01,150,162,5,5 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,163,161,5,5 monster Pirate Skeleton 1071,3,300000,100000,1
|
||||
treasure01,163,161,5,5 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,163,151,5,5 monster Pirate Skeleton 1071,3,300000,100000,1
|
||||
treasure01,163,151,5,5 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,163,141,5,5 monster Pirate Skeleton 1071,3,300000,100000,1
|
||||
treasure01,163,141,5,5 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,162,71,0,0 monster Hydra 1068,1,273000,100000,1
|
||||
treasure01,162,70,0,0 monster Hydra 1068,1,314000,100000,1
|
||||
treasure01,163,71,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,163,70,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,164,71,0,0 monster Hydra 1068,1,305000,100000,1
|
||||
treasure01,164,70,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,165,71,0,0 monster Hydra 1068,1,307000,100000,1
|
||||
treasure01,165,70,0,0 monster Hydra 1068,1,293000,100000,1
|
||||
treasure01,164,59,12,10 monster Whisper 1179,5,300000,100000,1
|
||||
treasure01,158,63,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,159,63,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,158,62,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,159,62,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,160,60,27,19 monster Pirate Skeleton 1071,10,300000,100000,1
|
||||
treasure01,158,45,0,0 monster Hydra 1068,1,302000,100000,1
|
||||
treasure01,158,44,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,158,43,0,0 monster Hydra 1068,1,305000,100000,1
|
||||
treasure01,158,42,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,158,41,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,158,40,0,0 monster Hydra 1068,1,307000,100000,1
|
||||
treasure01,159,45,0,0 monster Hydra 1068,1,285000,100000,1
|
||||
treasure01,159,44,0,0 monster Hydra 1068,1,312000,100000,1
|
||||
treasure01,159,43,0,0 monster Hydra 1068,1,318000,100000,1
|
||||
treasure01,159,42,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,159,41,0,0 monster Hydra 1068,1,306000,100000,1
|
||||
treasure01,159,40,0,0 monster Hydra 1068,1,290000,100000,1
|
||||
treasure01,168,45,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,168,44,0,0 monster Hydra 1068,1,314000,100000,1
|
||||
treasure01,168,43,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,168,42,0,0 monster Hydra 1068,1,306000,100000,1
|
||||
treasure01,168,41,0,0 monster Hydra 1068,1,290000,100000,1
|
||||
treasure01,168,40,0,0 monster Hydra 1068,1,322000,100000,1
|
||||
treasure01,169,45,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,169,44,0,0 monster Hydra 1068,1,302000,100000,1
|
||||
treasure01,169,43,0,0 monster Hydra 1068,1,305000,100000,1
|
||||
treasure01,169,42,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,169,41,0,0 monster Hydra 1068,1,313000,100000,1
|
||||
treasure01,169,40,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure01,0,0 monster Kukre 1070,20
|
||||
treasure01,0,0 monster Whisper 1179,5
|
||||
treasure01,0,0 monster Whisper 1179,5,120000,60000
|
||||
treasure01,107,39,15,15 monster Poison Spore 1077,3,180000,90000
|
||||
treasure01,107,39,15,15 monster Hydra 1068,1,180000,90000
|
||||
treasure01,29,38,15,15 monster Poison Spore 1077,3,180000,90000
|
||||
treasure01,68,66,13,11 monster Hydra 1068,4,180000,90000
|
||||
treasure01,34,112,17,11 monster Pirate Skeleton 1071,5,180000,90000
|
||||
treasure01,106,111,9,9 monster Pirate Skeleton 1071,5,180000,90000
|
||||
treasure01,106,111,9,9 monster Pirate Skeleton 1071,5,180000,90000
|
||||
treasure01,67,161 monster Hydra 1068,1,263000,100000
|
||||
treasure01,67,160 monster Hydra 1068,1,293000,100000
|
||||
treasure01,68,161 monster Hydra 1068,1,317000,100000
|
||||
treasure01,68,160 monster Hydra 1068,1,300000,100000
|
||||
treasure01,69,161 monster Hydra 1068,1,305000,100000
|
||||
treasure01,69,160 monster Hydra 1068,1,290000,100000
|
||||
treasure01,70,161 monster Hydra 1068,1,302000,100000
|
||||
treasure01,70,160 monster Hydra 1068,1,306000,100000
|
||||
treasure01,48,161 monster Hydra 1068,1,316000,100000
|
||||
treasure01,48,160 monster Hydra 1068,1,300000,100000
|
||||
treasure01,49,161 monster Hydra 1068,1,310000,100000
|
||||
treasure01,49,160 monster Hydra 1068,1,300000,100000
|
||||
treasure01,50,161 monster Hydra 1068,1,308000,100000
|
||||
treasure01,50,160 monster Hydra 1068,1,301000,100000
|
||||
treasure01,51,161 monster Hydra 1068,1,314000,100000
|
||||
treasure01,51,160 monster Hydra 1068,1,270000,100000
|
||||
treasure01,86,161 monster Hydra 1068,1,285000,100000
|
||||
treasure01,86,160 monster Hydra 1068,1,310000,100000
|
||||
treasure01,87,161 monster Hydra 1068,1,300000,100000
|
||||
treasure01,87,160 monster Hydra 1068,1,268000,100000
|
||||
treasure01,88,161 monster Hydra 1068,1,281000,100000
|
||||
treasure01,88,160 monster Hydra 1068,1,296000,100000
|
||||
treasure01,89,161 monster Hydra 1068,1,300000,100000
|
||||
treasure01,89,160 monster Hydra 1068,1,305000,100000
|
||||
treasure01,60,182 monster Hydra 1068,1,313000,100000
|
||||
treasure01,76,182 monster Hydra 1068,1,269000,100000
|
||||
treasure01,82,154,11,9 monster Poison Spore 1077,3,100000,100000
|
||||
treasure01,54,154,11,9 monster Poison Spore 1077,3,100000,100000
|
||||
treasure01,58,165,5,5 monster Pirate Skeleton 1071,2,300000,100000
|
||||
treasure01,69,165,5,5 monster Pirate Skeleton 1071,2,300000,100000
|
||||
treasure01,79,165,5,5 monster Pirate Skeleton 1071,2,300000,100000
|
||||
treasure01,150,162,5,5 monster Pirate Skeleton 1071,3,300000,100000
|
||||
treasure01,150,162,5,5 monster Hydra 1068,1,300000,100000
|
||||
treasure01,163,161,5,5 monster Pirate Skeleton 1071,3,300000,100000
|
||||
treasure01,163,161,5,5 monster Hydra 1068,1,300000,100000
|
||||
treasure01,163,151,5,5 monster Pirate Skeleton 1071,3,300000,100000
|
||||
treasure01,163,151,5,5 monster Hydra 1068,1,300000,100000
|
||||
treasure01,163,141,5,5 monster Pirate Skeleton 1071,3,300000,100000
|
||||
treasure01,163,141,5,5 monster Hydra 1068,1,300000,100000
|
||||
treasure01,162,71 monster Hydra 1068,1,273000,100000
|
||||
treasure01,162,70 monster Hydra 1068,1,314000,100000
|
||||
treasure01,163,71 monster Hydra 1068,1,300000,100000
|
||||
treasure01,163,70 monster Hydra 1068,1,300000,100000
|
||||
treasure01,164,71 monster Hydra 1068,1,305000,100000
|
||||
treasure01,164,70 monster Hydra 1068,1,300000,100000
|
||||
treasure01,165,71 monster Hydra 1068,1,307000,100000
|
||||
treasure01,165,70 monster Hydra 1068,1,293000,100000
|
||||
treasure01,164,59,12,10 monster Whisper 1179,5,300000,100000
|
||||
treasure01,158,63 monster Hydra 1068,1,300000,100000
|
||||
treasure01,159,63 monster Hydra 1068,1,300000,100000
|
||||
treasure01,158,62 monster Hydra 1068,1,300000,100000
|
||||
treasure01,159,62 monster Hydra 1068,1,300000,100000
|
||||
treasure01,160,60,27,19 monster Pirate Skeleton 1071,10,300000,100000
|
||||
treasure01,158,45 monster Hydra 1068,1,302000,100000
|
||||
treasure01,158,44 monster Hydra 1068,1,300000,100000
|
||||
treasure01,158,43 monster Hydra 1068,1,305000,100000
|
||||
treasure01,158,42 monster Hydra 1068,1,300000,100000
|
||||
treasure01,158,41 monster Hydra 1068,1,300000,100000
|
||||
treasure01,158,40 monster Hydra 1068,1,307000,100000
|
||||
treasure01,159,45 monster Hydra 1068,1,285000,100000
|
||||
treasure01,159,44 monster Hydra 1068,1,312000,100000
|
||||
treasure01,159,43 monster Hydra 1068,1,318000,100000
|
||||
treasure01,159,42 monster Hydra 1068,1,300000,100000
|
||||
treasure01,159,41 monster Hydra 1068,1,306000,100000
|
||||
treasure01,159,40 monster Hydra 1068,1,290000,100000
|
||||
treasure01,168,45 monster Hydra 1068,1,300000,100000
|
||||
treasure01,168,44 monster Hydra 1068,1,314000,100000
|
||||
treasure01,168,43 monster Hydra 1068,1,300000,100000
|
||||
treasure01,168,42 monster Hydra 1068,1,306000,100000
|
||||
treasure01,168,41 monster Hydra 1068,1,290000,100000
|
||||
treasure01,168,40 monster Hydra 1068,1,322000,100000
|
||||
treasure01,169,45 monster Hydra 1068,1,300000,100000
|
||||
treasure01,169,44 monster Hydra 1068,1,302000,100000
|
||||
treasure01,169,43 monster Hydra 1068,1,305000,100000
|
||||
treasure01,169,42 monster Hydra 1068,1,300000,100000
|
||||
treasure01,169,41 monster Hydra 1068,1,313000,100000
|
||||
treasure01,169,40 monster Hydra 1068,1,300000,100000
|
||||
|
||||
//==================================================
|
||||
// treasure02 - Sunken Ship F2
|
||||
//==================================================
|
||||
treasure02,0,0,0,0 monster Ghostring 1120,1,1980000,1200000,1
|
||||
treasure02,0,0,0,0 monster Whisper 1179,5,0,0,0
|
||||
treasure02,0,0,0,0 monster Wanderer 1208,1,600000,300000,1
|
||||
treasure02,0,0,0,0 monster Penomena 1216,22,300000,120000,1
|
||||
treasure02,0,0,0,0 monster Kukre 1070,20,0,0,1
|
||||
treasure02,0,0,0,0 monster Pirate Skeleton 1071,5,0,0,1
|
||||
treasure02,0,0,0,0 monster Mimic 1191,3,0,0,1
|
||||
treasure02,95,57,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure02,96,57,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure02,101,57,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure02,102,57,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure02,107,57,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure02,108,57,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure02,101,50,10,10 monster Penomena 1216,5,300000,100000,1
|
||||
treasure02,102,68,13,13 monster Whisper 1179,1,300000,100000,1
|
||||
treasure02,102,80,5,5 monster Whisper 1179,1,300000,100000,1
|
||||
treasure02,102,88,5,5 monster Whisper 1179,1,300000,100000,1
|
||||
treasure02,100,85,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure02,101,85,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure02,102,85,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure02,103,85,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure02,100,136,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure02,101,136,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure02,102,136,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure02,103,136,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure02,100,143,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure02,101,143,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure02,102,143,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure02,103,143,0,0 monster Hydra 1068,1,300000,100000,1
|
||||
treasure02,101,150,15,10 monster Whisper 1179,2,200000,100000,1
|
||||
treasure02,0,0 monster Ghostring 1120,1,1980000,1200000
|
||||
treasure02,0,0 monster Whisper 1179,5
|
||||
treasure02,0,0 monster Wanderer 1208,1,600000,300000
|
||||
treasure02,0,0 monster Penomena 1216,22,300000,120000
|
||||
treasure02,0,0 monster Kukre 1070,20
|
||||
treasure02,0,0 monster Pirate Skeleton 1071,5
|
||||
treasure02,0,0 monster Mimic 1191,3
|
||||
treasure02,95,57 monster Hydra 1068,1,300000,100000
|
||||
treasure02,96,57 monster Hydra 1068,1,300000,100000
|
||||
treasure02,101,57 monster Hydra 1068,1,300000,100000
|
||||
treasure02,102,57 monster Hydra 1068,1,300000,100000
|
||||
treasure02,107,57 monster Hydra 1068,1,300000,100000
|
||||
treasure02,108,57 monster Hydra 1068,1,300000,100000
|
||||
treasure02,101,50,10,10 monster Penomena 1216,5,300000,100000
|
||||
treasure02,102,68,13,13 monster Whisper 1179,1,300000,100000
|
||||
treasure02,102,80,5,5 monster Whisper 1179,1,300000,100000
|
||||
treasure02,102,88,5,5 monster Whisper 1179,1,300000,100000
|
||||
treasure02,100,85 monster Hydra 1068,1,300000,100000
|
||||
treasure02,101,85 monster Hydra 1068,1,300000,100000
|
||||
treasure02,102,85 monster Hydra 1068,1,300000,100000
|
||||
treasure02,103,85 monster Hydra 1068,1,300000,100000
|
||||
treasure02,100,136 monster Hydra 1068,1,300000,100000
|
||||
treasure02,101,136 monster Hydra 1068,1,300000,100000
|
||||
treasure02,102,136 monster Hydra 1068,1,300000,100000
|
||||
treasure02,103,136 monster Hydra 1068,1,300000,100000
|
||||
treasure02,100,143 monster Hydra 1068,1,300000,100000
|
||||
treasure02,101,143 monster Hydra 1068,1,300000,100000
|
||||
treasure02,102,143 monster Hydra 1068,1,300000,100000
|
||||
treasure02,103,143 monster Hydra 1068,1,300000,100000
|
||||
treasure02,101,150,15,10 monster Whisper 1179,2,200000,100000
|
||||
treasure02,101,151,8,8 boss_monster Drake 1112,1,7200000,600000,1
|
||||
treasure02,101,151,10,10 monster Mimic 1191,3,500000,200000,1
|
||||
treasure02,101,151,10,10 monster Mimic 1191,2,100000,100000,1
|
||||
treasure02,101,151,10,10 monster Penomena 1216,4,100000,100000,1
|
||||
treasure02,101,126,2,2 monster Penomena 1216,1,1200000,600000,1
|
||||
treasure02,101,135,2,2 monster Penomena 1216,1,60000,200000,1
|
||||
treasure02,38,74,9,9 monster Pirate Skeleton 1071,3,300000,100000,1
|
||||
treasure02,38,74,9,9 monster Penomena 1216,5,300000,100000,1
|
||||
treasure02,170,71,1,1 monster Pirate Skeleton 1071,1,100000,100000,1
|
||||
treasure02,168,77,1,1 monster Pirate Skeleton 1071,1,100000,100000,1
|
||||
treasure02,164,67,1,1 monster Pirate Skeleton 1071,1,100000,100000,1
|
||||
treasure02,155,43,21,13 monster Pirate Skeleton 1071,6,300000,100000,1
|
||||
treasure02,178,143,1,1 monster Pirate Skeleton 1071,1,300000,100000,1
|
||||
treasure02,178,140,1,1 monster Pirate Skeleton 1071,1,300000,100000,1
|
||||
treasure02,184,143,1,1 monster Pirate Skeleton 1071,1,300000,100000,1
|
||||
treasure02,157,143,1,1 monster Whisper 1179,1,100000,100000,1
|
||||
treasure02,151,138,1,1 monster Whisper 1179,1,100000,100000,1
|
||||
treasure02,45,144,1,1 monster Whisper 1179,1,200000,100000,1
|
||||
treasure02,52,139,1,1 monster Whisper 1179,1,200000,100000,1
|
||||
treasure02,23,142,1,1 monster Marionette 1143,1,200000,100000,1
|
||||
treasure02,101,151,10,10 monster Mimic 1191,3,500000,200000
|
||||
treasure02,101,151,10,10 monster Mimic 1191,2,100000,100000
|
||||
treasure02,101,151,10,10 monster Penomena 1216,4,100000,100000
|
||||
treasure02,101,126,2,2 monster Penomena 1216,1,1200000,600000
|
||||
treasure02,101,135,2,2 monster Penomena 1216,1,60000,200000
|
||||
treasure02,38,74,9,9 monster Pirate Skeleton 1071,3,300000,100000
|
||||
treasure02,38,74,9,9 monster Penomena 1216,5,300000,100000
|
||||
treasure02,170,71,1,1 monster Pirate Skeleton 1071,1,100000,100000
|
||||
treasure02,168,77,1,1 monster Pirate Skeleton 1071,1,100000,100000
|
||||
treasure02,164,67,1,1 monster Pirate Skeleton 1071,1,100000,100000
|
||||
treasure02,155,43,21,13 monster Pirate Skeleton 1071,6,300000,100000
|
||||
treasure02,178,143,1,1 monster Pirate Skeleton 1071,1,300000,100000
|
||||
treasure02,178,140,1,1 monster Pirate Skeleton 1071,1,300000,100000
|
||||
treasure02,184,143,1,1 monster Pirate Skeleton 1071,1,300000,100000
|
||||
treasure02,157,143,1,1 monster Whisper 1179,1,100000,100000
|
||||
treasure02,151,138,1,1 monster Whisper 1179,1,100000,100000
|
||||
treasure02,45,144,1,1 monster Whisper 1179,1,200000,100000
|
||||
treasure02,52,139,1,1 monster Whisper 1179,1,200000,100000
|
||||
treasure02,23,142,1,1 monster Marionette 1143,1,200000,100000
|
||||
|
||||
@@ -13,60 +13,60 @@
|
||||
//==================================================
|
||||
// tur_dun01 - Turtle Island
|
||||
//==================================================
|
||||
tur_dun01,0,0,0,0 monster Dragon Tail 1321,25,0,0,0
|
||||
tur_dun01,0,0,0,0 monster Spring Rabbit 1322,25,0,0,0
|
||||
tur_dun01,0,0,0,0 monster Thara Frog 1034,10,0,0,0
|
||||
tur_dun01,0,0,0,0 monster Permeter 1314,10,0,0,0
|
||||
tur_dun01,0,0,0,0 monster Pest 1256,15,0,0,0
|
||||
tur_dun01,0,0 monster Dragon Tail 1321,25
|
||||
tur_dun01,0,0 monster Spring Rabbit 1322,25
|
||||
tur_dun01,0,0 monster Thara Frog 1034,10
|
||||
tur_dun01,0,0 monster Permeter 1314,10
|
||||
tur_dun01,0,0 monster Pest 1256,15
|
||||
|
||||
//==================================================
|
||||
// tur_dun02 - Turtle Island Dungeon
|
||||
//==================================================
|
||||
tur_dun02,0,0,0,0 monster Permeter 1314,40,0,0,0
|
||||
tur_dun02,0,0,0,0 monster Solider 1316,40,0,0,0
|
||||
tur_dun02,0,0,0,0 monster Freezer 1319,20,0,0,0
|
||||
tur_dun02,0,0,0,0 monster Pest 1256,15,0,0,0
|
||||
tur_dun02,0,0 monster Permeter 1314,40
|
||||
tur_dun02,0,0 monster Solider 1316,40
|
||||
tur_dun02,0,0 monster Freezer 1319,20
|
||||
tur_dun02,0,0 monster Pest 1256,15
|
||||
|
||||
//==================================================
|
||||
// tur_dun03 - Good Turtles Village
|
||||
//==================================================
|
||||
tur_dun03,0,0,0,0 monster Permeter 1314,15,0,0,0
|
||||
tur_dun03,0,0,0,0 monster Freezer 1319,40,0,0,0
|
||||
tur_dun03,0,0,0,0 monster Assaulter 1315,35,0,0,0
|
||||
tur_dun03,0,0,0,0 monster Heater 1318,10,50000,0,0
|
||||
tur_dun03,0,0 monster Permeter 1314,15
|
||||
tur_dun03,0,0 monster Freezer 1319,40
|
||||
tur_dun03,0,0 monster Assaulter 1315,35
|
||||
tur_dun03,0,0 monster Heater 1318,10,50000
|
||||
|
||||
//==================================================
|
||||
// tur_dun04 - Turtle Palace
|
||||
//==================================================
|
||||
tur_dun04,99,92,10,10 monster Wanderer 1208,1,60000,30000,0
|
||||
tur_dun04,99,92,10,10 monster Wanderer 1208,1,60000,30000
|
||||
tur_dun04,99,93,20,20 boss_monster Turtle General 1312,1,3600000,600000,0
|
||||
tur_dun04,100,93,20,20 monster Heater 1318,3,120000,60000,0
|
||||
tur_dun04,100,93,20,20 monster Assaulter 1315,10,120000,60000,0
|
||||
tur_dun04,100,93,20,20 monster Freezer 1319,5,120000,60000,0
|
||||
tur_dun04,171,159,3,3 monster Wanderer 1208,1,300000,150000,0
|
||||
tur_dun04,171,155,3,3 monster Assaulter 1315,1,310000,160000,0
|
||||
tur_dun04,171,149,3,3 monster Assaulter 1315,1,320000,170000,0
|
||||
tur_dun04,28,159,3,3 monster Wanderer 1208,1,300000,150000,0
|
||||
tur_dun04,28,155,3,3 monster Assaulter 1315,1,310000,160000,0
|
||||
tur_dun04,28,149,3,3 monster Assaulter 1315,1,320000,170000,0
|
||||
tur_dun04,174,26,3,3 monster Wanderer 1208,1,300000,150000,0
|
||||
tur_dun04,174,29,3,3 monster Assaulter 1315,1,310000,160000,0
|
||||
tur_dun04,174,32,3,3 monster Assaulter 1315,1,320000,170000,0
|
||||
tur_dun04,26,26,3,3 monster Wanderer 1208,1,300000,150000,0
|
||||
tur_dun04,26,29,3,3 monster Assaulter 1315,1,310000,160000,0
|
||||
tur_dun04,26,32,3,3 monster Assaulter 1315,1,320000,170000,0
|
||||
tur_dun04,0,0,0,0 monster Wanderer 1208,2,0,0,0
|
||||
tur_dun04,0,0,0,0 monster Heater 1318,10,300000,150000,0
|
||||
tur_dun04,0,0,0,0 monster Heater 1318,20,620000,310000,0
|
||||
tur_dun04,0,0,0,0 monster Assaulter 1315,23,0,0,0
|
||||
tur_dun04,0,0,0,0 monster Freezer 1319,5,300000,150000,0
|
||||
tur_dun04,0,0,0,0 monster Freezer 1319,5,600000,300000,0
|
||||
tur_dun04,0,0,0,0 monster Permeter 1314,2,300000,150000,0
|
||||
tur_dun04,0,0,0,0 monster Permeter 1314,2,640000,320000,0
|
||||
tur_dun04,100,93,20,20 monster Heater 1318,3,120000,60000
|
||||
tur_dun04,100,93,20,20 monster Assaulter 1315,10,120000,60000
|
||||
tur_dun04,100,93,20,20 monster Freezer 1319,5,120000,60000
|
||||
tur_dun04,171,159,3,3 monster Wanderer 1208,1,300000,150000
|
||||
tur_dun04,171,155,3,3 monster Assaulter 1315,1,310000,160000
|
||||
tur_dun04,171,149,3,3 monster Assaulter 1315,1,320000,170000
|
||||
tur_dun04,28,159,3,3 monster Wanderer 1208,1,300000,150000
|
||||
tur_dun04,28,155,3,3 monster Assaulter 1315,1,310000,160000
|
||||
tur_dun04,28,149,3,3 monster Assaulter 1315,1,320000,170000
|
||||
tur_dun04,174,26,3,3 monster Wanderer 1208,1,300000,150000
|
||||
tur_dun04,174,29,3,3 monster Assaulter 1315,1,310000,160000
|
||||
tur_dun04,174,32,3,3 monster Assaulter 1315,1,320000,170000
|
||||
tur_dun04,26,26,3,3 monster Wanderer 1208,1,300000,150000
|
||||
tur_dun04,26,29,3,3 monster Assaulter 1315,1,310000,160000
|
||||
tur_dun04,26,32,3,3 monster Assaulter 1315,1,320000,170000
|
||||
tur_dun04,0,0 monster Wanderer 1208,2
|
||||
tur_dun04,0,0 monster Heater 1318,10,300000,150000
|
||||
tur_dun04,0,0 monster Heater 1318,20,620000,310000
|
||||
tur_dun04,0,0 monster Assaulter 1315,23
|
||||
tur_dun04,0,0 monster Freezer 1319,5,300000,150000
|
||||
tur_dun04,0,0 monster Freezer 1319,5,600000,300000
|
||||
tur_dun04,0,0 monster Permeter 1314,2,300000,150000
|
||||
tur_dun04,0,0 monster Permeter 1314,2,640000,320000
|
||||
|
||||
//==================================================
|
||||
// tur_dun05 - Underground swamp zone
|
||||
//==================================================
|
||||
tur_dun05,0,0,0,0 monster Permeter 1314,3,20000,0,0
|
||||
tur_dun05,0,0,0,0 monster Freezer 1319,5,30000,0,0
|
||||
tur_dun05,0,0,0,0 monster Assaulter 1315,1,20000,0,0
|
||||
tur_dun05,0,0 monster Permeter 1314,3,20000
|
||||
tur_dun05,0,0 monster Freezer 1319,5,30000
|
||||
tur_dun05,0,0 monster Assaulter 1315,1,20000
|
||||
|
||||
@@ -15,42 +15,42 @@
|
||||
//==================================================
|
||||
// um_dun01 - Carpenter's Shop in the Tree
|
||||
//==================================================
|
||||
um_dun01,0,0,0,0 monster Stone Shooter 1495,70,0,0,0
|
||||
um_dun01,0,0,0,0 monster Wootan Fighter 1499,10,0,0,0
|
||||
um_dun01,0,0,0,0 monster Wootan Shooter 1498,10,0,0,0
|
||||
um_dun01,0,0,0,0 monster Yellow Plant 1081,5,180000,90000,1
|
||||
um_dun01,0,0,0,0 monster Green Plant 1080,5,180000,90000,1
|
||||
um_dun01,0,0 monster Stone Shooter 1495,70
|
||||
um_dun01,0,0 monster Wootan Fighter 1499,10
|
||||
um_dun01,0,0 monster Wootan Shooter 1498,10
|
||||
um_dun01,0,0 monster Yellow Plant 1081,5,180000,90000
|
||||
um_dun01,0,0 monster Green Plant 1080,5,180000,90000
|
||||
|
||||
//==================================================
|
||||
// um_dun02 - Passage to a Foreign World
|
||||
//==================================================
|
||||
um_dun02,0,0,0,0 monster Wooden Golem 1497,50,0,0,0
|
||||
um_dun02,79,227,10,10 monster Wooden Golem 1497,2,240000,60000,0
|
||||
um_dun02,87,189,10,10 monster Wooden Golem 1497,2,240000,60000,0
|
||||
um_dun02,170,145,10,10 monster Wooden Golem 1497,2,240000,60000,0
|
||||
um_dun02,196,131,14,14 monster Wooden Golem 1497,2,240000,60000,0
|
||||
um_dun02,244,129,15,15 monster Wooden Golem 1497,2,360000,60000,0
|
||||
um_dun02,90,97,10,15 monster Wooden Golem 1497,2,360000,60000,0
|
||||
um_dun02,90,97,10,15 monster Wooden Golem 1497,2,240000,60000,0
|
||||
um_dun02,32,83,10,15 monster Wooden Golem 1497,2,360000,60000,0
|
||||
um_dun02,32,83,10,15 monster Wooden Golem 1497,2,240000,60000,0
|
||||
um_dun02,180,238,15,15 monster Wooden Golem 1497,2,180000,60000,0
|
||||
um_dun02,144,277,15,15 monster Wooden Golem 1497,2,360000,60000,0
|
||||
um_dun02,144,277,15,15 monster Wooden Golem 1497,2,180000,60000,0
|
||||
um_dun02,272,163,15,15 monster Wooden Golem 1497,2,360000,60000,0
|
||||
um_dun02,272,163,15,15 monster Wooden Golem 1497,2,180000,60000,0
|
||||
um_dun02,232,156,15,15 monster Wooden Golem 1497,2,300000,60000,0
|
||||
um_dun02,232,156,15,15 monster Wooden Golem 1497,2,180000,60000,0
|
||||
um_dun02,0,0,0,0 monster Driller 1380,5,0,0,0
|
||||
um_dun02,0,0,0,0 monster Wootan Shooter 1498,10,0,0,0
|
||||
um_dun02,213,217,15,15 monster Wootan Shooter 1498,2,120000,60000,0
|
||||
um_dun02,72,258,15,15 monster Wootan Shooter 1498,3,120000,60000,0
|
||||
um_dun02,79,227,10,10 monster Wootan Shooter 1498,1,120000,60000,0
|
||||
um_dun02,170,145,10,10 monster Wootan Shooter 1498,1,120000,60000,0
|
||||
um_dun02,209,34,15,15 monster Wootan Shooter 1498,1,120000,60000,0
|
||||
um_dun02,272,163,15,15 monster Wootan Shooter 1498,1,120000,60000,0
|
||||
um_dun02,232,156,15,15 monster Wootan Shooter 1498,1,120000,60000,0
|
||||
um_dun02,0,0,0,0 monster Dryad 1493,25,0,0,0
|
||||
um_dun02,0,0,0,0 monster Yellow Plant 1081,5,180000,90000,1
|
||||
um_dun02,0,0,0,0 monster Red Plant 1078,5,180000,90000,1
|
||||
um_dun02,0,0,0,0 monster Shining Plant 1083,6,180000,90000,1
|
||||
um_dun02,0,0 monster Wooden Golem 1497,50
|
||||
um_dun02,79,227,10,10 monster Wooden Golem 1497,2,240000,60000
|
||||
um_dun02,87,189,10,10 monster Wooden Golem 1497,2,240000,60000
|
||||
um_dun02,170,145,10,10 monster Wooden Golem 1497,2,240000,60000
|
||||
um_dun02,196,131,14,14 monster Wooden Golem 1497,2,240000,60000
|
||||
um_dun02,244,129,15,15 monster Wooden Golem 1497,2,360000,60000
|
||||
um_dun02,90,97,10,15 monster Wooden Golem 1497,2,360000,60000
|
||||
um_dun02,90,97,10,15 monster Wooden Golem 1497,2,240000,60000
|
||||
um_dun02,32,83,10,15 monster Wooden Golem 1497,2,360000,60000
|
||||
um_dun02,32,83,10,15 monster Wooden Golem 1497,2,240000,60000
|
||||
um_dun02,180,238,15,15 monster Wooden Golem 1497,2,180000,60000
|
||||
um_dun02,144,277,15,15 monster Wooden Golem 1497,2,360000,60000
|
||||
um_dun02,144,277,15,15 monster Wooden Golem 1497,2,180000,60000
|
||||
um_dun02,272,163,15,15 monster Wooden Golem 1497,2,360000,60000
|
||||
um_dun02,272,163,15,15 monster Wooden Golem 1497,2,180000,60000
|
||||
um_dun02,232,156,15,15 monster Wooden Golem 1497,2,300000,60000
|
||||
um_dun02,232,156,15,15 monster Wooden Golem 1497,2,180000,60000
|
||||
um_dun02,0,0 monster Driller 1380,5
|
||||
um_dun02,0,0 monster Wootan Shooter 1498,10
|
||||
um_dun02,213,217,15,15 monster Wootan Shooter 1498,2,120000,60000
|
||||
um_dun02,72,258,15,15 monster Wootan Shooter 1498,3,120000,60000
|
||||
um_dun02,79,227,10,10 monster Wootan Shooter 1498,1,120000,60000
|
||||
um_dun02,170,145,10,10 monster Wootan Shooter 1498,1,120000,60000
|
||||
um_dun02,209,34,15,15 monster Wootan Shooter 1498,1,120000,60000
|
||||
um_dun02,272,163,15,15 monster Wootan Shooter 1498,1,120000,60000
|
||||
um_dun02,232,156,15,15 monster Wootan Shooter 1498,1,120000,60000
|
||||
um_dun02,0,0 monster Dryad 1493,25
|
||||
um_dun02,0,0 monster Yellow Plant 1081,5,180000,90000
|
||||
um_dun02,0,0 monster Red Plant 1078,5,180000,90000
|
||||
um_dun02,0,0 monster Shining Plant 1083,6,180000,90000
|
||||
|
||||
@@ -16,23 +16,23 @@
|
||||
//==================================================
|
||||
// xmas_dun01 - Toy Factory Warehouse
|
||||
//==================================================
|
||||
xmas_dun01,0,0,0,0 monster Marin 1242,20,0,0,0
|
||||
xmas_dun01,0,0,0,0 monster Poring 1002,10,0,0,0
|
||||
xmas_dun01,0,0,0,0 monster Drops 1113,10,0,0,0
|
||||
xmas_dun01,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
xmas_dun01,0,0,0,0 monster Cookie 1265,40,0,0,0
|
||||
xmas_dun01,0,0,0,0 monster Christmas Cookie 1246,40,0,0,0
|
||||
xmas_dun01,0,0,0,0 monster Myst Case 1249,5,0,0,0
|
||||
xmas_dun01,0,0,0,0 monster Chepet 1250,1,1200000,900000,0
|
||||
xmas_dun01,0,0,0,0 monster Mastering 1090,1,1800000,900000,0
|
||||
xmas_dun01,0,0,0,0 monster Angeling 1096,1,3600000,1800000,0
|
||||
xmas_dun01,0,0 monster Marin 1242,20
|
||||
xmas_dun01,0,0 monster Poring 1002,10
|
||||
xmas_dun01,0,0 monster Drops 1113,10
|
||||
xmas_dun01,0,0 monster Poporing 1031,20
|
||||
xmas_dun01,0,0 monster Cookie 1265,40
|
||||
xmas_dun01,0,0 monster Christmas Cookie 1246,40
|
||||
xmas_dun01,0,0 monster Myst Case 1249,5
|
||||
xmas_dun01,0,0 monster Chepet 1250,1,1200000,900000
|
||||
xmas_dun01,0,0 monster Mastering 1090,1,1800000,900000
|
||||
xmas_dun01,0,0 monster Angeling 1096,1,3600000,1800000
|
||||
|
||||
//==================================================
|
||||
// xmas_dun02 - Toy Monitoring Room
|
||||
//==================================================
|
||||
xmas_dun02,0,0,0,0 monster Christmas Cookie 1246,20,0,0,0
|
||||
xmas_dun02,0,0,0,0 monster Cookie 1265,20,0,0,0
|
||||
xmas_dun02,0,0,0,0 monster Cruiser 1248,35,0,0,0
|
||||
xmas_dun02,0,0,0,0 monster Myst Case 1249,50,0,0,0
|
||||
xmas_dun02,0,0,0,0 monster Garm Baby 1515,1,1800000,0,0
|
||||
xmas_dun02,0,0 monster Christmas Cookie 1246,20
|
||||
xmas_dun02,0,0 monster Cookie 1265,20
|
||||
xmas_dun02,0,0 monster Cruiser 1248,35
|
||||
xmas_dun02,0,0 monster Myst Case 1249,50
|
||||
xmas_dun02,0,0 monster Garm Baby 1515,1,1800000
|
||||
xmas_dun02,0,0,0,0 boss_monster Stormy Knight 1251,1,3600000,600000,0
|
||||
|
||||
@@ -14,22 +14,22 @@
|
||||
//==================================================
|
||||
// yggdrasil01 - Hvergelmir's Fountain (Trunk of Yggdrasil)
|
||||
//==================================================
|
||||
yggdrasil01,234,256,10,10 monster Blue Plant 1079,5,1800000,600000,0
|
||||
yggdrasil01,273,234,3,3 monster Shining Plant 1083,1,1800000,600000,0
|
||||
yggdrasil01,143,257,20,10 monster Shining Plant 1083,5,1200000,600000,0
|
||||
yggdrasil01,98,238,20,15 monster Yellow Plant 1081,5,1200000,600000,0
|
||||
yggdrasil01,98,238,20,15 monster White Plant 1082,5,1200000,600000,0
|
||||
yggdrasil01,47,207,20,20 monster Blue Plant 1079,5,1200000,600000,0
|
||||
yggdrasil01,61,258,3,3 monster Shining Plant 1083,1,1800000,600000,0
|
||||
yggdrasil01,132,199,20,5 monster Blue Plant 1079,5,1200000,600000,0
|
||||
yggdrasil01,209,218,2,2 monster Shining Plant 1083,1,1200000,600000,0
|
||||
yggdrasil01,192,186,2,2 monster Shining Plant 1083,1,1800000,1200000,0
|
||||
yggdrasil01,169,176,3,3 monster Shining Plant 1083,1,1200000,600000,0
|
||||
yggdrasil01,169,176,3,3 monster Green Plant 1080,1,60000,30000,0
|
||||
yggdrasil01,94,111,5,2 monster Shining Plant 1083,1,1200000,600000,0
|
||||
yggdrasil01,51,118,10,3 monster Shining Plant 1083,1,1200000,600000,0
|
||||
yggdrasil01,133,54,3,3 monster Shining Plant 1083,1,1200000,600000,0
|
||||
yggdrasil01,257,63,10,10 monster Shining Plant 1083,3,1800000,1200000,0
|
||||
yggdrasil01,0,0,0,0 monster Shining Plant 1083,10,3600000,2300000,0
|
||||
yggdrasil01,0,0,0,0 monster Green Plant 1080,25,60000,30000,0
|
||||
yggdrasil01,0,0,0,0 monster Red Plant 1078,15,60000,30000,0
|
||||
yggdrasil01,234,256,10,10 monster Blue Plant 1079,5,1800000,600000
|
||||
yggdrasil01,273,234,3,3 monster Shining Plant 1083,1,1800000,600000
|
||||
yggdrasil01,143,257,20,10 monster Shining Plant 1083,5,1200000,600000
|
||||
yggdrasil01,98,238,20,15 monster Yellow Plant 1081,5,1200000,600000
|
||||
yggdrasil01,98,238,20,15 monster White Plant 1082,5,1200000,600000
|
||||
yggdrasil01,47,207,20,20 monster Blue Plant 1079,5,1200000,600000
|
||||
yggdrasil01,61,258,3,3 monster Shining Plant 1083,1,1800000,600000
|
||||
yggdrasil01,132,199,20,5 monster Blue Plant 1079,5,1200000,600000
|
||||
yggdrasil01,209,218,2,2 monster Shining Plant 1083,1,1200000,600000
|
||||
yggdrasil01,192,186,2,2 monster Shining Plant 1083,1,1800000,1200000
|
||||
yggdrasil01,169,176,3,3 monster Shining Plant 1083,1,1200000,600000
|
||||
yggdrasil01,169,176,3,3 monster Green Plant 1080,1,60000,30000
|
||||
yggdrasil01,94,111,5,2 monster Shining Plant 1083,1,1200000,600000
|
||||
yggdrasil01,51,118,10,3 monster Shining Plant 1083,1,1200000,600000
|
||||
yggdrasil01,133,54,3,3 monster Shining Plant 1083,1,1200000,600000
|
||||
yggdrasil01,257,63,10,10 monster Shining Plant 1083,3,1800000,1200000
|
||||
yggdrasil01,0,0 monster Shining Plant 1083,10,3600000,2300000
|
||||
yggdrasil01,0,0 monster Green Plant 1080,25,60000,30000
|
||||
yggdrasil01,0,0 monster Red Plant 1078,15,60000,30000
|
||||
|
||||
@@ -15,28 +15,28 @@
|
||||
//==================================================
|
||||
// ama_fild01 - Amatsu Field
|
||||
//==================================================
|
||||
ama_fild01,0,0,0,0 monster Karakasa 1400,50,0,0,0
|
||||
ama_fild01,174,207,20,20 monster Kapha 1406,5,1200000,600000,0
|
||||
ama_fild01,241,310,10,10 monster Kapha 1406,5,600000,300000,0
|
||||
ama_fild01,114,230,10,10 monster Kapha 1406,5,600000,300000,0
|
||||
ama_fild01,174,253,10,10 monster Kapha 1406,5,600000,300000,0
|
||||
ama_fild01,177,315,0,0 monster Hydra 1068,1,60000,30000,0
|
||||
ama_fild01,175,315,0,0 monster Hydra 1068,1,63000,31500,0
|
||||
ama_fild01,173,315,0,0 monster Hydra 1068,1,66000,33000,0
|
||||
ama_fild01,171,315,0,0 monster Hydra 1068,1,69000,34500,0
|
||||
ama_fild01,169,315,0,0 monster Hydra 1068,1,72000,39000,0
|
||||
ama_fild01,177,314,0,0 monster Hydra 1068,1,66000,33000,0
|
||||
ama_fild01,175,314,0,0 monster Hydra 1068,1,72000,39000,0
|
||||
ama_fild01,173,314,0,0 monster Hydra 1068,1,60000,30000,0
|
||||
ama_fild01,171,314,0,0 monster Hydra 1068,1,69000,34500,0
|
||||
ama_fild01,169,314,0,0 monster Hydra 1068,1,63000,31500,0
|
||||
ama_fild01,171,313,0,0 monster Hydra 1068,1,66000,33000,0
|
||||
ama_fild01,173,313,0,0 monster Hydra 1068,1,60000,30000,0
|
||||
ama_fild01,175,313,0,0 monster Hydra 1068,1,66000,33000,0
|
||||
ama_fild01,173,310,0,0 monster Hydra 1068,1,60000,30000,0
|
||||
ama_fild01,0,0,0,0 monster Kapha 1406,20,60000,30000,0
|
||||
ama_fild01,174,306,20,20 monster Kapha 1406,10,300000,150000,0
|
||||
ama_fild01,0,0,0,0 monster Miyabi Doll 1404,2,180000,90000,0
|
||||
ama_fild01,0,0,0,0 monster Poison Toad 1402,1,180000,90000,0
|
||||
ama_fild01,0,0,0,0 monster Poporing 1031,15,0,0,0
|
||||
ama_fild01,0,0,0,0 monster Bigfoot 1060,15,60000,30000,0
|
||||
ama_fild01,0,0 monster Karakasa 1400,50
|
||||
ama_fild01,174,207,20,20 monster Kapha 1406,5,1200000,600000
|
||||
ama_fild01,241,310,10,10 monster Kapha 1406,5,600000,300000
|
||||
ama_fild01,114,230,10,10 monster Kapha 1406,5,600000,300000
|
||||
ama_fild01,174,253,10,10 monster Kapha 1406,5,600000,300000
|
||||
ama_fild01,177,315 monster Hydra 1068,1,60000,30000
|
||||
ama_fild01,175,315 monster Hydra 1068,1,63000,31500
|
||||
ama_fild01,173,315 monster Hydra 1068,1,66000,33000
|
||||
ama_fild01,171,315 monster Hydra 1068,1,69000,34500
|
||||
ama_fild01,169,315 monster Hydra 1068,1,72000,39000
|
||||
ama_fild01,177,314 monster Hydra 1068,1,66000,33000
|
||||
ama_fild01,175,314 monster Hydra 1068,1,72000,39000
|
||||
ama_fild01,173,314 monster Hydra 1068,1,60000,30000
|
||||
ama_fild01,171,314 monster Hydra 1068,1,69000,34500
|
||||
ama_fild01,169,314 monster Hydra 1068,1,63000,31500
|
||||
ama_fild01,171,313 monster Hydra 1068,1,66000,33000
|
||||
ama_fild01,173,313 monster Hydra 1068,1,60000,30000
|
||||
ama_fild01,175,313 monster Hydra 1068,1,66000,33000
|
||||
ama_fild01,173,310 monster Hydra 1068,1,60000,30000
|
||||
ama_fild01,0,0 monster Kapha 1406,20,60000,30000
|
||||
ama_fild01,174,306,20,20 monster Kapha 1406,10,300000,150000
|
||||
ama_fild01,0,0 monster Miyabi Doll 1404,2,180000,90000
|
||||
ama_fild01,0,0 monster Poison Toad 1402,1,180000,90000
|
||||
ama_fild01,0,0 monster Poporing 1031,15
|
||||
ama_fild01,0,0 monster Bigfoot 1060,15,60000,30000
|
||||
|
||||
@@ -16,16 +16,16 @@
|
||||
//==================================================
|
||||
// ayo_fild01 - Ayothaya Field
|
||||
//==================================================
|
||||
ayo_fild01,0,0,0,0 monster Coco 1104,30,0,0,0
|
||||
ayo_fild01,0,0,0,0 monster Yoyo 1057,30,0,0,0
|
||||
ayo_fild01,0,0,0,0 monster Smokie 1056,30,0,0,0
|
||||
ayo_fild01,0,0,0,0 monster Leaf Cat 1586,3,3600000,1800000,0
|
||||
ayo_fild01,0,0,0,0 monster Green Plant 1080,10,0,0,0
|
||||
ayo_fild01,0,0 monster Coco 1104,30
|
||||
ayo_fild01,0,0 monster Yoyo 1057,30
|
||||
ayo_fild01,0,0 monster Smokie 1056,30
|
||||
ayo_fild01,0,0 monster Leaf Cat 1586,3,3600000,1800000
|
||||
ayo_fild01,0,0 monster Green Plant 1080,10
|
||||
|
||||
//==================================================
|
||||
// ayo_fild02 - Ayothaya Field
|
||||
//==================================================
|
||||
ayo_fild02,0,0,0,0 monster Leaf Cat 1586,50,0,0,0
|
||||
ayo_fild02,0,0,0,0 monster Wootan Fighter 1499,20,0,0,0
|
||||
ayo_fild02,0,0,0,0 monster Beetle King 1494,30,0,0,0
|
||||
ayo_fild02,0,0,0,0 monster Yellow Plant 1081,10,0,0,0
|
||||
ayo_fild02,0,0 monster Leaf Cat 1586,50
|
||||
ayo_fild02,0,0 monster Wootan Fighter 1499,20
|
||||
ayo_fild02,0,0 monster Beetle King 1494,30
|
||||
ayo_fild02,0,0 monster Yellow Plant 1081,10
|
||||
|
||||
@@ -14,187 +14,187 @@
|
||||
//==================================================
|
||||
// cmd_fild01 - Papuchicha Forest
|
||||
//==================================================
|
||||
cmd_fild01,0,0,0,0 monster Alligator 1271,60,0,0,0
|
||||
cmd_fild01,0,0,0,0 monster Savage 1166,30,0,0,0
|
||||
cmd_fild01,0,0,0,0 monster Poporing 1031,30,0,0,0
|
||||
cmd_fild01,0,0,0,0 monster Poison Spore 1077,20,0,0,0
|
||||
cmd_fild01,313,213,10,10 monster Shining Plant 1083,1,1800000,900000,1
|
||||
cmd_fild01,313,213,10,10 monster Blue Plant 1079,1,1800000,900000,1
|
||||
cmd_fild01,171,339,10,10 monster Blue Plant 1079,2,1800000,900000,1
|
||||
cmd_fild01,72,78,10,10 monster Blue Plant 1079,2,1800000,900000,1
|
||||
cmd_fild01,194,176,20,20 monster Blue Plant 1079,1,1800000,900000,1
|
||||
cmd_fild01,0,0,0,0 monster Green Plant 1080,5,1800000,900000,1
|
||||
cmd_fild01,0,0 monster Alligator 1271,60
|
||||
cmd_fild01,0,0 monster Savage 1166,30
|
||||
cmd_fild01,0,0 monster Poporing 1031,30
|
||||
cmd_fild01,0,0 monster Poison Spore 1077,20
|
||||
cmd_fild01,313,213,10,10 monster Shining Plant 1083,1,1800000,900000
|
||||
cmd_fild01,313,213,10,10 monster Blue Plant 1079,1,1800000,900000
|
||||
cmd_fild01,171,339,10,10 monster Blue Plant 1079,2,1800000,900000
|
||||
cmd_fild01,72,78,10,10 monster Blue Plant 1079,2,1800000,900000
|
||||
cmd_fild01,194,176,20,20 monster Blue Plant 1079,1,1800000,900000
|
||||
cmd_fild01,0,0 monster Green Plant 1080,5,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// cmd_fild02 - Kokomo Beach
|
||||
//==================================================
|
||||
cmd_fild02,73,100,40,100 monster Aster 1266,5,0,0,0
|
||||
cmd_fild02,200,130,150,50 monster Aster 1266,5,0,0,0
|
||||
cmd_fild02,0,0,0,0 monster Crab 1073,20,0,0,0
|
||||
cmd_fild02,0,0,0,0 monster Alligator 1271,10,0,0,0
|
||||
cmd_fild02,0,0,0,0 monster Raggler 1254,30,0,0,0
|
||||
cmd_fild02,94,85,40,80 monster Raggler 1254,2,60000,0,0
|
||||
cmd_fild02,95,89,40,80 monster Cornutus 1067,5,180000,0,0
|
||||
cmd_fild02,279,78,100,20 monster Cornutus 1067,10,60000,0,0
|
||||
cmd_fild02,0,0,0,0 monster Shellfish 1074,35,0,0,0
|
||||
cmd_fild02,93,82,40,80 monster Shellfish 1074,5,180000,0,0
|
||||
cmd_fild02,0,0,0,0 monster Mobster 1313,1,0,0,0
|
||||
cmd_fild02,200,130,150,40 monster Seal 1317,18,0,0,0
|
||||
cmd_fild02,93,82,40,80 monster Seal 1317,2,180000,0,0
|
||||
cmd_fild02,0,0,0,0 monster Galapago 1391,20,0,0,0
|
||||
cmd_fild02,73,100,40,100 monster Aster 1266,5
|
||||
cmd_fild02,200,130,150,50 monster Aster 1266,5
|
||||
cmd_fild02,0,0 monster Crab 1073,20
|
||||
cmd_fild02,0,0 monster Alligator 1271,10
|
||||
cmd_fild02,0,0 monster Raggler 1254,30
|
||||
cmd_fild02,94,85,40,80 monster Raggler 1254,2,60000
|
||||
cmd_fild02,95,89,40,80 monster Cornutus 1067,5,180000
|
||||
cmd_fild02,279,78,100,20 monster Cornutus 1067,10,60000
|
||||
cmd_fild02,0,0 monster Shellfish 1074,35
|
||||
cmd_fild02,93,82,40,80 monster Shellfish 1074,5,180000
|
||||
cmd_fild02,0,0 monster Mobster 1313,1
|
||||
cmd_fild02,200,130,150,40 monster Seal 1317,18
|
||||
cmd_fild02,93,82,40,80 monster Seal 1317,2,180000
|
||||
cmd_fild02,0,0 monster Galapago 1391,20
|
||||
|
||||
//==================================================
|
||||
// cmd_fild03 - Zenhai Marsh
|
||||
//==================================================
|
||||
cmd_fild03,0,0,0,0 monster Mutant Dragonoid 1262,1,0,0,1
|
||||
cmd_fild03,0,0,0,0 monster Pest 1256,30,0,0,0
|
||||
cmd_fild03,0,0,0,0 monster Poporing 1031,10,0,0,0
|
||||
cmd_fild03,0,0,0,0 monster Anolian 1206,90,0,0,0
|
||||
cmd_fild03,0,0,0,0 monster Toad 1089,1,3600000,1800000,1
|
||||
cmd_fild03,356,232,3,3 monster Shining Plant 1083,1,1800000,900000,1
|
||||
cmd_fild03,262,289,3,3 monster Shining Plant 1083,1,1800000,900000,1
|
||||
cmd_fild03,145,191,3,3 monster Shining Plant 1083,1,1800000,900000,1
|
||||
cmd_fild03,0,0 monster Mutant Dragonoid 1262,1
|
||||
cmd_fild03,0,0 monster Pest 1256,30
|
||||
cmd_fild03,0,0 monster Poporing 1031,10
|
||||
cmd_fild03,0,0 monster Anolian 1206,90
|
||||
cmd_fild03,0,0 monster Toad 1089,1,3600000,1800000
|
||||
cmd_fild03,356,232,3,3 monster Shining Plant 1083,1,1800000,900000
|
||||
cmd_fild03,262,289,3,3 monster Shining Plant 1083,1,1800000,900000
|
||||
cmd_fild03,145,191,3,3 monster Shining Plant 1083,1,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// cmd_fild04 - Kokomo Beach
|
||||
//==================================================
|
||||
cmd_fild04,221,120,120,40 monster Aster 1266,45,0,0,0
|
||||
cmd_fild04,0,0,0,0 monster Alligator 1271,40,0,0,0
|
||||
cmd_fild04,0,0,0,0 monster Crab 1073,20,0,0,0
|
||||
cmd_fild04,0,0,0,0 monster Raggler 1254,20,0,0,0
|
||||
cmd_fild04,0,0,0,0 monster Shellfish 1074,20,0,0,0
|
||||
cmd_fild04,221,120,120,40 monster Sea Otter 1323,20,0,0,0
|
||||
cmd_fild04,221,120,120,40 monster Aster 1266,45
|
||||
cmd_fild04,0,0 monster Alligator 1271,40
|
||||
cmd_fild04,0,0 monster Crab 1073,20
|
||||
cmd_fild04,0,0 monster Raggler 1254,20
|
||||
cmd_fild04,0,0 monster Shellfish 1074,20
|
||||
cmd_fild04,221,120,120,40 monster Sea Otter 1323,20
|
||||
|
||||
//==================================================
|
||||
// cmd_fild05 - Border of Papuchica Forest
|
||||
//==================================================
|
||||
cmd_fild05,0,0,0,0 monster Frilldora 1119,45,0,0,0
|
||||
cmd_fild05,0,0,0,0 monster Alligator 1271,20,0,0,0
|
||||
cmd_fild05,0,0,0,0 monster Stem Worm 1215,5,0,0,0
|
||||
cmd_fild05,0,0,0,0 monster Poporing 1031,10,0,0,0
|
||||
cmd_fild05,0,0,0,0 monster Pest 1256,5,0,0,0
|
||||
cmd_fild05,63,158,10,10 monster Shining Plant 1083,1,1800000,900000,1
|
||||
cmd_fild05,318,277,10,10 monster Yellow Plant 1081,3,1800000,900000,1
|
||||
cmd_fild05,282,49,20,20 monster Yellow Plant 1081,3,1800000,900000,1
|
||||
cmd_fild05,0,0,0,0 monster Green Plant 1080,5,1800000,900000,1
|
||||
cmd_fild05,0,0 monster Frilldora 1119,45
|
||||
cmd_fild05,0,0 monster Alligator 1271,20
|
||||
cmd_fild05,0,0 monster Stem Worm 1215,5
|
||||
cmd_fild05,0,0 monster Poporing 1031,10
|
||||
cmd_fild05,0,0 monster Pest 1256,5
|
||||
cmd_fild05,63,158,10,10 monster Shining Plant 1083,1,1800000,900000
|
||||
cmd_fild05,318,277,10,10 monster Yellow Plant 1081,3,1800000,900000
|
||||
cmd_fild05,282,49,20,20 monster Yellow Plant 1081,3,1800000,900000
|
||||
cmd_fild05,0,0 monster Green Plant 1080,5,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// cmd_fild06 - Fortress Saint Darmain (West)
|
||||
//==================================================
|
||||
cmd_fild06,0,0,0,0 monster Kobold Archer 1282,5,0,0,0
|
||||
cmd_fild06,0,0,0,0 monster Kobold Archer 1282,5,300000,0,0
|
||||
cmd_fild06,357,299,80,70 monster Kobold Archer 1282,2,0,0,0
|
||||
cmd_fild06,357,299,80,70 monster Kobold Archer 1282,2,120000,0,0
|
||||
cmd_fild06,318,146,120,80 monster Kobold Archer 1282,4,0,0,0
|
||||
cmd_fild06,318,146,120,80 monster Kobold Archer 1282,4,120000,0,0
|
||||
cmd_fild06,244,113,0,0 monster Kobold Archer 1282,1,180000,0,0
|
||||
cmd_fild06,290,164,0,0 monster Kobold Archer 1282,1,190000,0,0
|
||||
cmd_fild06,284,197,0,0 monster Kobold Archer 1282,1,180000,0,0
|
||||
cmd_fild06,286,289,0,0 monster Kobold Archer 1282,1,180000,0,0
|
||||
cmd_fild06,314,267,0,0 monster Kobold Archer 1282,1,180000,0,0
|
||||
cmd_fild06,0,0,0,0 monster Goblin Archer 1258,10,0,0,0
|
||||
cmd_fild06,0,0,0,0 monster Goblin Archer 1258,10,30000,0,0
|
||||
cmd_fild06,355,294,80,70 monster Goblin Archer 1258,3,0,0,0
|
||||
cmd_fild06,355,294,80,70 monster Goblin Archer 1258,3,120000,0,0
|
||||
cmd_fild06,307,97,70,200 monster Goblin Archer 1258,4,0,0,0
|
||||
cmd_fild06,307,97,70,200 monster Goblin Archer 1258,4,120000,0,0
|
||||
cmd_fild06,100,265,10,40 monster Goblin Archer 1258,3,130000,0,0
|
||||
cmd_fild06,244,110,0,0 monster Goblin Archer 1258,1,180000,0,0
|
||||
cmd_fild06,292,169,0,0 monster Goblin Archer 1258,1,180000,0,0
|
||||
cmd_fild06,284,129,0,0 monster Goblin Archer 1258,1,180000,0,0
|
||||
cmd_fild06,184,126,0,0 monster Goblin Archer 1258,1,180000,0,0
|
||||
cmd_fild06,279,199,0,0 monster Goblin Archer 1258,1,180000,0,0
|
||||
cmd_fild06,277,186,0,0 monster Goblin Archer 1258,1,180000,0,0
|
||||
cmd_fild06,284,186,0,0 monster Goblin Archer 1258,1,180000,0,0
|
||||
cmd_fild06,354,342,0,0 monster Goblin Archer 1258,1,180000,0,0
|
||||
cmd_fild06,365,342,0,0 monster Goblin Archer 1258,1,180000,0,0
|
||||
cmd_fild06,340,334,0,0 monster Goblin Archer 1258,1,180000,0,0
|
||||
cmd_fild06,0,0,0,0 monster Drops 1113,20,0,0,0
|
||||
cmd_fild06,0,0,0,0 monster Harpy 1376,1,1500000,1000000,0
|
||||
cmd_fild06,293,235,5,5 monster Yellow Plant 1081,2,1800000,900000,1
|
||||
cmd_fild06,84,375,10,10 monster Yellow Plant 1081,3,1800000,900000,1
|
||||
cmd_fild06,0,0 monster Kobold Archer 1282,5
|
||||
cmd_fild06,0,0 monster Kobold Archer 1282,5,300000
|
||||
cmd_fild06,357,299,80,70 monster Kobold Archer 1282,2
|
||||
cmd_fild06,357,299,80,70 monster Kobold Archer 1282,2,120000
|
||||
cmd_fild06,318,146,120,80 monster Kobold Archer 1282,4
|
||||
cmd_fild06,318,146,120,80 monster Kobold Archer 1282,4,120000
|
||||
cmd_fild06,244,113 monster Kobold Archer 1282,1,180000
|
||||
cmd_fild06,290,164 monster Kobold Archer 1282,1,190000
|
||||
cmd_fild06,284,197 monster Kobold Archer 1282,1,180000
|
||||
cmd_fild06,286,289 monster Kobold Archer 1282,1,180000
|
||||
cmd_fild06,314,267 monster Kobold Archer 1282,1,180000
|
||||
cmd_fild06,0,0 monster Goblin Archer 1258,10
|
||||
cmd_fild06,0,0 monster Goblin Archer 1258,10,30000
|
||||
cmd_fild06,355,294,80,70 monster Goblin Archer 1258,3
|
||||
cmd_fild06,355,294,80,70 monster Goblin Archer 1258,3,120000
|
||||
cmd_fild06,307,97,70,200 monster Goblin Archer 1258,4
|
||||
cmd_fild06,307,97,70,200 monster Goblin Archer 1258,4,120000
|
||||
cmd_fild06,100,265,10,40 monster Goblin Archer 1258,3,130000
|
||||
cmd_fild06,244,110 monster Goblin Archer 1258,1,180000
|
||||
cmd_fild06,292,169 monster Goblin Archer 1258,1,180000
|
||||
cmd_fild06,284,129 monster Goblin Archer 1258,1,180000
|
||||
cmd_fild06,184,126 monster Goblin Archer 1258,1,180000
|
||||
cmd_fild06,279,199 monster Goblin Archer 1258,1,180000
|
||||
cmd_fild06,277,186 monster Goblin Archer 1258,1,180000
|
||||
cmd_fild06,284,186 monster Goblin Archer 1258,1,180000
|
||||
cmd_fild06,354,342 monster Goblin Archer 1258,1,180000
|
||||
cmd_fild06,365,342 monster Goblin Archer 1258,1,180000
|
||||
cmd_fild06,340,334 monster Goblin Archer 1258,1,180000
|
||||
cmd_fild06,0,0 monster Drops 1113,20
|
||||
cmd_fild06,0,0 monster Harpy 1376,1,1500000,1000000
|
||||
cmd_fild06,293,235,5,5 monster Yellow Plant 1081,2,1800000,900000
|
||||
cmd_fild06,84,375,10,10 monster Yellow Plant 1081,3,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// cmd_fild07 - Beacon Island, Pharos
|
||||
//==================================================
|
||||
cmd_fild07,242,108,40,90 monster Aster 1266,2,60000,0,0
|
||||
cmd_fild07,102,177,60,90 monster Aster 1266,3,60000,0,0
|
||||
cmd_fild07,240,107,40,90 monster Crab 1073,3,60000,0,0
|
||||
cmd_fild07,100,175,60,90 monster Crab 1073,2,60000,0,0
|
||||
cmd_fild07,101,176,60,90 monster Raggler 1254,1,180000,0,0
|
||||
cmd_fild07,241,106,40,90 monster Raggler 1254,1,180000,0,0
|
||||
cmd_fild07,204,317,60,60 monster Raggler 1254,1,60000,0,0
|
||||
cmd_fild07,323,310,60,60 monster Raggler 1254,1,60000,0,0
|
||||
cmd_fild07,0,0,0,0 monster Drops 1113,20,0,0,0
|
||||
cmd_fild07,239,105,40,90 monster Shellfish 1074,2,60000,0,0
|
||||
cmd_fild07,104,180,40,90 monster Shellfish 1074,3,60000,0,0
|
||||
cmd_fild07,242,108,40,90 monster Aster 1266,2,60000
|
||||
cmd_fild07,102,177,60,90 monster Aster 1266,3,60000
|
||||
cmd_fild07,240,107,40,90 monster Crab 1073,3,60000
|
||||
cmd_fild07,100,175,60,90 monster Crab 1073,2,60000
|
||||
cmd_fild07,101,176,60,90 monster Raggler 1254,1,180000
|
||||
cmd_fild07,241,106,40,90 monster Raggler 1254,1,180000
|
||||
cmd_fild07,204,317,60,60 monster Raggler 1254,1,60000
|
||||
cmd_fild07,323,310,60,60 monster Raggler 1254,1,60000
|
||||
cmd_fild07,0,0 monster Drops 1113,20
|
||||
cmd_fild07,239,105,40,90 monster Shellfish 1074,2,60000
|
||||
cmd_fild07,104,180,40,90 monster Shellfish 1074,3,60000
|
||||
|
||||
//==================================================
|
||||
// cmd_fild08 - Fortress Saint Darmain (East)
|
||||
//==================================================
|
||||
cmd_fild08,127,279,30,50 monster Kobold Archer 1282,5,60000,0,0
|
||||
cmd_fild08,130,192,110,150 monster Kobold Archer 1282,5,0,0,0
|
||||
cmd_fild08,146,136,30,80 monster Kobold Archer 1282,5,0,0,0
|
||||
cmd_fild08,73,132,40,100 monster Kobold Archer 1282,5,0,0,0
|
||||
cmd_fild08,146,136,30,90 monster Kobold Archer 1282,5,0,0,0
|
||||
cmd_fild08,157,329,0,0 monster Kobold Archer 1282,1,190000,0,0
|
||||
cmd_fild08,150,320,0,0 monster Kobold Archer 1282,1,190000,0,0
|
||||
cmd_fild08,195,174,0,0 monster Kobold Archer 1282,1,190000,0,0
|
||||
cmd_fild08,173,168,0,0 monster Kobold Archer 1282,1,190000,0,0
|
||||
cmd_fild08,178,363,0,0 monster Kobold Archer 1282,1,190000,0,0
|
||||
cmd_fild08,175,367,0,0 monster Kobold Archer 1282,1,190000,0,0
|
||||
cmd_fild08,53,248,0,0 monster Kobold Archer 1282,1,190000,0,0
|
||||
cmd_fild08,52,238,0,0 monster Kobold Archer 1282,1,190000,0,0
|
||||
cmd_fild08,272,175,40,2 monster Kobold Archer 1282,2,60000,0,0
|
||||
cmd_fild08,190,115,100,80 monster Kobold Archer 1282,10,0,0,0
|
||||
cmd_fild08,130,192,110,150 monster Kobold Archer 1282,7,0,0,0
|
||||
cmd_fild08,72,131,40,100 monster Kobold Archer 1282,8,0,0,0
|
||||
cmd_fild08,319,177,0,0 monster Kobold Archer 1282,1,180000,0,0
|
||||
cmd_fild08,319,172,0,0 monster Kobold Archer 1282,1,180000,0,0
|
||||
cmd_fild08,139,71,0,0 monster Kobold Archer 1282,1,180000,0,0
|
||||
cmd_fild08,136,64,0,0 monster Kobold Archer 1282,1,180000,0,0
|
||||
cmd_fild08,67,80,0,0 monster Kobold Archer 1282,1,180000,0,0
|
||||
cmd_fild08,132,149,0,0 monster Kobold Archer 1282,1,180000,0,0
|
||||
cmd_fild08,97,144,0,0 monster Kobold Archer 1282,1,180000,0,0
|
||||
cmd_fild08,79,140,0,0 monster Kobold Archer 1282,1,180000,0,0
|
||||
cmd_fild08,28,102,0,0 monster Kobold Archer 1282,1,180000,0,0
|
||||
cmd_fild08,80,348,60,40 monster Goblin Archer 1258,5,0,0,0
|
||||
cmd_fild08,130,192,110,150 monster Goblin Archer 1258,5,0,0,0
|
||||
cmd_fild08,194,291,25,40 monster Goblin Archer 1258,5,0,0,0
|
||||
cmd_fild08,73,132,40,100 monster Goblin Archer 1258,5,0,0,0
|
||||
cmd_fild08,182,205,0,0 monster Goblin Archer 1258,1,150000,0,0
|
||||
cmd_fild08,177,210,0,0 monster Goblin Archer 1258,1,150000,0,0
|
||||
cmd_fild08,58,40,0,0 monster Goblin Archer 1258,1,150000,0,0
|
||||
cmd_fild08,55,45,0,0 monster Goblin Archer 1258,1,150000,0,0
|
||||
cmd_fild08,104,313,0,0 monster Goblin Archer 1258,1,150000,0,0
|
||||
cmd_fild08,98,307,0,0 monster Goblin Archer 1258,1,150000,0,0
|
||||
cmd_fild08,41,126,0,0 monster Goblin Archer 1258,1,150000,0,0
|
||||
cmd_fild08,37,129,0,0 monster Goblin Archer 1258,1,150000,0,0
|
||||
cmd_fild08,66,252,40,30 monster Stem Worm 1215,5,30000,0,0
|
||||
cmd_fild08,130,192,110,150 monster Stem Worm 1215,10,0,0,0
|
||||
cmd_fild08,70,130,40,90 monster Stem Worm 1215,2,0,0,0
|
||||
cmd_fild08,189,64,30,30 monster Stem Worm 1215,3,180000,0,0
|
||||
cmd_fild08,174,172,0,0 monster Stem Worm 1215,1,180000,0,0
|
||||
cmd_fild08,266,175,0,0 monster Stem Worm 1215,1,180000,0,0
|
||||
cmd_fild08,127,273,0,0 monster Stem Worm 1215,1,180000,0,0
|
||||
cmd_fild08,92,141,0,0 monster Stem Worm 1215,1,180000,0,0
|
||||
cmd_fild08,85,135,0,0 monster Stem Worm 1215,1,180000,0,0
|
||||
cmd_fild08,0,0,0,0 monster Drops 1113,10,0,0,0
|
||||
cmd_fild08,326,258,50,110 monster Sandman 1165,15,0,0,0
|
||||
cmd_fild08,326,258,50,110 monster Kobold Archer 1282,10,0,0,0
|
||||
cmd_fild08,326,258,50,110 monster Side Winder 1037,2,0,0,0
|
||||
cmd_fild08,0,0,0,0 monster Side Winder 1037,3,0,0,0
|
||||
cmd_fild08,130,192,110,150 monster Side Winder 1037,15,0,0,0
|
||||
cmd_fild08,0,0,0,0 monster Gryphon 1259,1,3600000,1800000,1
|
||||
cmd_fild08,60,143,10,10 monster Yellow Plant 1081,4,1800000,900000,1
|
||||
cmd_fild08,130,201,10,10 monster Yellow Plant 1081,4,1800000,900000,1
|
||||
cmd_fild08,127,279,30,50 monster Kobold Archer 1282,5,60000
|
||||
cmd_fild08,130,192,110,150 monster Kobold Archer 1282,5
|
||||
cmd_fild08,146,136,30,80 monster Kobold Archer 1282,5
|
||||
cmd_fild08,73,132,40,100 monster Kobold Archer 1282,5
|
||||
cmd_fild08,146,136,30,90 monster Kobold Archer 1282,5
|
||||
cmd_fild08,157,329 monster Kobold Archer 1282,1,190000
|
||||
cmd_fild08,150,320 monster Kobold Archer 1282,1,190000
|
||||
cmd_fild08,195,174 monster Kobold Archer 1282,1,190000
|
||||
cmd_fild08,173,168 monster Kobold Archer 1282,1,190000
|
||||
cmd_fild08,178,363 monster Kobold Archer 1282,1,190000
|
||||
cmd_fild08,175,367 monster Kobold Archer 1282,1,190000
|
||||
cmd_fild08,53,248 monster Kobold Archer 1282,1,190000
|
||||
cmd_fild08,52,238 monster Kobold Archer 1282,1,190000
|
||||
cmd_fild08,272,175,40,2 monster Kobold Archer 1282,2,60000
|
||||
cmd_fild08,190,115,100,80 monster Kobold Archer 1282,10
|
||||
cmd_fild08,130,192,110,150 monster Kobold Archer 1282,7
|
||||
cmd_fild08,72,131,40,100 monster Kobold Archer 1282,8
|
||||
cmd_fild08,319,177 monster Kobold Archer 1282,1,180000
|
||||
cmd_fild08,319,172 monster Kobold Archer 1282,1,180000
|
||||
cmd_fild08,139,71 monster Kobold Archer 1282,1,180000
|
||||
cmd_fild08,136,64 monster Kobold Archer 1282,1,180000
|
||||
cmd_fild08,67,80 monster Kobold Archer 1282,1,180000
|
||||
cmd_fild08,132,149 monster Kobold Archer 1282,1,180000
|
||||
cmd_fild08,97,144 monster Kobold Archer 1282,1,180000
|
||||
cmd_fild08,79,140 monster Kobold Archer 1282,1,180000
|
||||
cmd_fild08,28,102 monster Kobold Archer 1282,1,180000
|
||||
cmd_fild08,80,348,60,40 monster Goblin Archer 1258,5
|
||||
cmd_fild08,130,192,110,150 monster Goblin Archer 1258,5
|
||||
cmd_fild08,194,291,25,40 monster Goblin Archer 1258,5
|
||||
cmd_fild08,73,132,40,100 monster Goblin Archer 1258,5
|
||||
cmd_fild08,182,205 monster Goblin Archer 1258,1,150000
|
||||
cmd_fild08,177,210 monster Goblin Archer 1258,1,150000
|
||||
cmd_fild08,58,40 monster Goblin Archer 1258,1,150000
|
||||
cmd_fild08,55,45 monster Goblin Archer 1258,1,150000
|
||||
cmd_fild08,104,313 monster Goblin Archer 1258,1,150000
|
||||
cmd_fild08,98,307 monster Goblin Archer 1258,1,150000
|
||||
cmd_fild08,41,126 monster Goblin Archer 1258,1,150000
|
||||
cmd_fild08,37,129 monster Goblin Archer 1258,1,150000
|
||||
cmd_fild08,66,252,40,30 monster Stem Worm 1215,5,30000
|
||||
cmd_fild08,130,192,110,150 monster Stem Worm 1215,10
|
||||
cmd_fild08,70,130,40,90 monster Stem Worm 1215,2
|
||||
cmd_fild08,189,64,30,30 monster Stem Worm 1215,3,180000
|
||||
cmd_fild08,174,172 monster Stem Worm 1215,1,180000
|
||||
cmd_fild08,266,175 monster Stem Worm 1215,1,180000
|
||||
cmd_fild08,127,273 monster Stem Worm 1215,1,180000
|
||||
cmd_fild08,92,141 monster Stem Worm 1215,1,180000
|
||||
cmd_fild08,85,135 monster Stem Worm 1215,1,180000
|
||||
cmd_fild08,0,0 monster Drops 1113,10
|
||||
cmd_fild08,326,258,50,110 monster Sandman 1165,15
|
||||
cmd_fild08,326,258,50,110 monster Kobold Archer 1282,10
|
||||
cmd_fild08,326,258,50,110 monster Side Winder 1037,2
|
||||
cmd_fild08,0,0 monster Side Winder 1037,3
|
||||
cmd_fild08,130,192,110,150 monster Side Winder 1037,15
|
||||
cmd_fild08,0,0 monster Gryphon 1259,1,3600000,1800000
|
||||
cmd_fild08,60,143,10,10 monster Yellow Plant 1081,4,1800000,900000
|
||||
cmd_fild08,130,201,10,10 monster Yellow Plant 1081,4,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// cmd_fild09 - Fortress Saint Darmain (South)
|
||||
//==================================================
|
||||
cmd_fild09,0,0,0,0 monster Steel Chonchon 1042,20,0,0,0
|
||||
cmd_fild09,0,0,0,0 monster Drops 1113,20,0,0,0
|
||||
cmd_fild09,0,0,0,0 monster Anacondaq 1030,60,0,0,0
|
||||
cmd_fild09,0,0,0,0 monster Condor 1009,20,0,0,0
|
||||
cmd_fild09,142,325,40,50 monster Hode 1127,3,150000,0,0
|
||||
cmd_fild09,140,323,40,50 monster Gargoyle 1253,2,150000,0,0
|
||||
cmd_fild09,0,0 monster Steel Chonchon 1042,20
|
||||
cmd_fild09,0,0 monster Drops 1113,20
|
||||
cmd_fild09,0,0 monster Anacondaq 1030,60
|
||||
cmd_fild09,0,0 monster Condor 1009,20
|
||||
cmd_fild09,142,325,40,50 monster Hode 1127,3,150000
|
||||
cmd_fild09,140,323,40,50 monster Gargoyle 1253,2,150000
|
||||
|
||||
@@ -25,124 +25,124 @@
|
||||
//==================================================
|
||||
// ein_fild01 - Einbroch Field
|
||||
//==================================================
|
||||
ein_fild01,115,190,80,150 monster Demon Pungus 1378,30,0,0,0
|
||||
ein_fild01,264,318,70,60 monster Demon Pungus 1378,20,0,0,0
|
||||
ein_fild01,232,100,25,60 monster Demon Pungus 1378,5,300000,60000,0
|
||||
ein_fild01,115,190,80,150 monster Punk 1199,25,0,0,0
|
||||
ein_fild01,264,318,70,60 monster Punk 1199,20,0,0,0
|
||||
ein_fild01,232,100,25,60 monster Punk 1199,5,300000,60000,0
|
||||
ein_fild01,115,190,80,150 monster Demon Pungus 1378,30
|
||||
ein_fild01,264,318,70,60 monster Demon Pungus 1378,20
|
||||
ein_fild01,232,100,25,60 monster Demon Pungus 1378,5,300000,60000
|
||||
ein_fild01,115,190,80,150 monster Punk 1199,25
|
||||
ein_fild01,264,318,70,60 monster Punk 1199,20
|
||||
ein_fild01,232,100,25,60 monster Punk 1199,5,300000,60000
|
||||
|
||||
//==================================================
|
||||
// ein_fild02 - Einbroch Field
|
||||
//==================================================
|
||||
ein_fild02,105,250,70,80 monster Driller 1380,10,0,0,0
|
||||
ein_fild02,259,269,90,70 monster Driller 1380,15,0,0,0
|
||||
ein_fild02,287,117,55,70 monster Driller 1380,10,0,0,0
|
||||
ein_fild02,108,88,60,60 monster Driller 1380,10,0,0,0
|
||||
ein_fild02,0,0,0,0 monster Demon Pungus 1378,30,0,0,0
|
||||
ein_fild02,0,0,0,0 monster Ungoliant 1618,1,75600000,75000000,0
|
||||
ein_fild02,105,250,70,80 monster Driller 1380,10
|
||||
ein_fild02,259,269,90,70 monster Driller 1380,15
|
||||
ein_fild02,287,117,55,70 monster Driller 1380,10
|
||||
ein_fild02,108,88,60,60 monster Driller 1380,10
|
||||
ein_fild02,0,0 monster Demon Pungus 1378,30
|
||||
ein_fild02,0,0 monster Ungoliant 1618,1,75600000,75000000
|
||||
|
||||
//==================================================
|
||||
// ein_fild03 - Einbroch Field
|
||||
//==================================================
|
||||
ein_fild03,0,0,0,0 monster Metaling 1613,30,0,0,0
|
||||
ein_fild03,0,0,0,0 monster Geographer 1368,5,0,0,0
|
||||
ein_fild03,0,0,0,0 monster Holden 1628,40,0,0,0
|
||||
ein_fild03,153,328,100,35 monster Geographer 1368,10,0,0,0
|
||||
ein_fild03,260,190,45,25 monster Geographer 1368,5,0,0,0
|
||||
ein_fild03,88,143,25,70 monster Caramel 1103,10,60000,30000,1
|
||||
ein_fild03,155,40,35,20 monster Horn 1128,5,60000,30000,1
|
||||
ein_fild03,0,0,0,0 monster Yellow Plant 1081,15,60000,30000,0
|
||||
ein_fild03,0,0,0,0 monster Green Plant 1080,15,60000,30000,0
|
||||
ein_fild03,0,0 monster Metaling 1613,30
|
||||
ein_fild03,0,0 monster Geographer 1368,5
|
||||
ein_fild03,0,0 monster Holden 1628,40
|
||||
ein_fild03,153,328,100,35 monster Geographer 1368,10
|
||||
ein_fild03,260,190,45,25 monster Geographer 1368,5
|
||||
ein_fild03,88,143,25,70 monster Caramel 1103,10,60000,30000
|
||||
ein_fild03,155,40,35,20 monster Horn 1128,5,60000,30000
|
||||
ein_fild03,0,0 monster Yellow Plant 1081,15,60000,30000
|
||||
ein_fild03,0,0 monster Green Plant 1080,15,60000,30000
|
||||
|
||||
//==================================================
|
||||
// ein_fild04 - Einbroch Field
|
||||
//==================================================
|
||||
ein_fild04,0,0,0,0 monster Metaling 1613,50,0,0,0
|
||||
ein_fild04,0,0,0,0 monster Geographer 1368,30,60000,30000,0
|
||||
ein_fild04,0,0,0,0 monster Holden 1628,5,0,0,0
|
||||
ein_fild04,200,295,125,65 monster Geographer 1368,40,60000,30000,0
|
||||
ein_fild04,125,135,40,40 monster Geographer 1368,5,60000,30000,0
|
||||
ein_fild04,260,70,20,30 monster Geographer 1368,5,60000,30000,0
|
||||
ein_fild04,285,240,35,90 monster Giearth 1121,10,3600000,3000000,0
|
||||
ein_fild04,106,284,60,60 monster Holden 1628,15,0,0,0
|
||||
ein_fild04,106,284,60,60 monster Mineral 1614,5,3600000,3000000,0
|
||||
ein_fild04,0,0,0,0 monster Red Plant 1078,10,60000,30000,0
|
||||
ein_fild04,0,0,0,0 monster Yellow Plant 1081,10,60000,30000,0
|
||||
ein_fild04,0,0,0,0 monster Green Plant 1080,10,60000,30000,0
|
||||
ein_fild04,0,0 monster Metaling 1613,50
|
||||
ein_fild04,0,0 monster Geographer 1368,30,60000,30000
|
||||
ein_fild04,0,0 monster Holden 1628,5
|
||||
ein_fild04,200,295,125,65 monster Geographer 1368,40,60000,30000
|
||||
ein_fild04,125,135,40,40 monster Geographer 1368,5,60000,30000
|
||||
ein_fild04,260,70,20,30 monster Geographer 1368,5,60000,30000
|
||||
ein_fild04,285,240,35,90 monster Giearth 1121,10,3600000,3000000
|
||||
ein_fild04,106,284,60,60 monster Holden 1628,15
|
||||
ein_fild04,106,284,60,60 monster Mineral 1614,5,3600000,3000000
|
||||
ein_fild04,0,0 monster Red Plant 1078,10,60000,30000
|
||||
ein_fild04,0,0 monster Yellow Plant 1081,10,60000,30000
|
||||
ein_fild04,0,0 monster Green Plant 1080,10,60000,30000
|
||||
|
||||
//==================================================
|
||||
// ein_fild05 - Einbroch Field
|
||||
//==================================================
|
||||
ein_fild05,205,300,50,50 monster Mineral 1614,10,600000,360000,0
|
||||
ein_fild05,299,189,55,55 monster Mineral 1614,15,600000,360000,0
|
||||
ein_fild05,145,195,30,50 monster Mineral 1614,10,600000,360000,0
|
||||
ein_fild05,205,300,50,50 monster Obsidian 1615,5,420000,360000,0
|
||||
ein_fild05,299,189,55,55 monster Obsidian 1615,7,420000,360000,0
|
||||
ein_fild05,145,195,30,50 monster Obsidian 1615,5,420000,360000,0
|
||||
ein_fild05,0,0,0,0 monster Anopheles 1627,30,0,0,0
|
||||
ein_fild05,0,0,0,0 monster Demon Pungus 1378,10,0,0,0
|
||||
ein_fild05,0,0,0,0 monster Geographer 1368,10,0,0,0
|
||||
ein_fild05,205,300,50,50 monster Mineral 1614,10,600000,360000
|
||||
ein_fild05,299,189,55,55 monster Mineral 1614,15,600000,360000
|
||||
ein_fild05,145,195,30,50 monster Mineral 1614,10,600000,360000
|
||||
ein_fild05,205,300,50,50 monster Obsidian 1615,5,420000,360000
|
||||
ein_fild05,299,189,55,55 monster Obsidian 1615,7,420000,360000
|
||||
ein_fild05,145,195,30,50 monster Obsidian 1615,5,420000,360000
|
||||
ein_fild05,0,0 monster Anopheles 1627,30
|
||||
ein_fild05,0,0 monster Demon Pungus 1378,10
|
||||
ein_fild05,0,0 monster Geographer 1368,10
|
||||
|
||||
//==================================================
|
||||
// ein_fild06 - Einbroch Field
|
||||
//==================================================
|
||||
ein_fild06,0,0,0,0 monster Goat 1372,55,0,0,0
|
||||
ein_fild06,0,0,0,0 monster Pupa 1008,10,0,0,0
|
||||
ein_fild06,0,0,0,0 monster Harpy 1376,5,1800000,1200000,0
|
||||
ein_fild06,0,0,0,0 monster Giearth 1121,2,3600000,3000000,0
|
||||
ein_fild06,0,0,0,0 monster Red Plant 1078,10,120000,60000,0
|
||||
ein_fild06,0,0,0,0 monster Yellow Plant 1081,10,120000,60000,0
|
||||
ein_fild06,0,0,0,0 monster Black Mushroom 1084,5,120000,60000,0
|
||||
ein_fild06,0,0 monster Goat 1372,55
|
||||
ein_fild06,0,0 monster Pupa 1008,10
|
||||
ein_fild06,0,0 monster Harpy 1376,5,1800000,1200000
|
||||
ein_fild06,0,0 monster Giearth 1121,2,3600000,3000000
|
||||
ein_fild06,0,0 monster Red Plant 1078,10,120000,60000
|
||||
ein_fild06,0,0 monster Yellow Plant 1081,10,120000,60000
|
||||
ein_fild06,0,0 monster Black Mushroom 1084,5,120000,60000
|
||||
|
||||
//==================================================
|
||||
// ein_fild07 - Einbroch Field
|
||||
//==================================================
|
||||
ein_fild07,0,0,0,0 monster Poring 1002,40,0,0,0
|
||||
ein_fild07,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
ein_fild07,0,0,0,0 monster Metaling 1613,60,0,0,0
|
||||
ein_fild07,0,0,0,0 monster Flora 1118,20,0,0,0
|
||||
ein_fild07,0,0,0,0 monster Geographer 1368,20,0,0,0
|
||||
ein_fild07,0,0,0,0 monster Red Plant 1078,10,120000,60000,0
|
||||
ein_fild07,0,0,0,0 monster Yellow Plant 1081,10,120000,60000,0
|
||||
ein_fild07,0,0,0,0 monster Red Mushroom 1085,10,120000,60000,0
|
||||
ein_fild07,0,0,0,0 monster Ungoliant 1618,1,86400000,86000000,0
|
||||
ein_fild07,0,0 monster Poring 1002,40
|
||||
ein_fild07,0,0 monster Poporing 1031,20
|
||||
ein_fild07,0,0 monster Metaling 1613,60
|
||||
ein_fild07,0,0 monster Flora 1118,20
|
||||
ein_fild07,0,0 monster Geographer 1368,20
|
||||
ein_fild07,0,0 monster Red Plant 1078,10,120000,60000
|
||||
ein_fild07,0,0 monster Yellow Plant 1081,10,120000,60000
|
||||
ein_fild07,0,0 monster Red Mushroom 1085,10,120000,60000
|
||||
ein_fild07,0,0 monster Ungoliant 1618,1,86400000,86000000
|
||||
|
||||
//==================================================
|
||||
// ein_fild08 - Einbroch Field
|
||||
//==================================================
|
||||
ein_fild08,0,0,0,0 monster Poring 1002,25,0,0,0
|
||||
ein_fild08,0,0,0,0 monster Drops 1113,25,0,0,0
|
||||
ein_fild08,0,0,0,0 monster Poporing 1031,25,0,0,0
|
||||
ein_fild08,0,0,0,0 monster Metaling 1613,25,0,0,0
|
||||
ein_fild08,0,0,0,0 monster Porcellio 1619,10,0,0,0
|
||||
ein_fild08,0,0,0,0 monster Thief Bug 1051,30,0,0,0
|
||||
ein_fild08,0,0,0,0 monster Red Plant 1078,10,120000,60000,0
|
||||
ein_fild08,0,0,0,0 monster Yellow Plant 1081,10,120000,60000,0
|
||||
ein_fild08,0,0,0,0 monster Red Mushroom 1085,10,120000,60000,0
|
||||
ein_fild08,0,0 monster Poring 1002,25
|
||||
ein_fild08,0,0 monster Drops 1113,25
|
||||
ein_fild08,0,0 monster Poporing 1031,25
|
||||
ein_fild08,0,0 monster Metaling 1613,25
|
||||
ein_fild08,0,0 monster Porcellio 1619,10
|
||||
ein_fild08,0,0 monster Thief Bug 1051,30
|
||||
ein_fild08,0,0 monster Red Plant 1078,10,120000,60000
|
||||
ein_fild08,0,0 monster Yellow Plant 1081,10,120000,60000
|
||||
ein_fild08,0,0 monster Red Mushroom 1085,10,120000,60000
|
||||
|
||||
//==================================================
|
||||
// ein_fild09 - Einbroch Field
|
||||
//==================================================
|
||||
ein_fild09,0,0,0,0 monster Metaling 1613,10,0,0,0
|
||||
ein_fild09,0,0,0,0 monster Porcellio 1619,70,0,0,0
|
||||
ein_fild09,0,0,0,0 monster Thief Bug 1051,20,0,0,0
|
||||
ein_fild09,100,260,2,2 monster Thief Bug Egg 1048,3,600000,300000,0
|
||||
ein_fild09,0,0,0,0 monster Red Plant 1078,10,120000,60000,0
|
||||
ein_fild09,0,0,0,0 monster Yellow Plant 1081,10,120000,60000,0
|
||||
ein_fild09,0,0,0,0 monster Red Mushroom 1085,10,120000,60000,0
|
||||
ein_fild09,260,85,50,20 monster Flora 1118,5,300000,120000,0
|
||||
ein_fild09,0,0 monster Metaling 1613,10
|
||||
ein_fild09,0,0 monster Porcellio 1619,70
|
||||
ein_fild09,0,0 monster Thief Bug 1051,20
|
||||
ein_fild09,100,260,2,2 monster Thief Bug Egg 1048,3,600000,300000
|
||||
ein_fild09,0,0 monster Red Plant 1078,10,120000,60000
|
||||
ein_fild09,0,0 monster Yellow Plant 1081,10,120000,60000
|
||||
ein_fild09,0,0 monster Red Mushroom 1085,10,120000,60000
|
||||
ein_fild09,260,85,50,20 monster Flora 1118,5,300000,120000
|
||||
|
||||
//==================================================
|
||||
// ein_fild10 - Einbroch Field
|
||||
//==================================================
|
||||
ein_fild10,0,0,0,0 monster Geographer 1368,5,0,0,0
|
||||
ein_fild10,0,0,0,0 monster Porcellio 1619,20,0,0,1
|
||||
ein_fild10,152,314,130,30 monster Porcellio 1619,10,0,0,1
|
||||
ein_fild10,0,0,0,0 monster Red Plant 1078,20,120000,60000,0
|
||||
ein_fild10,0,0,0,0 monster Yellow Plant 1081,20,120000,60000,0
|
||||
ein_fild10,0,0,0,0 monster Blue Plant 1079,20,600000,300000,0
|
||||
ein_fild10,225,95,30,45 monster Yoyo 1057,6,30000,10000,0
|
||||
ein_fild10,320,130,40,40 monster Yoyo 1057,4,30000,10000,0
|
||||
ein_fild10,225,95,30,45 monster Flora 1118,10,300000,120000,0
|
||||
ein_fild10,320,130,40,40 monster Flora 1118,10,300000,120000,0
|
||||
ein_fild10,0,0 monster Geographer 1368,5
|
||||
ein_fild10,0,0 monster Porcellio 1619,20
|
||||
ein_fild10,152,314,130,30 monster Porcellio 1619,10
|
||||
ein_fild10,0,0 monster Red Plant 1078,20,120000,60000
|
||||
ein_fild10,0,0 monster Yellow Plant 1081,20,120000,60000
|
||||
ein_fild10,0,0 monster Blue Plant 1079,20,600000,300000
|
||||
ein_fild10,225,95,30,45 monster Yoyo 1057,6,30000,10000
|
||||
ein_fild10,320,130,40,40 monster Yoyo 1057,4,30000,10000
|
||||
ein_fild10,225,95,30,45 monster Flora 1118,10,300000,120000
|
||||
ein_fild10,320,130,40,40 monster Flora 1118,10,300000,120000
|
||||
|
||||
@@ -16,215 +16,215 @@
|
||||
//==================================================
|
||||
// gef_fild00 - Geffen Field
|
||||
//==================================================
|
||||
gef_fild00,0,0,0,0 monster Poring 1002,50,0,0,0
|
||||
gef_fild00,0,0,0,0 monster Fabre 1007,50,0,0,0
|
||||
gef_fild00,0,0,0,0 monster Pupa 1008,20,0,0,0
|
||||
gef_fild00,0,0,0,0 monster Poporing 1031,10,0,0,0
|
||||
gef_fild00,95,128,0,0 monster Blue Plant 1079,1,900000,450000,1
|
||||
gef_fild00,124,321,0,0 monster Blue Plant 1079,1,900000,450000,1
|
||||
gef_fild00,54,212,5,5 monster Green Plant 1080,3,360000,180000,1
|
||||
gef_fild00,54,186,5,5 monster Green Plant 1080,3,360000,180000,1
|
||||
gef_fild00,0,0 monster Poring 1002,50
|
||||
gef_fild00,0,0 monster Fabre 1007,50
|
||||
gef_fild00,0,0 monster Pupa 1008,20
|
||||
gef_fild00,0,0 monster Poporing 1031,10
|
||||
gef_fild00,95,128 monster Blue Plant 1079,1,900000,450000
|
||||
gef_fild00,124,321 monster Blue Plant 1079,1,900000,450000
|
||||
gef_fild00,54,212,5,5 monster Green Plant 1080,3,360000,180000
|
||||
gef_fild00,54,186,5,5 monster Green Plant 1080,3,360000,180000
|
||||
|
||||
//==================================================
|
||||
// gef_fild01 - Geffen Field
|
||||
//==================================================
|
||||
gef_fild01,0,0,0,0 monster Roda Frog 1012,50,0,0,0
|
||||
gef_fild01,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
gef_fild01,0,0,0,0 monster Toad 1089,1,3600000,1800000,1
|
||||
gef_fild01,215,225,10,10 monster Green Plant 1080,5,360000,180000,1
|
||||
gef_fild01,0,0 monster Roda Frog 1012,50
|
||||
gef_fild01,0,0 monster Poporing 1031,20
|
||||
gef_fild01,0,0 monster Toad 1089,1,3600000,1800000
|
||||
gef_fild01,215,225,10,10 monster Green Plant 1080,5,360000,180000
|
||||
|
||||
//==================================================
|
||||
// gef_fild02 - Geffen Field
|
||||
//==================================================
|
||||
gef_fild02,0,0,0,0 monster Yoyo 1057,10,0,0,0
|
||||
gef_fild02,0,0,0,0 monster Orc Warrior 1023,60,0,0,0
|
||||
gef_fild02,0,0,0,0 monster Coco 1104,10,0,0,0
|
||||
gef_fild02,0,0,0,0 monster Smokie 1056,10,0,0,0
|
||||
gef_fild02,0,0,0,0 monster Choco 1214,1,0,0,0
|
||||
gef_fild02,0,0 monster Yoyo 1057,10
|
||||
gef_fild02,0,0 monster Orc Warrior 1023,60
|
||||
gef_fild02,0,0 monster Coco 1104,10
|
||||
gef_fild02,0,0 monster Smokie 1056,10
|
||||
gef_fild02,0,0 monster Choco 1214,1
|
||||
gef_fild02,0,0,0,0 boss_monster Orc Hero 1087,1,86400000,600000,1
|
||||
gef_fild02,227,316,6,6 monster Green Plant 1080,8,360000,180000,1
|
||||
gef_fild02,87,48,6,6 monster Red Mushroom 1085,5,360000,180000,1
|
||||
gef_fild02,215,209,2,1 monster Blue Plant 1079,2,360000,180000,1
|
||||
gef_fild02,207,214,1,1 monster Blue Plant 1079,1,360000,180000,1
|
||||
gef_fild02,220,214,1,1 monster Blue Plant 1079,1,360000,180000,1
|
||||
gef_fild02,164,194,1,1 monster Shining Plant 1083,1,1800000,900000,1
|
||||
gef_fild02,227,316,6,6 monster Green Plant 1080,8,360000,180000
|
||||
gef_fild02,87,48,6,6 monster Red Mushroom 1085,5,360000,180000
|
||||
gef_fild02,215,209,2,1 monster Blue Plant 1079,2,360000,180000
|
||||
gef_fild02,207,214,1,1 monster Blue Plant 1079,1,360000,180000
|
||||
gef_fild02,220,214,1,1 monster Blue Plant 1079,1,360000,180000
|
||||
gef_fild02,164,194,1,1 monster Shining Plant 1083,1,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// gef_fild03 - Geffen Field
|
||||
//==================================================
|
||||
gef_fild03,0,0,0,0 monster Orc Warrior 1023,60,0,0,0
|
||||
gef_fild03,0,0,0,0 monster High Orc 1213,1,0,0,0
|
||||
gef_fild03,0,0,0,0 monster Savage 1166,40,0,0,0
|
||||
gef_fild03,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
gef_fild03,45,350,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,66,300,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,80,252,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,118,281,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,135,344,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,210,363,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,215,345,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,359,316,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,350,247,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,304,202,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,285,223,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,282,192,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,316,143,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,337,104,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,348,42,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,326,79,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,280,92,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,216,135,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,169,92,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,45,93,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,44,133,3,3 monster Green Plant 1080,1,180000,90000,1
|
||||
gef_fild03,0,0 monster Orc Warrior 1023,60
|
||||
gef_fild03,0,0 monster High Orc 1213,1
|
||||
gef_fild03,0,0 monster Savage 1166,40
|
||||
gef_fild03,0,0 monster Poporing 1031,20
|
||||
gef_fild03,45,350,3,3 monster Green Plant 1080,1,180000,90000
|
||||
gef_fild03,66,300,3,3 monster Green Plant 1080,1,180000,90000
|
||||
gef_fild03,80,252,3,3 monster Green Plant 1080,1,180000,90000
|
||||
gef_fild03,118,281,3,3 monster Green Plant 1080,1,180000,90000
|
||||
gef_fild03,135,344,3,3 monster Green Plant 1080,1,180000,90000
|
||||
gef_fild03,210,363,3,3 monster Green Plant 1080,1,180000,90000
|
||||
gef_fild03,215,345,3,3 monster Green Plant 1080,1,180000,90000
|
||||
gef_fild03,359,316,3,3 monster Green Plant 1080,1,180000,90000
|
||||
gef_fild03,350,247,3,3 monster Green Plant 1080,1,180000,90000
|
||||
gef_fild03,304,202,3,3 monster Green Plant 1080,1,180000,90000
|
||||
gef_fild03,285,223,3,3 monster Green Plant 1080,1,180000,90000
|
||||
gef_fild03,282,192,3,3 monster Green Plant 1080,1,180000,90000
|
||||
gef_fild03,316,143,3,3 monster Green Plant 1080,1,180000,90000
|
||||
gef_fild03,337,104,3,3 monster Green Plant 1080,1,180000,90000
|
||||
gef_fild03,348,42,3,3 monster Green Plant 1080,1,180000,90000
|
||||
gef_fild03,326,79,3,3 monster Green Plant 1080,1,180000,90000
|
||||
gef_fild03,280,92,3,3 monster Green Plant 1080,1,180000,90000
|
||||
gef_fild03,216,135,3,3 monster Green Plant 1080,1,180000,90000
|
||||
gef_fild03,169,92,3,3 monster Green Plant 1080,1,180000,90000
|
||||
gef_fild03,45,93,3,3 monster Green Plant 1080,1,180000,90000
|
||||
gef_fild03,44,133,3,3 monster Green Plant 1080,1,180000,90000
|
||||
|
||||
//==================================================
|
||||
// gef_fild04 - Geffen Field
|
||||
//==================================================
|
||||
gef_fild04,0,0,0,0 monster Poring 1002,30,0,0,0
|
||||
gef_fild04,0,0,0,0 monster Chonchon 1011,30,0,0,0
|
||||
gef_fild04,0,0,0,0 monster Pupa 1008,60,0,0,0
|
||||
gef_fild04,0,0,0,0 monster Fabre 1007,20,0,0,0
|
||||
gef_fild04,0,0,0,0 monster Roda Frog 1012,20,0,0,0
|
||||
gef_fild04,224,82,5,2 monster Green Plant 1080,3,360000,180000,1
|
||||
gef_fild04,152,82,5,2 monster Green Plant 1080,3,360000,180000,1
|
||||
gef_fild04,0,0 monster Poring 1002,30
|
||||
gef_fild04,0,0 monster Chonchon 1011,30
|
||||
gef_fild04,0,0 monster Pupa 1008,60
|
||||
gef_fild04,0,0 monster Fabre 1007,20
|
||||
gef_fild04,0,0 monster Roda Frog 1012,20
|
||||
gef_fild04,224,82,5,2 monster Green Plant 1080,3,360000,180000
|
||||
gef_fild04,152,82,5,2 monster Green Plant 1080,3,360000,180000
|
||||
|
||||
//==================================================
|
||||
// gef_fild05 - Geffen Field
|
||||
//==================================================
|
||||
gef_fild05,0,0,0,0 monster Poring 1002,30,0,0,0
|
||||
gef_fild05,0,0,0,0 monster Kobold Archer 1282,10,0,0,0
|
||||
gef_fild05,0,0,0,0 monster Wild Rose 1261,50,0,0,0
|
||||
gef_fild05,0,0,0,0 monster Dustiness 1114,30,0,0,0
|
||||
gef_fild05,235,322,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
gef_fild05,238,326,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
gef_fild05,170,337,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
gef_fild05,108,317,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
gef_fild05,56,285,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
gef_fild05,65,256,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
gef_fild05,74,228,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
gef_fild05,50,189,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
gef_fild05,51,166,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
gef_fild05,146,161,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
gef_fild05,153,180,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
gef_fild05,124,207,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
gef_fild05,187,249,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
gef_fild05,187,265,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
gef_fild05,130,293,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
gef_fild05,0,0 monster Poring 1002,30
|
||||
gef_fild05,0,0 monster Kobold Archer 1282,10
|
||||
gef_fild05,0,0 monster Wild Rose 1261,50
|
||||
gef_fild05,0,0 monster Dustiness 1114,30
|
||||
gef_fild05,235,322 monster Red Plant 1078,1,180000,90000
|
||||
gef_fild05,238,326 monster Red Plant 1078,1,180000,90000
|
||||
gef_fild05,170,337 monster Red Plant 1078,1,180000,90000
|
||||
gef_fild05,108,317 monster Red Plant 1078,1,180000,90000
|
||||
gef_fild05,56,285 monster Red Plant 1078,1,180000,90000
|
||||
gef_fild05,65,256 monster Red Plant 1078,1,180000,90000
|
||||
gef_fild05,74,228 monster Red Plant 1078,1,180000,90000
|
||||
gef_fild05,50,189 monster Red Plant 1078,1,180000,90000
|
||||
gef_fild05,51,166 monster Red Plant 1078,1,180000,90000
|
||||
gef_fild05,146,161 monster Red Plant 1078,1,180000,90000
|
||||
gef_fild05,153,180 monster Red Plant 1078,1,180000,90000
|
||||
gef_fild05,124,207 monster Red Plant 1078,1,180000,90000
|
||||
gef_fild05,187,249 monster Red Plant 1078,1,180000,90000
|
||||
gef_fild05,187,265 monster Red Plant 1078,1,180000,90000
|
||||
gef_fild05,130,293 monster Red Plant 1078,1,180000,90000
|
||||
|
||||
//==================================================
|
||||
// gef_fild06 - Geffen Field
|
||||
//==================================================
|
||||
gef_fild06,0,0,0,0 monster Kobold 1133,20,0,0,0
|
||||
gef_fild06,0,0,0,0 monster Kobold 1134,10,0,0,0
|
||||
gef_fild06,0,0,0,0 monster Kobold 1135,10,0,0,0
|
||||
gef_fild06,0,0,0,0 monster Petite 1156,50,0,0,0
|
||||
gef_fild06,0,0,0,0 monster Poporing 1031,10,0,0,0
|
||||
gef_fild06,0,0,0,0 monster Mantis 1139,20,0,0,0
|
||||
gef_fild06,0,0,0,0 monster Shining Plant 1083,4,1800000,900000,1
|
||||
gef_fild06,0,0 monster Kobold 1133,20
|
||||
gef_fild06,0,0 monster Kobold 1134,10
|
||||
gef_fild06,0,0 monster Kobold 1135,10
|
||||
gef_fild06,0,0 monster Petite 1156,50
|
||||
gef_fild06,0,0 monster Poporing 1031,10
|
||||
gef_fild06,0,0 monster Mantis 1139,20
|
||||
gef_fild06,0,0 monster Shining Plant 1083,4,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// gef_fild07 - Geffen Field
|
||||
//==================================================
|
||||
gef_fild07,0,0,0,0 monster Poring 1002,20,0,0,0
|
||||
gef_fild07,0,0,0,0 monster Chonchon 1011,30,0,0,0
|
||||
gef_fild07,0,0,0,0 monster Pupa 1008,10,0,0,0
|
||||
gef_fild07,0,0,0,0 monster Fabre 1007,60,0,0,0
|
||||
gef_fild07,122,221,0,0 monster Green Plant 1080,3,360000,180000,1
|
||||
gef_fild07,185,247,0,0 monster Shining Plant 1083,1,1800000,900000,1
|
||||
gef_fild07,269,289,0,0 monster Blue Plant 1079,1,900000,450000,1
|
||||
gef_fild07,269,289,3,3 monster Green Plant 1080,3,360000,180000,1
|
||||
gef_fild07,0,0 monster Poring 1002,20
|
||||
gef_fild07,0,0 monster Chonchon 1011,30
|
||||
gef_fild07,0,0 monster Pupa 1008,10
|
||||
gef_fild07,0,0 monster Fabre 1007,60
|
||||
gef_fild07,122,221 monster Green Plant 1080,3,360000,180000
|
||||
gef_fild07,185,247 monster Shining Plant 1083,1,1800000,900000
|
||||
gef_fild07,269,289 monster Blue Plant 1079,1,900000,450000
|
||||
gef_fild07,269,289,3,3 monster Green Plant 1080,3,360000,180000
|
||||
|
||||
//==================================================
|
||||
// gef_fild08 - Geffen Field
|
||||
//==================================================
|
||||
gef_fild08,0,0,0,0 monster Kobold 1133,20,0,0,0
|
||||
gef_fild08,0,0,0,0 monster Kobold 1134,40,0,0,0
|
||||
gef_fild08,0,0,0,0 monster Kobold 1135,20,0,0,0
|
||||
gef_fild08,0,0,0,0 monster Golem 1040,40,0,0,0
|
||||
gef_fild08,0,0,0,0 monster Steel Chonchon 1042,20,0,0,0
|
||||
gef_fild08,0,0,0,0 monster Poison Spore 1077,20,0,0,0
|
||||
gef_fild08,65,341,0,0 monster Blue Plant 1079,1,900000,450000,1
|
||||
gef_fild08,111,319,0,0 monster Blue Plant 1079,1,900000,450000,1
|
||||
gef_fild08,59,91,0,0 monster Blue Plant 1079,1,900000,450000,1
|
||||
gef_fild08,70,80,0,0 monster Blue Plant 1079,1,900000,450000,1
|
||||
gef_fild08,144,140,0,0 monster Blue Plant 1079,1,900000,450000,1
|
||||
gef_fild08,344,78,0,0 monster Blue Plant 1079,1,900000,450000,1
|
||||
gef_fild08,325,311,0,0 monster Blue Plant 1079,1,900000,450000,1
|
||||
gef_fild08,162,247,0,0 monster Blue Plant 1079,1,900000,450000,1
|
||||
gef_fild08,0,0 monster Kobold 1133,20
|
||||
gef_fild08,0,0 monster Kobold 1134,40
|
||||
gef_fild08,0,0 monster Kobold 1135,20
|
||||
gef_fild08,0,0 monster Golem 1040,40
|
||||
gef_fild08,0,0 monster Steel Chonchon 1042,20
|
||||
gef_fild08,0,0 monster Poison Spore 1077,20
|
||||
gef_fild08,65,341 monster Blue Plant 1079,1,900000,450000
|
||||
gef_fild08,111,319 monster Blue Plant 1079,1,900000,450000
|
||||
gef_fild08,59,91 monster Blue Plant 1079,1,900000,450000
|
||||
gef_fild08,70,80 monster Blue Plant 1079,1,900000,450000
|
||||
gef_fild08,144,140 monster Blue Plant 1079,1,900000,450000
|
||||
gef_fild08,344,78 monster Blue Plant 1079,1,900000,450000
|
||||
gef_fild08,325,311 monster Blue Plant 1079,1,900000,450000
|
||||
gef_fild08,162,247 monster Blue Plant 1079,1,900000,450000
|
||||
|
||||
//==================================================
|
||||
// gef_fild09 - Geffen Field
|
||||
//==================================================
|
||||
gef_fild09,0,0,0,0 monster Ambernite 1094,60,0,0,0
|
||||
gef_fild09,0,0,0,0 monster Poporing 1031,10,0,0,0
|
||||
gef_fild09,0,0,0,0 monster Poison Spore 1077,10,0,0,0
|
||||
gef_fild09,51,43,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
gef_fild09,125,53,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
gef_fild09,148,74,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
gef_fild09,184,66,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
gef_fild09,207,54,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
gef_fild09,245,62,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
gef_fild09,268,45,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
gef_fild09,258,24,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
gef_fild09,325,36,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
gef_fild09,344,51,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
gef_fild09,277,201,5,5 monster Blue Plant 1079,3,900000,450000,1
|
||||
gef_fild09,0,0 monster Ambernite 1094,60
|
||||
gef_fild09,0,0 monster Poporing 1031,10
|
||||
gef_fild09,0,0 monster Poison Spore 1077,10
|
||||
gef_fild09,51,43 monster Red Mushroom 1085,1,180000,90000
|
||||
gef_fild09,125,53 monster Red Mushroom 1085,1,180000,90000
|
||||
gef_fild09,148,74 monster Red Mushroom 1085,1,180000,90000
|
||||
gef_fild09,184,66 monster Red Mushroom 1085,1,180000,90000
|
||||
gef_fild09,207,54 monster Red Mushroom 1085,1,180000,90000
|
||||
gef_fild09,245,62 monster Red Mushroom 1085,1,180000,90000
|
||||
gef_fild09,268,45 monster Red Mushroom 1085,1,180000,90000
|
||||
gef_fild09,258,24 monster Red Mushroom 1085,1,180000,90000
|
||||
gef_fild09,325,36 monster Red Mushroom 1085,1,180000,90000
|
||||
gef_fild09,344,51 monster Red Mushroom 1085,1,180000,90000
|
||||
gef_fild09,277,201,5,5 monster Blue Plant 1079,3,900000,450000
|
||||
|
||||
//==================================================
|
||||
// gef_fild10 - Geffen Field
|
||||
//==================================================
|
||||
gef_fild10,0,0,0,0 boss_monster Orc Lord 1190,1,7200000,600000,0
|
||||
gef_fild10,0,0,0,0 monster Orc Warrior 1023,20,0,0,0
|
||||
gef_fild10,0,0,0,0 monster Orc Lady 1273,70,0,0,0
|
||||
gef_fild10,0,0,0,0 monster Poporing 1031,15,0,0,0
|
||||
gef_fild10,0,0,0,0 monster Orc Baby 1686,5,0,0,0
|
||||
gef_fild10,46,350,5,5 monster Blue Plant 1079,3,900000,450000,1
|
||||
gef_fild10,287,61,5,5 monster Blue Plant 1079,3,900000,450000,1
|
||||
gef_fild10,300,253,5,5 monster Green Plant 1080,3,360000,180000,1
|
||||
gef_fild10,0,0 monster Orc Warrior 1023,20
|
||||
gef_fild10,0,0 monster Orc Lady 1273,70
|
||||
gef_fild10,0,0 monster Poporing 1031,15
|
||||
gef_fild10,0,0 monster Orc Baby 1686,5
|
||||
gef_fild10,46,350,5,5 monster Blue Plant 1079,3,900000,450000
|
||||
gef_fild10,287,61,5,5 monster Blue Plant 1079,3,900000,450000
|
||||
gef_fild10,300,253,5,5 monster Green Plant 1080,3,360000,180000
|
||||
|
||||
//==================================================
|
||||
// gef_fild11 - Geffen Field
|
||||
//==================================================
|
||||
gef_fild11,0,0,0,0 monster Goblin Leader 1299,1,1800000,1200000,0
|
||||
gef_fild11,0,0,0,0 monster Goblin 1122,30,0,0,0
|
||||
gef_fild11,0,0,0,0 monster Goblin 1123,20,0,0,0
|
||||
gef_fild11,0,0,0,0 monster Goblin 1124,20,0,0,0
|
||||
gef_fild11,0,0,0,0 monster Goblin 1125,20,0,0,0
|
||||
gef_fild11,0,0,0,0 monster Goblin 1126,20,0,0,0
|
||||
gef_fild11,0,0,0,0 monster Goblin Archer 1258,20,0,0,0
|
||||
gef_fild11,0,0,0,0 monster Poporing 1031,15,0,0,0
|
||||
gef_fild11,0,0,0,0 monster Rotar Zairo 1392,10,0,0,0
|
||||
gef_fild11,101,277,4,1 monster Black Mushroom 1084,3,360000,180000,1
|
||||
gef_fild11,176,288,1,4 monster Black Mushroom 1084,3,360000,180000,1
|
||||
gef_fild11,253,357,1,4 monster Black Mushroom 1084,3,360000,180000,1
|
||||
gef_fild11,247,249,1,4 monster Black Mushroom 1084,3,360000,180000,1
|
||||
gef_fild11,257,209,1,4 monster Black Mushroom 1084,3,360000,180000,1
|
||||
gef_fild11,174,240,1,3 monster Black Mushroom 1084,3,360000,180000,1
|
||||
gef_fild11,283,100,4,1 monster Black Mushroom 1084,3,360000,180000,1
|
||||
gef_fild11,0,0 monster Goblin Leader 1299,1,1800000,1200000
|
||||
gef_fild11,0,0 monster Goblin 1122,30
|
||||
gef_fild11,0,0 monster Goblin 1123,20
|
||||
gef_fild11,0,0 monster Goblin 1124,20
|
||||
gef_fild11,0,0 monster Goblin 1125,20
|
||||
gef_fild11,0,0 monster Goblin 1126,20
|
||||
gef_fild11,0,0 monster Goblin Archer 1258,20
|
||||
gef_fild11,0,0 monster Poporing 1031,15
|
||||
gef_fild11,0,0 monster Rotar Zairo 1392,10
|
||||
gef_fild11,101,277,4,1 monster Black Mushroom 1084,3,360000,180000
|
||||
gef_fild11,176,288,1,4 monster Black Mushroom 1084,3,360000,180000
|
||||
gef_fild11,253,357,1,4 monster Black Mushroom 1084,3,360000,180000
|
||||
gef_fild11,247,249,1,4 monster Black Mushroom 1084,3,360000,180000
|
||||
gef_fild11,257,209,1,4 monster Black Mushroom 1084,3,360000,180000
|
||||
gef_fild11,174,240,1,3 monster Black Mushroom 1084,3,360000,180000
|
||||
gef_fild11,283,100,4,1 monster Black Mushroom 1084,3,360000,180000
|
||||
|
||||
//==================================================
|
||||
// gef_fild12 - Kordt Forest
|
||||
//==================================================
|
||||
gef_fild12,0,0,0,0 monster Kobold 1133,20,0,0,0
|
||||
gef_fild12,0,0,0,0 monster Kobold 1134,30,0,0,0
|
||||
gef_fild12,0,0,0,0 monster Kobold 1135,30,0,0,0
|
||||
gef_fild12,0,0,0,0 monster Kobold Archer 1282,40,0,0,0
|
||||
gef_fild12,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
gef_fild12,0,0,0,0 monster Kobold Leader 1296,1,1800000,1200000,0
|
||||
gef_fild12,0,0 monster Kobold 1133,20
|
||||
gef_fild12,0,0 monster Kobold 1134,30
|
||||
gef_fild12,0,0 monster Kobold 1135,30
|
||||
gef_fild12,0,0 monster Kobold Archer 1282,40
|
||||
gef_fild12,0,0 monster Poporing 1031,20
|
||||
gef_fild12,0,0 monster Kobold Leader 1296,1,1800000,1200000
|
||||
|
||||
//==================================================
|
||||
// gef_fild13 - Britoniah
|
||||
//==================================================
|
||||
gef_fild13,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
gef_fild13,0,0,0,0 monster Creamy 1018,40,0,0,0
|
||||
gef_fild13,0,0,0,0 monster Ambernite 1094,30,0,0,0
|
||||
gef_fild13,0,0 monster Poporing 1031,20
|
||||
gef_fild13,0,0 monster Creamy 1018,40
|
||||
gef_fild13,0,0 monster Ambernite 1094,30
|
||||
|
||||
//==================================================
|
||||
// gef_fild14 - West Orc Village
|
||||
//==================================================
|
||||
gef_fild14,0,0,0,0 monster Orc Lady 1273,20,0,0,0
|
||||
gef_fild14,0,0 monster Orc Lady 1273,20
|
||||
gef_fild14,0,0,0,0 boss_monster Orc Hero 1087,1,3600000,600000,1
|
||||
gef_fild14,0,0,0,0 monster Orc Warrior 1023,10,0,0,0
|
||||
gef_fild14,0,0,0,0 monster Orc Archer 1189,30,0,0,0
|
||||
gef_fild14,0,0,0,0 monster High Orc 1213,70,0,0,0
|
||||
gef_fild14,0,0 monster Orc Warrior 1023,10
|
||||
gef_fild14,0,0 monster Orc Archer 1189,30
|
||||
gef_fild14,0,0 monster High Orc 1213,70
|
||||
|
||||
@@ -13,10 +13,10 @@
|
||||
//==================================================
|
||||
// gon_fild01 - Gonryun Field
|
||||
//==================================================
|
||||
gon_fild01,0,0,0,0 monster Baby Leopard 1415,40,600000,300000,0
|
||||
gon_fild01,0,0,0,0 monster Zipper Bear 1417,20,0,0,0
|
||||
gon_fild01,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
gon_fild01,0,0,0,0 monster Dumpling Child 1409,30,0,0,0
|
||||
gon_fild01,0,0,0,0 monster Hermit Plant 1413,2,630000,330000,0
|
||||
gon_fild01,0,0,0,0 monster Green Plant 1080,5,0,0,0
|
||||
gon_fild01,0,0,0,0 monster Shining Plant 1083,1,0,0,0
|
||||
gon_fild01,0,0 monster Baby Leopard 1415,40,600000,300000
|
||||
gon_fild01,0,0 monster Zipper Bear 1417,20
|
||||
gon_fild01,0,0 monster Poporing 1031,20
|
||||
gon_fild01,0,0 monster Dumpling Child 1409,30
|
||||
gon_fild01,0,0 monster Hermit Plant 1413,2,630000,330000
|
||||
gon_fild01,0,0 monster Green Plant 1080,5
|
||||
gon_fild01,0,0 monster Shining Plant 1083,1
|
||||
|
||||
@@ -22,115 +22,115 @@
|
||||
//==================================================
|
||||
// hu_fild01 - Hugel Field
|
||||
//==================================================
|
||||
hu_fild01,0,0,0,0 monster Breeze 1692,5,900000,300000,0
|
||||
hu_fild01,0,0,0,0 monster Plasma 1697,5,900000,300000,0
|
||||
hu_fild01,0,0,0,0 monster Plasma 1695,5,900000,300000,0
|
||||
hu_fild01,0,0,0,0 monster Plasma 1696,5,900000,300000,0
|
||||
hu_fild01,0,0,0,0 monster Plasma 1694,5,900000,300000,0
|
||||
hu_fild01,0,0,0,0 monster Plasma 1693,5,900000,300000,0
|
||||
hu_fild01,0,0,0,0 monster Geographer 1368,30,300000,0,0
|
||||
hu_fild01,0,0,0,0 monster Demon Pungus 1378,30,1200000,600000,0
|
||||
hu_fild01,0,0 monster Breeze 1692,5,900000,300000
|
||||
hu_fild01,0,0 monster Plasma 1697,5,900000,300000
|
||||
hu_fild01,0,0 monster Plasma 1695,5,900000,300000
|
||||
hu_fild01,0,0 monster Plasma 1696,5,900000,300000
|
||||
hu_fild01,0,0 monster Plasma 1694,5,900000,300000
|
||||
hu_fild01,0,0 monster Plasma 1693,5,900000,300000
|
||||
hu_fild01,0,0 monster Geographer 1368,30,300000
|
||||
hu_fild01,0,0 monster Demon Pungus 1378,30,1200000,600000
|
||||
|
||||
//==================================================
|
||||
// hu_fild02 - Hugel Field
|
||||
//==================================================
|
||||
hu_fild02,0,0,0,0 monster Anopheles 1627,30,0,0,0
|
||||
hu_fild02,0,0,0,0 monster Novus 1715,20,0,0,0
|
||||
hu_fild02,0,0,0,0 monster Novus 1718,40,0,0,0
|
||||
hu_fild02,0,0,0,0 monster Breeze 1692,10,0,0,0
|
||||
hu_fild02,0,0,0,0 monster Geographer 1368,10,600000,120000,0
|
||||
hu_fild02,0,0,0,0 monster Grove 1687,20,600000,120000,0
|
||||
hu_fild02,85,85,53,47 monster Demon Pungus 1378,3,300000,120000,0
|
||||
hu_fild02,85,85,37,47 monster Novus 1715,1,300000,120000,0
|
||||
hu_fild02,85,85,37,47 monster Novus 1718,1,300000,120000,0
|
||||
hu_fild02,0,0 monster Anopheles 1627,30
|
||||
hu_fild02,0,0 monster Novus 1715,20
|
||||
hu_fild02,0,0 monster Novus 1718,40
|
||||
hu_fild02,0,0 monster Breeze 1692,10
|
||||
hu_fild02,0,0 monster Geographer 1368,10,600000,120000
|
||||
hu_fild02,0,0 monster Grove 1687,20,600000,120000
|
||||
hu_fild02,85,85,53,47 monster Demon Pungus 1378,3,300000,120000
|
||||
hu_fild02,85,85,37,47 monster Novus 1715,1,300000,120000
|
||||
hu_fild02,85,85,37,47 monster Novus 1718,1,300000,120000
|
||||
|
||||
//==================================================
|
||||
// hu_fild03 - Hugel Field
|
||||
//==================================================
|
||||
hu_fild03,0,0,0,0 monster Grove 1687,70,0,0,0
|
||||
hu_fild03,0,0,0,0 monster Novus 1715,30,0,0,0
|
||||
hu_fild03,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
hu_fild03,0,0,0,0 monster Thief Bug 1051,10,0,0,0
|
||||
hu_fild03,40,157,3,3 monster Red Mushroom 1085,2,300000,0,0
|
||||
hu_fild03,219,211,7,5 monster Red Mushroom 1085,3,300000,0,0
|
||||
hu_fild03,285,230,5,4 monster Red Mushroom 1085,2,300000,0,0
|
||||
hu_fild03,247,118,9,4 monster Red Mushroom 1085,3,300000,0,0
|
||||
hu_fild03,96,156,5,5 monster Black Mushroom 1084,3,300000,0,0
|
||||
hu_fild03,170,220,5,4 monster Black Mushroom 1084,3,300000,0,0
|
||||
hu_fild03,212,328,5,4 monster Black Mushroom 1084,2,300000,0,0
|
||||
hu_fild03,231,151,3,3 monster Black Mushroom 1084,2,300000,0,0
|
||||
hu_fild03,0,0 monster Grove 1687,70
|
||||
hu_fild03,0,0 monster Novus 1715,30
|
||||
hu_fild03,0,0 monster Poporing 1031,20
|
||||
hu_fild03,0,0 monster Thief Bug 1051,10
|
||||
hu_fild03,40,157,3,3 monster Red Mushroom 1085,2,300000
|
||||
hu_fild03,219,211,7,5 monster Red Mushroom 1085,3,300000
|
||||
hu_fild03,285,230,5,4 monster Red Mushroom 1085,2,300000
|
||||
hu_fild03,247,118,9,4 monster Red Mushroom 1085,3,300000
|
||||
hu_fild03,96,156,5,5 monster Black Mushroom 1084,3,300000
|
||||
hu_fild03,170,220,5,4 monster Black Mushroom 1084,3,300000
|
||||
hu_fild03,212,328,5,4 monster Black Mushroom 1084,2,300000
|
||||
hu_fild03,231,151,3,3 monster Black Mushroom 1084,2,300000
|
||||
|
||||
//==================================================
|
||||
// hu_fild04 - Hugel Field
|
||||
//==================================================
|
||||
hu_fild04,0,0,0,0 monster Breeze 1692,20,0,0,0
|
||||
hu_fild04,0,0,0,0 monster Deleter 1384,10,420000,24000,0
|
||||
hu_fild04,0,0,0,0 monster Deleter 1385,10,420000,240000,0
|
||||
hu_fild04,0,0,0,0 monster Petite 1155,10,0,0,0
|
||||
hu_fild04,0,0,0,0 monster Petite 1156,60,0,0,0
|
||||
hu_fild04,0,0,0,0 monster Novus 1715,20,0,0,0
|
||||
hu_fild04,0,0,0,0 monster Novus 1718,10,0,0,0
|
||||
hu_fild04,0,0,0,0 monster Anopheles 1627,30,0,0,0
|
||||
hu_fild04,0,0,0,0 monster Grove 1687,20,0,0,0
|
||||
hu_fild04,60,149,35,122 monster Sleeper 1386,7,600000,300000,0
|
||||
hu_fild04,0,0,0,0 monster Green Plant 1080,10,0,0,0
|
||||
hu_fild04,0,0,0,0 monster Yellow Plant 1081,10,0,0,0
|
||||
hu_fild04,206,210,30,18 monster Blue Plant 1079,4,120000,600000,0
|
||||
hu_fild04,206,120,10,10 monster Blue Plant 1079,2,120000,600000,0
|
||||
hu_fild04,0,0 monster Breeze 1692,20
|
||||
hu_fild04,0,0 monster Deleter 1384,10,420000,24000
|
||||
hu_fild04,0,0 monster Deleter 1385,10,420000,240000
|
||||
hu_fild04,0,0 monster Petite 1155,10
|
||||
hu_fild04,0,0 monster Petite 1156,60
|
||||
hu_fild04,0,0 monster Novus 1715,20
|
||||
hu_fild04,0,0 monster Novus 1718,10
|
||||
hu_fild04,0,0 monster Anopheles 1627,30
|
||||
hu_fild04,0,0 monster Grove 1687,20
|
||||
hu_fild04,60,149,35,122 monster Sleeper 1386,7,600000,300000
|
||||
hu_fild04,0,0 monster Green Plant 1080,10
|
||||
hu_fild04,0,0 monster Yellow Plant 1081,10
|
||||
hu_fild04,206,210,30,18 monster Blue Plant 1079,4,120000,600000
|
||||
hu_fild04,206,120,10,10 monster Blue Plant 1079,2,120000,600000
|
||||
|
||||
//==================================================
|
||||
// hu_fild05 - Hugel Field
|
||||
//==================================================
|
||||
hu_fild05,185,208,15,24 monster Anopheles 1627,3,42000,30000,0
|
||||
hu_fild05,112,272,62,82 monster Grove 1687,15,0,0,0
|
||||
hu_fild05,112,272,62,82 monster Novus 1715,2,0,0,0
|
||||
hu_fild05,112,272,62,82 monster Novus 1718,2,0,0,0
|
||||
hu_fild05,112,272,62,82 monster Anopheles 1627,10,0,0,0
|
||||
hu_fild05,112,272,62,82 monster Mutant Dragonoid 1262,1,24000000,1800000,0
|
||||
hu_fild05,276,302,93,60 monster Grove 1687,15,0,0,0
|
||||
hu_fild05,276,302,93,60 monster Novus 1715,2,0,0,0
|
||||
hu_fild05,276,302,93,60 monster Novus 1718,1,0,0,0
|
||||
hu_fild05,276,302,93,60 monster Anopheles 1627,10,0,0,0
|
||||
hu_fild05,276,302,93,60 monster Mutant Dragonoid 1262,1,24000000,1800000,0
|
||||
hu_fild05,286,144,82,90 monster Grove 1687,15,0,0,0
|
||||
hu_fild05,286,144,82,90 monster Novus 1715,2,0,0,0
|
||||
hu_fild05,286,144,82,90 monster Novus 1718,2,0,0,0
|
||||
hu_fild05,286,144,82,90 monster Anopheles 1627,10,0,0,0
|
||||
hu_fild05,286,144,82,90 monster Mutant Dragonoid 1262,1,24000000,1800000,0
|
||||
hu_fild05,118,106,80,70 monster Grove 1687,15,0,0,0
|
||||
hu_fild05,118,106,80,70 monster Novus 1715,2,0,0,0
|
||||
hu_fild05,118,106,80,70 monster Novus 1718,1,0,0,0
|
||||
hu_fild05,118,106,80,70 monster Anopheles 1627,10,0,0,0
|
||||
hu_fild05,118,106,80,70 monster Mutant Dragonoid 1262,1,24000000,1800000,0
|
||||
hu_fild05,0,0,0,0 monster Anopheles 1627,10,0,0,0
|
||||
hu_fild05,0,0,0,0 monster Dragon Egg 1721,1,7200000,1800000,0
|
||||
hu_fild05,196,196,5,5 monster Dragon Egg 1721,1,7200000,1800000,0
|
||||
hu_fild05,340,50,10,10 monster Dragon Egg 1721,1,7200000,1800000,0
|
||||
hu_fild05,320,325,5,5 monster Dragon Egg 1721,1,7200000,1800000,0
|
||||
hu_fild05,185,208,15,24 monster Anopheles 1627,3,42000,30000
|
||||
hu_fild05,112,272,62,82 monster Grove 1687,15
|
||||
hu_fild05,112,272,62,82 monster Novus 1715,2
|
||||
hu_fild05,112,272,62,82 monster Novus 1718,2
|
||||
hu_fild05,112,272,62,82 monster Anopheles 1627,10
|
||||
hu_fild05,112,272,62,82 monster Mutant Dragonoid 1262,1,24000000,1800000
|
||||
hu_fild05,276,302,93,60 monster Grove 1687,15
|
||||
hu_fild05,276,302,93,60 monster Novus 1715,2
|
||||
hu_fild05,276,302,93,60 monster Novus 1718,1
|
||||
hu_fild05,276,302,93,60 monster Anopheles 1627,10
|
||||
hu_fild05,276,302,93,60 monster Mutant Dragonoid 1262,1,24000000,1800000
|
||||
hu_fild05,286,144,82,90 monster Grove 1687,15
|
||||
hu_fild05,286,144,82,90 monster Novus 1715,2
|
||||
hu_fild05,286,144,82,90 monster Novus 1718,2
|
||||
hu_fild05,286,144,82,90 monster Anopheles 1627,10
|
||||
hu_fild05,286,144,82,90 monster Mutant Dragonoid 1262,1,24000000,1800000
|
||||
hu_fild05,118,106,80,70 monster Grove 1687,15
|
||||
hu_fild05,118,106,80,70 monster Novus 1715,2
|
||||
hu_fild05,118,106,80,70 monster Novus 1718,1
|
||||
hu_fild05,118,106,80,70 monster Anopheles 1627,10
|
||||
hu_fild05,118,106,80,70 monster Mutant Dragonoid 1262,1,24000000,1800000
|
||||
hu_fild05,0,0 monster Anopheles 1627,10
|
||||
hu_fild05,0,0 monster Dragon Egg 1721,1,7200000,1800000
|
||||
hu_fild05,196,196,5,5 monster Dragon Egg 1721,1,7200000,1800000
|
||||
hu_fild05,340,50,10,10 monster Dragon Egg 1721,1,7200000,1800000
|
||||
hu_fild05,320,325,5,5 monster Dragon Egg 1721,1,7200000,1800000
|
||||
|
||||
//==================================================
|
||||
// hu_fild06 - Hugel Field
|
||||
//==================================================
|
||||
hu_fild06,0,0,0,0 monster Holden 1628,50,0,0,0
|
||||
hu_fild06,0,0,0,0 monster Caramel 1103,20,0,0,0
|
||||
hu_fild06,0,0,0,0 monster Poring 1002,10,0,0,0
|
||||
hu_fild06,0,0,0,0 monster Poporing 1031,10,0,0,0
|
||||
hu_fild06,0,0,0,0 monster Metaling 1613,10,0,0,0
|
||||
hu_fild06,234,251,14,120 monster Green Plant 1080,10,600000,0,0
|
||||
hu_fild06,234,251,14,120 monster Yellow Plant 1081,10,600000,0,0
|
||||
hu_fild06,0,0 monster Holden 1628,50
|
||||
hu_fild06,0,0 monster Caramel 1103,20
|
||||
hu_fild06,0,0 monster Poring 1002,10
|
||||
hu_fild06,0,0 monster Poporing 1031,10
|
||||
hu_fild06,0,0 monster Metaling 1613,10
|
||||
hu_fild06,234,251,14,120 monster Green Plant 1080,10,600000
|
||||
hu_fild06,234,251,14,120 monster Yellow Plant 1081,10,600000
|
||||
|
||||
//==================================================
|
||||
// hu_fild07 - Hugel Field
|
||||
//==================================================
|
||||
hu_fild07,0,0,0,0 monster Breeze 1692,10,0,0,0
|
||||
hu_fild07,0,0,0,0 monster Deleter 1384,10,420000,24000,0
|
||||
hu_fild07,0,0,0,0 monster Deleter 1385,10,420000,240000,0
|
||||
hu_fild07,0,0,0,0 monster Petite 1155,60,0,0,0
|
||||
hu_fild07,0,0,0,0 monster Petite 1156,20,0,0,0
|
||||
hu_fild07,0,0,0,0 monster Novus 1715,10,0,0,0
|
||||
hu_fild07,0,0,0,0 monster Novus 1718,10,0,0,0
|
||||
hu_fild07,0,0,0,0 monster Anopheles 1627,30,0,0,0
|
||||
hu_fild07,0,0,0,0 monster Grove 1687,10,0,0,0
|
||||
hu_fild07,0,0,0,0 monster Geographer 1368,20,0,0,0
|
||||
hu_fild07,0,0,0,0 monster Demon Pungus 1378,10,0,0,0
|
||||
hu_fild07,0,0,0,0 monster Yellow Plant 1081,20,0,0,0
|
||||
hu_fild07,0,0 monster Breeze 1692,10
|
||||
hu_fild07,0,0 monster Deleter 1384,10,420000,24000
|
||||
hu_fild07,0,0 monster Deleter 1385,10,420000,240000
|
||||
hu_fild07,0,0 monster Petite 1155,60
|
||||
hu_fild07,0,0 monster Petite 1156,20
|
||||
hu_fild07,0,0 monster Novus 1715,10
|
||||
hu_fild07,0,0 monster Novus 1718,10
|
||||
hu_fild07,0,0 monster Anopheles 1627,30
|
||||
hu_fild07,0,0 monster Grove 1687,10
|
||||
hu_fild07,0,0 monster Geographer 1368,20
|
||||
hu_fild07,0,0 monster Demon Pungus 1378,10
|
||||
hu_fild07,0,0 monster Yellow Plant 1081,20
|
||||
|
||||
@@ -19,33 +19,33 @@
|
||||
//==================================================
|
||||
// lhz_fild01 - Lighthalzen Field
|
||||
//==================================================
|
||||
lhz_fild01,0,0,0,0 monster Metaling 1613,70,0,0,0
|
||||
lhz_fild01,0,0,0,0 monster Holden 1628,30,0,0,0
|
||||
lhz_fild01,0,0,0,0 monster Caramel 1103,20,0,0,0
|
||||
lhz_fild01,0,0,0,0 monster Red Plant 1078,10,60000,30000,0
|
||||
lhz_fild01,0,0,0,0 monster Yellow Plant 1081,10,60000,30000,0
|
||||
lhz_fild01,0,0,0,0 monster Green Plant 1080,10,60000,30000,0
|
||||
lhz_fild01,0,0 monster Metaling 1613,70
|
||||
lhz_fild01,0,0 monster Holden 1628,30
|
||||
lhz_fild01,0,0 monster Caramel 1103,20
|
||||
lhz_fild01,0,0 monster Red Plant 1078,10,60000,30000
|
||||
lhz_fild01,0,0 monster Yellow Plant 1081,10,60000,30000
|
||||
lhz_fild01,0,0 monster Green Plant 1080,10,60000,30000
|
||||
|
||||
//==================================================
|
||||
// lhz_fild02 - Lighthalzen Field (Grim Ripper's Valley)
|
||||
//==================================================
|
||||
lhz_fild02,0,0,0,0 monster Metaling 1613,50,0,0,0
|
||||
lhz_fild02,0,0,0,0 monster Caramel 1103,30,0,0,0
|
||||
lhz_fild02,0,0,0,0 monster Horn 1128,10,0,0,0
|
||||
lhz_fild02,0,0,0,0 monster Holden 1628,10,0,0,0
|
||||
lhz_fild02,0,0,0,0 monster Anopheles 1627,10,0,0,0
|
||||
lhz_fild02,0,0,0,0 monster Yellow Plant 1081,15,60000,30000,0
|
||||
lhz_fild02,0,0,0,0 monster Green Plant 1080,15,60000,30000,0
|
||||
lhz_fild02,0,0 monster Metaling 1613,50
|
||||
lhz_fild02,0,0 monster Caramel 1103,30
|
||||
lhz_fild02,0,0 monster Horn 1128,10
|
||||
lhz_fild02,0,0 monster Holden 1628,10
|
||||
lhz_fild02,0,0 monster Anopheles 1627,10
|
||||
lhz_fild02,0,0 monster Yellow Plant 1081,15,60000,30000
|
||||
lhz_fild02,0,0 monster Green Plant 1080,15,60000,30000
|
||||
|
||||
//==================================================
|
||||
// lhz_fild03 - Lighthalzen Field
|
||||
//==================================================
|
||||
lhz_fild03,262,233,74,140 monster Stem Worm 1215,50,600000,0,0
|
||||
lhz_fild03,262,233,74,140 monster Metaling 1613,20,0,0,0
|
||||
lhz_fild03,127,248,45,140 monster Caramel 1103,20,0,0,0
|
||||
lhz_fild03,127,248,45,140 monster Horn 1128,10,0,0,0
|
||||
lhz_fild03,127,248,45,140 monster Rafflesia 1162,5,0,0,0
|
||||
lhz_fild03,0,0,0,0 monster Anopheles 1627,20,0,0,1
|
||||
lhz_fild03,0,0,0,0 monster Hill Wind 1680,10,0,0,1
|
||||
lhz_fild03,0,0,0,0 monster Red Plant 1078,10,60000,30000,0
|
||||
lhz_fild03,0,0,0,0 monster Green Plant 1080,10,60000,30000,0
|
||||
lhz_fild03,262,233,74,140 monster Stem Worm 1215,50,600000
|
||||
lhz_fild03,262,233,74,140 monster Metaling 1613,20
|
||||
lhz_fild03,127,248,45,140 monster Caramel 1103,20
|
||||
lhz_fild03,127,248,45,140 monster Horn 1128,10
|
||||
lhz_fild03,127,248,45,140 monster Rafflesia 1162,5
|
||||
lhz_fild03,0,0 monster Anopheles 1627,20
|
||||
lhz_fild03,0,0 monster Hill Wind 1680,10
|
||||
lhz_fild03,0,0 monster Red Plant 1078,10,60000,30000
|
||||
lhz_fild03,0,0 monster Green Plant 1080,10,60000,30000
|
||||
|
||||
@@ -14,20 +14,20 @@
|
||||
//==================================================
|
||||
// lou_fild01 - Louyang Field
|
||||
//==================================================
|
||||
lou_fild01,224,315,100,50 monster Bigfoot 1060,7,0,0,0
|
||||
lou_fild01,203,225,110,35 monster Bigfoot 1060,4,60000,30000,1
|
||||
lou_fild01,273,128,75,50 monster Bigfoot 1060,4,0,0,0
|
||||
lou_fild01,224,315,100,50 monster Caramel 1103,7,0,0,0
|
||||
lou_fild01,203,225,110,35 monster Caramel 1103,7,0,0,0
|
||||
lou_fild01,273,128,75,50 monster Caramel 1103,7,0,0,0
|
||||
lou_fild01,224,315,100,50 monster Mantis 1139,10,0,0,0
|
||||
lou_fild01,203,225,110,35 monster Mantis 1139,10,0,0,0
|
||||
lou_fild01,273,128,75,50 monster Mantis 1139,10,0,0,0
|
||||
lou_fild01,224,315,100,50 monster Mi Gao 1516,8,0,0,0
|
||||
lou_fild01,203,225,110,35 monster Mi Gao 1516,15,60000,30000,1
|
||||
lou_fild01,273,128,75,50 monster Mi Gao 1516,7,0,0,0
|
||||
lou_fild01,224,315,100,50 monster Anacondaq 1030,2,0,0,0
|
||||
lou_fild01,203,225,110,35 monster Anacondaq 1030,1,0,0,0
|
||||
lou_fild01,273,128,75,50 monster Anacondaq 1030,2,0,0,0
|
||||
lou_fild01,0,0,0,0 monster Black Mushroom 1084,5,0,0,0
|
||||
lou_fild01,0,0,0,0 monster Yellow Plant 1081,10,0,0,0
|
||||
lou_fild01,224,315,100,50 monster Bigfoot 1060,7
|
||||
lou_fild01,203,225,110,35 monster Bigfoot 1060,4,60000,30000
|
||||
lou_fild01,273,128,75,50 monster Bigfoot 1060,4
|
||||
lou_fild01,224,315,100,50 monster Caramel 1103,7
|
||||
lou_fild01,203,225,110,35 monster Caramel 1103,7
|
||||
lou_fild01,273,128,75,50 monster Caramel 1103,7
|
||||
lou_fild01,224,315,100,50 monster Mantis 1139,10
|
||||
lou_fild01,203,225,110,35 monster Mantis 1139,10
|
||||
lou_fild01,273,128,75,50 monster Mantis 1139,10
|
||||
lou_fild01,224,315,100,50 monster Mi Gao 1516,8
|
||||
lou_fild01,203,225,110,35 monster Mi Gao 1516,15,60000,30000
|
||||
lou_fild01,273,128,75,50 monster Mi Gao 1516,7
|
||||
lou_fild01,224,315,100,50 monster Anacondaq 1030,2
|
||||
lou_fild01,203,225,110,35 monster Anacondaq 1030,1
|
||||
lou_fild01,273,128,75,50 monster Anacondaq 1030,2
|
||||
lou_fild01,0,0 monster Black Mushroom 1084,5
|
||||
lou_fild01,0,0 monster Yellow Plant 1081,10
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
//==================================================
|
||||
// xmas_fild01 - Lutie Field
|
||||
//==================================================
|
||||
xmas_fild01,0,0,0,0 monster Marin 1242,35,0,0,0
|
||||
xmas_fild01,0,0,0,0 monster Sasquatch 1243,20,0,0,0
|
||||
xmas_fild01,0,0,0,0 monster Garm Baby 1515,1,1800000,0,0
|
||||
xmas_fild01,0,0 monster Marin 1242,35
|
||||
xmas_fild01,0,0 monster Sasquatch 1243,20
|
||||
xmas_fild01,0,0 monster Garm Baby 1515,1,1800000
|
||||
xmas_fild01,0,0,0,0 boss_monster Garm 1252,1,7200000,600000,1
|
||||
|
||||
@@ -15,22 +15,22 @@
|
||||
//============================================================
|
||||
// man_fild01 - Manuk Field
|
||||
//============================================================
|
||||
man_fild01,0,0,0,0 monster Nepenthes 1988,105,0,0,0
|
||||
man_fild01,0,0,0,0 monster Hillthion 1989,10,0,0,0
|
||||
man_fild01,0,0,0,0 monster Centipede Larva 1999,30,0,0,0
|
||||
man_fild01,0,0,0,0 monster Centipede 1987,2,0,0,0
|
||||
man_fild01,0,0 monster Nepenthes 1988,105
|
||||
man_fild01,0,0 monster Hillthion 1989,10
|
||||
man_fild01,0,0 monster Centipede Larva 1999,30
|
||||
man_fild01,0,0 monster Centipede 1987,2
|
||||
|
||||
//============================================================
|
||||
// man_fild02 - Manuk Field
|
||||
//============================================================
|
||||
man_fild02,0,0,0,0 monster Bradium Golem 2024,50,0,0,0
|
||||
man_fild02,0,0,0,0 monster Centipede 1987,35,0,0,0
|
||||
man_fild02,0,0,0,0 monster Tatacho 1986,25,0,0,0
|
||||
man_fild02,0,0 monster Bradium Golem 2024,50
|
||||
man_fild02,0,0 monster Centipede 1987,35
|
||||
man_fild02,0,0 monster Tatacho 1986,25
|
||||
|
||||
//============================================================
|
||||
// man_fild03 - Manuk Field
|
||||
//============================================================
|
||||
man_fild03,0,0,0,0 monster Hillthion 1989,25,0,0,0
|
||||
man_fild03,0,0,0,0 monster Tatacho 1986,25,0,0,0
|
||||
man_fild03,0,0,0,0 monster Centipede 1987,25,0,0,0
|
||||
man_fild03,0,0,0,0 monster Hardrock Mammoth 1990,1,14400000,0,0
|
||||
man_fild03,0,0 monster Hillthion 1989,25
|
||||
man_fild03,0,0 monster Tatacho 1986,25
|
||||
man_fild03,0,0 monster Centipede 1987,25
|
||||
man_fild03,0,0 monster Hardrock Mammoth 1990,1,14400000
|
||||
|
||||
@@ -13,238 +13,238 @@
|
||||
//==================================================
|
||||
// mjolnir_01 - Mt.Mjolnir
|
||||
//==================================================
|
||||
mjolnir_01,0,0,0,0 monster Horn 1128,20,0,0,0
|
||||
mjolnir_01,0,0,0,0 monster Creamy 1018,20,0,0,0
|
||||
mjolnir_01,0,0,0,0 monster Coco 1104,70,0,0,0
|
||||
mjolnir_01,0,0,0,0 monster Stainer 1174,20,0,0,0
|
||||
mjolnir_01,0,0,0,0 monster Caramel 1103,40,0,0,0
|
||||
mjolnir_01,75,85,25,25 monster Shining Plant 1083,1,1800000,900000,1
|
||||
mjolnir_01,78,219,25,25 monster Shining Plant 1083,1,1800000,900000,1
|
||||
mjolnir_01,75,85,25,25 monster Green Plant 1080,5,180000,90000,1
|
||||
mjolnir_01,78,219,25,25 monster Green Plant 1080,5,180000,90000,1
|
||||
mjolnir_01,311,271,25,25 monster Blue Plant 1079,5,360000,180000,1
|
||||
mjolnir_01,0,0 monster Horn 1128,20
|
||||
mjolnir_01,0,0 monster Creamy 1018,20
|
||||
mjolnir_01,0,0 monster Coco 1104,70
|
||||
mjolnir_01,0,0 monster Stainer 1174,20
|
||||
mjolnir_01,0,0 monster Caramel 1103,40
|
||||
mjolnir_01,75,85,25,25 monster Shining Plant 1083,1,1800000,900000
|
||||
mjolnir_01,78,219,25,25 monster Shining Plant 1083,1,1800000,900000
|
||||
mjolnir_01,75,85,25,25 monster Green Plant 1080,5,180000,90000
|
||||
mjolnir_01,78,219,25,25 monster Green Plant 1080,5,180000,90000
|
||||
mjolnir_01,311,271,25,25 monster Blue Plant 1079,5,360000,180000
|
||||
|
||||
//==================================================
|
||||
// mjolnir_02 - Mt.Mjolnir
|
||||
//==================================================
|
||||
mjolnir_02,0,0,0,0 monster Hornet 1004,30,0,0,0
|
||||
mjolnir_02,0,0,0,0 monster Creamy 1018,20,0,0,0
|
||||
mjolnir_02,0,0,0,0 monster Petite 1155,50,0,0,0
|
||||
mjolnir_02,0,0,0,0 monster Poporing 1031,10,0,0,0
|
||||
mjolnir_02,0,0,0,0 monster Flora 1118,30,0,0,0
|
||||
mjolnir_02,86,270,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,80,211,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,86,270,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,86,180,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,107,128,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,79,49,0,0 monster Blue Plant 1079,1,360000,180000,1
|
||||
mjolnir_02,133,80,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
mjolnir_02,191,71,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,237,55,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,292,49,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,349,45,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,282,101,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,325,146,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,318,205,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
mjolnir_02,275,199,0,0 monster Blue Plant 1079,1,360000,180000,1
|
||||
mjolnir_02,335,301,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,312,342,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,325,146,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,257,292,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,204,263,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,193,304,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,145,282,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,156,254,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
mjolnir_02,112,268,0,0 monster Blue Plant 1079,1,360000,180000,1
|
||||
mjolnir_02,122,195,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
mjolnir_02,167,160,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,325,146,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,223,110,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
mjolnir_02,273,74,0,0 monster Blue Plant 1079,1,360000,180000,1
|
||||
mjolnir_02,254,155,0,0 monster Red Plant 1078,1,180000,90000,1
|
||||
mjolnir_02,243,208,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,273,240,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,289,276,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_02,188,192,10,10 monster Blue Plant 1079,2,360000,180000,1
|
||||
mjolnir_02,0,0 monster Hornet 1004,30
|
||||
mjolnir_02,0,0 monster Creamy 1018,20
|
||||
mjolnir_02,0,0 monster Petite 1155,50
|
||||
mjolnir_02,0,0 monster Poporing 1031,10
|
||||
mjolnir_02,0,0 monster Flora 1118,30
|
||||
mjolnir_02,86,270 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,80,211 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,86,270 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,86,180 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,107,128 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,79,49 monster Blue Plant 1079,1,360000,180000
|
||||
mjolnir_02,133,80 monster Red Plant 1078,1,180000,90000
|
||||
mjolnir_02,191,71 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,237,55 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,292,49 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,349,45 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,282,101 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,325,146 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,318,205 monster Red Plant 1078,1,180000,90000
|
||||
mjolnir_02,275,199 monster Blue Plant 1079,1,360000,180000
|
||||
mjolnir_02,335,301 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,312,342 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,325,146 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,257,292 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,204,263 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,193,304 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,145,282 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,156,254 monster Red Plant 1078,1,180000,90000
|
||||
mjolnir_02,112,268 monster Blue Plant 1079,1,360000,180000
|
||||
mjolnir_02,122,195 monster Red Plant 1078,1,180000,90000
|
||||
mjolnir_02,167,160 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,325,146 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,223,110 monster Red Plant 1078,1,180000,90000
|
||||
mjolnir_02,273,74 monster Blue Plant 1079,1,360000,180000
|
||||
mjolnir_02,254,155 monster Red Plant 1078,1,180000,90000
|
||||
mjolnir_02,243,208 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,273,240 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,289,276 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_02,188,192,10,10 monster Blue Plant 1079,2,360000,180000
|
||||
|
||||
//==================================================
|
||||
// mjolnir_03 - Mt.Mjolnir
|
||||
//==================================================
|
||||
mjolnir_03,0,0,0,0 monster Mantis 1139,30,0,0,0
|
||||
mjolnir_03,0,0,0,0 monster Creamy 1018,10,0,0,0
|
||||
mjolnir_03,0,0,0,0 monster Petite 1156,70,0,0,0
|
||||
mjolnir_03,0,0,0,0 monster Poporing 1031,10,0,0,0
|
||||
mjolnir_03,0,0,0,0 monster Flora 1118,10,0,0,0
|
||||
mjolnir_03,0,0,0,0 monster Argos 1100,20,0,0,0
|
||||
mjolnir_03,211,216,10,10 monster Shining Plant 1083,1,1800000,900000,1
|
||||
mjolnir_03,280,252,10,10 monster Shining Plant 1083,1,1800000,900000,1
|
||||
mjolnir_03,135,94,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_03,199,97,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_03,262,98,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_03,322,144,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_03,356,213,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_03,352,288,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_03,324,355,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_03,255,349,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_03,168,341,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_03,128,319,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_03,77,271,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_03,66,219,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_03,91,161,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_03,0,0 monster Mantis 1139,30
|
||||
mjolnir_03,0,0 monster Creamy 1018,10
|
||||
mjolnir_03,0,0 monster Petite 1156,70
|
||||
mjolnir_03,0,0 monster Poporing 1031,10
|
||||
mjolnir_03,0,0 monster Flora 1118,10
|
||||
mjolnir_03,0,0 monster Argos 1100,20
|
||||
mjolnir_03,211,216,10,10 monster Shining Plant 1083,1,1800000,900000
|
||||
mjolnir_03,280,252,10,10 monster Shining Plant 1083,1,1800000,900000
|
||||
mjolnir_03,135,94 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_03,199,97 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_03,262,98 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_03,322,144 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_03,356,213 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_03,352,288 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_03,324,355 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_03,255,349 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_03,168,341 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_03,128,319 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_03,77,271 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_03,66,219 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_03,91,161 monster Green Plant 1080,1,180000,90000
|
||||
|
||||
//==================================================
|
||||
// mjolnir_04 - Mt.Mjolnir
|
||||
//==================================================
|
||||
mjolnir_04,0,0,0,0 monster Mantis 1139,20,0,0,0
|
||||
mjolnir_04,0,0,0,0 monster Hornet 1004,70,0,0,0
|
||||
mjolnir_04,0,0,0,0 monster Poporing 1031,10,0,0,0
|
||||
mjolnir_04,0,0,0,0 monster Flora 1118,30,0,0,0
|
||||
mjolnir_04,0,0,0,0 monster Argiope 1099,20,0,0,0
|
||||
mjolnir_04,0,0 monster Mantis 1139,20
|
||||
mjolnir_04,0,0 monster Hornet 1004,70
|
||||
mjolnir_04,0,0 monster Poporing 1031,10
|
||||
mjolnir_04,0,0 monster Flora 1118,30
|
||||
mjolnir_04,0,0 monster Argiope 1099,20
|
||||
mjolnir_04,0,0,0,0 boss_monster Mistress 1059,1,7200000,600000,1
|
||||
mjolnir_04,200,200,30,30 monster Shining Plant 1083,3,1800000,900000,1
|
||||
mjolnir_04,177,34,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_04,122,28,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_04,76,53,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_04,72,99,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_04,177,34,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_04,43,143,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_04,31,194,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_04,42,252,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_04,64,323,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_04,107,357,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_04,173,369,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_04,286,357,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_04,356,292,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_04,362,201,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_04,332,122,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_04,269,39,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_04,205,33,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_04,200,200,30,30 monster Shining Plant 1083,3,1800000,900000
|
||||
mjolnir_04,177,34 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_04,122,28 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_04,76,53 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_04,72,99 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_04,177,34 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_04,43,143 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_04,31,194 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_04,42,252 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_04,64,323 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_04,107,357 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_04,173,369 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_04,286,357 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_04,356,292 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_04,362,201 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_04,332,122 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_04,269,39 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_04,205,33 monster Green Plant 1080,1,180000,90000
|
||||
|
||||
//==================================================
|
||||
// mjolnir_05 - Mt.Mjolnir
|
||||
//==================================================
|
||||
mjolnir_05,0,0,0,0 monster Mantis 1139,40,0,0,0
|
||||
mjolnir_05,0,0,0,0 monster Poporing 1031,10,0,0,0
|
||||
mjolnir_05,0,0,0,0 monster Flora 1118,20,0,0,0
|
||||
mjolnir_05,0,0,0,0 monster Argiope 1099,70,0,0,0
|
||||
mjolnir_05,0,0,0,0 monster Argos 1100,20,0,0,0
|
||||
mjolnir_05,200,240,40,40 monster Blue Plant 1079,3,360000,180000,1
|
||||
mjolnir_05,200,240,40,40 monster Shining Plant 1083,1,1800000,900000,1
|
||||
mjolnir_05,134,103,20,20 monster Blue Plant 1079,3,360000,180000,1
|
||||
mjolnir_05,261,100,20,10 monster Blue Plant 1079,3,360000,180000,1
|
||||
mjolnir_05,0,0,0,0 monster Red Plant 1078,10,180000,90000,1
|
||||
mjolnir_05,0,0 monster Mantis 1139,40
|
||||
mjolnir_05,0,0 monster Poporing 1031,10
|
||||
mjolnir_05,0,0 monster Flora 1118,20
|
||||
mjolnir_05,0,0 monster Argiope 1099,70
|
||||
mjolnir_05,0,0 monster Argos 1100,20
|
||||
mjolnir_05,200,240,40,40 monster Blue Plant 1079,3,360000,180000
|
||||
mjolnir_05,200,240,40,40 monster Shining Plant 1083,1,1800000,900000
|
||||
mjolnir_05,134,103,20,20 monster Blue Plant 1079,3,360000,180000
|
||||
mjolnir_05,261,100,20,10 monster Blue Plant 1079,3,360000,180000
|
||||
mjolnir_05,0,0 monster Red Plant 1078,10,180000,90000
|
||||
|
||||
//==================================================
|
||||
// mjolnir_06 - Mt.Mjolnir
|
||||
//==================================================
|
||||
mjolnir_06,0,0,0,0 monster Stainer 1174,70,0,0,0
|
||||
mjolnir_06,0,0,0,0 monster Horn 1128,20,0,0,0
|
||||
mjolnir_06,0,0,0,0 monster Coco 1104,20,0,0,0
|
||||
mjolnir_06,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
mjolnir_06,0,0,0,0 monster Caramel 1103,30,0,0,0
|
||||
mjolnir_06,162,285,0,0 monster Blue Plant 1079,1,360000,180000,1
|
||||
mjolnir_06,162,255,0,0 monster Blue Plant 1079,1,360000,180000,1
|
||||
mjolnir_06,304,98,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_06,279,174,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_06,339,168,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_06,296,317,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_06,45,345,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_06,73,339,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_06,69,225,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_06,55,276,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_06,0,0 monster Stainer 1174,70
|
||||
mjolnir_06,0,0 monster Horn 1128,20
|
||||
mjolnir_06,0,0 monster Coco 1104,20
|
||||
mjolnir_06,0,0 monster Poporing 1031,20
|
||||
mjolnir_06,0,0 monster Caramel 1103,30
|
||||
mjolnir_06,162,285 monster Blue Plant 1079,1,360000,180000
|
||||
mjolnir_06,162,255 monster Blue Plant 1079,1,360000,180000
|
||||
mjolnir_06,304,98 monster Red Mushroom 1085,1,180000,90000
|
||||
mjolnir_06,279,174 monster Red Mushroom 1085,1,180000,90000
|
||||
mjolnir_06,339,168 monster Red Mushroom 1085,1,180000,90000
|
||||
mjolnir_06,296,317 monster Red Mushroom 1085,1,180000,90000
|
||||
mjolnir_06,45,345 monster Red Mushroom 1085,1,180000,90000
|
||||
mjolnir_06,73,339 monster Red Mushroom 1085,1,180000,90000
|
||||
mjolnir_06,69,225 monster Red Mushroom 1085,1,180000,90000
|
||||
mjolnir_06,55,276 monster Red Mushroom 1085,1,180000,90000
|
||||
|
||||
//==================================================
|
||||
// mjolnir_07 - Mt.Mjolnir
|
||||
//==================================================
|
||||
mjolnir_07,0,0,0,0 monster Poison Spore 1077,60,0,0,0
|
||||
mjolnir_07,0,0,0,0 monster Ambernite 1094,30,0,0,0
|
||||
mjolnir_07,0,0,0,0 monster Coco 1104,20,0,0,0
|
||||
mjolnir_07,0,0,0,0 monster Horn 1128,20,0,0,0
|
||||
mjolnir_07,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
mjolnir_07,0,0,0,0 monster Hornet 1004,20,0,0,0
|
||||
mjolnir_07,314,133,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_07,299,145,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_07,272,152,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_07,273,181,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_07,245,168,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_07,217,185,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_07,181,173,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_07,140,179,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_07,97,210,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_07,249,214,0,0 monster Blue Plant 1079,2,360000,180000,1
|
||||
mjolnir_07,0,0 monster Poison Spore 1077,60
|
||||
mjolnir_07,0,0 monster Ambernite 1094,30
|
||||
mjolnir_07,0,0 monster Coco 1104,20
|
||||
mjolnir_07,0,0 monster Horn 1128,20
|
||||
mjolnir_07,0,0 monster Poporing 1031,20
|
||||
mjolnir_07,0,0 monster Hornet 1004,20
|
||||
mjolnir_07,314,133 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_07,299,145 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_07,272,152 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_07,273,181 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_07,245,168 monster Red Mushroom 1085,1,180000,90000
|
||||
mjolnir_07,217,185 monster Red Mushroom 1085,1,180000,90000
|
||||
mjolnir_07,181,173 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_07,140,179 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_07,97,210 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_07,249,214 monster Blue Plant 1079,2,360000,180000
|
||||
|
||||
//==================================================
|
||||
// mjolnir_08 - Mt.Mjolnir
|
||||
//==================================================
|
||||
mjolnir_08,0,0,0,0 monster Mantis 1139,60,0,0,0
|
||||
mjolnir_08,0,0,0,0 monster Argiope 1099,30,0,0,0
|
||||
mjolnir_08,0,0,0,0 monster Argos 1100,20,0,0,0
|
||||
mjolnir_08,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
mjolnir_08,0,0,0,0 monster Poring 1002,10,0,0,0
|
||||
mjolnir_08,280,280,20,40 monster Blue Plant 1079,2,360000,180000,1
|
||||
mjolnir_08,207,83,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_08,176,153,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_08,169,204,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_08,207,232,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_08,180,282,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_08,149,328,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_08,0,0 monster Mantis 1139,60
|
||||
mjolnir_08,0,0 monster Argiope 1099,30
|
||||
mjolnir_08,0,0 monster Argos 1100,20
|
||||
mjolnir_08,0,0 monster Poporing 1031,20
|
||||
mjolnir_08,0,0 monster Poring 1002,10
|
||||
mjolnir_08,280,280,20,40 monster Blue Plant 1079,2,360000,180000
|
||||
mjolnir_08,207,83 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_08,176,153 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_08,169,204 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_08,207,232 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_08,180,282 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_08,149,328 monster Green Plant 1080,1,180000,90000
|
||||
|
||||
//==================================================
|
||||
// mjolnir_09 - Mt.Mjolnir
|
||||
//==================================================
|
||||
mjolnir_09,0,0,0,0 monster Coco 1104,10,0,0,0
|
||||
mjolnir_09,0,0,0,0 monster Stainer 1174,20,0,0,0
|
||||
mjolnir_09,0,0,0,0 monster Horn 1128,70,0,0,0
|
||||
mjolnir_09,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
mjolnir_09,0,0,0,0 monster Wolf 1013,30,0,0,0
|
||||
mjolnir_09,205,352,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_09,199,344,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_09,210,331,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_09,204,321,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_09,212,312,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_09,198,297,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_09,73,122,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_09,89,141,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_09,120,126,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_09,139,84,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_09,125,82,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
mjolnir_09,0,0 monster Coco 1104,10
|
||||
mjolnir_09,0,0 monster Stainer 1174,20
|
||||
mjolnir_09,0,0 monster Horn 1128,70
|
||||
mjolnir_09,0,0 monster Poporing 1031,20
|
||||
mjolnir_09,0,0 monster Wolf 1013,30
|
||||
mjolnir_09,205,352 monster Red Mushroom 1085,1,180000,90000
|
||||
mjolnir_09,199,344 monster Red Mushroom 1085,1,180000,90000
|
||||
mjolnir_09,210,331 monster Red Mushroom 1085,1,180000,90000
|
||||
mjolnir_09,204,321 monster Red Mushroom 1085,1,180000,90000
|
||||
mjolnir_09,212,312 monster Red Mushroom 1085,1,180000,90000
|
||||
mjolnir_09,198,297 monster Red Mushroom 1085,1,180000,90000
|
||||
mjolnir_09,73,122 monster Red Mushroom 1085,1,180000,90000
|
||||
mjolnir_09,89,141 monster Red Mushroom 1085,1,180000,90000
|
||||
mjolnir_09,120,126 monster Red Mushroom 1085,1,180000,90000
|
||||
mjolnir_09,139,84 monster Red Mushroom 1085,1,180000,90000
|
||||
mjolnir_09,125,82 monster Red Mushroom 1085,1,180000,90000
|
||||
|
||||
//==================================================
|
||||
// mjolnir_10 - Mt.Mjolnir
|
||||
//==================================================
|
||||
mjolnir_10,0,0,0,0 monster Mantis 1139,20,0,0,0
|
||||
mjolnir_10,0,0,0,0 monster Flora 1118,30,0,0,0
|
||||
mjolnir_10,0,0,0,0 monster Argos 1100,60,0,0,0
|
||||
mjolnir_10,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
mjolnir_10,0,0,0,0 monster Petite 1155,10,0,0,0
|
||||
mjolnir_10,123,331,10,10 monster Shining Plant 1083,1,1800000,900000,1
|
||||
mjolnir_10,0,0,0,0 monster Green Plant 1080,10,180000,90000,1
|
||||
mjolnir_10,0,0 monster Mantis 1139,20
|
||||
mjolnir_10,0,0 monster Flora 1118,30
|
||||
mjolnir_10,0,0 monster Argos 1100,60
|
||||
mjolnir_10,0,0 monster Poporing 1031,20
|
||||
mjolnir_10,0,0 monster Petite 1155,10
|
||||
mjolnir_10,123,331,10,10 monster Shining Plant 1083,1,1800000,900000
|
||||
mjolnir_10,0,0 monster Green Plant 1080,10,180000,90000
|
||||
|
||||
//==================================================
|
||||
// mjolnir_11 - Mt.Mjolnir
|
||||
//==================================================
|
||||
mjolnir_11,0,0,0,0 monster Argiope 1099,10,0,0,0
|
||||
mjolnir_11,0,0,0,0 monster Mandragora 1020,50,0,0,0
|
||||
mjolnir_11,0,0,0,0 monster Flora 1118,60,0,0,0
|
||||
mjolnir_11,0,0,0,0 monster Poporing 1031,10,0,0,0
|
||||
mjolnir_11,0,0,0,0 monster Thief Bug Male 1054,30,0,0,0
|
||||
mjolnir_11,112,276,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_11,159,283,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_11,116,240,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_11,146,215,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_11,145,177,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_11,129,135,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_11,126,93,0,0 monster Blue Plant 1079,1,360000,180000,1
|
||||
mjolnir_11,197,123,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_11,198,210,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_11,231,277,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_11,332,327,0,0 monster Blue Plant 1079,1,360000,180000,1
|
||||
mjolnir_11,282,300,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_11,295,271,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
mjolnir_11,0,0 monster Argiope 1099,10
|
||||
mjolnir_11,0,0 monster Mandragora 1020,50
|
||||
mjolnir_11,0,0 monster Flora 1118,60
|
||||
mjolnir_11,0,0 monster Poporing 1031,10
|
||||
mjolnir_11,0,0 monster Thief Bug Male 1054,30
|
||||
mjolnir_11,112,276 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_11,159,283 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_11,116,240 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_11,146,215 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_11,145,177 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_11,129,135 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_11,126,93 monster Blue Plant 1079,1,360000,180000
|
||||
mjolnir_11,197,123 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_11,198,210 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_11,231,277 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_11,332,327 monster Blue Plant 1079,1,360000,180000
|
||||
mjolnir_11,282,300 monster Green Plant 1080,1,180000,90000
|
||||
mjolnir_11,295,271 monster Green Plant 1080,1,180000,90000
|
||||
|
||||
//==================================================
|
||||
// mjolnir_12 - Mt.Mjolnir
|
||||
//==================================================
|
||||
mjolnir_12,0,0,0,0 monster Stem Worm 1215,20,0,0,0
|
||||
mjolnir_12,0,0,0,0 monster Dustiness 1114,50,0,0,0
|
||||
mjolnir_12,0,0,0,0 monster Thief Bug Female 1053,20,0,0,0
|
||||
mjolnir_12,0,0 monster Stem Worm 1215,20
|
||||
mjolnir_12,0,0 monster Dustiness 1114,50
|
||||
mjolnir_12,0,0 monster Thief Bug Female 1053,20
|
||||
|
||||
@@ -20,306 +20,306 @@
|
||||
//==================================================
|
||||
// moc_fild01 - Sograt Desert
|
||||
//==================================================
|
||||
moc_fild01,0,0,0,0 monster Baby Desert Wolf 1107,70,0,0,0
|
||||
moc_fild01,0,0,0,0 monster Ant Egg 1097,20,0,0,0
|
||||
moc_fild01,0,0,0,0 monster Peco Peco Egg 1047,20,0,0,0
|
||||
moc_fild01,0,0,0,0 monster Picky 1049,10,0,0,0
|
||||
moc_fild01,0,0,0,0 monster Drops 1113,30,0,0,0
|
||||
moc_fild01,0,0,0,0 monster Poring 1002,10,0,0,0
|
||||
moc_fild01,194,51,10,10 monster Yellow Plant 1081,10,900000,450000,1
|
||||
moc_fild01,0,0 monster Baby Desert Wolf 1107,70
|
||||
moc_fild01,0,0 monster Ant Egg 1097,20
|
||||
moc_fild01,0,0 monster Peco Peco Egg 1047,20
|
||||
moc_fild01,0,0 monster Picky 1049,10
|
||||
moc_fild01,0,0 monster Drops 1113,30
|
||||
moc_fild01,0,0 monster Poring 1002,10
|
||||
moc_fild01,194,51,10,10 monster Yellow Plant 1081,10,900000,450000
|
||||
|
||||
//==================================================
|
||||
// moc_fild02 - Sograt Desert
|
||||
//==================================================
|
||||
moc_fild02,0,0,0,0 monster Peco Peco 1019,70,0,0,0
|
||||
moc_fild02,0,0,0,0 monster Ant Egg 1097,10,0,0,0
|
||||
moc_fild02,0,0,0,0 monster Peco Peco Egg 1047,40,0,0,0
|
||||
moc_fild02,0,0,0,0 monster Picky 1049,10,0,0,0
|
||||
moc_fild02,0,0,0,0 monster Drops 1113,30,0,0,0
|
||||
moc_fild02,89,315,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild02,99,261,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild02,94,195,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild02,139,222,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild02,132,307,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild02,194,294,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild02,275,241,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild02,342,267,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
moc_fild02,359,215,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
moc_fild02,313,149,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
moc_fild02,230,62,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
moc_fild02,299,61,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
moc_fild02,353,103,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
moc_fild02,337,35,0,0 monster Green Plant 1080,1,180000,90000,1
|
||||
moc_fild02,0,0 monster Peco Peco 1019,70
|
||||
moc_fild02,0,0 monster Ant Egg 1097,10
|
||||
moc_fild02,0,0 monster Peco Peco Egg 1047,40
|
||||
moc_fild02,0,0 monster Picky 1049,10
|
||||
moc_fild02,0,0 monster Drops 1113,30
|
||||
moc_fild02,89,315 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild02,99,261 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild02,94,195 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild02,139,222 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild02,132,307 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild02,194,294 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild02,275,241 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild02,342,267 monster Green Plant 1080,1,180000,90000
|
||||
moc_fild02,359,215 monster Green Plant 1080,1,180000,90000
|
||||
moc_fild02,313,149 monster Green Plant 1080,1,180000,90000
|
||||
moc_fild02,230,62 monster Green Plant 1080,1,180000,90000
|
||||
moc_fild02,299,61 monster Green Plant 1080,1,180000,90000
|
||||
moc_fild02,353,103 monster Green Plant 1080,1,180000,90000
|
||||
moc_fild02,337,35 monster Green Plant 1080,1,180000,90000
|
||||
|
||||
//==================================================
|
||||
// moc_fild03 - Sograt Desert
|
||||
//==================================================
|
||||
moc_fild03,0,0,0,0 monster Elder Willow 1033,70,0,0,0
|
||||
moc_fild03,0,0,0,0 monster Greatest General 1277,30,0,0,0
|
||||
moc_fild03,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
moc_fild03,0,0,0,0 monster Eggyra 1116,10,0,0,0
|
||||
moc_fild03,0,0,0,0 monster Willow 1010,20,0,0,0
|
||||
moc_fild03,0,0,0,0 monster Vagabond Wolf 1092,1,1800000,1200000,0
|
||||
moc_fild03,77,311,5,5 monster Green Plant 1080,2,180000,90000,1
|
||||
moc_fild03,108,199,5,5 monster Green Plant 1080,2,180000,90000,1
|
||||
moc_fild03,96,65,5,5 monster Green Plant 1080,2,180000,90000,1
|
||||
moc_fild03,216,69,5,5 monster Green Plant 1080,2,180000,90000,1
|
||||
moc_fild03,261,161,5,5 monster Green Plant 1080,2,180000,90000,1
|
||||
moc_fild03,213,201,5,5 monster Green Plant 1080,2,180000,90000,1
|
||||
moc_fild03,200,263,5,5 monster Green Plant 1080,2,180000,90000,1
|
||||
moc_fild03,0,0 monster Elder Willow 1033,70
|
||||
moc_fild03,0,0 monster Greatest General 1277,30
|
||||
moc_fild03,0,0 monster Poporing 1031,20
|
||||
moc_fild03,0,0 monster Eggyra 1116,10
|
||||
moc_fild03,0,0 monster Willow 1010,20
|
||||
moc_fild03,0,0 monster Vagabond Wolf 1092,1,1800000,1200000
|
||||
moc_fild03,77,311,5,5 monster Green Plant 1080,2,180000,90000
|
||||
moc_fild03,108,199,5,5 monster Green Plant 1080,2,180000,90000
|
||||
moc_fild03,96,65,5,5 monster Green Plant 1080,2,180000,90000
|
||||
moc_fild03,216,69,5,5 monster Green Plant 1080,2,180000,90000
|
||||
moc_fild03,261,161,5,5 monster Green Plant 1080,2,180000,90000
|
||||
moc_fild03,213,201,5,5 monster Green Plant 1080,2,180000,90000
|
||||
moc_fild03,200,263,5,5 monster Green Plant 1080,2,180000,90000
|
||||
|
||||
//==================================================
|
||||
// moc_fild04 - Sograt Desert
|
||||
//==================================================
|
||||
//moc_fild04,0,0,0,0 monster Desert Wolf 1106,20,0,0,0
|
||||
//moc_fild04,0,0,0,0 monster Scorpion 1001,30,0,0,0
|
||||
//moc_fild04,0,0,0,0 monster Metaller 1058,20,0,0,0
|
||||
//moc_fild04,0,0,0,0 monster Magnolia 1138,40,0,0,0
|
||||
//moc_fild04,0,0,0,0 monster Ant Egg 1097,10,0,0,0
|
||||
//moc_fild04,0,0,0,0 monster Andre 1095,20,0,0,0
|
||||
//moc_fild04,0,0,0,0 monster Deniro 1105,20,0,0,0
|
||||
//moc_fild04,0,0,0,0 monster Piere 1160,20,0,0,0
|
||||
//moc_fild04,313,84,10,10 monster Yellow Plant 1081,10,900000,450000,1
|
||||
//moc_fild04,0,0 monster Desert Wolf 1106,20
|
||||
//moc_fild04,0,0 monster Scorpion 1001,30
|
||||
//moc_fild04,0,0 monster Metaller 1058,20
|
||||
//moc_fild04,0,0 monster Magnolia 1138,40
|
||||
//moc_fild04,0,0 monster Ant Egg 1097,10
|
||||
//moc_fild04,0,0 monster Andre 1095,20
|
||||
//moc_fild04,0,0 monster Deniro 1105,20
|
||||
//moc_fild04,0,0 monster Piere 1160,20
|
||||
//moc_fild04,313,84,10,10 monster Yellow Plant 1081,10,900000,450000
|
||||
|
||||
//==================================================
|
||||
// moc_fild05 - Sograt Desert
|
||||
//==================================================
|
||||
//moc_fild05,0,0,0,0 monster Magnolia 1138,30,0,0,0
|
||||
//moc_fild05,0,0,0,0 monster Metaller 1058,20,0,0,0
|
||||
//moc_fild05,0,0,0,0 monster Golem 1040,70,0,0,0
|
||||
//moc_fild05,0,0,0,0 monster Ant Egg 1097,10,0,0,0
|
||||
//moc_fild05,208,233,10,10 monster Yellow Plant 1081,5,360000,180000,1
|
||||
//moc_fild05,0,0 monster Magnolia 1138,30
|
||||
//moc_fild05,0,0 monster Metaller 1058,20
|
||||
//moc_fild05,0,0 monster Golem 1040,70
|
||||
//moc_fild05,0,0 monster Ant Egg 1097,10
|
||||
//moc_fild05,208,233,10,10 monster Yellow Plant 1081,5,360000,180000
|
||||
|
||||
//==================================================
|
||||
// moc_fild06 - Sograt Desert
|
||||
//==================================================
|
||||
//moc_fild06,0,0,0,0 monster Peco Peco 1019,85,0,0,0
|
||||
//moc_fild06,0,0,0,0 monster Muka 1055,30,0,0,0
|
||||
//moc_fild06,0,0,0,0 monster Condor 1009,50,0,0,0
|
||||
//moc_fild06,0,0,0,0 monster Magnolia 1138,10,0,0,0
|
||||
//moc_fild06,0,0,0,0 monster Ant Egg 1097,10,0,0,0
|
||||
//moc_fild06,193,203,10,10 monster Yellow Plant 1081,10,900000,450000,1
|
||||
//moc_fild06,0,0 monster Peco Peco 1019,85
|
||||
//moc_fild06,0,0 monster Muka 1055,30
|
||||
//moc_fild06,0,0 monster Condor 1009,50
|
||||
//moc_fild06,0,0 monster Magnolia 1138,10
|
||||
//moc_fild06,0,0 monster Ant Egg 1097,10
|
||||
//moc_fild06,193,203,10,10 monster Yellow Plant 1081,10,900000,450000
|
||||
|
||||
//==================================================
|
||||
// moc_fild07 - Sograt Desert
|
||||
//==================================================
|
||||
moc_fild07,0,0,0,0 monster Drops 1113,70,0,0,0
|
||||
moc_fild07,0,0,0,0 monster Peco Peco Egg 1047,50,0,0,0
|
||||
moc_fild07,0,0,0,0 monster Picky 1050,30,0,0,0
|
||||
moc_fild07,0,0,0,0 monster Picky 1049,30,0,0,0
|
||||
moc_fild07,162,333,12,12 monster Yellow Plant 1081,5,360000,180000,1
|
||||
moc_fild07,0,0 monster Drops 1113,70
|
||||
moc_fild07,0,0 monster Peco Peco Egg 1047,50
|
||||
moc_fild07,0,0 monster Picky 1050,30
|
||||
moc_fild07,0,0 monster Picky 1049,30
|
||||
moc_fild07,162,333,12,12 monster Yellow Plant 1081,5,360000,180000
|
||||
|
||||
//==================================================
|
||||
// moc_fild08 - Sograt Desert
|
||||
//==================================================
|
||||
//moc_fild08,0,0,0,0 monster Magnolia 1138,30,0,0,0
|
||||
//moc_fild08,0,0,0,0 monster Scorpion 1001,80,0,0,0
|
||||
//moc_fild08,0,0,0,0 monster Desert Wolf 1106,30,0,0,0
|
||||
//moc_fild08,0,0,0,0 monster Anacondaq 1030,30,0,0,0
|
||||
//moc_fild08,0,0,0,0 monster Baby Desert Wolf 1107,10,0,0,0
|
||||
//moc_fild08,0,0,0,0 monster Drops 1113,10,0,0,0
|
||||
//moc_fild08,0,0 monster Magnolia 1138,30
|
||||
//moc_fild08,0,0 monster Scorpion 1001,80
|
||||
//moc_fild08,0,0 monster Desert Wolf 1106,30
|
||||
//moc_fild08,0,0 monster Anacondaq 1030,30
|
||||
//moc_fild08,0,0 monster Baby Desert Wolf 1107,10
|
||||
//moc_fild08,0,0 monster Drops 1113,10
|
||||
|
||||
//==================================================
|
||||
// moc_fild09 - Sograt Desert
|
||||
//==================================================
|
||||
//moc_fild09,0,0,0,0 monster Desert Wolf 1106,10,0,0,0
|
||||
//moc_fild09,0,0,0,0 monster Metaller 1058,70,0,0,0
|
||||
//moc_fild09,0,0,0,0 monster Magnolia 1138,50,0,0,0
|
||||
//moc_fild09,0,0,0,0 monster Ant Egg 1097,10,0,0,0
|
||||
//moc_fild09,0,0,0,0 monster Andre 1095,5,0,0,0
|
||||
//moc_fild09,0,0,0,0 monster Deniro 1105,5,0,0,0
|
||||
//moc_fild09,0,0,0,0 monster Piere 1160,5,0,0,0
|
||||
//moc_fild09,0,0,0,0 monster Ant Egg 1097,10,0,0,0
|
||||
//moc_fild09,0,0,0,0 monster Frilldora 1119,6,0,0,0
|
||||
//moc_fild09,332,341,5,5 monster Yellow Plant 1081,2,180000,90000,1
|
||||
//moc_fild09,240,313,5,5 monster Yellow Plant 1081,2,180000,90000,1
|
||||
//moc_fild09,305,62,5,5 monster Yellow Plant 1081,2,180000,90000,1
|
||||
//moc_fild09,64,78,5,5 monster Yellow Plant 1081,2,180000,90000,1
|
||||
//moc_fild09,54,325,5,5 monster Yellow Plant 1081,2,180000,90000,1
|
||||
//moc_fild09,0,0 monster Desert Wolf 1106,10
|
||||
//moc_fild09,0,0 monster Metaller 1058,70
|
||||
//moc_fild09,0,0 monster Magnolia 1138,50
|
||||
//moc_fild09,0,0 monster Ant Egg 1097,10
|
||||
//moc_fild09,0,0 monster Andre 1095,5
|
||||
//moc_fild09,0,0 monster Deniro 1105,5
|
||||
//moc_fild09,0,0 monster Piere 1160,5
|
||||
//moc_fild09,0,0 monster Ant Egg 1097,10
|
||||
//moc_fild09,0,0 monster Frilldora 1119,6
|
||||
//moc_fild09,332,341,5,5 monster Yellow Plant 1081,2,180000,90000
|
||||
//moc_fild09,240,313,5,5 monster Yellow Plant 1081,2,180000,90000
|
||||
//moc_fild09,305,62,5,5 monster Yellow Plant 1081,2,180000,90000
|
||||
//moc_fild09,64,78,5,5 monster Yellow Plant 1081,2,180000,90000
|
||||
//moc_fild09,54,325,5,5 monster Yellow Plant 1081,2,180000,90000
|
||||
|
||||
//==================================================
|
||||
// moc_fild10 - Sograt Desert
|
||||
//==================================================
|
||||
//moc_fild10,0,0,0,0 monster Drops 1113,30,0,0,0
|
||||
//moc_fild10,0,0,0,0 monster Peco Peco Egg 1047,70,0,0,0
|
||||
//moc_fild10,0,0,0,0 monster Picky 1049,50,0,0,0
|
||||
//moc_fild10,0,0,0,0 monster Picky 1050,50,0,0,0
|
||||
//moc_fild10,0,0,0,0 monster Magnolia 1138,1,0,0,0
|
||||
//moc_fild10,0,0,0,0 monster Ant Egg 1097,10,0,0,0
|
||||
//moc_fild10,198,150,40,30 monster Yellow Plant 1081,10,180000,90000,1
|
||||
//moc_fild10,198,150,40,30 monster Green Plant 1080,5,180000,90000,1
|
||||
//moc_fild10,0,0 monster Drops 1113,30
|
||||
//moc_fild10,0,0 monster Peco Peco Egg 1047,70
|
||||
//moc_fild10,0,0 monster Picky 1049,50
|
||||
//moc_fild10,0,0 monster Picky 1050,50
|
||||
//moc_fild10,0,0 monster Magnolia 1138,1
|
||||
//moc_fild10,0,0 monster Ant Egg 1097,10
|
||||
//moc_fild10,198,150,40,30 monster Yellow Plant 1081,10,180000,90000
|
||||
//moc_fild10,198,150,40,30 monster Green Plant 1080,5,180000,90000
|
||||
|
||||
//==================================================
|
||||
// moc_fild11 - Sograt Desert
|
||||
//==================================================
|
||||
moc_fild11,0,0,0,0 monster Hode 1127,10,0,0,0
|
||||
moc_fild11,0,0,0,0 monster Golem 1040,70,0,0,0
|
||||
moc_fild11,0,0,0,0 monster Andre 1095,10,0,0,0
|
||||
moc_fild11,0,0,0,0 monster Deniro 1105,10,0,0,0
|
||||
moc_fild11,0,0,0,0 monster Piere 1160,10,0,0,0
|
||||
moc_fild11,0,0,0,0 monster Ant Egg 1097,10,0,0,0
|
||||
moc_fild11,0,0,0,0 monster Magnolia 1138,20,0,0,0
|
||||
moc_fild11,0,0,0,0 monster Muka 1055,20,0,0,0
|
||||
moc_fild11,197,216,0,0 monster Shining Plant 1083,1,1800000,900000,1
|
||||
moc_fild11,0,0 monster Hode 1127,10
|
||||
moc_fild11,0,0 monster Golem 1040,70
|
||||
moc_fild11,0,0 monster Andre 1095,10
|
||||
moc_fild11,0,0 monster Deniro 1105,10
|
||||
moc_fild11,0,0 monster Piere 1160,10
|
||||
moc_fild11,0,0 monster Ant Egg 1097,10
|
||||
moc_fild11,0,0 monster Magnolia 1138,20
|
||||
moc_fild11,0,0 monster Muka 1055,20
|
||||
moc_fild11,197,216 monster Shining Plant 1083,1,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// moc_fild12 - Sograt Desert
|
||||
//==================================================
|
||||
moc_fild12,0,0,0,0 monster Picky 1050,50,0,0,0
|
||||
moc_fild12,0,0,0,0 monster Picky 1049,50,0,0,0
|
||||
moc_fild12,0,0,0,0 monster Peco Peco Egg 1047,35,0,0,0
|
||||
moc_fild12,0,0,0,0 monster Drops 1113,35,0,0,0
|
||||
moc_fild12,181,336,40,20 monster Yellow Plant 1081,10,180000,90000,1
|
||||
moc_fild12,0,0 monster Picky 1050,50
|
||||
moc_fild12,0,0 monster Picky 1049,50
|
||||
moc_fild12,0,0 monster Peco Peco Egg 1047,35
|
||||
moc_fild12,0,0 monster Drops 1113,35
|
||||
moc_fild12,181,336,40,20 monster Yellow Plant 1081,10,180000,90000
|
||||
|
||||
//==================================================
|
||||
// moc_fild13 - Sograt Desert
|
||||
//==================================================
|
||||
moc_fild13,0,0,0,0 monster Desert Wolf 1106,30,0,0,0
|
||||
moc_fild13,0,0,0,0 monster Anacondaq 1030,75,0,0,0
|
||||
moc_fild13,0,0,0,0 monster Boa 1025,30,0,0,0
|
||||
moc_fild13,0,0,0,0 monster Side Winder 1037,5,0,0,0
|
||||
moc_fild13,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
moc_fild13,0,0,0,0 monster Drops 1113,10,0,0,0
|
||||
moc_fild13,280,99,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
moc_fild13,264,64,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
moc_fild13,305,91,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
moc_fild13,264,136,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
moc_fild13,282,155,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
moc_fild13,265,197,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
moc_fild13,284,227,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
moc_fild13,304,244,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
moc_fild13,266,289,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
moc_fild13,307,307,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
moc_fild13,281,333,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
moc_fild13,304,333,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
moc_fild13,295,358,0,0 monster Red Mushroom 1085,1,180000,90000,1
|
||||
moc_fild13,84,329,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild13,93,301,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild13,101,297,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild13,89,92,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild13,108,150,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild13,109,168,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild13,101,185,5,5 monster Yellow Plant 1081,3,180000,90000,1
|
||||
moc_fild13,106,258,5,5 monster Yellow Plant 1081,3,180000,90000,1
|
||||
moc_fild13,161,273,5,5 monster Yellow Plant 1081,3,180000,90000,1
|
||||
moc_fild13,0,0 monster Desert Wolf 1106,30
|
||||
moc_fild13,0,0 monster Anacondaq 1030,75
|
||||
moc_fild13,0,0 monster Boa 1025,30
|
||||
moc_fild13,0,0 monster Side Winder 1037,5
|
||||
moc_fild13,0,0 monster Poporing 1031,20
|
||||
moc_fild13,0,0 monster Drops 1113,10
|
||||
moc_fild13,280,99 monster Red Mushroom 1085,1,180000,90000
|
||||
moc_fild13,264,64 monster Red Mushroom 1085,1,180000,90000
|
||||
moc_fild13,305,91 monster Red Mushroom 1085,1,180000,90000
|
||||
moc_fild13,264,136 monster Red Mushroom 1085,1,180000,90000
|
||||
moc_fild13,282,155 monster Red Mushroom 1085,1,180000,90000
|
||||
moc_fild13,265,197 monster Red Mushroom 1085,1,180000,90000
|
||||
moc_fild13,284,227 monster Red Mushroom 1085,1,180000,90000
|
||||
moc_fild13,304,244 monster Red Mushroom 1085,1,180000,90000
|
||||
moc_fild13,266,289 monster Red Mushroom 1085,1,180000,90000
|
||||
moc_fild13,307,307 monster Red Mushroom 1085,1,180000,90000
|
||||
moc_fild13,281,333 monster Red Mushroom 1085,1,180000,90000
|
||||
moc_fild13,304,333 monster Red Mushroom 1085,1,180000,90000
|
||||
moc_fild13,295,358 monster Red Mushroom 1085,1,180000,90000
|
||||
moc_fild13,84,329 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild13,93,301 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild13,101,297 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild13,89,92 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild13,108,150 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild13,109,168 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild13,101,185,5,5 monster Yellow Plant 1081,3,180000,90000
|
||||
moc_fild13,106,258,5,5 monster Yellow Plant 1081,3,180000,90000
|
||||
moc_fild13,161,273,5,5 monster Yellow Plant 1081,3,180000,90000
|
||||
|
||||
//==================================================
|
||||
// moc_fild14 - Sograt Desert
|
||||
//==================================================
|
||||
//moc_fild14,0,0,0,0 monster Desert Wolf 1106,80,0,0,0
|
||||
//moc_fild14,0,0,0,0 monster Side Winder 1037,20,0,0,0
|
||||
//moc_fild14,0,0,0,0 monster Baby Desert Wolf 1107,40,0,0,0
|
||||
//moc_fild14,0,0,0,0 monster Magnolia 1138,25,0,0,0
|
||||
//moc_fild14,124,93,5,5 monster Shining Plant 1083,1,1800000,900000,1
|
||||
//moc_fild14,85,271,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
//moc_fild14,165,282,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
//moc_fild14,149,333,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
//moc_fild14,64,342,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
//moc_fild14,160,366,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
//moc_fild14,0,0 monster Desert Wolf 1106,80
|
||||
//moc_fild14,0,0 monster Side Winder 1037,20
|
||||
//moc_fild14,0,0 monster Baby Desert Wolf 1107,40
|
||||
//moc_fild14,0,0 monster Magnolia 1138,25
|
||||
//moc_fild14,124,93,5,5 monster Shining Plant 1083,1,1800000,900000
|
||||
//moc_fild14,85,271 monster Yellow Plant 1081,1,180000,90000
|
||||
//moc_fild14,165,282 monster Yellow Plant 1081,1,180000,90000
|
||||
//moc_fild14,149,333 monster Yellow Plant 1081,1,180000,90000
|
||||
//moc_fild14,64,342 monster Yellow Plant 1081,1,180000,90000
|
||||
//moc_fild14,160,366 monster Yellow Plant 1081,1,180000,90000
|
||||
|
||||
//==================================================
|
||||
// moc_fild15 - Sograt Desert
|
||||
//==================================================
|
||||
//moc_fild15,0,0,0,0 monster Hode 1127,30,0,0,0
|
||||
//moc_fild15,0,0,0,0 monster Scorpion 1001,10,0,0,0
|
||||
//moc_fild15,0,0,0,0 monster Desert Wolf 1106,10,0,0,0
|
||||
//moc_fild15,0,0,0,0 monster Magnolia 1138,25,0,0,0
|
||||
//moc_fild15,0,0,0,0 monster Andre 1095,40,0,0,0
|
||||
//moc_fild15,0,0,0,0 monster Ant Egg 1097,10,0,0,0
|
||||
//moc_fild15,0,0,0,0 monster Phreeoni 1159,1,7200000,600000,1
|
||||
//moc_fild15,40,126,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
//moc_fild15,57,39,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
//moc_fild15,46,250,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
//moc_fild15,104,347,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
//moc_fild15,195,373,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
//moc_fild15,341,365,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
//moc_fild15,353,230,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
//moc_fild15,341,164,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
//moc_fild15,370,85,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
//moc_fild15,158,144,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
//moc_fild15,232,126,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
//moc_fild15,294,74,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
//moc_fild15,0,0 monster Hode 1127,30
|
||||
//moc_fild15,0,0 monster Scorpion 1001,10
|
||||
//moc_fild15,0,0 monster Desert Wolf 1106,10
|
||||
//moc_fild15,0,0 monster Magnolia 1138,25
|
||||
//moc_fild15,0,0 monster Andre 1095,40
|
||||
//moc_fild15,0,0 monster Ant Egg 1097,10
|
||||
//moc_fild15,0,0 monster Phreeoni 1159,1,7200000,600000
|
||||
//moc_fild15,40,126 monster Yellow Plant 1081,1,180000,90000
|
||||
//moc_fild15,57,39 monster Yellow Plant 1081,1,180000,90000
|
||||
//moc_fild15,46,250 monster Yellow Plant 1081,1,180000,90000
|
||||
//moc_fild15,104,347 monster Yellow Plant 1081,1,180000,90000
|
||||
//moc_fild15,195,373 monster Yellow Plant 1081,1,180000,90000
|
||||
//moc_fild15,341,365 monster Yellow Plant 1081,1,180000,90000
|
||||
//moc_fild15,353,230 monster Yellow Plant 1081,1,180000,90000
|
||||
//moc_fild15,341,164 monster Yellow Plant 1081,1,180000,90000
|
||||
//moc_fild15,370,85 monster Yellow Plant 1081,1,180000,90000
|
||||
//moc_fild15,158,144 monster Yellow Plant 1081,1,180000,90000
|
||||
//moc_fild15,232,126 monster Yellow Plant 1081,1,180000,90000
|
||||
//moc_fild15,294,74 monster Yellow Plant 1081,1,180000,90000
|
||||
|
||||
//==================================================
|
||||
// moc_fild16 - Sograt Desert
|
||||
//==================================================
|
||||
moc_fild16,0,0,0,0 monster Sandman 1165,70,0,0,0
|
||||
moc_fild16,0,0,0,0 monster Hode 1127,30,0,0,0
|
||||
moc_fild16,0,0,0,0 monster Magnolia 1138,25,0,0,0
|
||||
moc_fild16,0,0,0,0 monster Andre 1095,10,0,0,0
|
||||
moc_fild16,0,0,0,0 monster Deniro 1105,20,0,0,0
|
||||
moc_fild16,0,0,0,0 monster Ant Egg 1097,10,0,0,0
|
||||
moc_fild16,0,0 monster Sandman 1165,70
|
||||
moc_fild16,0,0 monster Hode 1127,30
|
||||
moc_fild16,0,0 monster Magnolia 1138,25
|
||||
moc_fild16,0,0 monster Andre 1095,10
|
||||
moc_fild16,0,0 monster Deniro 1105,20
|
||||
moc_fild16,0,0 monster Ant Egg 1097,10
|
||||
|
||||
//==================================================
|
||||
// moc_fild17 - Sograt Desert
|
||||
//==================================================
|
||||
moc_fild17,0,0,0,0 monster Hode 1127,100,0,0,0
|
||||
moc_fild17,0,0,0,0 monster Steel Chonchon 1042,30,0,0,0
|
||||
moc_fild17,0,0,0,0 monster Magnolia 1138,15,0,0,0
|
||||
moc_fild17,0,0,0,0 monster Frilldora 1119,25,0,0,0
|
||||
moc_fild17,0,0,0,0 monster Ant Egg 1097,10,0,0,0
|
||||
moc_fild17,0,0,0,0 monster Scorpion 1001,5,0,0,0
|
||||
moc_fild17,0,0 monster Hode 1127,100
|
||||
moc_fild17,0,0 monster Steel Chonchon 1042,30
|
||||
moc_fild17,0,0 monster Magnolia 1138,15
|
||||
moc_fild17,0,0 monster Frilldora 1119,25
|
||||
moc_fild17,0,0 monster Ant Egg 1097,10
|
||||
moc_fild17,0,0 monster Scorpion 1001,5
|
||||
moc_fild17,0,0,0,0 boss_monster Phreeoni 1159,1,7200000,600000,1
|
||||
moc_fild17,40,258,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild17,144,151,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild17,243,138,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild17,270,106,0,0 monster Blue Plant 1079,1,180000,90000,1
|
||||
moc_fild17,335,191,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild17,347,224,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild17,359,258,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild17,40,258 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild17,144,151 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild17,243,138 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild17,270,106 monster Blue Plant 1079,1,180000,90000
|
||||
moc_fild17,335,191 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild17,347,224 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild17,359,258 monster Yellow Plant 1081,1,180000,90000
|
||||
|
||||
//==================================================
|
||||
// moc_fild18 - Sograt Desert
|
||||
//==================================================
|
||||
moc_fild18,0,0,0,0 monster Steel Chonchon 1042,70,0,0,0
|
||||
moc_fild18,0,0,0,0 monster Chonchon 1011,40,0,0,0
|
||||
moc_fild18,0,0,0,0 monster Muka 1055,80,0,0,0
|
||||
moc_fild18,0,0,0,0 monster Metaller 1058,10,0,0,0
|
||||
moc_fild18,0,0,0,0 monster Ant Egg 1097,5,0,0,0
|
||||
moc_fild18,0,0,0,0 monster Dragon Fly 1091,1,3600000,1800000,1
|
||||
moc_fild18,0,0,0,0 monster Hunter Fly 1035,1,7200000,3600000,1
|
||||
moc_fild18,143,352,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild18,72,333,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild18,119,285,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild18,71,210,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild18,135,119,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild18,230,144,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild18,325,207,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild18,325,272,0,0 monster Yellow Plant 1081,1,180000,90000,1
|
||||
moc_fild18,0,0 monster Steel Chonchon 1042,70
|
||||
moc_fild18,0,0 monster Chonchon 1011,40
|
||||
moc_fild18,0,0 monster Muka 1055,80
|
||||
moc_fild18,0,0 monster Metaller 1058,10
|
||||
moc_fild18,0,0 monster Ant Egg 1097,5
|
||||
moc_fild18,0,0 monster Dragon Fly 1091,1,3600000,1800000
|
||||
moc_fild18,0,0 monster Hunter Fly 1035,1,7200000,3600000
|
||||
moc_fild18,143,352 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild18,72,333 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild18,119,285 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild18,71,210 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild18,135,119 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild18,230,144 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild18,325,207 monster Yellow Plant 1081,1,180000,90000
|
||||
moc_fild18,325,272 monster Yellow Plant 1081,1,180000,90000
|
||||
|
||||
//==================================================
|
||||
// moc_fild20 - Dimensional Gorge
|
||||
//==================================================
|
||||
moc_fild20,0,0,0,0 monster Ant Egg 1097,10,0,0,0
|
||||
moc_fild20,0,0,0,0 monster Andre 1095,20,0,0,0
|
||||
moc_fild20,0,0,0,0 monster Deniro 1105,20,0,0,0
|
||||
moc_fild20,0,0,0,0 monster Piere 1160,20,0,0,0
|
||||
moc_fild20,0,0,0,0 monster Metaller 1058,20,0,0,0
|
||||
moc_fild20,0,0,0,0 monster Drops 1113,30,0,0,0
|
||||
moc_fild20,0,0,0,0 monster Scorpion 1001,70,0,0,0
|
||||
moc_fild20,0,0,0,0 monster Picky 1050,50,0,0,0
|
||||
moc_fild20,0,0,0,0 monster Picky 1049,50,0,0,0
|
||||
moc_fild20,0,0,0,0 monster Morroc's Shadow 1918,1,30000,0,0
|
||||
moc_fild20,0,0,0,0 monster Morroc's Shadow 1919,1,30000,0,0
|
||||
moc_fild20,0,0,0,0 monster Morroc's Shadow 1920,1,30000,0,0
|
||||
moc_fild20,0,0,0,0 monster Morroc's Shadow 1921,1,30000,0,0
|
||||
moc_fild20,0,0 monster Ant Egg 1097,10
|
||||
moc_fild20,0,0 monster Andre 1095,20
|
||||
moc_fild20,0,0 monster Deniro 1105,20
|
||||
moc_fild20,0,0 monster Piere 1160,20
|
||||
moc_fild20,0,0 monster Metaller 1058,20
|
||||
moc_fild20,0,0 monster Drops 1113,30
|
||||
moc_fild20,0,0 monster Scorpion 1001,70
|
||||
moc_fild20,0,0 monster Picky 1050,50
|
||||
moc_fild20,0,0 monster Picky 1049,50
|
||||
moc_fild20,0,0 monster Morroc's Shadow 1918,1,30000,0,0
|
||||
moc_fild20,0,0 monster Morroc's Shadow 1919,1,30000,0,0
|
||||
moc_fild20,0,0 monster Morroc's Shadow 1920,1,30000,0,0
|
||||
moc_fild20,0,0 monster Morroc's Shadow 1921,1,30000,0,0
|
||||
|
||||
//==================================================
|
||||
// moc_fild21 - Dimensional Gorge
|
||||
//==================================================
|
||||
moc_fild21,0,0,0,0 monster Golem 1040,61,0,0,0
|
||||
moc_fild21,0,0,0,0 monster Stalactic Golem 1278,46,0,0,0
|
||||
moc_fild21,0,0,0,0 monster Lava Golem 1366,46,0,0,0
|
||||
moc_fild21,0,0,0,0 monster Morroc's Shadow 1918,46,30000,0,0
|
||||
moc_fild21,0,0,0,0 monster Morroc's Shadow 1919,46,30000,0,0
|
||||
moc_fild21,0,0,0,0 monster Morroc's Shadow 1920,46,30000,0,0
|
||||
moc_fild21,0,0,0,0 monster Morroc's Shadow 1921,34,30000,0,0
|
||||
moc_fild21,0,0 monster Golem 1040,61
|
||||
moc_fild21,0,0 monster Stalactic Golem 1278,46
|
||||
moc_fild21,0,0 monster Lava Golem 1366,46
|
||||
moc_fild21,0,0 monster Morroc's Shadow 1918,46,30000,0,0
|
||||
moc_fild21,0,0 monster Morroc's Shadow 1919,46,30000,0,0
|
||||
moc_fild21,0,0 monster Morroc's Shadow 1920,46,30000,0,0
|
||||
moc_fild21,0,0 monster Morroc's Shadow 1921,34,30000,0,0
|
||||
|
||||
//==================================================
|
||||
// moc_fild22 - Dimensional Gorge
|
||||
//==================================================
|
||||
moc_fild22,0,0,0,0 monster Morroc's Shadow 1918,60,30000,0,0
|
||||
moc_fild22,0,0,0,0 monster Morroc's Shadow 1919,60,30000,0,0
|
||||
moc_fild22,0,0,0,0 monster Morroc's Shadow 1920,60,30000,0,0
|
||||
moc_fild22,0,0,0,0 monster Morroc's Shadow 1921,25,30000,0,0
|
||||
moc_fild22,0,0,0,0 monster Wounded Satan Morroc 1917,1,43200000,3600000,1
|
||||
moc_fild22,0,0 monster Morroc's Shadow 1918,60,30000,0,0
|
||||
moc_fild22,0,0 monster Morroc's Shadow 1919,60,30000,0,0
|
||||
moc_fild22,0,0 monster Morroc's Shadow 1920,60,30000,0,0
|
||||
moc_fild22,0,0 monster Morroc's Shadow 1921,25,30000,0,0
|
||||
moc_fild22,0,0 monster Wounded Satan Morroc 1917,1,43200000,3600000
|
||||
|
||||
@@ -12,9 +12,9 @@
|
||||
//==================================================
|
||||
// mosk_fild02 - Moscovia Field
|
||||
//==================================================
|
||||
mosk_fild02,0,0,0,0 monster Bigfoot 1060,40,0,0,0
|
||||
mosk_fild02,0,0,0,0 monster Caramel 1103,20,0,0,0
|
||||
mosk_fild02,0,0,0,0 monster Mantis 1139,30,0,0,0
|
||||
mosk_fild02,0,0,0,0 monster Poring 1002,10,0,0,0
|
||||
mosk_fild02,0,0,0,0 monster Yellow Plant 1081,5,0,0,0
|
||||
mosk_fild02,0,0,0,0 monster White Plant 1082,5,10000,0,0
|
||||
mosk_fild02,0,0 monster Bigfoot 1060,40
|
||||
mosk_fild02,0,0 monster Caramel 1103,20
|
||||
mosk_fild02,0,0 monster Mantis 1139,30
|
||||
mosk_fild02,0,0 monster Poring 1002,10
|
||||
mosk_fild02,0,0 monster Yellow Plant 1081,5
|
||||
mosk_fild02,0,0 monster White Plant 1082,5,10000
|
||||
|
||||
@@ -18,41 +18,41 @@
|
||||
//==================================================
|
||||
// nif_fild01 - Skellington, a Solitary Village in Niflheim
|
||||
//==================================================
|
||||
nif_fild01,0,0,0,0 monster Disguise 1506,20,0,0,0
|
||||
nif_fild01,0,0,0,0 monster Disguise 1506,30,300000,120000,0
|
||||
nif_fild01,227,253,20,20 monster Dullahan 1504,7,1800000,1200000,0
|
||||
nif_fild01,0,0,0,0 monster Dullahan 1504,13,0,0,0
|
||||
nif_fild01,0,0,0,0 monster Gibbet 1503,10,0,0,0
|
||||
nif_fild01,0,0,0,0 monster Heirozoist 1510,10,0,0,0
|
||||
nif_fild01,0,0,0,0 monster Quve 1508,30,0,0,0
|
||||
nif_fild01,0,0 monster Disguise 1506,20
|
||||
nif_fild01,0,0 monster Disguise 1506,30,300000,120000
|
||||
nif_fild01,227,253,20,20 monster Dullahan 1504,7,1800000,1200000
|
||||
nif_fild01,0,0 monster Dullahan 1504,13
|
||||
nif_fild01,0,0 monster Gibbet 1503,10
|
||||
nif_fild01,0,0 monster Heirozoist 1510,10
|
||||
nif_fild01,0,0 monster Quve 1508,30
|
||||
|
||||
//==================================================
|
||||
// nif_fild02 - Valley of Gyoll
|
||||
//==================================================
|
||||
nif_fild02,366,236,15,15 monster Lude 1509,10,360000,150000,0
|
||||
nif_fild02,356,139,10,10 monster Bloody Murderer 1507,1,1200000,600000,0
|
||||
nif_fild02,144,232,10,10 monster Bloody Murderer 1507,1,1200000,600000,0
|
||||
nif_fild02,118,282,15,15 monster Bloody Murderer 1507,1,1200000,600000,0
|
||||
nif_fild02,62,327,15,15 monster Bloody Murderer 1507,1,1200000,600000,0
|
||||
nif_fild02,0,0,0,0 monster Bloody Murderer 1507,7,0,0,0
|
||||
nif_fild02,114,136,15,15 monster Loli Ruri 1505,2,1200000,600000,0
|
||||
nif_fild02,52,115,10,10 monster Heirozoist 1510,4,1200000,600000,0
|
||||
nif_fild02,84,276,15,15 monster Gibbet 1503,5,1200000,600000,0
|
||||
nif_fild02,352,273,15,15 monster Gibbet 1503,5,300000,150000,0
|
||||
nif_fild02,0,0,0,0 monster Loli Ruri 1505,19,120000,60000,0
|
||||
nif_fild02,352,273,15,15 monster Dullahan 1504,5,600000,300000,0
|
||||
nif_fild02,0,0,0,0 monster Dullahan 1504,5,0,0,0
|
||||
nif_fild02,0,0,0,0 monster Heirozoist 1510,6,0,0,0
|
||||
nif_fild02,0,0,0,0 monster Gibbet 1503,10,0,0,0
|
||||
nif_fild02,366,236,15,15 monster Lude 1509,10,360000,150000
|
||||
nif_fild02,356,139,10,10 monster Bloody Murderer 1507,1,1200000,600000
|
||||
nif_fild02,144,232,10,10 monster Bloody Murderer 1507,1,1200000,600000
|
||||
nif_fild02,118,282,15,15 monster Bloody Murderer 1507,1,1200000,600000
|
||||
nif_fild02,62,327,15,15 monster Bloody Murderer 1507,1,1200000,600000
|
||||
nif_fild02,0,0 monster Bloody Murderer 1507,7
|
||||
nif_fild02,114,136,15,15 monster Loli Ruri 1505,2,1200000,600000
|
||||
nif_fild02,52,115,10,10 monster Heirozoist 1510,4,1200000,600000
|
||||
nif_fild02,84,276,15,15 monster Gibbet 1503,5,1200000,600000
|
||||
nif_fild02,352,273,15,15 monster Gibbet 1503,5,300000,150000
|
||||
nif_fild02,0,0 monster Loli Ruri 1505,19,120000,60000
|
||||
nif_fild02,352,273,15,15 monster Dullahan 1504,5,600000,300000
|
||||
nif_fild02,0,0 monster Dullahan 1504,5
|
||||
nif_fild02,0,0 monster Heirozoist 1510,6
|
||||
nif_fild02,0,0 monster Gibbet 1503,10
|
||||
|
||||
//==================================================
|
||||
// niflheim - Niflheim, Realm of the Dead
|
||||
//==================================================
|
||||
niflheim,0,0,0,0 monster Dullahan 1504,5,1800000,1200000,0
|
||||
niflheim,0,0,0,0 monster Gibbet 1503,10,1200000,600000,0
|
||||
niflheim,0,0,0,0 monster Heirozoist 1510,10,1200000,600000,0
|
||||
niflheim,0,0,0,0 monster Quve 1508,20,300000,150000,0
|
||||
niflheim,0,0,0,0 monster Lude 1509,20,300000,150000,0
|
||||
niflheim,0,0 monster Dullahan 1504,5,1800000,1200000
|
||||
niflheim,0,0 monster Gibbet 1503,10,1200000,600000
|
||||
niflheim,0,0 monster Heirozoist 1510,10,1200000,600000
|
||||
niflheim,0,0 monster Quve 1508,20,300000,150000
|
||||
niflheim,0,0 monster Lude 1509,20,300000,150000
|
||||
|
||||
niflheim,1,1,0 script NifInvasion -1,{
|
||||
OnInit:
|
||||
|
||||
@@ -16,132 +16,132 @@
|
||||
//==================================================
|
||||
// pay_fild01 - Payon Forest
|
||||
//==================================================
|
||||
pay_fild01,0,0,0,0 monster Willow 1010,10,0,0,0
|
||||
pay_fild01,0,0,0,0 monster Poporing 1031,10,0,0,0
|
||||
pay_fild01,0,0,0,0 monster Poring 1002,10,0,0,0
|
||||
pay_fild01,0,0,0,0 monster Spore 1014,100,0,0,0
|
||||
pay_fild01,340,89,0,0 monster Black Mushroom 1084,1,180000,90000,1
|
||||
pay_fild01,336,116,0,0 monster Black Mushroom 1084,1,180000,90000,1
|
||||
pay_fild01,231,258,0,0 monster Black Mushroom 1084,1,180000,90000,1
|
||||
pay_fild01,215,323,0,0 monster Black Mushroom 1084,1,180000,90000,1
|
||||
pay_fild01,340,89,0,0 monster Black Mushroom 1084,1,180000,90000,1
|
||||
pay_fild01,225,310,0,0 monster Black Mushroom 1084,1,180000,90000,1
|
||||
pay_fild01,129,288,0,0 monster Black Mushroom 1084,1,180000,90000,1
|
||||
pay_fild01,75,269,0,0 monster Black Mushroom 1084,1,180000,90000,1
|
||||
pay_fild01,80,226,0,0 monster Black Mushroom 1084,1,180000,90000,1
|
||||
pay_fild01,89,177,0,0 monster Black Mushroom 1084,1,180000,90000,1
|
||||
pay_fild01,95,85,0,0 monster Black Mushroom 1084,1,180000,90000,1
|
||||
pay_fild01,57,85,0,0 monster Black Mushroom 1084,1,180000,90000,1
|
||||
pay_fild01,64,113,0,0 monster Black Mushroom 1084,1,180000,90000,1
|
||||
pay_fild01,64,190,0,0 monster Black Mushroom 1084,1,180000,90000,1
|
||||
pay_fild01,70,246,0,0 monster Black Mushroom 1084,1,180000,90000,1
|
||||
pay_fild01,0,0,0,0 monster Green Plant 1080,5,180000,90000,1
|
||||
pay_fild01,0,0 monster Willow 1010,10
|
||||
pay_fild01,0,0 monster Poporing 1031,10
|
||||
pay_fild01,0,0 monster Poring 1002,10
|
||||
pay_fild01,0,0 monster Spore 1014,100
|
||||
pay_fild01,340,89 monster Black Mushroom 1084,1,180000,90000
|
||||
pay_fild01,336,116 monster Black Mushroom 1084,1,180000,90000
|
||||
pay_fild01,231,258 monster Black Mushroom 1084,1,180000,90000
|
||||
pay_fild01,215,323 monster Black Mushroom 1084,1,180000,90000
|
||||
pay_fild01,340,89 monster Black Mushroom 1084,1,180000,90000
|
||||
pay_fild01,225,310 monster Black Mushroom 1084,1,180000,90000
|
||||
pay_fild01,129,288 monster Black Mushroom 1084,1,180000,90000
|
||||
pay_fild01,75,269 monster Black Mushroom 1084,1,180000,90000
|
||||
pay_fild01,80,226 monster Black Mushroom 1084,1,180000,90000
|
||||
pay_fild01,89,177 monster Black Mushroom 1084,1,180000,90000
|
||||
pay_fild01,95,85 monster Black Mushroom 1084,1,180000,90000
|
||||
pay_fild01,57,85 monster Black Mushroom 1084,1,180000,90000
|
||||
pay_fild01,64,113 monster Black Mushroom 1084,1,180000,90000
|
||||
pay_fild01,64,190 monster Black Mushroom 1084,1,180000,90000
|
||||
pay_fild01,70,246 monster Black Mushroom 1084,1,180000,90000
|
||||
pay_fild01,0,0 monster Green Plant 1080,5,180000,90000
|
||||
|
||||
//==================================================
|
||||
// pay_fild02 - Payon Forest
|
||||
//==================================================
|
||||
pay_fild02,0,0,0,0 monster Boa 1025,30,0,0,0
|
||||
pay_fild02,0,0,0,0 monster Wolf 1013,70,0,0,0
|
||||
pay_fild02,0,0,0,0 monster Spore 1014,10,0,0,0
|
||||
pay_fild02,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
pay_fild02,105,256,10,10 monster Green Plant 1080,4,360000,180000,1
|
||||
pay_fild02,105,256,10,10 monster Red Mushroom 1085,4,360000,180000,1
|
||||
pay_fild02,0,0 monster Boa 1025,30
|
||||
pay_fild02,0,0 monster Wolf 1013,70
|
||||
pay_fild02,0,0 monster Spore 1014,10
|
||||
pay_fild02,0,0 monster Poporing 1031,20
|
||||
pay_fild02,105,256,10,10 monster Green Plant 1080,4,360000,180000
|
||||
pay_fild02,105,256,10,10 monster Red Mushroom 1085,4,360000,180000
|
||||
|
||||
//==================================================
|
||||
// pay_fild03 - Payon Forest
|
||||
//==================================================
|
||||
pay_fild03,0,0,0,0 monster Poring 1002,30,0,0,0
|
||||
pay_fild03,0,0,0,0 monster Willow 1010,30,0,0,0
|
||||
pay_fild03,0,0,0,0 monster Pupa 1008,50,0,0,0
|
||||
pay_fild03,0,0,0,0 monster Lunatic 1063,50,0,0,0
|
||||
pay_fild03,153,216,10,10 monster Red Mushroom 1085,6,900000,450000,1
|
||||
pay_fild03,372,64,15,15 monster Green Plant 1080,4,180000,90000,1
|
||||
pay_fild03,0,0 monster Poring 1002,30
|
||||
pay_fild03,0,0 monster Willow 1010,30
|
||||
pay_fild03,0,0 monster Pupa 1008,50
|
||||
pay_fild03,0,0 monster Lunatic 1063,50
|
||||
pay_fild03,153,216,10,10 monster Red Mushroom 1085,6,900000,450000
|
||||
pay_fild03,372,64,15,15 monster Green Plant 1080,4,180000,90000
|
||||
|
||||
//==================================================
|
||||
// pay_fild04 - Sograt Desert
|
||||
//==================================================
|
||||
pay_fild04,0,0,0,0 monster Poring 1002,40,0,0,0
|
||||
pay_fild04,0,0,0,0 monster Drops 1113,40,0,0,0
|
||||
pay_fild04,0,0,0,0 monster Poporing 1031,40,0,0,0
|
||||
pay_fild04,0,0,0,0 monster Marin 1242,10,0,0,0
|
||||
pay_fild04,0,0,0,0 monster Ghostring 1120,1,3600000,1800000,1
|
||||
pay_fild04,0,0,0,0 monster Mastering 1090,1,3600000,1800000,1
|
||||
pay_fild04,0,0,0,0 monster Angeling 1096,1,3600000,1800000,1
|
||||
pay_fild04,0,0,0,0 monster Deviling 1582,1,7200000,3600000,1
|
||||
pay_fild04,346,335,5,5 monster Shining Plant 1083,1,1800000,900000,1
|
||||
pay_fild04,254,193,10,10 monster Green Plant 1080,5,360000,180000,1
|
||||
pay_fild04,0,0 monster Poring 1002,40
|
||||
pay_fild04,0,0 monster Drops 1113,40
|
||||
pay_fild04,0,0 monster Poporing 1031,40
|
||||
pay_fild04,0,0 monster Marin 1242,10
|
||||
pay_fild04,0,0 monster Ghostring 1120,1,3600000,1800000
|
||||
pay_fild04,0,0 monster Mastering 1090,1,3600000,1800000
|
||||
pay_fild04,0,0 monster Angeling 1096,1,3600000,1800000
|
||||
pay_fild04,0,0 monster Deviling 1582,1,7200000,3600000
|
||||
pay_fild04,346,335,5,5 monster Shining Plant 1083,1,1800000,900000
|
||||
pay_fild04,254,193,10,10 monster Green Plant 1080,5,360000,180000
|
||||
|
||||
//==================================================
|
||||
// pay_fild05 - Payon Forest
|
||||
//==================================================
|
||||
pay_fild05,0,0,0,0 monster Dragon Tail 1321,5,0,0,0
|
||||
pay_fild05,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
pay_fild05,0,0,0,0 monster Poison Spore 1077,65,0,0,0
|
||||
pay_fild05,95,147,5,5 monster Green Plant 1080,4,900000,450000,1
|
||||
pay_fild05,86,90,5,5 monster Green Plant 1080,4,900000,450000,1
|
||||
pay_fild05,0,0 monster Dragon Tail 1321,5
|
||||
pay_fild05,0,0 monster Poporing 1031,20
|
||||
pay_fild05,0,0 monster Poison Spore 1077,65
|
||||
pay_fild05,95,147,5,5 monster Green Plant 1080,4,900000,450000
|
||||
pay_fild05,86,90,5,5 monster Green Plant 1080,4,900000,450000
|
||||
|
||||
//==================================================
|
||||
// pay_fild06 - Payon Forest
|
||||
//==================================================
|
||||
pay_fild06,0,0,0,0 monster Wormtail 1024,90,0,0,0
|
||||
pay_fild06,0,0,0,0 monster Spore 1014,20,0,0,0
|
||||
pay_fild06,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
pay_fild06,0,0,0,0 monster Thief Bug Female 1053,40,0,0,0
|
||||
pay_fild06,211,191,2,10 monster Red Mushroom 1085,8,180000,90000,1
|
||||
pay_fild06,268,155,20,20 monster Green Plant 1080,10,360000,180000,1
|
||||
pay_fild06,268,155,20,20 monster Shining Plant 1083,1,1800000,900000,1
|
||||
pay_fild06,0,0 monster Wormtail 1024,90
|
||||
pay_fild06,0,0 monster Spore 1014,20
|
||||
pay_fild06,0,0 monster Poporing 1031,20
|
||||
pay_fild06,0,0 monster Thief Bug Female 1053,40
|
||||
pay_fild06,211,191,2,10 monster Red Mushroom 1085,8,180000,90000
|
||||
pay_fild06,268,155,20,20 monster Green Plant 1080,10,360000,180000
|
||||
pay_fild06,268,155,20,20 monster Shining Plant 1083,1,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// pay_fild07 - Payon Forest
|
||||
//==================================================
|
||||
pay_fild07,0,0,0,0 monster Elder Willow 1033,70,0,0,0
|
||||
pay_fild07,0,0,0,0 monster Eggyra 1116,40,0,0,0
|
||||
pay_fild07,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
pay_fild07,0,0,0,0 monster Willow 1010,20,0,0,0
|
||||
pay_fild07,0,0,0,0 monster Bigfoot 1060,30,0,0,0
|
||||
pay_fild07,171,331,20,20 monster Green Plant 1080,8,900000,450000,1
|
||||
pay_fild07,0,0 monster Elder Willow 1033,70
|
||||
pay_fild07,0,0 monster Eggyra 1116,40
|
||||
pay_fild07,0,0 monster Poporing 1031,20
|
||||
pay_fild07,0,0 monster Willow 1010,20
|
||||
pay_fild07,0,0 monster Bigfoot 1060,30
|
||||
pay_fild07,171,331,20,20 monster Green Plant 1080,8,900000,450000
|
||||
|
||||
//==================================================
|
||||
// pay_fild08 - Payon Forest
|
||||
//==================================================
|
||||
pay_fild08,0,0,0,0 monster Poring 1002,30,0,0,0
|
||||
pay_fild08,0,0,0,0 monster Willow 1010,50,0,0,0
|
||||
pay_fild08,0,0,0,0 monster Pupa 1008,20,0,0,0
|
||||
pay_fild08,0,0,0,0 monster Spore 1014,70,0,0,0
|
||||
pay_fild08,0,0,0,0 monster Green Plant 1080,10,60000,30000,1
|
||||
pay_fild08,143,156,40,40 monster Shining Plant 1083,1,3600000,1800000,1
|
||||
pay_fild08,0,0 monster Poring 1002,30
|
||||
pay_fild08,0,0 monster Willow 1010,50
|
||||
pay_fild08,0,0 monster Pupa 1008,20
|
||||
pay_fild08,0,0 monster Spore 1014,70
|
||||
pay_fild08,0,0 monster Green Plant 1080,10,60000,30000
|
||||
pay_fild08,143,156,40,40 monster Shining Plant 1083,1,3600000,1800000
|
||||
|
||||
//==================================================
|
||||
// pay_fild09 - Payon Forest
|
||||
//==================================================
|
||||
pay_fild09,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
pay_fild09,0,0,0,0 monster Smokie 1056,80,0,0,0
|
||||
pay_fild09,0,0,0,0 monster Bigfoot 1060,70,0,0,0
|
||||
pay_fild09,198,217,30,30 monster Green Plant 1080,10,360000,180000,0
|
||||
pay_fild09,198,217,30,30 monster Shining Plant 1083,1,1800000,900000,1
|
||||
pay_fild09,0,0 monster Poporing 1031,20
|
||||
pay_fild09,0,0 monster Smokie 1056,80
|
||||
pay_fild09,0,0 monster Bigfoot 1060,70
|
||||
pay_fild09,198,217,30,30 monster Green Plant 1080,10,360000,180000
|
||||
pay_fild09,198,217,30,30 monster Shining Plant 1083,1,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// pay_fild10 - Payon Forest
|
||||
//==================================================
|
||||
pay_fild10,0,0,0,0 monster Greatest General 1277,65,0,0,0
|
||||
pay_fild10,0,0,0,0 monster Dokebi 1110,70,0,0,0
|
||||
pay_fild10,0,0,0,0 monster Poison Spore 1077,20,0,0,0
|
||||
pay_fild10,0,0,0,0 monster Nine Tail 1180,2,0,0,0
|
||||
pay_fild10,0,0,0,0 monster Nine Tail 1180,1,1800000,900000,1
|
||||
pay_fild10,0,0,0,0 monster Nine Tail 1180,1,900000,450000,1
|
||||
pay_fild10,213,157,10,10 monster Green Plant 1080,5,360000,180000,1
|
||||
pay_fild10,281,307,10,10 monster Green Plant 1080,5,360000,180000,1
|
||||
pay_fild10,66,332,10,10 monster Green Plant 1080,5,360000,180000,1
|
||||
pay_fild10,213,157,10,10 monster Blue Plant 1079,1,360000,180000,1
|
||||
pay_fild10,281,307,10,10 monster Blue Plant 1079,1,360000,180000,1
|
||||
pay_fild10,66,332,10,10 monster Blue Plant 1079,1,360000,180000,1
|
||||
pay_fild10,0,0 monster Greatest General 1277,65
|
||||
pay_fild10,0,0 monster Dokebi 1110,70
|
||||
pay_fild10,0,0 monster Poison Spore 1077,20
|
||||
pay_fild10,0,0 monster Nine Tail 1180,2
|
||||
pay_fild10,0,0 monster Nine Tail 1180,1,1800000,900000
|
||||
pay_fild10,0,0 monster Nine Tail 1180,1,900000,450000
|
||||
pay_fild10,213,157,10,10 monster Green Plant 1080,5,360000,180000
|
||||
pay_fild10,281,307,10,10 monster Green Plant 1080,5,360000,180000
|
||||
pay_fild10,66,332,10,10 monster Green Plant 1080,5,360000,180000
|
||||
pay_fild10,213,157,10,10 monster Blue Plant 1079,1,360000,180000
|
||||
pay_fild10,281,307,10,10 monster Blue Plant 1079,1,360000,180000
|
||||
pay_fild10,66,332,10,10 monster Blue Plant 1079,1,360000,180000
|
||||
|
||||
//==================================================
|
||||
// pay_fild11 - Payon Forest
|
||||
//==================================================
|
||||
pay_fild11,0,0,0,0 monster Greatest General 1277,30,0,0,0
|
||||
pay_fild11,0,0,0,0 monster Nine Tail 1180,60,180000,0,0
|
||||
pay_fild11,0,0,0,0 monster Dragon Tail 1321,50,180000,0,0
|
||||
pay_fild11,0,0 monster Greatest General 1277,30
|
||||
pay_fild11,0,0 monster Nine Tail 1180,60,180000
|
||||
pay_fild11,0,0 monster Dragon Tail 1321,50,180000
|
||||
pay_fild11,0,0,0,0 boss_monster Eddga 1115,1,7200000,600000,1
|
||||
pay_fild11,241,162,5,5 monster Red Mushroom 1085,3,360000,180000,1
|
||||
pay_fild11,66,293,5,5 monster Red Mushroom 1085,3,360000,180000,1
|
||||
pay_fild11,241,162,5,5 monster Red Mushroom 1085,3,360000,180000
|
||||
pay_fild11,66,293,5,5 monster Red Mushroom 1085,3,360000,180000
|
||||
|
||||
@@ -15,127 +15,127 @@
|
||||
//==================================================
|
||||
// prt_fild00 - Prontera Field
|
||||
//==================================================
|
||||
prt_fild00,0,0,0,0 monster Creamy 1018,10,0,0,0
|
||||
prt_fild00,0,0,0,0 monster Fabre 1007,20,0,0,0
|
||||
prt_fild00,0,0,0,0 monster Pupa 1008,30,0,0,0
|
||||
prt_fild00,0,0,0,0 monster Lunatic 1063,30,0,0,0
|
||||
prt_fild00,0,0,0,0 monster Poring 1002,40,0,0,0
|
||||
prt_fild00,0,0,0,0 monster Hornet 1004,70,0,0,0
|
||||
prt_fild00,227,212,0,0 monster Shining Plant 1083,1,1800000,900000,1
|
||||
prt_fild00,285,138,10,10 monster Green Plant 1080,5,360000,180000,1
|
||||
prt_fild00,0,0 monster Creamy 1018,10
|
||||
prt_fild00,0,0 monster Fabre 1007,20
|
||||
prt_fild00,0,0 monster Pupa 1008,30
|
||||
prt_fild00,0,0 monster Lunatic 1063,30
|
||||
prt_fild00,0,0 monster Poring 1002,40
|
||||
prt_fild00,0,0 monster Hornet 1004,70
|
||||
prt_fild00,227,212 monster Shining Plant 1083,1,1800000,900000
|
||||
prt_fild00,285,138,10,10 monster Green Plant 1080,5,360000,180000
|
||||
|
||||
//==================================================
|
||||
// prt_fild01 - Prontera Field
|
||||
//==================================================
|
||||
prt_fild01,0,0,0,0 monster Thief Bug 1051,30,0,0,0
|
||||
prt_fild01,0,0,0,0 monster Fabre 1007,20,0,0,0
|
||||
prt_fild01,0,0,0,0 monster Pupa 1008,10,0,0,0
|
||||
prt_fild01,0,0,0,0 monster Lunatic 1063,80,0,0,0
|
||||
prt_fild01,0,0,0,0 monster Poring 1002,30,0,0,0
|
||||
prt_fild01,199,266,3,3 monster Green Plant 1080,3,360000,180000,1
|
||||
prt_fild01,199,266,3,3 monster Blue Plant 1079,1,900000,450000,1
|
||||
prt_fild01,0,0 monster Thief Bug 1051,30
|
||||
prt_fild01,0,0 monster Fabre 1007,20
|
||||
prt_fild01,0,0 monster Pupa 1008,10
|
||||
prt_fild01,0,0 monster Lunatic 1063,80
|
||||
prt_fild01,0,0 monster Poring 1002,30
|
||||
prt_fild01,199,266,3,3 monster Green Plant 1080,3,360000,180000
|
||||
prt_fild01,199,266,3,3 monster Blue Plant 1079,1,900000,450000
|
||||
|
||||
//==================================================
|
||||
// prt_fild02 - Prontera Field
|
||||
//==================================================
|
||||
prt_fild02,0,0,0,0 monster Mandragora 1020,70,0,0,0
|
||||
prt_fild02,0,0,0,0 monster Fabre 1007,50,0,0,0
|
||||
prt_fild02,0,0,0,0 monster Pupa 1008,20,0,0,0
|
||||
prt_fild02,0,0,0,0 monster Lunatic 1063,10,0,0,0
|
||||
prt_fild02,0,0,0,0 monster Poring 1002,30,0,0,0
|
||||
prt_fild02,0,0,0,0 monster Eclipse 1093,1,1800000,1200000,0
|
||||
prt_fild02,339,309,3,3 monster Shining Plant 1083,1,1800000,900000,1
|
||||
prt_fild02,0,0,0,0 monster Shining Plant 1083,2,1800000,900000,1
|
||||
prt_fild02,0,0 monster Mandragora 1020,70
|
||||
prt_fild02,0,0 monster Fabre 1007,50
|
||||
prt_fild02,0,0 monster Pupa 1008,20
|
||||
prt_fild02,0,0 monster Lunatic 1063,10
|
||||
prt_fild02,0,0 monster Poring 1002,30
|
||||
prt_fild02,0,0 monster Eclipse 1093,1,1800000,1200000
|
||||
prt_fild02,339,309,3,3 monster Shining Plant 1083,1,1800000,900000
|
||||
prt_fild02,0,0 monster Shining Plant 1083,2,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// prt_fild03 - Prontera Field
|
||||
//==================================================
|
||||
prt_fild03,0,0,0,0 monster Yoyo 1057,80,0,0,0
|
||||
prt_fild03,0,0,0,0 monster Smokie 1056,40,0,0,0
|
||||
prt_fild03,0,0,0,0 monster Choco 1214,1,0,0,0
|
||||
prt_fild03,0,0,0,0 monster Poporing 1031,10,0,0,0
|
||||
prt_fild03,296,58,15,15 monster Green Plant 1080,5,180000,90000,1
|
||||
prt_fild03,296,58,15,15 monster Blue Plant 1079,2,900000,450000,1
|
||||
prt_fild03,307,75,5,5 monster Green Plant 1080,5,360000,180000,1
|
||||
prt_fild03,0,0,0,0 monster Green Plant 1080,5,360000,180000,1
|
||||
prt_fild03,148,107,5,5 monster Green Plant 1080,5,360000,180000,1
|
||||
prt_fild03,0,0 monster Yoyo 1057,80
|
||||
prt_fild03,0,0 monster Smokie 1056,40
|
||||
prt_fild03,0,0 monster Choco 1214,1
|
||||
prt_fild03,0,0 monster Poporing 1031,10
|
||||
prt_fild03,296,58,15,15 monster Green Plant 1080,5,180000,90000
|
||||
prt_fild03,296,58,15,15 monster Blue Plant 1079,2,900000,450000
|
||||
prt_fild03,307,75,5,5 monster Green Plant 1080,5,360000,180000
|
||||
prt_fild03,0,0 monster Green Plant 1080,5,360000,180000
|
||||
prt_fild03,148,107,5,5 monster Green Plant 1080,5,360000,180000
|
||||
|
||||
//==================================================
|
||||
// prt_fild04 - Prontera Field
|
||||
//==================================================
|
||||
prt_fild04,0,0,0,0 monster Rocker 1052,70,0,0,0
|
||||
prt_fild04,0,0,0,0 monster Creamy 1018,40,0,0,0
|
||||
prt_fild04,0,0,0,0 monster Pupa 1008,10,0,0,0
|
||||
prt_fild04,0,0,0,0 monster Poring 1002,30,0,0,0
|
||||
prt_fild04,0,0,0,0 monster Vocal 1088,1,1800000,1200000,0
|
||||
prt_fild04,350,114,10,10 monster Green Plant 1080,5,900000,450000,1
|
||||
prt_fild04,0,0 monster Rocker 1052,70
|
||||
prt_fild04,0,0 monster Creamy 1018,40
|
||||
prt_fild04,0,0 monster Pupa 1008,10
|
||||
prt_fild04,0,0 monster Poring 1002,30
|
||||
prt_fild04,0,0 monster Vocal 1088,1,1800000,1200000
|
||||
prt_fild04,350,114,10,10 monster Green Plant 1080,5,900000,450000
|
||||
|
||||
//==================================================
|
||||
// prt_fild05 - Prontera Field
|
||||
//==================================================
|
||||
prt_fild05,0,0,0,0 monster Poring 1002,70,0,0,0
|
||||
prt_fild05,0,0,0,0 monster Thief Bug Egg 1048,20,0,0,0
|
||||
prt_fild05,0,0,0,0 monster Lunatic 1063,30,0,0,0
|
||||
prt_fild05,0,0,0,0 monster Pupa 1008,30,0,0,0
|
||||
prt_fild05,0,0,0,0 monster Thief Bug 1051,10,0,0,0
|
||||
prt_fild05,208,37,10,10 monster Green Plant 1080,6,900000,450000,1
|
||||
prt_fild05,208,37,10,10 monster Blue Plant 1079,1,900000,450000,1
|
||||
prt_fild05,0,0 monster Poring 1002,70
|
||||
prt_fild05,0,0 monster Thief Bug Egg 1048,20
|
||||
prt_fild05,0,0 monster Lunatic 1063,30
|
||||
prt_fild05,0,0 monster Pupa 1008,30
|
||||
prt_fild05,0,0 monster Thief Bug 1051,10
|
||||
prt_fild05,208,37,10,10 monster Green Plant 1080,6,900000,450000
|
||||
prt_fild05,208,37,10,10 monster Blue Plant 1079,1,900000,450000
|
||||
|
||||
//==================================================
|
||||
// prt_fild06 - Prontera Field
|
||||
//==================================================
|
||||
prt_fild06,0,0,0,0 monster Lunatic 1063,60,0,0,0
|
||||
prt_fild06,0,0,0,0 monster Thief Bug Egg 1048,20,0,0,0
|
||||
prt_fild06,0,0,0,0 monster Thief Bug 1051,10,0,0,0
|
||||
prt_fild06,0,0,0,0 monster Pupa 1008,20,0,0,0
|
||||
prt_fild06,0,0,0,0 monster Poring 1002,60,0,0,0
|
||||
prt_fild06,222,30,40,10 monster Green Plant 1080,15,900000,450000,1
|
||||
prt_fild06,0,0 monster Lunatic 1063,60
|
||||
prt_fild06,0,0 monster Thief Bug Egg 1048,20
|
||||
prt_fild06,0,0 monster Thief Bug 1051,10
|
||||
prt_fild06,0,0 monster Pupa 1008,20
|
||||
prt_fild06,0,0 monster Poring 1002,60
|
||||
prt_fild06,222,30,40,10 monster Green Plant 1080,15,900000,450000
|
||||
|
||||
//==================================================
|
||||
// prt_fild07 - Prontera Field
|
||||
//==================================================
|
||||
prt_fild07,0,0,0,0 monster Rocker 1052,80,0,0,0
|
||||
prt_fild07,0,0,0,0 monster Poporing 1031,30,0,0,0
|
||||
prt_fild07,0,0,0,0 monster Vocal 1088,1,1800000,1200000,0
|
||||
prt_fild07,225,110,5,5 monster Black Mushroom 1084,3,360000,180000,1
|
||||
prt_fild07,0,0 monster Rocker 1052,80
|
||||
prt_fild07,0,0 monster Poporing 1031,30
|
||||
prt_fild07,0,0 monster Vocal 1088,1,1800000,1200000
|
||||
prt_fild07,225,110,5,5 monster Black Mushroom 1084,3,360000,180000
|
||||
|
||||
//==================================================
|
||||
// prt_fild08 - Prontera Field
|
||||
//==================================================
|
||||
prt_fild08,0,0,0,0 monster Lunatic 1063,40,0,0,0
|
||||
prt_fild08,0,0,0,0 monster Pupa 1008,20,0,0,0
|
||||
prt_fild08,0,0,0,0 monster Poring 1002,70,0,0,0
|
||||
prt_fild08,0,0,0,0 monster Drops 1113,10,0,0,0
|
||||
prt_fild08,0,0 monster Lunatic 1063,40
|
||||
prt_fild08,0,0 monster Pupa 1008,20
|
||||
prt_fild08,0,0 monster Poring 1002,70
|
||||
prt_fild08,0,0 monster Drops 1113,10
|
||||
|
||||
//==================================================
|
||||
// prt_fild09 - Prontera Field
|
||||
//==================================================
|
||||
prt_fild09,0,0,0,0 monster Savage Babe 1167,70,0,0,0
|
||||
prt_fild09,0,0,0,0 monster Baby Desert Wolf 1107,20,0,0,0
|
||||
prt_fild09,0,0,0,0 monster Peco Peco Egg 1047,20,0,0,0
|
||||
prt_fild09,0,0,0,0 monster Picky 1049,20,0,0,0
|
||||
prt_fild09,0,0,0,0 monster Condor 1009,10,0,0,0
|
||||
prt_fild09,237,115,5,5 monster Yellow Plant 1081,3,360000,180000,1
|
||||
prt_fild09,0,0 monster Savage Babe 1167,70
|
||||
prt_fild09,0,0 monster Baby Desert Wolf 1107,20
|
||||
prt_fild09,0,0 monster Peco Peco Egg 1047,20
|
||||
prt_fild09,0,0 monster Picky 1049,20
|
||||
prt_fild09,0,0 monster Condor 1009,10
|
||||
prt_fild09,237,115,5,5 monster Yellow Plant 1081,3,360000,180000
|
||||
|
||||
//==================================================
|
||||
// prt_fild10 - Prontera Field
|
||||
//==================================================
|
||||
prt_fild10,0,0,0,0 monster Savage 1166,70,0,0,0
|
||||
prt_fild10,0,0,0,0 monster Savage Babe 1167,40,0,0,0
|
||||
prt_fild10,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
prt_fild10,0,0,0,0 monster Thief Bug 1051,10,0,0,0
|
||||
prt_fild10,99,114,20,5 monster Red Mushroom 1085,15,360000,180000,1
|
||||
prt_fild10,155,179,10,10 monster Shining Plant 1083,1,1800000,900000,1
|
||||
prt_fild10,0,0 monster Savage 1166,70
|
||||
prt_fild10,0,0 monster Savage Babe 1167,40
|
||||
prt_fild10,0,0 monster Poporing 1031,20
|
||||
prt_fild10,0,0 monster Thief Bug 1051,10
|
||||
prt_fild10,99,114,20,5 monster Red Mushroom 1085,15,360000,180000
|
||||
prt_fild10,155,179,10,10 monster Shining Plant 1083,1,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// prt_fild11 - Prontera Field
|
||||
//==================================================
|
||||
prt_fild11,0,0,0,0 monster Goblin 1122,10,0,0,0
|
||||
prt_fild11,0,0,0,0 monster Goblin 1123,20,0,0,0
|
||||
prt_fild11,0,0,0,0 monster Goblin 1124,20,0,0,0
|
||||
prt_fild11,0,0,0,0 monster Goblin 1125,30,0,0,0
|
||||
prt_fild11,0,0,0,0 monster Goblin 1126,30,0,0,0
|
||||
prt_fild11,0,0,0,0 monster Goblin Archer 1258,10,0,0,0
|
||||
prt_fild11,0,0,0,0 monster Panzer Goblin 1308,1,1800000,1200000,0
|
||||
prt_fild11,0,0,0,0 monster Goblin Steamrider 1280,30,0,0,0
|
||||
prt_fild11,0,0,0,0 monster Red Mushroom 1085,10,180000,90000,1
|
||||
prt_fild11,0,0 monster Goblin 1122,10
|
||||
prt_fild11,0,0 monster Goblin 1123,20
|
||||
prt_fild11,0,0 monster Goblin 1124,20
|
||||
prt_fild11,0,0 monster Goblin 1125,30
|
||||
prt_fild11,0,0 monster Goblin 1126,30
|
||||
prt_fild11,0,0 monster Goblin Archer 1258,10
|
||||
prt_fild11,0,0 monster Panzer Goblin 1308,1,1800000,1200000
|
||||
prt_fild11,0,0 monster Goblin Steamrider 1280,30
|
||||
prt_fild11,0,0 monster Red Mushroom 1085,10,180000,90000
|
||||
|
||||
@@ -16,102 +16,102 @@
|
||||
//==================================================
|
||||
// ra_fild01 - Rachel Field
|
||||
//==================================================
|
||||
ra_fild01,0,0,0,0 monster Muscipular 1780,60,0,0,1
|
||||
ra_fild01,173,170,106,80 monster Geographer 1368,30,300000,120000,1
|
||||
ra_fild01,0,0,0,0 monster Drosera 1781,20,0,0,1
|
||||
ra_fild01,0,0,0,0 monster Galion 1783,5,0,0,0
|
||||
ra_fild01,0,0,0,0 monster Gryphon 1259,3,3600000,0,1
|
||||
ra_fild01,0,0 monster Muscipular 1780,60
|
||||
ra_fild01,173,170,106,80 monster Geographer 1368,30,300000,120000
|
||||
ra_fild01,0,0 monster Drosera 1781,20
|
||||
ra_fild01,0,0 monster Galion 1783,5
|
||||
ra_fild01,0,0 monster Gryphon 1259,3,3600000
|
||||
|
||||
//==================================================
|
||||
// ra_fild02 - Rachel Field
|
||||
//==================================================
|
||||
ra_fild02,0,0,0,0 monster Muscipular 1780,60,0,0,0
|
||||
ra_fild02,0,0,0,0 monster Drosera 1781,20,0,0,0
|
||||
ra_fild02,0,0,0,0 monster Galion 1783,15,0,0,0
|
||||
ra_fild02,0,0 monster Muscipular 1780,60
|
||||
ra_fild02,0,0 monster Drosera 1781,20
|
||||
ra_fild02,0,0 monster Galion 1783,15
|
||||
ra_fild02,0,0,0,0 boss_monster Atroce 1785,1,14400000,600000,1
|
||||
|
||||
//==================================================
|
||||
// ra_fild03 - Rachel Field
|
||||
//==================================================
|
||||
ra_fild03,0,0,0,0 monster Galion 1783,35,0,0,0
|
||||
ra_fild03,0,0,0,0 monster Drosera 1781,10,0,0,1
|
||||
ra_fild03,0,0,0,0 monster Roween 1782,10,0,0,0
|
||||
ra_fild03,0,0,0,0 monster Stapo 1784,10,0,0,0
|
||||
ra_fild03,0,0 monster Galion 1783,35
|
||||
ra_fild03,0,0 monster Drosera 1781,10
|
||||
ra_fild03,0,0 monster Roween 1782,10
|
||||
ra_fild03,0,0 monster Stapo 1784,10
|
||||
ra_fild03,0,0,0,0 boss_monster Atroce 1785,1,10800000,600000,1
|
||||
|
||||
//==================================================
|
||||
// ra_fild04 - Rachel Field
|
||||
//==================================================
|
||||
ra_fild04,0,0,0,0 monster Roween 1782,60,0,0,0
|
||||
ra_fild04,0,0,0,0 monster Stapo 1784,20,0,0,0
|
||||
ra_fild04,0,0,0,0 monster Wild Rose 1261,10,0,0,0
|
||||
ra_fild04,0,0,0,0 monster Galion 1783,3,0,0,0
|
||||
ra_fild04,0,0 monster Roween 1782,60
|
||||
ra_fild04,0,0 monster Stapo 1784,20
|
||||
ra_fild04,0,0 monster Wild Rose 1261,10
|
||||
ra_fild04,0,0 monster Galion 1783,3
|
||||
ra_fild04,0,0,0,0 boss_monster Atroce 1785,1,18000000,600000,1
|
||||
|
||||
//==================================================
|
||||
// ra_fild05 - Rachel Field
|
||||
//==================================================
|
||||
ra_fild05,0,0,0,0 monster Hill Wind 1680,70,0,0,0
|
||||
ra_fild05,0,0,0,0 monster Drosera 1781,20,0,0,0
|
||||
ra_fild05,170,200,106,115 monster Geographer 1368,10,0,0,1
|
||||
ra_fild05,0,0 monster Hill Wind 1680,70
|
||||
ra_fild05,0,0 monster Drosera 1781,20
|
||||
ra_fild05,170,200,106,115 monster Geographer 1368,10
|
||||
|
||||
//==================================================
|
||||
// ra_fild06 - Rachel Field
|
||||
//==================================================
|
||||
ra_fild06,0,0,0,0 monster Hill Wind 1680,50,0,0,0
|
||||
ra_fild06,0,0,0,0 monster Anopheles 1627,20,0,0,0
|
||||
ra_fild06,0,0,0,0 monster Drosera 1781,10,0,0,1
|
||||
ra_fild06,0,0 monster Hill Wind 1680,50
|
||||
ra_fild06,0,0 monster Anopheles 1627,20
|
||||
ra_fild06,0,0 monster Drosera 1781,10
|
||||
|
||||
//==================================================
|
||||
// ra_fild07 - Rachel Field
|
||||
//==================================================
|
||||
ra_fild07,0,0,0,0 monster Roween 1782,50,0,0,0
|
||||
ra_fild07,0,0,0,0 monster Galion 1783,20,0,0,0
|
||||
ra_fild07,0,0,0,0 monster Stapo 1784,10,0,0,1
|
||||
ra_fild07,0,0 monster Roween 1782,50
|
||||
ra_fild07,0,0 monster Galion 1783,20
|
||||
ra_fild07,0,0 monster Stapo 1784,10
|
||||
|
||||
//==================================================
|
||||
// ra_fild08 - Rachel Field
|
||||
//==================================================
|
||||
ra_fild08,0,0,0,0 monster Stapo 1784,100,0,0,1
|
||||
ra_fild08,0,0,0,0 monster Drops 1113,40,0,0,0
|
||||
ra_fild08,0,0,0,0 monster Drosera 1781,20,0,0,1
|
||||
ra_fild08,0,0 monster Stapo 1784,100
|
||||
ra_fild08,0,0 monster Drops 1113,40
|
||||
ra_fild08,0,0 monster Drosera 1781,20
|
||||
|
||||
//==================================================
|
||||
// ra_fild09 - Rachel Field
|
||||
//==================================================
|
||||
ra_fild09,0,0,0,0 monster Drosera 1781,60,0,0,1
|
||||
ra_fild09,0,0,0,0 monster Metaling 1613,20,0,0,0
|
||||
ra_fild09,0,0,0,0 monster Hill Wind 1680,10,0,0,0
|
||||
ra_fild09,0,0,0,0 monster Harpy 1376,1,3600000,0,0
|
||||
ra_fild09,0,0 monster Drosera 1781,60
|
||||
ra_fild09,0,0 monster Metaling 1613,20
|
||||
ra_fild09,0,0 monster Hill Wind 1680,10
|
||||
ra_fild09,0,0 monster Harpy 1376,1,3600000
|
||||
|
||||
//==================================================
|
||||
// ra_fild10 - Rachel Field
|
||||
//==================================================
|
||||
ra_fild10,0,0,0,0 monster Stapo 1784,30,0,0,1
|
||||
ra_fild10,0,0,0,0 monster Galion 1783,20,0,0,0
|
||||
ra_fild10,0,0,0,0 monster Roween 1782,10,0,0,0
|
||||
ra_fild10,0,0 monster Stapo 1784,30
|
||||
ra_fild10,0,0 monster Galion 1783,20
|
||||
ra_fild10,0,0 monster Roween 1782,10
|
||||
|
||||
//==================================================
|
||||
// ra_fild11 - Rachel Field
|
||||
//==================================================
|
||||
ra_fild11,0,0,0,0 monster Drops 1113,100,0,0,1
|
||||
ra_fild11,0,0,0,0 monster Stapo 1784,40,0,0,0
|
||||
ra_fild11,0,0,0,0 monster Roween 1782,2,0,0,0
|
||||
ra_fild11,0,0,0,0 monster Yellow Plant 1081,15,0,0,1
|
||||
ra_fild11,0,0,0,0 monster Red Plant 1078,5,0,0,1
|
||||
ra_fild11,0,0 monster Drops 1113,100
|
||||
ra_fild11,0,0 monster Stapo 1784,40
|
||||
ra_fild11,0,0 monster Roween 1782,2
|
||||
ra_fild11,0,0 monster Yellow Plant 1081,15
|
||||
ra_fild11,0,0 monster Red Plant 1078,5
|
||||
|
||||
//==================================================
|
||||
// ra_fild12 - Rachel Field
|
||||
//==================================================
|
||||
ra_fild12,0,0,0,0 monster Drops 1113,100,0,0,0
|
||||
ra_fild12,0,0,0,0 monster Stapo 1784,40,0,0,1
|
||||
ra_fild12,0,0,0,0 monster Poporing 1031,5,0,0,0
|
||||
ra_fild12,0,0,0,0 monster Yellow Plant 1081,15,0,0,1
|
||||
ra_fild12,0,0,0,0 monster Red Plant 1078,5,0,0,1
|
||||
ra_fild12,0,0 monster Drops 1113,100
|
||||
ra_fild12,0,0 monster Stapo 1784,40
|
||||
ra_fild12,0,0 monster Poporing 1031,5
|
||||
ra_fild12,0,0 monster Yellow Plant 1081,15
|
||||
ra_fild12,0,0 monster Red Plant 1078,5
|
||||
|
||||
//==================================================
|
||||
// ra_fild13 - Rachel Field
|
||||
//==================================================
|
||||
ra_fild13,0,0,0,0 monster Stapo 1784,60,0,0,1
|
||||
ra_fild13,0,0,0,0 monster Drops 1113,40,0,0,0
|
||||
ra_fild13,0,0,0,0 monster Roween 1782,5,0,0,0
|
||||
ra_fild13,0,0 monster Stapo 1784,60
|
||||
ra_fild13,0,0 monster Drops 1113,40
|
||||
ra_fild13,0,0 monster Roween 1782,5
|
||||
|
||||
@@ -14,19 +14,19 @@
|
||||
//==================================================
|
||||
// spl_fild01 - Splendide Field
|
||||
//==================================================
|
||||
spl_fild01,0,0,0,0 monster Pinguicula 1995,50,0,0,0
|
||||
spl_fild01,0,0,0,0 monster Naga 1993,35,0,0,0
|
||||
spl_fild01,0,0,0,0 monster Cornus 1992,25,0,0,0
|
||||
spl_fild01,0,0 monster Pinguicula 1995,50
|
||||
spl_fild01,0,0 monster Naga 1993,35
|
||||
spl_fild01,0,0 monster Cornus 1992,25
|
||||
|
||||
// spl_fild02 - Splendide Field
|
||||
//==================================================
|
||||
spl_fild02,0,0,0,0 monster Pinguicula 1995,95,0,0,0
|
||||
spl_fild02,0,0,0,0 monster Luciola Vespa 1994,15,0,0,0
|
||||
spl_fild02,0,0 monster Pinguicula 1995,95
|
||||
spl_fild02,0,0 monster Luciola Vespa 1994,15
|
||||
|
||||
//==================================================
|
||||
// spl_fild03 - Splendide Field
|
||||
//==================================================
|
||||
spl_fild03,0,0,0,0 monster Luciola Vespa 1994,35,0,0,0
|
||||
spl_fild03,0,0,0,0 monster Cornus 1992,25,0,0,0
|
||||
spl_fild03,0,0,0,0 monster Naga 1993,20,0,0,0
|
||||
spl_fild03,0,0,0,0 monster Tendril Lion 1991,1,3600000,0,0
|
||||
spl_fild03,0,0 monster Luciola Vespa 1994,35
|
||||
spl_fild03,0,0 monster Cornus 1992,25
|
||||
spl_fild03,0,0 monster Naga 1993,20
|
||||
spl_fild03,0,0 monster Tendril Lion 1991,1,3600000
|
||||
|
||||
@@ -14,86 +14,86 @@
|
||||
//==================================================
|
||||
// um_fild01 - Luluka Forest
|
||||
//==================================================
|
||||
um_fild01,0,0,0,0 monster Wootan Fighter 1499,10,0,0,0
|
||||
um_fild01,0,0,0,0 monster Stem Worm 1215,15,0,0,0
|
||||
um_fild01,0,0,0,0 monster Harpy 1376,2,0,0,0
|
||||
um_fild01,0,0,0,0 monster Dryad 1493,65,0,0,0
|
||||
um_fild01,0,0,0,0 monster Dustiness 1114,10,0,0,0
|
||||
um_fild01,0,0,0,0 monster Green Plant 1080,10,180000,90000,1
|
||||
um_fild01,0,0,0,0 monster Yellow Plant 1081,10,180000,90000,1
|
||||
um_fild01,0,0,0,0 monster Shining Plant 1083,6,180000,90000,1
|
||||
um_fild01,0,0 monster Wootan Fighter 1499,10
|
||||
um_fild01,0,0 monster Stem Worm 1215,15
|
||||
um_fild01,0,0 monster Harpy 1376,2
|
||||
um_fild01,0,0 monster Dryad 1493,65
|
||||
um_fild01,0,0 monster Dustiness 1114,10
|
||||
um_fild01,0,0 monster Green Plant 1080,10,180000,90000
|
||||
um_fild01,0,0 monster Yellow Plant 1081,10,180000,90000
|
||||
um_fild01,0,0 monster Shining Plant 1083,6,180000,90000
|
||||
|
||||
//==================================================
|
||||
// um_fild02 - Hoomga Forest
|
||||
//==================================================
|
||||
um_fild02,0,0,0,0 monster Coco 1104,10,0,0,0
|
||||
um_fild02,0,0,0,0 monster Choco 1214,5,0,0,0
|
||||
um_fild02,0,0,0,0 monster Beetle King 1494,30,0,0,0
|
||||
um_fild02,0,0,0,0 monster Dustiness 1114,20,0,0,0
|
||||
um_fild02,0,0,0,0 monster Wootan Fighter 1499,26,0,0,0
|
||||
um_fild02,0,0,0,0 monster Stone Shooter 1495,13,0,0,0
|
||||
um_fild02,169,215,10,10 monster Stone Shooter 1495,1,120000,60000,0
|
||||
um_fild02,169,215,10,10 monster Wootan Fighter 1499,2,120000,60000,0
|
||||
um_fild02,159,285,10,10 monster Stone Shooter 1495,1,120000,60000,0
|
||||
um_fild02,159,285,10,10 monster Wootan Fighter 1499,2,120000,60000,0
|
||||
um_fild02,99,303,10,10 monster Stone Shooter 1495,1,120000,60000,0
|
||||
um_fild02,99,303,10,10 monster Wootan Fighter 1499,2,120000,60000,0
|
||||
um_fild02,122,242,10,10 monster Stone Shooter 1495,1,120000,60000,0
|
||||
um_fild02,122,242,10,10 monster Wootan Fighter 1499,2,120000,60000,0
|
||||
um_fild02,124,198,10,10 monster Stone Shooter 1495,1,120000,60000,0
|
||||
um_fild02,124,198,10,10 monster Wootan Fighter 1499,2,120000,60000,0
|
||||
um_fild02,126,133,10,10 monster Stone Shooter 1495,1,120000,60000,0
|
||||
um_fild02,126,133,10,10 monster Wootan Fighter 1499,2,120000,60000,0
|
||||
um_fild02,159,171,10,10 monster Stone Shooter 1495,1,120000,60000,0
|
||||
um_fild02,159,171,10,10 monster Wootan Fighter 1499,2,120000,60000,0
|
||||
um_fild02,284,247,10,10 monster Stone Shooter 1495,1,120000,60000,0
|
||||
um_fild02,284,247,10,10 monster Wootan Fighter 1499,2,120000,60000,0
|
||||
um_fild02,330,262,10,10 monster Stone Shooter 1495,1,120000,60000,0
|
||||
um_fild02,330,262,10,10 monster Wootan Fighter 1499,2,120000,60000,0
|
||||
um_fild02,296,187,10,10 monster Stone Shooter 1495,1,120000,60000,0
|
||||
um_fild02,296,187,10,10 monster Wootan Fighter 1499,2,120000,60000,0
|
||||
um_fild02,285,105,10,10 monster Stone Shooter 1495,1,120000,60000,0
|
||||
um_fild02,285,105,10,10 monster Wootan Fighter 1499,2,120000,60000,0
|
||||
um_fild02,257,137,10,10 monster Stone Shooter 1495,1,120000,60000,0
|
||||
um_fild02,257,137,10,10 monster Wootan Fighter 1499,2,120000,60000,0
|
||||
um_fild02,360,320,20,30 monster Flora 1118,3,180000,120000,0
|
||||
um_fild02,0,0,0,0 monster Red Plant 1078,5,180000,90000,1
|
||||
um_fild02,0,0,0,0 monster Yellow Plant 1081,5,180000,90000,1
|
||||
um_fild02,0,0 monster Coco 1104,10
|
||||
um_fild02,0,0 monster Choco 1214,5
|
||||
um_fild02,0,0 monster Beetle King 1494,30
|
||||
um_fild02,0,0 monster Dustiness 1114,20
|
||||
um_fild02,0,0 monster Wootan Fighter 1499,26
|
||||
um_fild02,0,0 monster Stone Shooter 1495,13
|
||||
um_fild02,169,215,10,10 monster Stone Shooter 1495,1,120000,60000
|
||||
um_fild02,169,215,10,10 monster Wootan Fighter 1499,2,120000,60000
|
||||
um_fild02,159,285,10,10 monster Stone Shooter 1495,1,120000,60000
|
||||
um_fild02,159,285,10,10 monster Wootan Fighter 1499,2,120000,60000
|
||||
um_fild02,99,303,10,10 monster Stone Shooter 1495,1,120000,60000
|
||||
um_fild02,99,303,10,10 monster Wootan Fighter 1499,2,120000,60000
|
||||
um_fild02,122,242,10,10 monster Stone Shooter 1495,1,120000,60000
|
||||
um_fild02,122,242,10,10 monster Wootan Fighter 1499,2,120000,60000
|
||||
um_fild02,124,198,10,10 monster Stone Shooter 1495,1,120000,60000
|
||||
um_fild02,124,198,10,10 monster Wootan Fighter 1499,2,120000,60000
|
||||
um_fild02,126,133,10,10 monster Stone Shooter 1495,1,120000,60000
|
||||
um_fild02,126,133,10,10 monster Wootan Fighter 1499,2,120000,60000
|
||||
um_fild02,159,171,10,10 monster Stone Shooter 1495,1,120000,60000
|
||||
um_fild02,159,171,10,10 monster Wootan Fighter 1499,2,120000,60000
|
||||
um_fild02,284,247,10,10 monster Stone Shooter 1495,1,120000,60000
|
||||
um_fild02,284,247,10,10 monster Wootan Fighter 1499,2,120000,60000
|
||||
um_fild02,330,262,10,10 monster Stone Shooter 1495,1,120000,60000
|
||||
um_fild02,330,262,10,10 monster Wootan Fighter 1499,2,120000,60000
|
||||
um_fild02,296,187,10,10 monster Stone Shooter 1495,1,120000,60000
|
||||
um_fild02,296,187,10,10 monster Wootan Fighter 1499,2,120000,60000
|
||||
um_fild02,285,105,10,10 monster Stone Shooter 1495,1,120000,60000
|
||||
um_fild02,285,105,10,10 monster Wootan Fighter 1499,2,120000,60000
|
||||
um_fild02,257,137,10,10 monster Stone Shooter 1495,1,120000,60000
|
||||
um_fild02,257,137,10,10 monster Wootan Fighter 1499,2,120000,60000
|
||||
um_fild02,360,320,20,30 monster Flora 1118,3,180000,120000
|
||||
um_fild02,0,0 monster Red Plant 1078,5,180000,90000
|
||||
um_fild02,0,0 monster Yellow Plant 1081,5,180000,90000
|
||||
|
||||
//==================================================
|
||||
// um_fild03 - Kalala Swamp
|
||||
//==================================================
|
||||
um_fild03,0,0,0,0 monster Parasite 1500,95,0,0,0
|
||||
um_fild03,0,0,0,0 monster Dragon Tail 1321,20,0,0,0
|
||||
um_fild03,0,0,0,0 monster Alligator 1271,10,0,0,0
|
||||
um_fild03,0,0,0,0 monster Gryphon 1259,1,3500000,1900000,0
|
||||
um_fild03,0,0,0,0 monster Blue Plant 1079,5,180000,90000,1
|
||||
um_fild03,0,0,0,0 monster Green Plant 1080,10,180000,90000,1
|
||||
um_fild03,0,0,0,0 monster Shining Plant 1083,2,180000,90000,1
|
||||
um_fild03,0,0 monster Parasite 1500,95
|
||||
um_fild03,0,0 monster Dragon Tail 1321,20
|
||||
um_fild03,0,0 monster Alligator 1271,10
|
||||
um_fild03,0,0 monster Gryphon 1259,1,3500000,1900000
|
||||
um_fild03,0,0 monster Blue Plant 1079,5,180000,90000
|
||||
um_fild03,0,0 monster Green Plant 1080,10,180000,90000
|
||||
um_fild03,0,0 monster Shining Plant 1083,2,180000,90000
|
||||
|
||||
//==================================================
|
||||
// um_fild04 - Hoomga Jungle
|
||||
//==================================================
|
||||
um_fild04,0,0,0,0 monster Beetle King 1494,30,0,0,0
|
||||
um_fild04,0,0,0,0 monster Horn 1128,15,0,0,0
|
||||
um_fild04,0,0,0,0 monster Choco 1214,2,0,0,0
|
||||
um_fild04,0,0,0,0 monster Wootan Shooter 1498,7,0,0,0
|
||||
um_fild04,264,293,10,10 monster Horn 1128,2,1200000,60000,0
|
||||
um_fild04,264,293,10,10 monster Beetle King 1494,4,120000,60000,0
|
||||
um_fild04,121,239,10,10 monster Beetle King 1494,2,120000,60000,0
|
||||
um_fild04,91,79,10,10 monster Beetle King 1494,2,120000,60000,0
|
||||
um_fild04,244,339,10,10 monster Beetle King 1494,2,120000,60000,0
|
||||
um_fild04,295,93,10,10 monster Beetle King 1494,2,120000,60000,0
|
||||
um_fild04,118,237,10,10 monster Beetle King 1494,2,120000,60000,0
|
||||
um_fild04,118,237,10,10 monster Horn 1128,1,120000,60000,0
|
||||
um_fild04,311,285,10,10 monster Beetle King 1494,2,120000,60000,0
|
||||
um_fild04,311,285,10,10 monster Horn 1128,1,120000,60000,0
|
||||
um_fild04,206,188,10,10 monster Beetle King 1494,2,120000,60000,0
|
||||
um_fild04,206,188,10,10 monster Horn 1128,1,120000,60000,0
|
||||
um_fild04,239,245,10,10 monster Beetle King 1494,2,120000,60000,0
|
||||
um_fild04,239,245,10,10 monster Horn 1128,1,120000,60000,0
|
||||
um_fild04,239,245,10,10 monster Wootan Shooter 1498,1,300000,60000,0
|
||||
um_fild04,91,79,10,10 monster Wootan Shooter 1498,1,300000,60000,0
|
||||
um_fild04,295,93,10,10 monster Wootan Shooter 1498,1,300000,60000,0
|
||||
um_fild04,0,0,0,0 monster Red Plant 1078,5,180000,90000,1
|
||||
um_fild04,0,0,0,0 monster Yellow Plant 1081,5,180000,90000,1
|
||||
um_fild04,0,0 monster Beetle King 1494,30
|
||||
um_fild04,0,0 monster Horn 1128,15
|
||||
um_fild04,0,0 monster Choco 1214,2
|
||||
um_fild04,0,0 monster Wootan Shooter 1498,7
|
||||
um_fild04,264,293,10,10 monster Horn 1128,2,1200000,60000
|
||||
um_fild04,264,293,10,10 monster Beetle King 1494,4,120000,60000
|
||||
um_fild04,121,239,10,10 monster Beetle King 1494,2,120000,60000
|
||||
um_fild04,91,79,10,10 monster Beetle King 1494,2,120000,60000
|
||||
um_fild04,244,339,10,10 monster Beetle King 1494,2,120000,60000
|
||||
um_fild04,295,93,10,10 monster Beetle King 1494,2,120000,60000
|
||||
um_fild04,118,237,10,10 monster Beetle King 1494,2,120000,60000
|
||||
um_fild04,118,237,10,10 monster Horn 1128,1,120000,60000
|
||||
um_fild04,311,285,10,10 monster Beetle King 1494,2,120000,60000
|
||||
um_fild04,311,285,10,10 monster Horn 1128,1,120000,60000
|
||||
um_fild04,206,188,10,10 monster Beetle King 1494,2,120000,60000
|
||||
um_fild04,206,188,10,10 monster Horn 1128,1,120000,60000
|
||||
um_fild04,239,245,10,10 monster Beetle King 1494,2,120000,60000
|
||||
um_fild04,239,245,10,10 monster Horn 1128,1,120000,60000
|
||||
um_fild04,239,245,10,10 monster Wootan Shooter 1498,1,300000,60000
|
||||
um_fild04,91,79,10,10 monster Wootan Shooter 1498,1,300000,60000
|
||||
um_fild04,295,93,10,10 monster Wootan Shooter 1498,1,300000,60000
|
||||
um_fild04,0,0 monster Red Plant 1078,5,180000,90000
|
||||
um_fild04,0,0 monster Yellow Plant 1081,5,180000,90000
|
||||
|
||||
@@ -18,73 +18,73 @@
|
||||
//============================================================
|
||||
|
||||
//======== [Veins Field-01] ==================================
|
||||
ve_fild01,0,0,0,0 monster Drops 1113,10,0,0,0
|
||||
ve_fild01,0,0,0,0 monster Stapo 1784,20,0,0,0
|
||||
ve_fild01,0,0,0,0 monster Muka 1055,70,0,0,0
|
||||
ve_fild01,0,0,0,0 monster Side Winder 1037,10,0,0,0
|
||||
ve_fild01,0,0 monster Drops 1113,10
|
||||
ve_fild01,0,0 monster Stapo 1784,20
|
||||
ve_fild01,0,0 monster Muka 1055,70
|
||||
ve_fild01,0,0 monster Side Winder 1037,10
|
||||
ve_fild01,0,0,0,0 boss_monster Atroce 1785,1,10800000,600000,0
|
||||
ve_fild01,0,0,0,0 monster Red Plant 1078,10,0,0,0
|
||||
ve_fild01,0,0,0,0 monster Yellow Plant 1081,10,0,0,0
|
||||
ve_fild01,270,80,20,7 monster Blue Plant 1079,4,840000,0,0
|
||||
ve_fild01,270,80,20,7 monster Shining Plant 1083,1,960000,0,0
|
||||
ve_fild01,0,0 monster Red Plant 1078,10
|
||||
ve_fild01,0,0 monster Yellow Plant 1081,10
|
||||
ve_fild01,270,80,20,7 monster Blue Plant 1079,4,840000
|
||||
ve_fild01,270,80,20,7 monster Shining Plant 1083,1,960000
|
||||
|
||||
//======== [Veins Field-02] ===================================
|
||||
ve_fild02,0,0,0,0 monster Stapo 1784,20,0,0,0
|
||||
ve_fild02,0,0,0,0 monster Savage 1166,30,0,0,0
|
||||
ve_fild02,220,215,135,180 monster Savage 1166,30,0,0,0
|
||||
ve_fild02,65,220,14,14 monster Roween 1782,2,660000,0,0
|
||||
ve_fild02,220,215,135,180 monster Roween 1782,18,0,0,0
|
||||
ve_fild02,65,220,14,14 monster Side Winder 1037,1,900000,0,0
|
||||
ve_fild02,220,215,135,180 monster Side Winder 1037,4,0,0,0
|
||||
ve_fild02,0,0 monster Stapo 1784,20
|
||||
ve_fild02,0,0 monster Savage 1166,30
|
||||
ve_fild02,220,215,135,180 monster Savage 1166,30
|
||||
ve_fild02,65,220,14,14 monster Roween 1782,2,660000
|
||||
ve_fild02,220,215,135,180 monster Roween 1782,18
|
||||
ve_fild02,65,220,14,14 monster Side Winder 1037,1,900000
|
||||
ve_fild02,220,215,135,180 monster Side Winder 1037,4
|
||||
ve_fild02,120,55,50,50 boss_monster Atroce 1785,1,21600000,600000,0
|
||||
ve_fild02,0,0,0,0 monster Red Plant 1078,10,0,0,0
|
||||
ve_fild02,0,0,0,0 monster Yellow Plant 1081,10,0,0,0
|
||||
ve_fild02,0,0 monster Red Plant 1078,10
|
||||
ve_fild02,0,0 monster Yellow Plant 1081,10
|
||||
|
||||
//======== [Veins Field-03] ===================================
|
||||
ve_fild03,0,0,0,0 monster Stapo 1784,10,0,0,0
|
||||
ve_fild03,200,212,114,60 monster Magmaring 1836,10,0,0,0
|
||||
ve_fild03,0,0,0,0 monster Sandman 1165,20,0,0,0
|
||||
ve_fild03,187,106,155,35 monster Sandman 1165,25,0,0,0
|
||||
ve_fild03,200,212,114,60 monster Sleeper 1386,5,0,0,0
|
||||
ve_fild03,200,212,114,60 monster Red Plant 1078,10,0,0,0
|
||||
ve_fild03,0,0,0,0 monster Yellow Plant 1081,10,0,0,0
|
||||
ve_fild03,0,0 monster Stapo 1784,10
|
||||
ve_fild03,200,212,114,60 monster Magmaring 1836,10
|
||||
ve_fild03,0,0 monster Sandman 1165,20
|
||||
ve_fild03,187,106,155,35 monster Sandman 1165,25
|
||||
ve_fild03,200,212,114,60 monster Sleeper 1386,5
|
||||
ve_fild03,200,212,114,60 monster Red Plant 1078,10
|
||||
ve_fild03,0,0 monster Yellow Plant 1081,10
|
||||
|
||||
//======== [Veins Field-04] ===================================
|
||||
ve_fild04,0,0,0,0 monster Stapo 1784,20,0,0,0
|
||||
ve_fild04,0,0,0,0 monster Desert Wolf 1106,60,0,0,0
|
||||
ve_fild04,0,0,0,0 monster Roween 1782,20,0,0,0
|
||||
ve_fild04,0,0,0,0 monster Muscipular 1780,10,0,0,0
|
||||
ve_fild04,0,0,0,0 monster Yellow Plant 1081,10,0,0,0
|
||||
ve_fild04,288,273,4,4 monster Blue Plant 1079,3,660000,0,0
|
||||
ve_fild04,0,0 monster Stapo 1784,20
|
||||
ve_fild04,0,0 monster Desert Wolf 1106,60
|
||||
ve_fild04,0,0 monster Roween 1782,20
|
||||
ve_fild04,0,0 monster Muscipular 1780,10
|
||||
ve_fild04,0,0 monster Yellow Plant 1081,10
|
||||
ve_fild04,288,273,4,4 monster Blue Plant 1079,3,660000
|
||||
|
||||
//======== [Veins Field-05] ===================================
|
||||
ve_fild05,0,0,0,0 monster Roween 1782,15,0,0,0
|
||||
ve_fild05,0,0,0,0 monster Galion 1783,5,0,0,0
|
||||
ve_fild05,0,0,0,0 monster Drosera 1781,10,0,0,0
|
||||
ve_fild05,0,0,0,0 monster Sandman 1165,10,0,0,0
|
||||
ve_fild05,130,225,46,59 monster Sandman 1165,7,60000,0,0
|
||||
ve_fild05,270,190,95,140 monster Sandman 1165,11,60000,0,0
|
||||
ve_fild05,123,65,50,21 monster Sandman 1165,2,90000,0,0
|
||||
ve_fild05,0,0,0,0 monster Sleeper 1386,10,0,0,0
|
||||
ve_fild05,130,225,46,59 monster Sleeper 1386,15,90000,0,0
|
||||
ve_fild05,270,190,95,140 monster Sleeper 1386,25,90000,0,0
|
||||
ve_fild05,123,65,50,21 monster Sleeper 1386,5,120000,0,0
|
||||
ve_fild05,152,139,15,17 monster White Plant 1082,5,1800000,0,0
|
||||
ve_fild05,152,139,5,5 monster Shining Plant 1083,1,2400000,0,0
|
||||
ve_fild05,0,0 monster Roween 1782,15
|
||||
ve_fild05,0,0 monster Galion 1783,5
|
||||
ve_fild05,0,0 monster Drosera 1781,10
|
||||
ve_fild05,0,0 monster Sandman 1165,10
|
||||
ve_fild05,130,225,46,59 monster Sandman 1165,7,60000
|
||||
ve_fild05,270,190,95,140 monster Sandman 1165,11,60000
|
||||
ve_fild05,123,65,50,21 monster Sandman 1165,2,90000
|
||||
ve_fild05,0,0 monster Sleeper 1386,10
|
||||
ve_fild05,130,225,46,59 monster Sleeper 1386,15,90000
|
||||
ve_fild05,270,190,95,140 monster Sleeper 1386,25,90000
|
||||
ve_fild05,123,65,50,21 monster Sleeper 1386,5,120000
|
||||
ve_fild05,152,139,15,17 monster White Plant 1082,5,1800000
|
||||
ve_fild05,152,139,5,5 monster Shining Plant 1083,1,2400000
|
||||
|
||||
//======== [Veins Field-06] ===================================
|
||||
ve_fild06,0,0,0,0 monster Stapo 1784,2,300000,0,0
|
||||
ve_fild06,0,0,0,0 monster Stapo 1784,1,1800000,0,0
|
||||
ve_fild06,0,0,0,0 monster Shining Plant 1083,1,1020000,0,0
|
||||
ve_fild06,0,0 monster Stapo 1784,2,300000
|
||||
ve_fild06,0,0 monster Stapo 1784,1,1800000
|
||||
ve_fild06,0,0 monster Shining Plant 1083,1,1020000
|
||||
|
||||
//======== [Veins Field-07] ===================================
|
||||
ve_fild07,0,0,0,0 monster Stapo 1784,30,0,0,0
|
||||
ve_fild07,64,126,35,55 monster Aster 1266,3,0,0,0
|
||||
ve_fild07,256,76,75,37 monster Aster 1266,7,0,0,0
|
||||
ve_fild07,64,126,35,55 monster Shellfish 1074,3,0,0,0
|
||||
ve_fild07,256,76,75,37 monster Shellfish 1074,7,0,0,0
|
||||
ve_fild07,0,0,0,0 monster Raggler 1254,24,0,0,0
|
||||
ve_fild07,64,126,35,55 monster Raggler 1254,4,0,0,0
|
||||
ve_fild07,256,76,75,37 monster Raggler 1254,7,0,0,0
|
||||
ve_fild07,0,0,0,0 monster Side Winder 1037,70,0,0,0
|
||||
ve_fild07,0,0,0,0 monster White Plant 1082,10,600000,0,0
|
||||
ve_fild07,0,0 monster Stapo 1784,30
|
||||
ve_fild07,64,126,35,55 monster Aster 1266,3
|
||||
ve_fild07,256,76,75,37 monster Aster 1266,7
|
||||
ve_fild07,64,126,35,55 monster Shellfish 1074,3
|
||||
ve_fild07,256,76,75,37 monster Shellfish 1074,7
|
||||
ve_fild07,0,0 monster Raggler 1254,24
|
||||
ve_fild07,64,126,35,55 monster Raggler 1254,4
|
||||
ve_fild07,256,76,75,37 monster Raggler 1254,7
|
||||
ve_fild07,0,0 monster Side Winder 1037,70
|
||||
ve_fild07,0,0 monster White Plant 1082,10,600000
|
||||
|
||||
@@ -25,154 +25,154 @@
|
||||
//==================================================
|
||||
// yuno_fild01 - Border Posts
|
||||
//==================================================
|
||||
yuno_fild01,0,0,0,0 monster Dustiness 1114,50,0,0,0
|
||||
yuno_fild01,0,0,0,0 monster Poring 1002,20,0,0,0
|
||||
yuno_fild01,0,0,0,0 monster Poporing 1031,20,0,0,0
|
||||
yuno_fild01,190,329,80,20 monster Grand Peco 1369,3,50000,25000,0
|
||||
yuno_fild01,0,0,0,0 monster Red Plant 1078,15,1800000,900000,1
|
||||
yuno_fild01,70,370,10,10 monster Blue Plant 1079,2,1800000,900000,1
|
||||
yuno_fild01,70,370,10,10 monster Shining Plant 1083,1,1800000,900000,1
|
||||
yuno_fild01,66,267,10,10 monster Yellow Plant 1081,2,1800000,900000,1
|
||||
yuno_fild01,238,326,40,40 monster Yellow Plant 1081,6,1800000,900000,1
|
||||
yuno_fild01,238,326,40,40 monster Shining Plant 1083,2,1800000,900000,1
|
||||
yuno_fild01,0,0,0,0 monster Yellow Plant 1081,15,1800000,900000,1
|
||||
yuno_fild01,0,0,0,0 monster Green Plant 1080,20,1800000,900000,1
|
||||
yuno_fild01,0,0 monster Dustiness 1114,50
|
||||
yuno_fild01,0,0 monster Poring 1002,20
|
||||
yuno_fild01,0,0 monster Poporing 1031,20
|
||||
yuno_fild01,190,329,80,20 monster Grand Peco 1369,3,50000,25000
|
||||
yuno_fild01,0,0 monster Red Plant 1078,15,1800000,900000
|
||||
yuno_fild01,70,370,10,10 monster Blue Plant 1079,2,1800000,900000
|
||||
yuno_fild01,70,370,10,10 monster Shining Plant 1083,1,1800000,900000
|
||||
yuno_fild01,66,267,10,10 monster Yellow Plant 1081,2,1800000,900000
|
||||
yuno_fild01,238,326,40,40 monster Yellow Plant 1081,6,1800000,900000
|
||||
yuno_fild01,238,326,40,40 monster Shining Plant 1083,2,1800000,900000
|
||||
yuno_fild01,0,0 monster Yellow Plant 1081,15,1800000,900000
|
||||
yuno_fild01,0,0 monster Green Plant 1080,20,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// yuno_fild02 - Kiel Khayr's Cottage
|
||||
//==================================================
|
||||
yuno_fild02,0,0,0,0 monster Beetle King 1494,40,0,0,0
|
||||
yuno_fild02,0,0,0,0 monster Horn 1128,40,0,0,0
|
||||
yuno_fild02,0,0,0,0 monster Dustiness 1114,20,0,0,0
|
||||
yuno_fild02,0,0,0,0 monster Hunter Fly 1035,10,0,0,0
|
||||
yuno_fild02,92,200,43,52 monster Wild Rose 1261,5,0,0,0
|
||||
yuno_fild02,185,310,170,37 monster Novus 1715,2,1200000,600000,0
|
||||
yuno_fild02,298,194,55,158 monster Novus 1718,2,1200000,600000,0
|
||||
yuno_fild02,0,0,0,0 monster Red Plant 1078,10,1800000,900000,1
|
||||
yuno_fild02,0,0,0,0 monster Yellow Plant 1081,10,1800000,900000,1
|
||||
yuno_fild02,0,0,0,0 monster Green Plant 1080,10,1800000,900000,1
|
||||
yuno_fild02,0,0 monster Beetle King 1494,40
|
||||
yuno_fild02,0,0 monster Horn 1128,40
|
||||
yuno_fild02,0,0 monster Dustiness 1114,20
|
||||
yuno_fild02,0,0 monster Hunter Fly 1035,10
|
||||
yuno_fild02,92,200,43,52 monster Wild Rose 1261,5
|
||||
yuno_fild02,185,310,170,37 monster Novus 1715,2,1200000,600000
|
||||
yuno_fild02,298,194,55,158 monster Novus 1718,2,1200000,600000
|
||||
yuno_fild02,0,0 monster Red Plant 1078,10,1800000,900000
|
||||
yuno_fild02,0,0 monster Yellow Plant 1081,10,1800000,900000
|
||||
yuno_fild02,0,0 monster Green Plant 1080,10,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// yuno_fild03 - El Mes Plateau
|
||||
//==================================================
|
||||
yuno_fild03,0,0,0,0 monster Poporing 1031,50,0,0,0
|
||||
yuno_fild03,0,0,0,0 monster Drops 1113,40,0,0,0
|
||||
yuno_fild03,0,0,0,0 monster Poring 1002,30,0,0,0
|
||||
yuno_fild03,0,0,0,0 monster Marin 1242,20,0,0,0
|
||||
yuno_fild03,0,0,0,0 monster Geographer 1368,15,0,0,0
|
||||
yuno_fild03,62,131,44,15 monster Side Winder 1037,1,300000,240000,0
|
||||
yuno_fild03,0,0,0,0 monster Angeling 1096,1,3600000,1800000,1
|
||||
yuno_fild03,0,0,0,0 monster Deviling 1582,1,3600000,1800000,1
|
||||
yuno_fild03,0,0,0,0 monster Red Plant 1078,15,1800000,900000,1
|
||||
yuno_fild03,0,0,0,0 monster Yellow Plant 1081,15,1800000,900000,1
|
||||
yuno_fild03,0,0,0,0 monster Green Plant 1080,15,1800000,900000,1
|
||||
yuno_fild03,358,215,10,10 monster Shining Plant 1083,1,1800000,900000,1
|
||||
yuno_fild03,358,215,10,10 monster Blue Plant 1079,4,1800000,900000,1
|
||||
yuno_fild03,0,0 monster Poporing 1031,50
|
||||
yuno_fild03,0,0 monster Drops 1113,40
|
||||
yuno_fild03,0,0 monster Poring 1002,30
|
||||
yuno_fild03,0,0 monster Marin 1242,20
|
||||
yuno_fild03,0,0 monster Geographer 1368,15
|
||||
yuno_fild03,62,131,44,15 monster Side Winder 1037,1,300000,240000
|
||||
yuno_fild03,0,0 monster Angeling 1096,1,3600000,1800000
|
||||
yuno_fild03,0,0 monster Deviling 1582,1,3600000,1800000
|
||||
yuno_fild03,0,0 monster Red Plant 1078,15,1800000,900000
|
||||
yuno_fild03,0,0 monster Yellow Plant 1081,15,1800000,900000
|
||||
yuno_fild03,0,0 monster Green Plant 1080,15,1800000,900000
|
||||
yuno_fild03,358,215,10,10 monster Shining Plant 1083,1,1800000,900000
|
||||
yuno_fild03,358,215,10,10 monster Blue Plant 1079,4,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// yuno_fild04 - El Mes Plateau
|
||||
//==================================================
|
||||
yuno_fild04,0,0,0,0 monster Poring 1002,60,0,0,0
|
||||
yuno_fild04,0,0,0,0 monster Drops 1113,40,0,0,0
|
||||
yuno_fild04,0,0,0,0 monster Condor 1009,20,0,0,0
|
||||
yuno_fild04,0,0,0,0 monster Pupa 1008,10,0,0,0
|
||||
yuno_fild04,0,0,0,0 monster Mastering 1090,1,3600000,1800000,1
|
||||
yuno_fild04,0,0,0,0 monster Red Plant 1078,10,1800000,900000,1
|
||||
yuno_fild04,0,0,0,0 monster Yellow Plant 1081,10,1800000,900000,1
|
||||
yuno_fild04,0,0,0,0 monster Green Plant 1080,10,1800000,900000,1
|
||||
yuno_fild04,0,0 monster Poring 1002,60
|
||||
yuno_fild04,0,0 monster Drops 1113,40
|
||||
yuno_fild04,0,0 monster Condor 1009,20
|
||||
yuno_fild04,0,0 monster Pupa 1008,10
|
||||
yuno_fild04,0,0 monster Mastering 1090,1,3600000,1800000
|
||||
yuno_fild04,0,0 monster Red Plant 1078,10,1800000,900000
|
||||
yuno_fild04,0,0 monster Yellow Plant 1081,10,1800000,900000
|
||||
yuno_fild04,0,0 monster Green Plant 1080,10,1800000,900000
|
||||
|
||||
//==================================================
|
||||
// yuno_fild05 - El Mes Plateau
|
||||
//==================================================
|
||||
yuno_fild05,0,0,0,0 monster Rafflesia 1162,70,0,0,0
|
||||
yuno_fild05,0,0,0,0 monster Dustiness 1114,30,0,0,0
|
||||
yuno_fild05,0,0,0,0 monster Horn 1128,30,0,0,0
|
||||
yuno_fild05,0,0,0,0 monster Beetle King 1494,10,0,0,0
|
||||
yuno_fild05,0,0,0,0 monster Arc Angeling 1388,1,3600000,180000,0
|
||||
yuno_fild05,0,0,0,0 monster Red Plant 1078,10,180000,90000,1
|
||||
yuno_fild05,0,0,0,0 monster Green Plant 1080,10,180000,90000,1
|
||||
yuno_fild05,0,0,0,0 monster Yellow Plant 1081,10,180000,90000,0
|
||||
yuno_fild05,176,202,8,8 monster Blue Plant 1079,2,180000,90000,1
|
||||
yuno_fild05,300,280,5,5 monster Blue Plant 1079,2,180000,90000,1
|
||||
yuno_fild05,0,0 monster Rafflesia 1162,70
|
||||
yuno_fild05,0,0 monster Dustiness 1114,30
|
||||
yuno_fild05,0,0 monster Horn 1128,30
|
||||
yuno_fild05,0,0 monster Beetle King 1494,10
|
||||
yuno_fild05,0,0 monster Arc Angeling 1388,1,3600000,180000
|
||||
yuno_fild05,0,0 monster Red Plant 1078,10,180000,90000
|
||||
yuno_fild05,0,0 monster Green Plant 1080,10,180000,90000
|
||||
yuno_fild05,0,0 monster Yellow Plant 1081,10,180000,90000
|
||||
yuno_fild05,176,202,8,8 monster Blue Plant 1079,2,180000,90000
|
||||
yuno_fild05,300,280,5,5 monster Blue Plant 1079,2,180000,90000
|
||||
|
||||
//==================================================
|
||||
// yuno_fild06 - Yuno Field
|
||||
//==================================================
|
||||
yuno_fild06,0,0,0,0 monster Sleeper 1386,70,0,0,0
|
||||
yuno_fild06,0,0,0,0 monster Goat 1372,40,0,0,0
|
||||
yuno_fild06,0,0,0,0 monster Demon Pungus 1378,20,120000,0,0
|
||||
yuno_fild06,0,0,0,0 monster Red Plant 1078,10,0,0,0
|
||||
yuno_fild06,0,0,0,0 monster Yellow Plant 1081,10,0,0,0
|
||||
yuno_fild06,0,0,0,0 monster Green Plant 1080,10,0,0,0
|
||||
yuno_fild06,0,0 monster Sleeper 1386,70
|
||||
yuno_fild06,0,0 monster Goat 1372,40
|
||||
yuno_fild06,0,0 monster Demon Pungus 1378,20,120000
|
||||
yuno_fild06,0,0 monster Red Plant 1078,10
|
||||
yuno_fild06,0,0 monster Yellow Plant 1081,10
|
||||
yuno_fild06,0,0 monster Green Plant 1080,10
|
||||
|
||||
//==================================================
|
||||
// yuno_fild07 - El Mes Gorge (Valley of Abyss)
|
||||
//==================================================
|
||||
yuno_fild07,0,0,0,0 monster Goat 1372,10,0,0,0
|
||||
yuno_fild07,0,0,0,0 monster Geographer 1368,20,0,0,0
|
||||
yuno_fild07,0,0,0,0 monster Driller 1380,10,0,0,0
|
||||
yuno_fild07,0,0,0,0 monster Harpy 1376,40,600000,300000,0
|
||||
yuno_fild07,0,0,0,0 monster Red Plant 1078,10,180000,90000,1
|
||||
yuno_fild07,0,0,0,0 monster Green Plant 1080,10,180000,90000,1
|
||||
yuno_fild07,0,0,0,0 monster Yellow Plant 1081,10,180000,90000,1
|
||||
yuno_fild07,0,0 monster Goat 1372,10
|
||||
yuno_fild07,0,0 monster Geographer 1368,20
|
||||
yuno_fild07,0,0 monster Driller 1380,10
|
||||
yuno_fild07,0,0 monster Harpy 1376,40,600000,300000
|
||||
yuno_fild07,0,0 monster Red Plant 1078,10,180000,90000
|
||||
yuno_fild07,0,0 monster Green Plant 1080,10,180000,90000
|
||||
yuno_fild07,0,0 monster Yellow Plant 1081,10,180000,90000
|
||||
|
||||
//==================================================
|
||||
// yuno_fild08 - Kiel Khayr's Academy
|
||||
//==================================================
|
||||
yuno_fild08,0,0,0,0 monster Wild Rose 1261,5,0,0,0
|
||||
yuno_fild08,200,300,290,100 monster Grand Peco 1369,30,0,0,0
|
||||
yuno_fild08,272,205,100,120 monster Grand Peco 1369,20,0,0,0
|
||||
yuno_fild08,230,110,250,90 monster Grand Peco 1369,30,0,0,0
|
||||
yuno_fild08,200,300,290,100 monster Geographer 1368,12,0,0,0
|
||||
yuno_fild08,272,205,100,120 monster Geographer 1368,6,0,0,0
|
||||
yuno_fild08,230,110,250,90 monster Geographer 1368,12,0,0,0
|
||||
yuno_fild08,200,300,290,100 monster Dustiness 1114,7,0,0,0
|
||||
yuno_fild08,272,205,100,120 monster Dustiness 1114,6,0,0,0
|
||||
yuno_fild08,230,110,250,90 monster Dustiness 1114,7,0,0,0
|
||||
yuno_fild08,0,0,0,0 monster Red Plant 1078,10,180000,90000,1
|
||||
yuno_fild08,0,0,0,0 monster Green Plant 1080,10,180000,90000,1
|
||||
yuno_fild08,0,0,0,0 monster Yellow Plant 1081,10,180000,90000,1
|
||||
yuno_fild08,0,0 monster Wild Rose 1261,5
|
||||
yuno_fild08,200,300,290,100 monster Grand Peco 1369,30
|
||||
yuno_fild08,272,205,100,120 monster Grand Peco 1369,20
|
||||
yuno_fild08,230,110,250,90 monster Grand Peco 1369,30
|
||||
yuno_fild08,200,300,290,100 monster Geographer 1368,12
|
||||
yuno_fild08,272,205,100,120 monster Geographer 1368,6
|
||||
yuno_fild08,230,110,250,90 monster Geographer 1368,12
|
||||
yuno_fild08,200,300,290,100 monster Dustiness 1114,7
|
||||
yuno_fild08,272,205,100,120 monster Dustiness 1114,6
|
||||
yuno_fild08,230,110,250,90 monster Dustiness 1114,7
|
||||
yuno_fild08,0,0 monster Red Plant 1078,10,180000,90000
|
||||
yuno_fild08,0,0 monster Green Plant 1080,10,180000,90000
|
||||
yuno_fild08,0,0 monster Yellow Plant 1081,10,180000,90000
|
||||
|
||||
//==================================================
|
||||
// yuno_fild09 - Schwarzwald Guards Camp
|
||||
//==================================================
|
||||
yuno_fild09,0,0,0,0 monster Beetle King 1494,40,0,0,0
|
||||
yuno_fild09,0,0,0,0 monster Horn 1128,40,0,0,0
|
||||
yuno_fild09,0,0,0,0 monster Stainer 1174,20,0,0,0
|
||||
yuno_fild09,0,0,0,0 monster Dustiness 1114,20,0,0,0
|
||||
yuno_fild09,0,0,0,0 monster Hunter Fly 1035,10,0,0,0
|
||||
yuno_fild09,0,0,0,0 monster Wild Rose 1261,5,0,0,0
|
||||
yuno_fild09,0,0,0,0 monster Red Plant 1078,10,180000,90000,1
|
||||
yuno_fild09,0,0,0,0 monster Green Plant 1080,10,180000,90000,1
|
||||
yuno_fild09,0,0,0,0 monster Yellow Plant 1081,10,180000,90000,1
|
||||
yuno_fild09,0,0 monster Beetle King 1494,40
|
||||
yuno_fild09,0,0 monster Horn 1128,40
|
||||
yuno_fild09,0,0 monster Stainer 1174,20
|
||||
yuno_fild09,0,0 monster Dustiness 1114,20
|
||||
yuno_fild09,0,0 monster Hunter Fly 1035,10
|
||||
yuno_fild09,0,0 monster Wild Rose 1261,5
|
||||
yuno_fild09,0,0 monster Red Plant 1078,10,180000,90000
|
||||
yuno_fild09,0,0 monster Green Plant 1080,10,180000,90000
|
||||
yuno_fild09,0,0 monster Yellow Plant 1081,10,180000,90000
|
||||
|
||||
//==================================================
|
||||
// yuno_fild10 - Yuno Field
|
||||
//==================================================
|
||||
yuno_fild10,0,0,0,0 monster Beetle King 1494,40,0,0,0
|
||||
yuno_fild10,0,0,0,0 monster Stainer 1174,20,0,0,0
|
||||
yuno_fild10,0,0,0,0 monster Dustiness 1114,20,0,0,0
|
||||
yuno_fild10,0,0,0,0 monster Geographer 1368,20,0,0,0
|
||||
yuno_fild10,0,0,0,0 monster Hunter Fly 1035,10,0,0,0
|
||||
yuno_fild10,0,0 monster Beetle King 1494,40
|
||||
yuno_fild10,0,0 monster Stainer 1174,20
|
||||
yuno_fild10,0,0 monster Dustiness 1114,20
|
||||
yuno_fild10,0,0 monster Geographer 1368,20
|
||||
yuno_fild10,0,0 monster Hunter Fly 1035,10
|
||||
|
||||
//==================================================
|
||||
// yuno_fild11 - Yuno Field
|
||||
//==================================================
|
||||
yuno_fild11,0,0,0,0 monster Sleeper 1386,10,0,0,0
|
||||
yuno_fild11,0,0,0,0 monster Demon Pungus 1378,10,120000,0,0
|
||||
yuno_fild11,0,0,0,0 monster Geographer 1368,15,0,0,0
|
||||
yuno_fild11,65,294,70,160 monster Sleeper 1386,3,0,0,0
|
||||
yuno_fild11,65,294,70,160 monster Geographer 1368,2,0,0,0
|
||||
yuno_fild11,225,220,125,135 monster Sleeper 1386,30,0,0,0
|
||||
yuno_fild11,225,220,125,135 monster Geographer 1368,15,0,0,0
|
||||
yuno_fild11,0,0,0,0 monster Red Plant 1078,10,180000,90000,1
|
||||
yuno_fild11,0,0,0,0 monster Green Plant 1080,10,180000,90000,1
|
||||
yuno_fild11,0,0,0,0 monster Yellow Plant 1081,10,180000,90000,1
|
||||
yuno_fild11,0,0 monster Sleeper 1386,10
|
||||
yuno_fild11,0,0 monster Demon Pungus 1378,10,120000
|
||||
yuno_fild11,0,0 monster Geographer 1368,15
|
||||
yuno_fild11,65,294,70,160 monster Sleeper 1386,3
|
||||
yuno_fild11,65,294,70,160 monster Geographer 1368,2
|
||||
yuno_fild11,225,220,125,135 monster Sleeper 1386,30
|
||||
yuno_fild11,225,220,125,135 monster Geographer 1368,15
|
||||
yuno_fild11,0,0 monster Red Plant 1078,10,180000,90000
|
||||
yuno_fild11,0,0 monster Green Plant 1080,10,180000,90000
|
||||
yuno_fild11,0,0 monster Yellow Plant 1081,10,180000,90000
|
||||
|
||||
//==================================================
|
||||
// yuno_fild12 - Border Checkpoint
|
||||
//==================================================
|
||||
yuno_fild12,0,0,0,0 monster Dustiness 1114,30,0,0,0
|
||||
yuno_fild12,0,0,0,0 monster Demon Pungus 1378,20,0,0,0
|
||||
yuno_fild12,0,0,0,0 monster Poporing 1031,15,0,0,0
|
||||
yuno_fild12,0,0,0,0 monster Geographer 1368,5,0,0,0
|
||||
yuno_fild12,0,0 monster Dustiness 1114,30
|
||||
yuno_fild12,0,0 monster Demon Pungus 1378,20
|
||||
yuno_fild12,0,0 monster Poporing 1031,15
|
||||
yuno_fild12,0,0 monster Geographer 1368,5
|
||||
|
||||
@@ -2342,453 +2342,453 @@ que_qsch03,1,6,0 duplicate(#okolnir_main_time01) #okolnir_sch03_time01 844
|
||||
que_qsch04,1,6,0 duplicate(#okolnir_main_time01) #okolnir_sch04_time01 844
|
||||
que_qsch05,1,6,0 duplicate(#okolnir_main_time01) #okolnir_sch05_time01 844
|
||||
|
||||
que_qaru01,116,313,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru01,120,285,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru01,117,236,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru01,103,223,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru01,85,204,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru01,79,186,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru01,73,167,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru01,68,150,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru01,71,128,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru01,69,118,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru01,117,78,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru01,110,79,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru01,141,80,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru01,158,84,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru01,193,104,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru01,119,269,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru01,155,77,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru01,110,317,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru01,115,295,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru01,116,256,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru01,113,242,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru01,99,223,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru01,94,216,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru01,77,198,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru01,70,174,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru01,72,147,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru01,64,134,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru01,77,107,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru01,84,88,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru01,98,82,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru01,129,79,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru01,91,124,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru01,173,95,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru01,179,127,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru01,195,120,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru01,178,159,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru01,88,145,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru01,94,157,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru01,95,177,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru01,129,196,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru01,154,196,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru01,170,187,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru01,194,180,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru01,214,181,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru01,243,199,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru02,116,313,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru02,120,285,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru02,117,236,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru02,103,223,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru02,85,204,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru02,79,186,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru02,73,167,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru02,68,150,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru02,71,128,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru02,69,118,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru02,117,78,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru02,110,79,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru02,141,80,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru02,158,84,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru02,193,104,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru02,119,269,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru02,155,77,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru02,110,317,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru02,115,295,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru02,116,256,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru02,113,242,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru02,99,223,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru02,94,216,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru02,77,198,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru02,70,174,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru02,72,147,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru02,64,134,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru02,77,107,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru02,84,88,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru02,98,82,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru02,129,79,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru02,91,124,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru02,173,95,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru02,179,127,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru02,195,120,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru02,178,159,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru02,88,145,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru02,94,157,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru02,95,177,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru02,129,196,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru02,154,196,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru02,170,187,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru02,194,180,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru02,214,181,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru02,243,199,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru03,116,313,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru03,120,285,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru03,117,236,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru03,103,223,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru03,85,204,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru03,79,186,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru03,73,167,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru03,68,150,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru03,71,128,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru03,69,118,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru03,117,78,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru03,110,79,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru03,141,80,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru03,158,84,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru03,193,104,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru03,119,269,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru03,155,77,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru03,110,317,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru03,115,295,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru03,116,256,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru03,113,242,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru03,99,223,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru03,94,216,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru03,77,198,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru03,70,174,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru03,72,147,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru03,64,134,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru03,77,107,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru03,84,88,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru03,98,82,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru03,129,79,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru03,91,124,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru03,173,95,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru03,179,127,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru03,195,120,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru03,178,159,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru03,88,145,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru03,94,157,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru03,95,177,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru03,129,196,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru03,154,196,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru03,170,187,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru03,194,180,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru03,214,181,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru03,243,199,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru04,116,313,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru04,120,285,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru04,117,236,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru04,103,223,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru04,85,204,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru04,79,186,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru04,73,167,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru04,68,150,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru04,71,128,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru04,69,118,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru04,117,78,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru04,110,79,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru04,141,80,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru04,158,84,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru04,193,104,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru04,119,269,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru04,155,77,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru04,110,317,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru04,115,295,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru04,116,256,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru04,113,242,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru04,99,223,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru04,94,216,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru04,77,198,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru04,70,174,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru04,72,147,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru04,64,134,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru04,77,107,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru04,84,88,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru04,98,82,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru04,129,79,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru04,91,124,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru04,173,95,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru04,179,127,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru04,195,120,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru04,178,159,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru04,88,145,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru04,94,157,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru04,95,177,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru04,129,196,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru04,154,196,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru04,170,187,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru04,194,180,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru04,214,181,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru04,243,199,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru05,116,313,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru05,120,285,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru05,117,236,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru05,103,223,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru05,85,204,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru05,79,186,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru05,73,167,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru05,68,150,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru05,71,128,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru05,69,118,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru05,117,78,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru05,110,79,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru05,141,80,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru05,158,84,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru05,193,104,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru05,119,269,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru05,155,77,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qaru05,110,317,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru05,115,295,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru05,116,256,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru05,113,242,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru05,99,223,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru05,94,216,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru05,77,198,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru05,70,174,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru05,72,147,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru05,64,134,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru05,77,107,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru05,84,88,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru05,98,82,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru05,129,79,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru05,91,124,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru05,173,95,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru05,179,127,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru05,195,120,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru05,178,159,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru05,88,145,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru05,94,157,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru05,95,177,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru05,129,196,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru05,154,196,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru05,170,187,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru05,194,180,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru05,214,181,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qaru05,243,199,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch01,116,313,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch01,120,285,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch01,117,236,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch01,103,223,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch01,85,204,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch01,79,186,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch01,73,167,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch01,68,150,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch01,71,128,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch01,69,118,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch01,117,78,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch01,110,79,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch01,141,80,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch01,158,84,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch01,193,104,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch01,119,269,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch01,155,77,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch01,110,317,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch01,115,295,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch01,116,256,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch01,113,242,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch01,99,223,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch01,94,216,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch01,77,198,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch01,70,174,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch01,72,147,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch01,64,134,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch01,77,107,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch01,84,88,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch01,98,82,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch01,129,79,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch01,91,124,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch01,173,95,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch01,179,127,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch01,195,120,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch01,178,159,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch01,88,145,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch01,94,157,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch01,95,177,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch01,129,196,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch01,154,196,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch01,170,187,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch01,194,180,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch01,214,181,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch01,243,199,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch02,116,313,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch02,120,285,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch02,117,236,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch02,103,223,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch02,85,204,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch02,79,186,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch02,73,167,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch02,68,150,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch02,71,128,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch02,69,118,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch02,117,78,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch02,110,79,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch02,141,80,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch02,158,84,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch02,193,104,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch02,119,269,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch02,155,77,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch02,110,317,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch02,115,295,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch02,116,256,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch02,113,242,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch02,99,223,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch02,94,216,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch02,77,198,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch02,70,174,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch02,72,147,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch02,64,134,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch02,77,107,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch02,84,88,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch02,98,82,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch02,129,79,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch02,91,124,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch02,173,95,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch02,179,127,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch02,195,120,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch02,178,159,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch02,88,145,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch02,94,157,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch02,95,177,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch02,129,196,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch02,154,196,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch02,170,187,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch02,194,180,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch02,214,181,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch02,243,199,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch03,116,313,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch03,120,285,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch03,117,236,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch03,103,223,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch03,85,204,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch03,79,186,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch03,73,167,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch03,68,150,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch03,71,128,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch03,69,118,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch03,117,78,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch03,110,79,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch03,141,80,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch03,158,84,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch03,193,104,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch03,119,269,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch03,155,77,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch03,110,317,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch03,115,295,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch03,116,256,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch03,113,242,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch03,99,223,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch03,94,216,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch03,77,198,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch03,70,174,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch03,72,147,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch03,64,134,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch03,77,107,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch03,84,88,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch03,98,82,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch03,129,79,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch03,91,124,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch03,173,95,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch03,179,127,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch03,195,120,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch03,178,159,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch03,88,145,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch03,94,157,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch03,95,177,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch03,129,196,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch03,154,196,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch03,170,187,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch03,194,180,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch03,214,181,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch03,243,199,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch04,116,313,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch04,120,285,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch04,117,236,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch04,103,223,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch04,85,204,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch04,79,186,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch04,73,167,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch04,68,150,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch04,71,128,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch04,69,118,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch04,117,78,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch04,110,79,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch04,141,80,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch04,158,84,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch04,193,104,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch04,119,269,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch04,155,77,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch04,110,317,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch04,115,295,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch04,116,256,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch04,113,242,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch04,99,223,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch04,94,216,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch04,77,198,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch04,70,174,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch04,72,147,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch04,64,134,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch04,77,107,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch04,84,88,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch04,98,82,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch04,129,79,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch04,91,124,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch04,173,95,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch04,179,127,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch04,195,120,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch04,178,159,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch04,88,145,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch04,94,157,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch04,95,177,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch04,129,196,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch04,154,196,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch04,170,187,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch04,194,180,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch04,214,181,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch04,243,199,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch05,116,313,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch05,120,285,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch05,117,236,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch05,103,223,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch05,85,204,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch05,79,186,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch05,73,167,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch05,68,150,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch05,71,128,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch05,69,118,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch05,117,78,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch05,110,79,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch05,141,80,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch05,158,84,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch05,193,104,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch05,119,269,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch05,155,77,0,0 monster Garden Keeper 1932,1,180000,0,0
|
||||
que_qsch05,110,317,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch05,115,295,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch05,116,256,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch05,113,242,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch05,99,223,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch05,94,216,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch05,77,198,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch05,70,174,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch05,72,147,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch05,64,134,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch05,77,107,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch05,84,88,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch05,98,82,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch05,129,79,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch05,91,124,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch05,173,95,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch05,179,127,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch05,195,120,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch05,178,159,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch05,88,145,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch05,94,157,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch05,95,177,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch05,129,196,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch05,154,196,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch05,170,187,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch05,194,180,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qsch05,214,181,0,0 monster Garden Watcher 1933,1,600000,0,0
|
||||
que_qsch05,243,199,0,0 monster Garden Watcher 1933,1,1200000,0,0
|
||||
que_qaru01,116,313 monster Garden Keeper 1932,1,180000
|
||||
que_qaru01,120,285 monster Garden Keeper 1932,1,180000
|
||||
que_qaru01,117,236 monster Garden Keeper 1932,1,180000
|
||||
que_qaru01,103,223 monster Garden Keeper 1932,1,180000
|
||||
que_qaru01,85,204 monster Garden Keeper 1932,1,180000
|
||||
que_qaru01,79,186 monster Garden Keeper 1932,1,180000
|
||||
que_qaru01,73,167 monster Garden Keeper 1932,1,180000
|
||||
que_qaru01,68,150 monster Garden Keeper 1932,1,180000
|
||||
que_qaru01,71,128 monster Garden Keeper 1932,1,180000
|
||||
que_qaru01,69,118 monster Garden Keeper 1932,1,180000
|
||||
que_qaru01,117,78 monster Garden Keeper 1932,1,180000
|
||||
que_qaru01,110,79 monster Garden Keeper 1932,1,180000
|
||||
que_qaru01,141,80 monster Garden Keeper 1932,1,180000
|
||||
que_qaru01,158,84 monster Garden Keeper 1932,1,180000
|
||||
que_qaru01,193,104 monster Garden Keeper 1932,1,180000
|
||||
que_qaru01,119,269 monster Garden Keeper 1932,1,180000
|
||||
que_qaru01,155,77 monster Garden Keeper 1932,1,180000
|
||||
que_qaru01,110,317 monster Garden Watcher 1933,1,600000
|
||||
que_qaru01,115,295 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru01,116,256 monster Garden Watcher 1933,1,600000
|
||||
que_qaru01,113,242 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru01,99,223 monster Garden Watcher 1933,1,600000
|
||||
que_qaru01,94,216 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru01,77,198 monster Garden Watcher 1933,1,600000
|
||||
que_qaru01,70,174 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru01,72,147 monster Garden Watcher 1933,1,600000
|
||||
que_qaru01,64,134 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru01,77,107 monster Garden Watcher 1933,1,600000
|
||||
que_qaru01,84,88 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru01,98,82 monster Garden Watcher 1933,1,600000
|
||||
que_qaru01,129,79 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru01,91,124 monster Garden Watcher 1933,1,600000
|
||||
que_qaru01,173,95 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru01,179,127 monster Garden Watcher 1933,1,600000
|
||||
que_qaru01,195,120 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru01,178,159 monster Garden Watcher 1933,1,600000
|
||||
que_qaru01,88,145 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru01,94,157 monster Garden Watcher 1933,1,600000
|
||||
que_qaru01,95,177 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru01,129,196 monster Garden Watcher 1933,1,600000
|
||||
que_qaru01,154,196 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru01,170,187 monster Garden Watcher 1933,1,600000
|
||||
que_qaru01,194,180 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru01,214,181 monster Garden Watcher 1933,1,600000
|
||||
que_qaru01,243,199 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru02,116,313 monster Garden Keeper 1932,1,180000
|
||||
que_qaru02,120,285 monster Garden Keeper 1932,1,180000
|
||||
que_qaru02,117,236 monster Garden Keeper 1932,1,180000
|
||||
que_qaru02,103,223 monster Garden Keeper 1932,1,180000
|
||||
que_qaru02,85,204 monster Garden Keeper 1932,1,180000
|
||||
que_qaru02,79,186 monster Garden Keeper 1932,1,180000
|
||||
que_qaru02,73,167 monster Garden Keeper 1932,1,180000
|
||||
que_qaru02,68,150 monster Garden Keeper 1932,1,180000
|
||||
que_qaru02,71,128 monster Garden Keeper 1932,1,180000
|
||||
que_qaru02,69,118 monster Garden Keeper 1932,1,180000
|
||||
que_qaru02,117,78 monster Garden Keeper 1932,1,180000
|
||||
que_qaru02,110,79 monster Garden Keeper 1932,1,180000
|
||||
que_qaru02,141,80 monster Garden Keeper 1932,1,180000
|
||||
que_qaru02,158,84 monster Garden Keeper 1932,1,180000
|
||||
que_qaru02,193,104 monster Garden Keeper 1932,1,180000
|
||||
que_qaru02,119,269 monster Garden Keeper 1932,1,180000
|
||||
que_qaru02,155,77 monster Garden Keeper 1932,1,180000
|
||||
que_qaru02,110,317 monster Garden Watcher 1933,1,600000
|
||||
que_qaru02,115,295 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru02,116,256 monster Garden Watcher 1933,1,600000
|
||||
que_qaru02,113,242 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru02,99,223 monster Garden Watcher 1933,1,600000
|
||||
que_qaru02,94,216 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru02,77,198 monster Garden Watcher 1933,1,600000
|
||||
que_qaru02,70,174 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru02,72,147 monster Garden Watcher 1933,1,600000
|
||||
que_qaru02,64,134 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru02,77,107 monster Garden Watcher 1933,1,600000
|
||||
que_qaru02,84,88 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru02,98,82 monster Garden Watcher 1933,1,600000
|
||||
que_qaru02,129,79 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru02,91,124 monster Garden Watcher 1933,1,600000
|
||||
que_qaru02,173,95 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru02,179,127 monster Garden Watcher 1933,1,600000
|
||||
que_qaru02,195,120 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru02,178,159 monster Garden Watcher 1933,1,600000
|
||||
que_qaru02,88,145 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru02,94,157 monster Garden Watcher 1933,1,600000
|
||||
que_qaru02,95,177 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru02,129,196 monster Garden Watcher 1933,1,600000
|
||||
que_qaru02,154,196 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru02,170,187 monster Garden Watcher 1933,1,600000
|
||||
que_qaru02,194,180 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru02,214,181 monster Garden Watcher 1933,1,600000
|
||||
que_qaru02,243,199 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru03,116,313 monster Garden Keeper 1932,1,180000
|
||||
que_qaru03,120,285 monster Garden Keeper 1932,1,180000
|
||||
que_qaru03,117,236 monster Garden Keeper 1932,1,180000
|
||||
que_qaru03,103,223 monster Garden Keeper 1932,1,180000
|
||||
que_qaru03,85,204 monster Garden Keeper 1932,1,180000
|
||||
que_qaru03,79,186 monster Garden Keeper 1932,1,180000
|
||||
que_qaru03,73,167 monster Garden Keeper 1932,1,180000
|
||||
que_qaru03,68,150 monster Garden Keeper 1932,1,180000
|
||||
que_qaru03,71,128 monster Garden Keeper 1932,1,180000
|
||||
que_qaru03,69,118 monster Garden Keeper 1932,1,180000
|
||||
que_qaru03,117,78 monster Garden Keeper 1932,1,180000
|
||||
que_qaru03,110,79 monster Garden Keeper 1932,1,180000
|
||||
que_qaru03,141,80 monster Garden Keeper 1932,1,180000
|
||||
que_qaru03,158,84 monster Garden Keeper 1932,1,180000
|
||||
que_qaru03,193,104 monster Garden Keeper 1932,1,180000
|
||||
que_qaru03,119,269 monster Garden Keeper 1932,1,180000
|
||||
que_qaru03,155,77 monster Garden Keeper 1932,1,180000
|
||||
que_qaru03,110,317 monster Garden Watcher 1933,1,600000
|
||||
que_qaru03,115,295 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru03,116,256 monster Garden Watcher 1933,1,600000
|
||||
que_qaru03,113,242 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru03,99,223 monster Garden Watcher 1933,1,600000
|
||||
que_qaru03,94,216 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru03,77,198 monster Garden Watcher 1933,1,600000
|
||||
que_qaru03,70,174 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru03,72,147 monster Garden Watcher 1933,1,600000
|
||||
que_qaru03,64,134 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru03,77,107 monster Garden Watcher 1933,1,600000
|
||||
que_qaru03,84,88 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru03,98,82 monster Garden Watcher 1933,1,600000
|
||||
que_qaru03,129,79 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru03,91,124 monster Garden Watcher 1933,1,600000
|
||||
que_qaru03,173,95 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru03,179,127 monster Garden Watcher 1933,1,600000
|
||||
que_qaru03,195,120 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru03,178,159 monster Garden Watcher 1933,1,600000
|
||||
que_qaru03,88,145 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru03,94,157 monster Garden Watcher 1933,1,600000
|
||||
que_qaru03,95,177 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru03,129,196 monster Garden Watcher 1933,1,600000
|
||||
que_qaru03,154,196 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru03,170,187 monster Garden Watcher 1933,1,600000
|
||||
que_qaru03,194,180 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru03,214,181 monster Garden Watcher 1933,1,600000
|
||||
que_qaru03,243,199 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru04,116,313 monster Garden Keeper 1932,1,180000
|
||||
que_qaru04,120,285 monster Garden Keeper 1932,1,180000
|
||||
que_qaru04,117,236 monster Garden Keeper 1932,1,180000
|
||||
que_qaru04,103,223 monster Garden Keeper 1932,1,180000
|
||||
que_qaru04,85,204 monster Garden Keeper 1932,1,180000
|
||||
que_qaru04,79,186 monster Garden Keeper 1932,1,180000
|
||||
que_qaru04,73,167 monster Garden Keeper 1932,1,180000
|
||||
que_qaru04,68,150 monster Garden Keeper 1932,1,180000
|
||||
que_qaru04,71,128 monster Garden Keeper 1932,1,180000
|
||||
que_qaru04,69,118 monster Garden Keeper 1932,1,180000
|
||||
que_qaru04,117,78 monster Garden Keeper 1932,1,180000
|
||||
que_qaru04,110,79 monster Garden Keeper 1932,1,180000
|
||||
que_qaru04,141,80 monster Garden Keeper 1932,1,180000
|
||||
que_qaru04,158,84 monster Garden Keeper 1932,1,180000
|
||||
que_qaru04,193,104 monster Garden Keeper 1932,1,180000
|
||||
que_qaru04,119,269 monster Garden Keeper 1932,1,180000
|
||||
que_qaru04,155,77 monster Garden Keeper 1932,1,180000
|
||||
que_qaru04,110,317 monster Garden Watcher 1933,1,600000
|
||||
que_qaru04,115,295 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru04,116,256 monster Garden Watcher 1933,1,600000
|
||||
que_qaru04,113,242 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru04,99,223 monster Garden Watcher 1933,1,600000
|
||||
que_qaru04,94,216 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru04,77,198 monster Garden Watcher 1933,1,600000
|
||||
que_qaru04,70,174 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru04,72,147 monster Garden Watcher 1933,1,600000
|
||||
que_qaru04,64,134 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru04,77,107 monster Garden Watcher 1933,1,600000
|
||||
que_qaru04,84,88 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru04,98,82 monster Garden Watcher 1933,1,600000
|
||||
que_qaru04,129,79 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru04,91,124 monster Garden Watcher 1933,1,600000
|
||||
que_qaru04,173,95 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru04,179,127 monster Garden Watcher 1933,1,600000
|
||||
que_qaru04,195,120 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru04,178,159 monster Garden Watcher 1933,1,600000
|
||||
que_qaru04,88,145 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru04,94,157 monster Garden Watcher 1933,1,600000
|
||||
que_qaru04,95,177 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru04,129,196 monster Garden Watcher 1933,1,600000
|
||||
que_qaru04,154,196 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru04,170,187 monster Garden Watcher 1933,1,600000
|
||||
que_qaru04,194,180 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru04,214,181 monster Garden Watcher 1933,1,600000
|
||||
que_qaru04,243,199 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru05,116,313 monster Garden Keeper 1932,1,180000
|
||||
que_qaru05,120,285 monster Garden Keeper 1932,1,180000
|
||||
que_qaru05,117,236 monster Garden Keeper 1932,1,180000
|
||||
que_qaru05,103,223 monster Garden Keeper 1932,1,180000
|
||||
que_qaru05,85,204 monster Garden Keeper 1932,1,180000
|
||||
que_qaru05,79,186 monster Garden Keeper 1932,1,180000
|
||||
que_qaru05,73,167 monster Garden Keeper 1932,1,180000
|
||||
que_qaru05,68,150 monster Garden Keeper 1932,1,180000
|
||||
que_qaru05,71,128 monster Garden Keeper 1932,1,180000
|
||||
que_qaru05,69,118 monster Garden Keeper 1932,1,180000
|
||||
que_qaru05,117,78 monster Garden Keeper 1932,1,180000
|
||||
que_qaru05,110,79 monster Garden Keeper 1932,1,180000
|
||||
que_qaru05,141,80 monster Garden Keeper 1932,1,180000
|
||||
que_qaru05,158,84 monster Garden Keeper 1932,1,180000
|
||||
que_qaru05,193,104 monster Garden Keeper 1932,1,180000
|
||||
que_qaru05,119,269 monster Garden Keeper 1932,1,180000
|
||||
que_qaru05,155,77 monster Garden Keeper 1932,1,180000
|
||||
que_qaru05,110,317 monster Garden Watcher 1933,1,600000
|
||||
que_qaru05,115,295 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru05,116,256 monster Garden Watcher 1933,1,600000
|
||||
que_qaru05,113,242 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru05,99,223 monster Garden Watcher 1933,1,600000
|
||||
que_qaru05,94,216 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru05,77,198 monster Garden Watcher 1933,1,600000
|
||||
que_qaru05,70,174 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru05,72,147 monster Garden Watcher 1933,1,600000
|
||||
que_qaru05,64,134 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru05,77,107 monster Garden Watcher 1933,1,600000
|
||||
que_qaru05,84,88 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru05,98,82 monster Garden Watcher 1933,1,600000
|
||||
que_qaru05,129,79 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru05,91,124 monster Garden Watcher 1933,1,600000
|
||||
que_qaru05,173,95 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru05,179,127 monster Garden Watcher 1933,1,600000
|
||||
que_qaru05,195,120 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru05,178,159 monster Garden Watcher 1933,1,600000
|
||||
que_qaru05,88,145 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru05,94,157 monster Garden Watcher 1933,1,600000
|
||||
que_qaru05,95,177 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru05,129,196 monster Garden Watcher 1933,1,600000
|
||||
que_qaru05,154,196 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru05,170,187 monster Garden Watcher 1933,1,600000
|
||||
que_qaru05,194,180 monster Garden Watcher 1933,1,1200000
|
||||
que_qaru05,214,181 monster Garden Watcher 1933,1,600000
|
||||
que_qaru05,243,199 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch01,116,313 monster Garden Keeper 1932,1,180000
|
||||
que_qsch01,120,285 monster Garden Keeper 1932,1,180000
|
||||
que_qsch01,117,236 monster Garden Keeper 1932,1,180000
|
||||
que_qsch01,103,223 monster Garden Keeper 1932,1,180000
|
||||
que_qsch01,85,204 monster Garden Keeper 1932,1,180000
|
||||
que_qsch01,79,186 monster Garden Keeper 1932,1,180000
|
||||
que_qsch01,73,167 monster Garden Keeper 1932,1,180000
|
||||
que_qsch01,68,150 monster Garden Keeper 1932,1,180000
|
||||
que_qsch01,71,128 monster Garden Keeper 1932,1,180000
|
||||
que_qsch01,69,118 monster Garden Keeper 1932,1,180000
|
||||
que_qsch01,117,78 monster Garden Keeper 1932,1,180000
|
||||
que_qsch01,110,79 monster Garden Keeper 1932,1,180000
|
||||
que_qsch01,141,80 monster Garden Keeper 1932,1,180000
|
||||
que_qsch01,158,84 monster Garden Keeper 1932,1,180000
|
||||
que_qsch01,193,104 monster Garden Keeper 1932,1,180000
|
||||
que_qsch01,119,269 monster Garden Keeper 1932,1,180000
|
||||
que_qsch01,155,77 monster Garden Keeper 1932,1,180000
|
||||
que_qsch01,110,317 monster Garden Watcher 1933,1,600000
|
||||
que_qsch01,115,295 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch01,116,256 monster Garden Watcher 1933,1,600000
|
||||
que_qsch01,113,242 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch01,99,223 monster Garden Watcher 1933,1,600000
|
||||
que_qsch01,94,216 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch01,77,198 monster Garden Watcher 1933,1,600000
|
||||
que_qsch01,70,174 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch01,72,147 monster Garden Watcher 1933,1,600000
|
||||
que_qsch01,64,134 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch01,77,107 monster Garden Watcher 1933,1,600000
|
||||
que_qsch01,84,88 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch01,98,82 monster Garden Watcher 1933,1,600000
|
||||
que_qsch01,129,79 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch01,91,124 monster Garden Watcher 1933,1,600000
|
||||
que_qsch01,173,95 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch01,179,127 monster Garden Watcher 1933,1,600000
|
||||
que_qsch01,195,120 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch01,178,159 monster Garden Watcher 1933,1,600000
|
||||
que_qsch01,88,145 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch01,94,157 monster Garden Watcher 1933,1,600000
|
||||
que_qsch01,95,177 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch01,129,196 monster Garden Watcher 1933,1,600000
|
||||
que_qsch01,154,196 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch01,170,187 monster Garden Watcher 1933,1,600000
|
||||
que_qsch01,194,180 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch01,214,181 monster Garden Watcher 1933,1,600000
|
||||
que_qsch01,243,199 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch02,116,313 monster Garden Keeper 1932,1,180000
|
||||
que_qsch02,120,285 monster Garden Keeper 1932,1,180000
|
||||
que_qsch02,117,236 monster Garden Keeper 1932,1,180000
|
||||
que_qsch02,103,223 monster Garden Keeper 1932,1,180000
|
||||
que_qsch02,85,204 monster Garden Keeper 1932,1,180000
|
||||
que_qsch02,79,186 monster Garden Keeper 1932,1,180000
|
||||
que_qsch02,73,167 monster Garden Keeper 1932,1,180000
|
||||
que_qsch02,68,150 monster Garden Keeper 1932,1,180000
|
||||
que_qsch02,71,128 monster Garden Keeper 1932,1,180000
|
||||
que_qsch02,69,118 monster Garden Keeper 1932,1,180000
|
||||
que_qsch02,117,78 monster Garden Keeper 1932,1,180000
|
||||
que_qsch02,110,79 monster Garden Keeper 1932,1,180000
|
||||
que_qsch02,141,80 monster Garden Keeper 1932,1,180000
|
||||
que_qsch02,158,84 monster Garden Keeper 1932,1,180000
|
||||
que_qsch02,193,104 monster Garden Keeper 1932,1,180000
|
||||
que_qsch02,119,269 monster Garden Keeper 1932,1,180000
|
||||
que_qsch02,155,77 monster Garden Keeper 1932,1,180000
|
||||
que_qsch02,110,317 monster Garden Watcher 1933,1,600000
|
||||
que_qsch02,115,295 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch02,116,256 monster Garden Watcher 1933,1,600000
|
||||
que_qsch02,113,242 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch02,99,223 monster Garden Watcher 1933,1,600000
|
||||
que_qsch02,94,216 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch02,77,198 monster Garden Watcher 1933,1,600000
|
||||
que_qsch02,70,174 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch02,72,147 monster Garden Watcher 1933,1,600000
|
||||
que_qsch02,64,134 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch02,77,107 monster Garden Watcher 1933,1,600000
|
||||
que_qsch02,84,88 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch02,98,82 monster Garden Watcher 1933,1,600000
|
||||
que_qsch02,129,79 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch02,91,124 monster Garden Watcher 1933,1,600000
|
||||
que_qsch02,173,95 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch02,179,127 monster Garden Watcher 1933,1,600000
|
||||
que_qsch02,195,120 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch02,178,159 monster Garden Watcher 1933,1,600000
|
||||
que_qsch02,88,145 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch02,94,157 monster Garden Watcher 1933,1,600000
|
||||
que_qsch02,95,177 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch02,129,196 monster Garden Watcher 1933,1,600000
|
||||
que_qsch02,154,196 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch02,170,187 monster Garden Watcher 1933,1,600000
|
||||
que_qsch02,194,180 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch02,214,181 monster Garden Watcher 1933,1,600000
|
||||
que_qsch02,243,199 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch03,116,313 monster Garden Keeper 1932,1,180000
|
||||
que_qsch03,120,285 monster Garden Keeper 1932,1,180000
|
||||
que_qsch03,117,236 monster Garden Keeper 1932,1,180000
|
||||
que_qsch03,103,223 monster Garden Keeper 1932,1,180000
|
||||
que_qsch03,85,204 monster Garden Keeper 1932,1,180000
|
||||
que_qsch03,79,186 monster Garden Keeper 1932,1,180000
|
||||
que_qsch03,73,167 monster Garden Keeper 1932,1,180000
|
||||
que_qsch03,68,150 monster Garden Keeper 1932,1,180000
|
||||
que_qsch03,71,128 monster Garden Keeper 1932,1,180000
|
||||
que_qsch03,69,118 monster Garden Keeper 1932,1,180000
|
||||
que_qsch03,117,78 monster Garden Keeper 1932,1,180000
|
||||
que_qsch03,110,79 monster Garden Keeper 1932,1,180000
|
||||
que_qsch03,141,80 monster Garden Keeper 1932,1,180000
|
||||
que_qsch03,158,84 monster Garden Keeper 1932,1,180000
|
||||
que_qsch03,193,104 monster Garden Keeper 1932,1,180000
|
||||
que_qsch03,119,269 monster Garden Keeper 1932,1,180000
|
||||
que_qsch03,155,77 monster Garden Keeper 1932,1,180000
|
||||
que_qsch03,110,317 monster Garden Watcher 1933,1,600000
|
||||
que_qsch03,115,295 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch03,116,256 monster Garden Watcher 1933,1,600000
|
||||
que_qsch03,113,242 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch03,99,223 monster Garden Watcher 1933,1,600000
|
||||
que_qsch03,94,216 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch03,77,198 monster Garden Watcher 1933,1,600000
|
||||
que_qsch03,70,174 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch03,72,147 monster Garden Watcher 1933,1,600000
|
||||
que_qsch03,64,134 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch03,77,107 monster Garden Watcher 1933,1,600000
|
||||
que_qsch03,84,88 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch03,98,82 monster Garden Watcher 1933,1,600000
|
||||
que_qsch03,129,79 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch03,91,124 monster Garden Watcher 1933,1,600000
|
||||
que_qsch03,173,95 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch03,179,127 monster Garden Watcher 1933,1,600000
|
||||
que_qsch03,195,120 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch03,178,159 monster Garden Watcher 1933,1,600000
|
||||
que_qsch03,88,145 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch03,94,157 monster Garden Watcher 1933,1,600000
|
||||
que_qsch03,95,177 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch03,129,196 monster Garden Watcher 1933,1,600000
|
||||
que_qsch03,154,196 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch03,170,187 monster Garden Watcher 1933,1,600000
|
||||
que_qsch03,194,180 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch03,214,181 monster Garden Watcher 1933,1,600000
|
||||
que_qsch03,243,199 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch04,116,313 monster Garden Keeper 1932,1,180000
|
||||
que_qsch04,120,285 monster Garden Keeper 1932,1,180000
|
||||
que_qsch04,117,236 monster Garden Keeper 1932,1,180000
|
||||
que_qsch04,103,223 monster Garden Keeper 1932,1,180000
|
||||
que_qsch04,85,204 monster Garden Keeper 1932,1,180000
|
||||
que_qsch04,79,186 monster Garden Keeper 1932,1,180000
|
||||
que_qsch04,73,167 monster Garden Keeper 1932,1,180000
|
||||
que_qsch04,68,150 monster Garden Keeper 1932,1,180000
|
||||
que_qsch04,71,128 monster Garden Keeper 1932,1,180000
|
||||
que_qsch04,69,118 monster Garden Keeper 1932,1,180000
|
||||
que_qsch04,117,78 monster Garden Keeper 1932,1,180000
|
||||
que_qsch04,110,79 monster Garden Keeper 1932,1,180000
|
||||
que_qsch04,141,80 monster Garden Keeper 1932,1,180000
|
||||
que_qsch04,158,84 monster Garden Keeper 1932,1,180000
|
||||
que_qsch04,193,104 monster Garden Keeper 1932,1,180000
|
||||
que_qsch04,119,269 monster Garden Keeper 1932,1,180000
|
||||
que_qsch04,155,77 monster Garden Keeper 1932,1,180000
|
||||
que_qsch04,110,317 monster Garden Watcher 1933,1,600000
|
||||
que_qsch04,115,295 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch04,116,256 monster Garden Watcher 1933,1,600000
|
||||
que_qsch04,113,242 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch04,99,223 monster Garden Watcher 1933,1,600000
|
||||
que_qsch04,94,216 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch04,77,198 monster Garden Watcher 1933,1,600000
|
||||
que_qsch04,70,174 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch04,72,147 monster Garden Watcher 1933,1,600000
|
||||
que_qsch04,64,134 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch04,77,107 monster Garden Watcher 1933,1,600000
|
||||
que_qsch04,84,88 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch04,98,82 monster Garden Watcher 1933,1,600000
|
||||
que_qsch04,129,79 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch04,91,124 monster Garden Watcher 1933,1,600000
|
||||
que_qsch04,173,95 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch04,179,127 monster Garden Watcher 1933,1,600000
|
||||
que_qsch04,195,120 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch04,178,159 monster Garden Watcher 1933,1,600000
|
||||
que_qsch04,88,145 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch04,94,157 monster Garden Watcher 1933,1,600000
|
||||
que_qsch04,95,177 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch04,129,196 monster Garden Watcher 1933,1,600000
|
||||
que_qsch04,154,196 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch04,170,187 monster Garden Watcher 1933,1,600000
|
||||
que_qsch04,194,180 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch04,214,181 monster Garden Watcher 1933,1,600000
|
||||
que_qsch04,243,199 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch05,116,313 monster Garden Keeper 1932,1,180000
|
||||
que_qsch05,120,285 monster Garden Keeper 1932,1,180000
|
||||
que_qsch05,117,236 monster Garden Keeper 1932,1,180000
|
||||
que_qsch05,103,223 monster Garden Keeper 1932,1,180000
|
||||
que_qsch05,85,204 monster Garden Keeper 1932,1,180000
|
||||
que_qsch05,79,186 monster Garden Keeper 1932,1,180000
|
||||
que_qsch05,73,167 monster Garden Keeper 1932,1,180000
|
||||
que_qsch05,68,150 monster Garden Keeper 1932,1,180000
|
||||
que_qsch05,71,128 monster Garden Keeper 1932,1,180000
|
||||
que_qsch05,69,118 monster Garden Keeper 1932,1,180000
|
||||
que_qsch05,117,78 monster Garden Keeper 1932,1,180000
|
||||
que_qsch05,110,79 monster Garden Keeper 1932,1,180000
|
||||
que_qsch05,141,80 monster Garden Keeper 1932,1,180000
|
||||
que_qsch05,158,84 monster Garden Keeper 1932,1,180000
|
||||
que_qsch05,193,104 monster Garden Keeper 1932,1,180000
|
||||
que_qsch05,119,269 monster Garden Keeper 1932,1,180000
|
||||
que_qsch05,155,77 monster Garden Keeper 1932,1,180000
|
||||
que_qsch05,110,317 monster Garden Watcher 1933,1,600000
|
||||
que_qsch05,115,295 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch05,116,256 monster Garden Watcher 1933,1,600000
|
||||
que_qsch05,113,242 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch05,99,223 monster Garden Watcher 1933,1,600000
|
||||
que_qsch05,94,216 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch05,77,198 monster Garden Watcher 1933,1,600000
|
||||
que_qsch05,70,174 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch05,72,147 monster Garden Watcher 1933,1,600000
|
||||
que_qsch05,64,134 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch05,77,107 monster Garden Watcher 1933,1,600000
|
||||
que_qsch05,84,88 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch05,98,82 monster Garden Watcher 1933,1,600000
|
||||
que_qsch05,129,79 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch05,91,124 monster Garden Watcher 1933,1,600000
|
||||
que_qsch05,173,95 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch05,179,127 monster Garden Watcher 1933,1,600000
|
||||
que_qsch05,195,120 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch05,178,159 monster Garden Watcher 1933,1,600000
|
||||
que_qsch05,88,145 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch05,94,157 monster Garden Watcher 1933,1,600000
|
||||
que_qsch05,95,177 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch05,129,196 monster Garden Watcher 1933,1,600000
|
||||
que_qsch05,154,196 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch05,170,187 monster Garden Watcher 1933,1,600000
|
||||
que_qsch05,194,180 monster Garden Watcher 1933,1,1200000
|
||||
que_qsch05,214,181 monster Garden Watcher 1933,1,600000
|
||||
que_qsch05,243,199 monster Garden Watcher 1933,1,1200000
|
||||
|
||||
@@ -9031,9 +9031,9 @@ OnInit:
|
||||
disablenpc "1#rus27";
|
||||
end;
|
||||
}
|
||||
mosk_que,0,0,0,0 monster Freezer 1887,10,20000,0,0
|
||||
mosk_que,0,0,0,0 monster Hatii Baby 1888,3,300000,0,0
|
||||
mosk_que,0,0,0,0 monster Sasquatch 1243,15,10000,0,0
|
||||
mosk_que,0,0 monster Freezer 1887,10,20000
|
||||
mosk_que,0,0 monster Hatii Baby 1888,3,300000
|
||||
mosk_que,0,0 monster Sasquatch 1243,15,10000
|
||||
|
||||
mosk_que,49,22,3 script #rus27 -1,3,3,{
|
||||
end;
|
||||
|
||||
@@ -12434,15 +12434,15 @@ OnReset:
|
||||
end;
|
||||
}
|
||||
|
||||
que_sign02,0,0,0,0 monster Ancient Mummy 1522,8,0,0,0
|
||||
que_sign02,0,0,0,0 monster Evil Druid 1435,8,0,0,0
|
||||
que_sign02,0,0,0,0 monster Ghoul 1423,20,0,0,0
|
||||
que_sign02,0,0,0,0 monster Incubus 1580,8,0,0,0
|
||||
que_sign02,0,0,0,0 monster Injustice 1446,8,0,0,0
|
||||
que_sign02,0,0,0,0 monster Skeleton Prisoner 1479,15,0,0,0
|
||||
que_sign02,0,0,0,0 monster Zombie Prisoner 1480,15,0,0,0
|
||||
que_sign02,0,0,0,0 monster Wraith 1475,15,0,0,0
|
||||
que_sign02,0,0,0,0 monster Wraith Dead 1566,8,0,0,0
|
||||
que_sign02,0,0 monster Ancient Mummy 1522,8
|
||||
que_sign02,0,0 monster Evil Druid 1435,8
|
||||
que_sign02,0,0 monster Ghoul 1423,20
|
||||
que_sign02,0,0 monster Incubus 1580,8
|
||||
que_sign02,0,0 monster Injustice 1446,8
|
||||
que_sign02,0,0 monster Skeleton Prisoner 1479,15
|
||||
que_sign02,0,0 monster Zombie Prisoner 1480,15
|
||||
que_sign02,0,0 monster Wraith 1475,15
|
||||
que_sign02,0,0 monster Wraith Dead 1566,8
|
||||
|
||||
que_sign02,378,235,0 script sign_w6 45,1,1,{
|
||||
OnTouch_:
|
||||
|
||||
@@ -737,4 +737,4 @@ OnTouch_:
|
||||
}
|
||||
jupe_core2,150,33,0 duplicate(#Acquiring Knowledge) #Acquiring Knowledge2 139,1,0
|
||||
|
||||
jupe_core2,0,0,0,0 monster Dimik 1669,100,0,0,0
|
||||
jupe_core2,0,0 monster Dimik 1669,100
|
||||
|
||||
@@ -1107,5 +1107,5 @@ job3_war01,1,2,0 script Button Girl#wl 66,{
|
||||
}
|
||||
}
|
||||
|
||||
spl_fild02,0,0,0,0 monster Bradium Golem 2049,20,5000,0,0
|
||||
spl_fild02,0,0,0,0 monster Naga 2047,20,5000,0,0
|
||||
spl_fild02,0,0 monster Bradium Golem 2049,20,5000
|
||||
spl_fild02,0,0 monster Naga 2047,20,5000
|
||||
|
||||
@@ -1034,21 +1034,21 @@ OnTouch:
|
||||
end;
|
||||
}
|
||||
|
||||
job3_gen01,26,34,0,0 monster Poison Spore 1428,1,7000,0,0
|
||||
job3_gen01,23,33,0,0 monster Poison Spore 1428,1,7000,0,0
|
||||
job3_gen01,21,30,0,0 monster Poison Spore 1428,1,7000,0,0
|
||||
job3_gen01,26,34,0,0 monster Poison Spore 1428,1,7000,0,0
|
||||
job3_gen01,23,33,0,0 monster Poison Spore 1428,1,7000,0,0
|
||||
job3_gen01,21,30,0,0 monster Poison Spore 1428,1,7000,0,0
|
||||
job3_gen01,26,34,0,0 monster Poison Spore 1428,1,7000,0,0
|
||||
job3_gen01,23,33,0,0 monster Poison Spore 1428,1,7000,0,0
|
||||
job3_gen01,21,30,0,0 monster Poison Spore 1428,1,7000,0,0
|
||||
job3_gen01,26,34,0,0 monster Poison Spore 1428,1,7000,0,0
|
||||
job3_gen01,23,33,0,0 monster Poison Spore 1428,1,7000,0,0
|
||||
job3_gen01,21,30,0,0 monster Poison Spore 1428,1,7000,0,0
|
||||
job3_gen01,26,34,0,0 monster Poison Spore 1428,1,7000,0,0
|
||||
job3_gen01,23,33,0,0 monster Poison Spore 1428,1,7000,0,0
|
||||
job3_gen01,21,30,0,0 monster Poison Spore 1428,1,7000,0,0
|
||||
job3_gen01,26,34,0,0 monster Poison Spore 1428,1,7000,0,0
|
||||
job3_gen01,23,33,0,0 monster Poison Spore 1428,1,7000,0,0
|
||||
job3_gen01,21,30,0,0 monster Poison Spore 1428,1,7000,0,0
|
||||
job3_gen01,26,34 monster Poison Spore 1428,1,7000
|
||||
job3_gen01,23,33 monster Poison Spore 1428,1,7000
|
||||
job3_gen01,21,30 monster Poison Spore 1428,1,7000
|
||||
job3_gen01,26,34 monster Poison Spore 1428,1,7000
|
||||
job3_gen01,23,33 monster Poison Spore 1428,1,7000
|
||||
job3_gen01,21,30 monster Poison Spore 1428,1,7000
|
||||
job3_gen01,26,34 monster Poison Spore 1428,1,7000
|
||||
job3_gen01,23,33 monster Poison Spore 1428,1,7000
|
||||
job3_gen01,21,30 monster Poison Spore 1428,1,7000
|
||||
job3_gen01,26,34 monster Poison Spore 1428,1,7000
|
||||
job3_gen01,23,33 monster Poison Spore 1428,1,7000
|
||||
job3_gen01,21,30 monster Poison Spore 1428,1,7000
|
||||
job3_gen01,26,34 monster Poison Spore 1428,1,7000
|
||||
job3_gen01,23,33 monster Poison Spore 1428,1,7000
|
||||
job3_gen01,21,30 monster Poison Spore 1428,1,7000
|
||||
job3_gen01,26,34 monster Poison Spore 1428,1,7000
|
||||
job3_gen01,23,33 monster Poison Spore 1428,1,7000
|
||||
job3_gen01,21,30 monster Poison Spore 1428,1,7000
|
||||
|
||||
@@ -2506,6 +2506,6 @@ OnTouch:
|
||||
|
||||
// Quest Mob Spawn
|
||||
//============================================================
|
||||
tur_dun03,0,0,0,0 monster Shadow of Deception 2076,1,1000,0,0
|
||||
ice_dun02,0,0,0,0 monster Shadow of Illusion 2077,1,1000,0,0
|
||||
niflheim,0,0,0,0 monster Shadow of Pleasure 2078,1,1000,0,0
|
||||
tur_dun03,0,0 monster Shadow of Deception 2076,1,1000
|
||||
ice_dun02,0,0 monster Shadow of Illusion 2077,1,1000
|
||||
niflheim,0,0 monster Shadow of Pleasure 2078,1,1000
|
||||
|
||||
@@ -3636,30 +3636,30 @@ iz_ac01_b,53,74,3 duplicate(Attribute Expert#ac) Attribute Expert#ac_b 1_M_WIZAR
|
||||
iz_ac01_c,53,74,3 duplicate(Attribute Expert#ac) Attribute Expert#ac_c 1_M_WIZARD
|
||||
iz_ac01_d,53,74,3 duplicate(Attribute Expert#ac) Attribute Expert#ac_d 1_M_WIZARD
|
||||
|
||||
iz_ac01,47,68,0,0 monster Lv 10 (Fire) 2413,1,5000,0,0
|
||||
iz_ac01,50,68,0,0 monster Lv 10 (Fire) 2413,1,5000,0,0
|
||||
iz_ac01,53,68,0,0 monster Lv 10 2408,1,5000,0,0
|
||||
iz_ac01,56,68,0,0 monster Lv 10 2408,1,5000,0,0
|
||||
iz_ac01,47,68 monster Lv 10 (Fire) 2413,1,5000,0,0
|
||||
iz_ac01,50,68 monster Lv 10 (Fire) 2413,1,5000,0,0
|
||||
iz_ac01,53,68 monster Lv 10 2408,1,5000
|
||||
iz_ac01,56,68 monster Lv 10 2408,1,5000
|
||||
|
||||
iz_ac01_a,47,68,0,0 monster Lv 10 (Fire) 2413,1,5000,0,0
|
||||
iz_ac01_a,50,68,0,0 monster Lv 10 (Fire) 2413,1,5000,0,0
|
||||
iz_ac01_a,53,68,0,0 monster Lv 10 2408,1,5000,0,0
|
||||
iz_ac01_a,56,68,0,0 monster Lv 10 2408,1,5000,0,0
|
||||
iz_ac01_a,47,68 monster Lv 10 (Fire) 2413,1,5000,0,0
|
||||
iz_ac01_a,50,68 monster Lv 10 (Fire) 2413,1,5000,0,0
|
||||
iz_ac01_a,53,68 monster Lv 10 2408,1,5000
|
||||
iz_ac01_a,56,68 monster Lv 10 2408,1,5000
|
||||
|
||||
iz_ac01_b,47,68,0,0 monster Lv 10 (Fire) 2413,1,5000,0,0
|
||||
iz_ac01_b,50,68,0,0 monster Lv 10 (Fire) 2413,1,5000,0,0
|
||||
iz_ac01_b,53,68,0,0 monster Lv 10 2408,1,5000,0,0
|
||||
iz_ac01_b,56,68,0,0 monster Lv 10 2408,1,5000,0,0
|
||||
iz_ac01_b,47,68 monster Lv 10 (Fire) 2413,1,5000,0,0
|
||||
iz_ac01_b,50,68 monster Lv 10 (Fire) 2413,1,5000,0,0
|
||||
iz_ac01_b,53,68 monster Lv 10 2408,1,5000
|
||||
iz_ac01_b,56,68 monster Lv 10 2408,1,5000
|
||||
|
||||
iz_ac01_c,47,68,0,0 monster Lv 10 (Fire) 2413,1,5000,0,0
|
||||
iz_ac01_c,50,68,0,0 monster Lv 10 (Fire) 2413,1,5000,0,0
|
||||
iz_ac01_c,53,68,0,0 monster Lv 10 2408,1,5000,0,0
|
||||
iz_ac01_c,56,68,0,0 monster Lv 10 2408,1,5000,0,0
|
||||
iz_ac01_c,47,68 monster Lv 10 (Fire) 2413,1,5000,0,0
|
||||
iz_ac01_c,50,68 monster Lv 10 (Fire) 2413,1,5000,0,0
|
||||
iz_ac01_c,53,68 monster Lv 10 2408,1,5000
|
||||
iz_ac01_c,56,68 monster Lv 10 2408,1,5000
|
||||
|
||||
iz_ac01_d,47,68,0,0 monster Lv 10 (Fire) 2413,1,5000,0,0
|
||||
iz_ac01_d,50,68,0,0 monster Lv 10 (Fire) 2413,1,5000,0,0
|
||||
iz_ac01_d,53,68,0,0 monster Lv 10 2408,1,5000,0,0
|
||||
iz_ac01_d,56,68,0,0 monster Lv 10 2408,1,5000,0,0
|
||||
iz_ac01_d,47,68 monster Lv 10 (Fire) 2413,1,5000,0,0
|
||||
iz_ac01_d,50,68 monster Lv 10 (Fire) 2413,1,5000,0,0
|
||||
iz_ac01_d,53,68 monster Lv 10 2408,1,5000
|
||||
iz_ac01_d,56,68 monster Lv 10 2408,1,5000
|
||||
|
||||
// - Dacquoise
|
||||
// - Teaches the player about Cooking.
|
||||
@@ -4733,7 +4733,7 @@ iz_ac01_d,43,80,7 duplicate(Adventurer's Pet#ac) Adventurer's Pet#ac_d 4_DEVIRUC
|
||||
|
||||
// - Monster Spawn
|
||||
// -----------------------------------------------------------------------------
|
||||
new_1-3,0,0,0,0 monster Little Poring 2398,30,50000,0,0
|
||||
new_1-3,0,0 monster Little Poring 2398,30,50000
|
||||
|
||||
// - Adept Adventurer (Cont...)
|
||||
// - Teaches the player about Pets.
|
||||
|
||||
@@ -2349,29 +2349,29 @@ new_5-3,103,50,4 duplicate(NvBrutus) Level 5 Trainer#nv5 84
|
||||
|
||||
// Monster Spawns
|
||||
//============================================================
|
||||
new_1-3,0,0,0,0 monster Poring 1002,20,0,0,0
|
||||
new_1-3,0,0,0,0 monster Drops 1113,10,0,0,0
|
||||
new_1-3,0,0,0,0 monster Lunatic 1063,20,0,0,0
|
||||
new_1-3,0,0 monster Poring 1002,20
|
||||
new_1-3,0,0 monster Drops 1113,10
|
||||
new_1-3,0,0 monster Lunatic 1063,20
|
||||
|
||||
new_2-3,0,0,0,0 monster Chonchon 1011,10,0,0,0
|
||||
new_2-3,0,0,0,0 monster Lunatic 1063,15,0,0,0
|
||||
new_2-3,0,0,0,0 monster Willow 1010,10,0,0,0
|
||||
new_2-3,0,0,0,0 monster Poring 1002,15,0,0,0
|
||||
new_2-3,0,0 monster Chonchon 1011,10
|
||||
new_2-3,0,0 monster Lunatic 1063,15
|
||||
new_2-3,0,0 monster Willow 1010,10
|
||||
new_2-3,0,0 monster Poring 1002,15
|
||||
|
||||
new_3-3,0,0,0,0 monster Chonchon 1011,10,0,0,0
|
||||
new_3-3,0,0,0,0 monster Lunatic 1063,15,0,0,0
|
||||
new_3-3,0,0,0,0 monster Willow 1010,10,0,0,0
|
||||
new_3-3,0,0,0,0 monster Poring 1002,5,0,0,0
|
||||
new_3-3,0,0 monster Chonchon 1011,10
|
||||
new_3-3,0,0 monster Lunatic 1063,15
|
||||
new_3-3,0,0 monster Willow 1010,10
|
||||
new_3-3,0,0 monster Poring 1002,5
|
||||
|
||||
new_4-3,0,0,0,0 monster Hornet 1004,5,0,0,0
|
||||
new_4-3,0,0,0,0 monster Willow 1010,15,0,0,0
|
||||
new_4-3,0,0,0,0 monster Fabre 1184,5,0,0,0
|
||||
new_4-3,0,0,0,0 monster Picky 1049,15,0,0,0
|
||||
new_4-3,0,0 monster Hornet 1004,5
|
||||
new_4-3,0,0 monster Willow 1010,15
|
||||
new_4-3,0,0 monster Fabre 1184,5
|
||||
new_4-3,0,0 monster Picky 1049,15
|
||||
|
||||
new_5-3,0,0,0,0 monster Hornet 1004,5,0,0,0
|
||||
new_5-3,0,0,0,0 monster Willow 1010,15,0,0,0
|
||||
new_5-3,0,0,0,0 monster Fabre 1184,5,0,0,0
|
||||
new_5-3,0,0,0,0 monster Picky 1049,15,0,0,0
|
||||
new_5-3,0,0 monster Hornet 1004,5
|
||||
new_5-3,0,0 monster Willow 1010,15
|
||||
new_5-3,0,0 monster Fabre 1184,5
|
||||
new_5-3,0,0 monster Picky 1049,15
|
||||
|
||||
// Potato Merchant
|
||||
//============================================================
|
||||
|
||||
@@ -13,89 +13,89 @@
|
||||
//==================================================
|
||||
// prt_fild08 - Prontera Field
|
||||
//==================================================
|
||||
prt_fild08,0,0,0,0 monster Poring 1002,110,5000,0,0
|
||||
prt_fild08,0,0,0,0 monster Lunatic 1063,100,5000,0,0
|
||||
prt_fild08,0,0,0,0 monster Fabre 1007,100,5000,0,0
|
||||
prt_fild08,0,0,0,0 monster Little Poring 2398,30,50000,0,0
|
||||
prt_fild08a,0,0,0,0 monster Poring 1002,110,5000,0,0
|
||||
prt_fild08a,0,0,0,0 monster Lunatic 1063,100,5000,0,0
|
||||
prt_fild08a,0,0,0,0 monster Fabre 1007,100,5000,0,0
|
||||
prt_fild08a,0,0,0,0 monster Little Poring 2398,30,50000,0,0
|
||||
prt_fild08b,0,0,0,0 monster Poring 1002,110,5000,0,0
|
||||
prt_fild08b,0,0,0,0 monster Lunatic 1063,100,5000,0,0
|
||||
prt_fild08b,0,0,0,0 monster Fabre 1007,100,5000,0,0
|
||||
prt_fild08b,0,0,0,0 monster Little Poring 2398,30,50000,0,0
|
||||
prt_fild08c,0,0,0,0 monster Poring 1002,110,5000,0,0
|
||||
prt_fild08c,0,0,0,0 monster Lunatic 1063,100,5000,0,0
|
||||
prt_fild08c,0,0,0,0 monster Fabre 1007,100,5000,0,0
|
||||
prt_fild08c,0,0,0,0 monster Little Poring 2398,30,50000,0,0
|
||||
prt_fild08d,0,0,0,0 monster Poring 1002,110,5000,0,0
|
||||
prt_fild08d,0,0,0,0 monster Lunatic 1063,100,5000,0,0
|
||||
prt_fild08d,0,0,0,0 monster Fabre 1007,100,5000,0,0
|
||||
prt_fild08d,0,0,0,0 monster Little Poring 2398,30,50000,0,0
|
||||
prt_fild08,0,0 monster Poring 1002,110,5000
|
||||
prt_fild08,0,0 monster Lunatic 1063,100,5000
|
||||
prt_fild08,0,0 monster Fabre 1007,100,5000
|
||||
prt_fild08,0,0 monster Little Poring 2398,30,50000
|
||||
prt_fild08a,0,0 monster Poring 1002,110,5000
|
||||
prt_fild08a,0,0 monster Lunatic 1063,100,5000
|
||||
prt_fild08a,0,0 monster Fabre 1007,100,5000
|
||||
prt_fild08a,0,0 monster Little Poring 2398,30,50000
|
||||
prt_fild08b,0,0 monster Poring 1002,110,5000
|
||||
prt_fild08b,0,0 monster Lunatic 1063,100,5000
|
||||
prt_fild08b,0,0 monster Fabre 1007,100,5000
|
||||
prt_fild08b,0,0 monster Little Poring 2398,30,50000
|
||||
prt_fild08c,0,0 monster Poring 1002,110,5000
|
||||
prt_fild08c,0,0 monster Lunatic 1063,100,5000
|
||||
prt_fild08c,0,0 monster Fabre 1007,100,5000
|
||||
prt_fild08c,0,0 monster Little Poring 2398,30,50000
|
||||
prt_fild08d,0,0 monster Poring 1002,110,5000
|
||||
prt_fild08d,0,0 monster Lunatic 1063,100,5000
|
||||
prt_fild08d,0,0 monster Fabre 1007,100,5000
|
||||
prt_fild08d,0,0 monster Little Poring 2398,30,50000
|
||||
|
||||
//==================================================
|
||||
// treasure_n1 - Izlude Sunken Ship 1F
|
||||
//==================================================
|
||||
treasure_n1,0,0,0,0 monster Red Mushroom 1085,10,50000,0,0
|
||||
treasure_n1,0,0,0,0 monster Black Mushroom 1084,10,50000,0,0
|
||||
treasure_n1,160,54,13,13 monster Red Mushroom 1085,10,50000,0,0
|
||||
treasure_n1,160,54,13,13 monster Black Mushroom 1084,10,50000,0,0
|
||||
treasure_n1,160,54,13,13 monster Dead Plankton 2404,10,50000,0,0
|
||||
treasure_n1,0,0,0,0 monster Red Plant 1078,5,50000,0,0
|
||||
treasure_n1,0,0,0,0 monster Green Plant 1080,5,50000,0,0
|
||||
treasure_n1,0,0,0,0 monster Yellow Plant 1081,5,50000,0,0
|
||||
treasure_n1,0,0,0,0 monster Blue Plant 1079,5,50000,0,0
|
||||
treasure_n1,0,0,0,0 monster White Plant 1082,5,50000,0,0
|
||||
treasure_n1,0,0,0,0 monster Zombie 1015,1,100000,0,0
|
||||
treasure_n1,0,0,0,0 monster Zombie 1015,1,100000,0,0
|
||||
treasure_n1,68,47,9,9 monster Weak Skeleton 2405,4,8000,0,0
|
||||
treasure_n1,106,42,9,9 monster Roda Frog 1012,3,60000,0,0
|
||||
treasure_n1,32,37,9,9 monster Roda Frog 1012,6,60000,0,0
|
||||
treasure_n1,69,112,9,9 monster Spore 1014,3,20000,0,0
|
||||
treasure_n1,35,112,9,9 monster Spore 1014,3,20000,0,0
|
||||
treasure_n1,35,112,9,9 monster Roda Frog 1012,3,20000,0,0
|
||||
treasure_n1,111,111,9,9 monster Roda Frog 1012,3,60000,0,0
|
||||
treasure_n1,111,111,9,9 monster Dead Plankton 2404,5,60000,0,0
|
||||
treasure_n1,69,174,9,9 monster Dead Plankton 2404,7,120000,0,0
|
||||
treasure_n1,82,155,9,9 monster Spore 1014,4,60000,0,0
|
||||
treasure_n1,55,155,9,9 monster Spore 1014,2,60000,0,0
|
||||
treasure_n1,22,160,0,0 monster Weak Skeleton 2405,3,8000,0,0
|
||||
treasure_n1,163,155,13,13 monster Weak Skeleton 2405,5,8000,0,0
|
||||
treasure_n1,163,155,13,13 monster Zombie 1015,1,8000,0,0
|
||||
treasure_n1,0,0 monster Red Mushroom 1085,10,50000
|
||||
treasure_n1,0,0 monster Black Mushroom 1084,10,50000
|
||||
treasure_n1,160,54,13,13 monster Red Mushroom 1085,10,50000
|
||||
treasure_n1,160,54,13,13 monster Black Mushroom 1084,10,50000
|
||||
treasure_n1,160,54,13,13 monster Dead Plankton 2404,10,50000
|
||||
treasure_n1,0,0 monster Red Plant 1078,5,50000
|
||||
treasure_n1,0,0 monster Green Plant 1080,5,50000
|
||||
treasure_n1,0,0 monster Yellow Plant 1081,5,50000
|
||||
treasure_n1,0,0 monster Blue Plant 1079,5,50000
|
||||
treasure_n1,0,0 monster White Plant 1082,5,50000
|
||||
treasure_n1,0,0 monster Zombie 1015,1,100000
|
||||
treasure_n1,0,0 monster Zombie 1015,1,100000
|
||||
treasure_n1,68,47,9,9 monster Weak Skeleton 2405,4,8000
|
||||
treasure_n1,106,42,9,9 monster Roda Frog 1012,3,60000
|
||||
treasure_n1,32,37,9,9 monster Roda Frog 1012,6,60000
|
||||
treasure_n1,69,112,9,9 monster Spore 1014,3,20000
|
||||
treasure_n1,35,112,9,9 monster Spore 1014,3,20000
|
||||
treasure_n1,35,112,9,9 monster Roda Frog 1012,3,20000
|
||||
treasure_n1,111,111,9,9 monster Roda Frog 1012,3,60000
|
||||
treasure_n1,111,111,9,9 monster Dead Plankton 2404,5,60000
|
||||
treasure_n1,69,174,9,9 monster Dead Plankton 2404,7,120000
|
||||
treasure_n1,82,155,9,9 monster Spore 1014,4,60000
|
||||
treasure_n1,55,155,9,9 monster Spore 1014,2,60000
|
||||
treasure_n1,22,160 monster Weak Skeleton 2405,3,8000
|
||||
treasure_n1,163,155,13,13 monster Weak Skeleton 2405,5,8000
|
||||
treasure_n1,163,155,13,13 monster Zombie 1015,1,8000
|
||||
|
||||
//==================================================
|
||||
// treasure_n2 - Izlude Sunken Ship 2F
|
||||
//==================================================
|
||||
treasure_n2,0,0,0,0 monster Red Mushroom 1085,10,50000,0,0
|
||||
treasure_n2,0,0,0,0 monster Black Mushroom 1084,10,50000,0,0
|
||||
treasure_n2,150,40,13,13 monster Weak Soldier Skeleton 2406,3,50000,0,0
|
||||
treasure_n2,150,40,13,13 monster Weak Skeleton 2405,5,50000,0,0
|
||||
treasure_n2,0,0,0,0 monster Red Plant 1078,5,50000,0,0
|
||||
treasure_n2,0,0,0,0 monster Green Plant 1080,5,50000,0,0
|
||||
treasure_n2,0,0,0,0 monster Yellow Plant 1081,5,50000,0,0
|
||||
treasure_n2,0,0,0,0 monster Blue Plant 1079,5,50000,0,0
|
||||
treasure_n2,0,0,0,0 monster White Plant 1082,5,50000,0,0
|
||||
treasure_n2,100,50,13,13 monster Weak Skeleton 2405,7,30000,0,0
|
||||
treasure_n2,100,50,13,13 monster Dead Plankton 2404,5,30000,0,0
|
||||
treasure_n2,50,40,13,13 monster Weak Soldier Skeleton 2406,3,50000,0,0
|
||||
treasure_n2,50,40,13,13 monster Weak Skeleton 2405,5,50000,0,0
|
||||
treasure_n2,40,75,5,3 monster Zombie 1015,2,60000,0,0
|
||||
treasure_n2,40,75,5,5 monster Dead Plankton 2404,4,60000,0,0
|
||||
treasure_n2,50,140,5,5 monster Weak Skeleton 2405,10,60000,0,0
|
||||
treasure_n2,50,140,5,5 monster Weak Soldier Skeleton 2406,5,60000,0,0
|
||||
treasure_n2,160,140,5,5 monster Weak Skeleton 2405,5,60000,0,0
|
||||
treasure_n2,160,140,5,5 monster Weak Soldier Skeleton 2406,3,60000,0,0
|
||||
treasure_n2,160,140,5,2 monster Zombie 1015,3,60000,0,0
|
||||
treasure_n2,160,70,13,13 monster Weak Skeleton 2405,5,30000,0,0
|
||||
treasure_n2,160,70,13,13 monster Dead Plankton 2404,7,30000,0,0
|
||||
treasure_n2,155,40,9,9 monster Zombie 1015,3,120000,0,0
|
||||
treasure_n2,100,85,13,13 monster Weak Soldier Skeleton 2406,2,50000,0,0
|
||||
treasure_n2,100,160,13,13 monster Weak Soldier Skeleton 2406,5,120000,0,0
|
||||
treasure_n2,100,160,13,13 monster Weak Skeleton 2405,7,200000,0,0
|
||||
treasure_n2,100,160,13,13 monster Dead Plankton 2404,4,60000,0,0
|
||||
treasure_n2,0,0 monster Red Mushroom 1085,10,50000
|
||||
treasure_n2,0,0 monster Black Mushroom 1084,10,50000
|
||||
treasure_n2,150,40,13,13 monster Weak Soldier Skeleton 2406,3,50000
|
||||
treasure_n2,150,40,13,13 monster Weak Skeleton 2405,5,50000
|
||||
treasure_n2,0,0 monster Red Plant 1078,5,50000
|
||||
treasure_n2,0,0 monster Green Plant 1080,5,50000
|
||||
treasure_n2,0,0 monster Yellow Plant 1081,5,50000
|
||||
treasure_n2,0,0 monster Blue Plant 1079,5,50000
|
||||
treasure_n2,0,0 monster White Plant 1082,5,50000
|
||||
treasure_n2,100,50,13,13 monster Weak Skeleton 2405,7,30000
|
||||
treasure_n2,100,50,13,13 monster Dead Plankton 2404,5,30000
|
||||
treasure_n2,50,40,13,13 monster Weak Soldier Skeleton 2406,3,50000
|
||||
treasure_n2,50,40,13,13 monster Weak Skeleton 2405,5,50000
|
||||
treasure_n2,40,75,5,3 monster Zombie 1015,2,60000
|
||||
treasure_n2,40,75,5,5 monster Dead Plankton 2404,4,60000
|
||||
treasure_n2,50,140,5,5 monster Weak Skeleton 2405,10,60000
|
||||
treasure_n2,50,140,5,5 monster Weak Soldier Skeleton 2406,5,60000
|
||||
treasure_n2,160,140,5,5 monster Weak Skeleton 2405,5,60000
|
||||
treasure_n2,160,140,5,5 monster Weak Soldier Skeleton 2406,3,60000
|
||||
treasure_n2,160,140,5,2 monster Zombie 1015,3,60000
|
||||
treasure_n2,160,70,13,13 monster Weak Skeleton 2405,5,30000
|
||||
treasure_n2,160,70,13,13 monster Dead Plankton 2404,7,30000
|
||||
treasure_n2,155,40,9,9 monster Zombie 1015,3,120000
|
||||
treasure_n2,100,85,13,13 monster Weak Soldier Skeleton 2406,2,50000
|
||||
treasure_n2,100,160,13,13 monster Weak Soldier Skeleton 2406,5,120000
|
||||
treasure_n2,100,160,13,13 monster Weak Skeleton 2405,7,200000
|
||||
treasure_n2,100,160,13,13 monster Dead Plankton 2404,4,60000
|
||||
|
||||
//==================================================
|
||||
// new_1-3 - Novice Training Grounds
|
||||
//==================================================
|
||||
new_1-3,0,0,0,0 monster Little Poring 2398,30,50000,0,0
|
||||
new_1-3,0,0 monster Little Poring 2398,30,50000
|
||||
|
||||
@@ -10,314 +10,314 @@
|
||||
//= 1.0 First version
|
||||
//============================================================
|
||||
|
||||
abbey02,0,0,0,0 monster Swift Zombie Slaughter 2603,2,300000,0
|
||||
gl_prison,0,0,0,0 monster Solid Zombie Prisoner 2604,2,300000,0
|
||||
gld_dun04,0,0,0,0 monster Zombie Master Ringleader 2605,2,300000,0
|
||||
pay_dun00,0,0,0,0 monster Furious Zombie 2606,2,300000,0
|
||||
schg_dun01,0,0,0,0 monster Elusive Zakudam 2607,2,300000,0
|
||||
prt_fild03,0,0,0,0 monster Swift Yoyo 2608,2,300000,0
|
||||
ayo_fild02,0,0,0,0 monster Solid Yoyo 2609,2,300000,0
|
||||
pay_fild06,0,0,0,0 monster Wormtail Ringleader 2610,2,300000,0
|
||||
um_fild02,0,0,0,0 monster Furious Wootan Fighter 2611,2,300000,0
|
||||
mosk_dun01,0,0,0,0 monster Elusive Wood Goblin 2612,2,300000,0
|
||||
moc_fild03,0,0,0,0 monster Swift Wolf 2613,2,300000,0
|
||||
gl_step,0,0,0,0 monster Solid Wind Ghost 2614,2,300000,0
|
||||
pay_fild01,0,0,0,0 monster Willow Ringleader 2615,2,300000,0
|
||||
um_fild04,0,0,0,0 monster Furious Wild Rose 2616,2,300000,0
|
||||
gon_dun03,0,0,0,0 monster Elusive Evil Nymph 2617,2,300000,0
|
||||
gl_sew01,0,0,0,0 monster Solid Whisper 2618,2,300000,0
|
||||
treasure_n2,0,0,0,0 monster Weak Skeleton Ringleader 2619,2,300000,0
|
||||
gl_cas02,0,0,0,0 monster Furious Wanderer 2620,2,300000,0
|
||||
gefenia04,0,0,0,0 monster Elusive Violy 2621,2,300000,0
|
||||
gefenia03,0,0,0,0 monster Swift Violy 2622,2,300000,0
|
||||
gefenia02,0,0,0,0 monster Solid Violy 2623,2,300000,0
|
||||
ein_fild04,0,0,0,0 monster Venomous Ringleader 2624,2,300000,0
|
||||
juperos_01,0,0,0,0 monster Furious Venatu 2625,2,300000,0
|
||||
mosk_dun03,0,0,0,0 monster Elusive Vavayaga 2626,2,300000,0
|
||||
ra_san01,0,0,0,0 monster Swift Vanberk 2627,2,300000,0
|
||||
iz_dun01,0,0,0,0 monster Solid Vadon 2628,2,300000,0
|
||||
ein_fild02,0,0,0,0 monster Ungoliant Ringleader 2629,2,300000,0
|
||||
bra_fild01,0,0,0,0 monster Furious Toucan 2630,2,300000,0
|
||||
ma_fild01,0,0,0,0 monster Elusive Tiyanak 2631,2,300000,0
|
||||
prt_sewb4,0,0,0,0 monster Solid Thief Bug 2632,2,300000,0
|
||||
prt_sewb3,0,0,0,0 monster Thief Bug Ringleader 2633,2,300000,0
|
||||
prt_sewb2,0,0,0,0 monster Furious Thief Bug 2634,2,300000,0
|
||||
beach_dun3,0,0,0,0 monster Elusive Thara Frog 2635,2,300000,0
|
||||
ein_fild03,0,0,0,0 monster Swift Teddy Bear 2636,2,300000,0
|
||||
man_fild03,0,0,0,0 monster Solid Tatacho 2637,2,300000,0
|
||||
mjo_dun01,0,0,0,0 monster Tarou Ringleader 2638,2,300000,0
|
||||
ayo_dun02,0,0,0,0 monster Furious Tamruan 2639,2,300000,0
|
||||
gl_sew03,0,0,0,0 monster Elusive Sting 2640,2,300000,0
|
||||
lhz_fild02,0,0,0,0 monster Swift Stem Worm 2641,2,300000,0
|
||||
moc_fild13,0,0,0,0 monster Solid Steel Chonchon 2642,2,300000,0
|
||||
ve_fild07,0,0,0,0 monster Stapo Ringleader 2643,2,300000,0
|
||||
beach_dun2,0,0,0,0 monster Furious Stalactic Golem 2644,2,300000,0
|
||||
prt_fild02,0,0,0,0 monster Elusive Stainer 2645,2,300000,0
|
||||
treasure_n1,0,0,0,0 monster Swift Spore 2646,2,300000,0
|
||||
tur_dun02,0,0,0,0 monster Solid Solider 2647,2,300000,0
|
||||
pay_dun02,0,0,0,0 monster Soldier Skeleton Ringleader 2648,2,300000,0
|
||||
pay_dun01,0,0,0,0 monster Furious Soldier Skeleton 2649,2,300000,0
|
||||
tha_t09,0,0,0,0 monster Elusive Lady Solace 2650,2,300000,0
|
||||
pay_dun03,0,0,0,0 monster Swift Sohee 2651,2,300000,0
|
||||
ice_dun02,0,0,0,0 monster Solid Snowier 2652,2,300000,0
|
||||
pay_fild02,0,0,0,0 monster Boa Ringleader 2653,2,300000,0
|
||||
ayo_fild01,0,0,0,0 monster Furious Smokie 2654,2,300000,0
|
||||
yuno_fild06,0,0,0,0 monster Elusive Sleeper 2655,2,300000,0
|
||||
yuno_fild02,0,0,0,0 monster Swift Sleeper 2656,2,300000,0
|
||||
odin_tem02,0,0,0,0 monster Solid Skogul 2657,2,300000,0
|
||||
gld2_pay,0,0,0,0 monster Skeleton General Ringleader 2658,2,300000,0
|
||||
gld_dun01_2,0,0,0,0 monster Furious Skeleton General 2659,2,300000,0
|
||||
mjo_dun03,0,0,0,0 monster Elusive Skeleton Worker 2660,2,300000,0
|
||||
ice_dun01,0,0,0,0 monster Swift Siroma 2661,2,300000,0
|
||||
mosk_fild02,0,0,0,0 monster Solid Side Winder 2662,2,300000,0
|
||||
mjolnir_03,0,0,0,0 monster Side Winder Ringleader 2663,2,300000,0
|
||||
ama_dun03,0,0,0,0 monster Furious Shinobi 2664,2,300000,0
|
||||
tha_t11,0,0,0,0 monster Elusive Mistress of Shelter 2665,2,300000,0
|
||||
hu_fild06,0,0,0,0 monster Swift Shellfish 2666,2,300000,0
|
||||
lhz_dun03,0,0,0,0 monster Solid Cecil Damon 2667,2,300000,0
|
||||
cmd_fild04,0,0,0,0 monster Sea Otter Ringleader 2668,2,300000,0
|
||||
iz_dun05,0,0,0,0 monster Furious Lamp Rey 2669,2,300000,0
|
||||
moc_fild18,0,0,0,0 monster Elusive Scorpion 2670,2,300000,0
|
||||
mjolnir_09,0,0,0,0 monster Swift Savage Babe 2671,2,300000,0
|
||||
prt_maze01,0,0,0,0 monster Solid Savage 2672,2,300000,0
|
||||
mjolnir_07,0,0,0,0 monster Savage Ringleader 2673,2,300000,0
|
||||
moc_fild16,0,0,0,0 monster Furious Sandman 2674,2,300000,0
|
||||
thor_v03,0,0,0,0 monster Elusive Salamander 2675,2,300000,0
|
||||
treasure01,0,0,0,0 monster Swift Sailor Skeleton 2676,2,300000,0
|
||||
ra_fild12,0,0,0,0 monster Solid Roween 2677,2,300000,0
|
||||
prt_fild00,0,0,0,0 monster Roda Frog Ringleader 2678,2,300000,0
|
||||
gef_fild01,0,0,0,0 monster Furious Roda Frog 2679,2,300000,0
|
||||
prt_fild07,0,0,0,0 monster Elusive Rocker 2680,2,300000,0
|
||||
tha_t01,0,0,0,0 monster Swift Rideword 2681,2,300000,0
|
||||
c_tower1,0,0,0,0 monster Solid Rideword 2682,2,300000,0
|
||||
gon_fild01,0,0,0,0 monster Dumpling Child Ringleader 2683,2,300000,0
|
||||
tha_t10,0,0,0,0 monster Furious Baroness of Retribution 2684,2,300000,0
|
||||
tha_t08,0,0,0,0 monster Elusive Baroness of Retribution 2685,2,300000,0
|
||||
tha_t07,0,0,0,0 monster Swift Baroness of Retribution 2686,2,300000,0
|
||||
in_sphinx2,0,0,0,0 monster Solid Requiem 2687,2,300000,0
|
||||
lhz_dun01,0,0,0,0 monster Remover Ringleader 2688,2,300000,0
|
||||
mal_dun01,0,0,0,0 monster Elusive Red Eruma 2689,2,300000,0
|
||||
gl_knt02,0,0,0,0 monster Swift Raydric 2690,2,300000,0
|
||||
gl_knt01,0,0,0,0 monster Solid Raydric 2691,2,300000,0
|
||||
lhz_dun02,0,0,0,0 monster Laurell Weinder Ringleader 2692,2,300000,0
|
||||
dic_dun03,0,0,0,0 monster Furious Rake Scaraba 2693,2,300000,0
|
||||
cmd_fild07,0,0,0,0 monster Elusive Raggler 2694,2,300000,0
|
||||
lhz_fild01,0,0,0,0 monster Swift Rafflesia 2695,2,300000,0
|
||||
lhz_fild01,0,0,0,0 monster Poring Ringleader 2696,2,300000,0
|
||||
lhz_fild01,0,0,0,0 monster Furious Poring 2697,2,300000,0
|
||||
lhz_fild01,0,0,0,0 monster Elusive Poring 2698,2,300000,0
|
||||
gef_fild07,0,0,0,0 monster Swift Poring 2699,2,300000,0
|
||||
ein_fild09,0,0,0,0 monster Solid Porcellio 2700,2,300000,0
|
||||
prt_maze03,0,0,0,0 monster Poporing Ringleader 2701,2,300000,0
|
||||
prt_maze02,0,0,0,0 monster Furious Poporing 2702,2,300000,0
|
||||
pay_fild04,0,0,0,0 monster Elusive Poporing 2703,2,300000,0
|
||||
ama_dun02,0,0,0,0 monster Swift Poison Toad 2704,2,300000,0
|
||||
mjolnir_06,0,0,0,0 monster Solid Poison Spore 2705,2,300000,0
|
||||
odin_tem03,0,0,0,0 monster Plasma Ringleader 2706,2,300000,0
|
||||
iz_dun00,0,0,0,0 monster Furious Plankton 2707,2,300000,0
|
||||
ein_dun01,0,0,0,0 monster Elusive Pitman 2708,2,300000,0
|
||||
bra_dun01,0,0,0,0 monster Swift Piranha 2709,2,300000,0
|
||||
spl_fild01,0,0,0,0 monster Solid Dark Pinguicula 2710,2,300000,0
|
||||
spl_fild02,0,0,0,0 monster Pinguicula Ringleader 2711,2,300000,0
|
||||
moc_fild12,0,0,0,0 monster Furious Picky 2712,2,300000,0
|
||||
iz_dun03,0,0,0,0 monster Elusive Phen 2713,2,300000,0
|
||||
gef_fild08,0,0,0,0 monster Swift Petite 2714,2,300000,0
|
||||
gef_fild06,0,0,0,0 monster Solid Petite 2715,2,300000,0
|
||||
treasure02,0,0,0,0 monster Penomena Ringleader 2716,2,300000,0
|
||||
alde_dun03,0,0,0,0 monster Furious Penomena 2717,2,300000,0
|
||||
moc_fild02,0,0,0,0 monster Elusive Peco Peco 2718,2,300000,0
|
||||
in_sphinx5,0,0,0,0 monster Swift Pasana 2719,2,300000,0
|
||||
um_fild03,0,0,0,0 monster Solid Parasite 2720,2,300000,0
|
||||
tha_t05,0,0,0,0 monster Owl Duke Ringleader 2721,2,300000,0
|
||||
gef_fild10,0,0,0,0 monster Furious Orc Warrior 2722,2,300000,0
|
||||
orcsdun01,0,0,0,0 monster Elusive Orc Zombie 2723,2,300000,0
|
||||
orcsdun02,0,0,0,0 monster Swift Orc Skeleton 2724,2,300000,0
|
||||
gef_fild03,0,0,0,0 monster Solid Orc Lady 2725,2,300000,0
|
||||
tha_t12,0,0,0,0 monster Dame of Sentinel Ringleader 2726,2,300000,0
|
||||
ein_fild05,0,0,0,0 monster Furious Noxious 2727,2,300000,0
|
||||
hu_fild05,0,0,0,0 monster Elusive Novus 2728,2,300000,0
|
||||
hu_fild04,0,0,0,0 monster Swift Novus 2729,2,300000,0
|
||||
hu_fild02,0,0,0,0 monster Solid Novus 2730,2,300000,0
|
||||
hu_fild01,0,0,0,0 monster Novus Ringleader 2731,2,300000,0
|
||||
mag_dun02,0,0,0,0 monster Furious Nightmare Terror 2732,2,300000,0
|
||||
gl_chyard_,0,0,0,0 monster Elusive Wraith Dead (Nightmare) 2733,2,180000,0
|
||||
gl_cas02_,0,0,0,0 monster Furious Wanderer (Nightmare) 2734,2,180000,0
|
||||
man_fild01,0,0,0,0 monster Solid Nephentes 2735,2,300000,0
|
||||
abbey03,0,0,0,0 monster Necromancer Ringleader 2736,2,300000,0
|
||||
xmas_dun02,0,0,0,0 monster Furious Myst Case 2737,2,300000,0
|
||||
ve_fild04,0,0,0,0 monster Elusive Muscipular 2738,2,300000,0
|
||||
moc_pryd03,0,0,0,0 monster Swift Mummy 2739,2,300000,0
|
||||
moc_pryd02,0,0,0,0 monster Solid Mummy 2740,2,300000,0
|
||||
moc_fild01,0,0,0,0 monster Muka Ringleader 2741,2,300000,0
|
||||
moc_fild22,0,0,0,0 monster Furious Incarnation of Morroc 2742,2,300000,0
|
||||
moc_fild21,0,0,0,0 monster Elusive Incarnation of Morroc 2743,2,300000,0
|
||||
moc_fild20,0,0,0,0 monster Swift Incarnation of Morroc 2744,2,300000,0
|
||||
ein_fild06,0,0,0,0 monster Solid Holden 2745,2,300000,0
|
||||
ama_dun01,0,0,0,0 monster Miyabi Doll Ringleader 2746,2,300000,0
|
||||
moc_prydn1,0,0,0,0 monster Furious Minorous 2747,2,300000,0
|
||||
moc_pryd05,0,0,0,0 monster Elusive Minorous 2748,2,300000,0
|
||||
in_sphinx4,0,0,0,0 monster Swift Minorous 2749,2,300000,0
|
||||
ein_dun02,0,0,0,0 monster Solid Mineral 2750,2,300000,0
|
||||
bif_fild01,0,0,0,0 monster Miming Ringleader 2751,2,300000,0
|
||||
moc_prydn2,0,0,0,0 monster Furious Mimic 2752,2,300000,0
|
||||
moc_pryd06,0,0,0,0 monster Elusive Mimic 2753,2,300000,0
|
||||
cmd_fild09,0,0,0,0 monster Swift Metaller 2754,2,300000,0
|
||||
ein_fild08,0,0,0,0 monster Solid Metaling 2755,2,300000,0
|
||||
ein_fild07,0,0,0,0 monster Metaling Ringleader 2756,2,300000,0
|
||||
iz_dun04,0,0,0,0 monster Furious Merman 2757,2,300000,0
|
||||
ecl_fild01,0,0,0,0 monster Elusive Menblatt 2758,2,300000,0
|
||||
beach_dun,0,0,0,0 monster Swift Medusa 2759,2,300000,0
|
||||
mjo_dun02,0,0,0,0 monster Solid Martin 2760,2,300000,0
|
||||
gl_in01,0,0,0,0 monster Marionette Ringleader 2761,2,300000,0
|
||||
xmas_fild01,0,0,0,0 monster Furious Marin 2762,2,300000,0
|
||||
in_sphinx3,0,0,0,0 monster Elusive Marduk 2763,2,300000,0
|
||||
prt_maze03,0,0,0,0 monster Swift Mantis 2764,2,300000,0
|
||||
gef_fild04,0,0,0,0 monster Solid Mandragora 2765,2,300000,0
|
||||
ma_dun01,0,0,0,0 monster Manananggal Ringleader 2766,2,300000,0
|
||||
gl_dun02,0,0,0,0 monster Furious Majoruros 2767,2,300000,0
|
||||
prt_fild09,0,0,0,0 monster Elusive Magnolia 2768,2,300000,0
|
||||
ve_fild03,0,0,0,0 monster Swift Magmaring 2769,2,300000,0
|
||||
prt_fild08,0,0,0,0 monster Solid Lunatic 2770,2,300000,0
|
||||
prt_fild01,0,0,0,0 monster Lunatic Ringleader 2771,2,300000,0
|
||||
niflheim,0,0,0,0 monster Furious Lude 2772,2,300000,0
|
||||
spl_fild03,0,0,0,0 monster Elusive Luciola Vespa 2773,2,300000,0
|
||||
nif_fild02,0,0,0,0 monster Swift Loli Ruri 2774,2,300000,0
|
||||
gon_dun02,0,0,0,0 monster Solid Enchanted Peach Tree 2775,2,300000,0
|
||||
new_1-3,0,0,0,0 monster Baby Poring Ringleader 2776,2,300000,0
|
||||
bif_fild02,0,0,0,0 monster Furious Little Fatum 2777,2,300000,0
|
||||
lou_dun01,0,0,0,0 monster Elusive Jing Guai 2778,2,300000,0
|
||||
mosk_dun02,0,0,0,0 monster Swift Les 2779,2,300000,0
|
||||
gld_dun01,0,0,0,0 monster Solid Leib Olmai 2780,2,300000,0
|
||||
ayo_dun01,0,0,0,0 monster Leaf Cat Ringleader 2781,2,300000,0
|
||||
//teg_dun02,0,0,0,0 monster [PH] 분노의 로그 휘케바인 2782,2,300000,0
|
||||
//teg_dun01,0,0,0,0 monster [PH] 떠도는 어세신 에르메스 2783,2,300000,0
|
||||
ra_fild06,0,0,0,0 monster Swift Kobold Archer 2784,2,300000,0
|
||||
ra_fild05,0,0,0,0 monster Solid Kobold 2785,2,300000,0
|
||||
thor_v02,0,0,0,0 monster Knocker Ringleader 2786,2,300000,0
|
||||
mjolnir_08,0,0,0,0 monster Furious Beetle King 2787,2,300000,0
|
||||
thor_v01,0,0,0,0 monster Elusive Kasa 2788,2,300000,0
|
||||
ama_fild01,0,0,0,0 monster Swift Karakasa 2789,2,300000,0
|
||||
moc_pryd04,0,0,0,0 monster Solid Isis 2790,2,300000,0
|
||||
ra_san02,0,0,0,0 monster Isilla Ringleader 2791,2,300000,0
|
||||
gl_prison1,0,0,0,0 monster Furious Injustice 2792,2,300000,0
|
||||
lou_fild01,0,0,0,0 monster Elusive Mi Gao 2793,2,300000,0
|
||||
ice_dun03,0,0,0,0 monster Swift Ice Titan 2794,2,300000,0
|
||||
bra_dun02,0,0,0,0 monster Solid Iara 2795,2,300000,0
|
||||
lou_dun02,0,0,0,0 monster Yao Jun Ringleader 2796,2,300000,0
|
||||
gef_dun00,0,0,0,0 monster Furious Hunter Fly 2797,2,300000,0
|
||||
prt_fild05,0,0,0,0 monster Elusive Hornet 2798,2,300000,0
|
||||
dic_dun01,0,0,0,0 monster Swift Uni-horn Scaraba 2799,2,300000,0
|
||||
pay_fild09,0,0,0,0 monster Solid Horn 2800,2,300000,0
|
||||
ra_san03,0,0,0,0 monster Hodremlin Ringleader 2801,2,300000,0
|
||||
moc_fild17,0,0,0,0 monster Furious Hode 2802,2,300000,0
|
||||
ra_fild04,0,0,0,0 monster Elusive Hill Wind 2803,2,300000,0
|
||||
ra_fild03,0,0,0,0 monster Swift Hill Wind 2804,2,300000,0
|
||||
alde_dun02,0,0,0,0 monster Solid High Orc 2805,2,300000,0
|
||||
yuno_fild04,0,0,0,0 monster Harpy Ringleader 2806,2,300000,0
|
||||
yuno_fild03,0,0,0,0 monster Furious Harpy 2807,2,300000,0
|
||||
cmd_fild01,0,0,0,0 monster Elusive Grove 2808,2,300000,0
|
||||
pay_fild10,0,0,0,0 monster Swift Greatest General 2809,2,300000,0
|
||||
yuno_fild09,0,0,0,0 monster Solid Grand Peco 2810,2,300000,0
|
||||
yuno_fild08,0,0,0,0 monster Grand Peco Ringleader 2811,2,300000,0
|
||||
cmd_fild06,0,0,0,0 monster Furious Golem 2812,2,300000,0
|
||||
prt_fild11,0,0,0,0 monster Elusive Goblin 2813,2,300000,0
|
||||
gef_fild11,0,0,0,0 monster Swift Goblin 2814,2,300000,0
|
||||
yuno_fild11,0,0,0,0 monster Solid Goat 2815,2,300000,0
|
||||
yuno_fild07,0,0,0,0 monster Goat Ringleader 2816,2,300000,0
|
||||
gld2_prt,0,0,0,0 monster Furious Dark Hammer Kobold 2817,2,300000,0
|
||||
gld_dun03_2,0,0,0,0 monster Elusive Dark Hammer Kobold 2818,2,300000,0
|
||||
gld2_gef,0,0,0,0 monster Swift Dark Shadow 2819,2,300000,0
|
||||
gld_dun04_2,0,0,0,0 monster Solid Dark Shadow 2820,2,300000,0
|
||||
gld_dun02,0,0,0,0 monster Giant Hornet Ringleader 2821,2,300000,0
|
||||
nameless_n,0,0,0,0 monster Furious Ghoul 2822,2,300000,0
|
||||
gef_dun01,0,0,0,0 monster Elusive Ghoul 2823,2,300000,0
|
||||
yuno_fild12,0,0,0,0 monster Swift Geographer 2824,2,300000,0
|
||||
yuno_fild01,0,0,0,0 monster Solid Geographer 2825,2,300000,0
|
||||
glast_01,0,0,0,0 monster Gargoyle Ringleader 2826,2,300000,0
|
||||
gl_sew02,0,0,0,0 monster Furious Gargoyle 2827,2,300000,0
|
||||
ve_fild01,0,0,0,0 monster Elusive Galion 2828,2,300000,0
|
||||
cmd_fild02,0,0,0,0 monster Swift Seal 2829,2,300000,0
|
||||
tur_dun05,0,0,0,0 monster Solid Freezer 2830,2,300000,0
|
||||
tur_dun03,0,0,0,0 monster Freezer Ringleader 2831,2,300000,0
|
||||
abyss_01,0,0,0,0 monster Furious Ferus 2832,2,300000,0
|
||||
prt_sewb1,0,0,0,0 monster Elusive Familiar 2833,2,300000,0
|
||||
gefenia01,0,0,0,0 monster Swift False Angel 2834,2,300000,0
|
||||
prt_fild06,0,0,0,0 monster Solid Fabre 2835,2,300000,0
|
||||
pay_fild03,0,0,0,0 monster Fabre Ringleader 2836,2,300000,0
|
||||
mag_dun01,0,0,0,0 monster Furious Explosion 2837,2,300000,0
|
||||
gl_church,0,0,0,0 monster Elusive Evil Druid 2838,2,300000,0
|
||||
prt_fild10,0,0,0,0 monster Swift Elder Willow 2839,2,300000,0
|
||||
mjolnir_02,0,0,0,0 monster Solid Elder Willow 2840,2,300000,0
|
||||
ra_san04,0,0,0,0 monster Echio Ringleader 2841,2,300000,0
|
||||
mjolnir_12,0,0,0,0 monster Furious Dustiness 2842,2,300000,0
|
||||
um_fild01,0,0,0,0 monster Swift Dryad 2843,2,300000,0
|
||||
ve_fild02,0,0,0,0 monster Solid Drosera 2844,2,300000,0
|
||||
moc_fild07,0,0,0,0 monster Drops Ringleader 2845,2,300000,0
|
||||
mjolnir_04,0,0,0,0 monster Furious Driller 2846,2,300000,0
|
||||
in_sphinx1,0,0,0,0 monster Elusive Drainliar 2847,2,300000,0
|
||||
tur_dun01,0,0,0,0 monster Swift Dragon Tail 2848,2,300000,0
|
||||
nyd_dun01,0,0,0,0 monster Solid Draco 2849,2,300000,0
|
||||
dic_fild02,0,0,0,0 monster Dolomedes Ringleader 2850,2,300000,0
|
||||
pay_dun04,0,0,0,0 monster Furious Dokebi 2851,2,300000,0
|
||||
nif_fild01,0,0,0,0 monster Elusive Disguise 2852,2,300000,0
|
||||
jupe_core,0,0,0,0 monster Swift Dimik 2853,2,300000,0
|
||||
gef_dun02,0,0,0,0 monster Solid Deviruchi 2854,2,300000,0
|
||||
ra_fild01,0,0,0,0 monster Baby Desert Wolf Ringleader 2855,2,300000,0
|
||||
moc_fild11,0,0,0,0 monster Furious Baby Desert Wolf 2856,2,300000,0
|
||||
cmd_fild08,0,0,0,0 monster Elusive Deniro 2857,2,300000,0
|
||||
tha_t06,0,0,0,0 monster Swift Death Word 2858,2,300000,0
|
||||
tha_t04,0,0,0,0 monster Solid Death Word 2859,2,300000,0
|
||||
tha_t03,0,0,0,0 monster Death Word Ringleader 2860,2,300000,0
|
||||
gl_chyard,0,0,0,0 monster Furious Dark Priest 2861,2,300000,0
|
||||
lou_dun03,0,0,0,0 monster Elusive Zhu Po Long 2862,2,300000,0
|
||||
gef_fild05,0,0,0,0 monster Swift Creamy 2863,2,300000,0
|
||||
iz_dun02,0,0,0,0 monster Solid Cornutus 2864,2,300000,0
|
||||
xmas_dun01,0,0,0,0 monster Cookie Ringleader 2865,2,300000,0
|
||||
kh_kiehl01,0,0,0,0 monster Furious Constant 2866,2,300000,0
|
||||
dew_dun01,0,0,0,0 monster Elusive Comodo 2867,2,300000,0
|
||||
gef_fild09,0,0,0,0 monster Swift Coco 2868,2,300000,0
|
||||
gef_fild02,0,0,0,0 monster Solid Coco 2869,2,300000,0
|
||||
c_tower4,0,0,0,0 monster Clock Ringleader 2870,2,300000,0
|
||||
c_tower2,0,0,0,0 monster Furious Clock 2871,2,300000,0
|
||||
gef_fild00,0,0,0,0 monster Elusive Chonchon 2872,2,300000,0
|
||||
dic_fild01,0,0,0,0 monster Swift Centipede 2873,2,300000,0
|
||||
ecl_tdun01,0,0,0,0 monster Solid Cenere 2874,2,300000,0
|
||||
lhz_dun04,0,0,0,0 monster Celia Ringleader 2875,2,300000,0
|
||||
gld_dun03,0,0,0,0 monster Furious Caterpillar 2876,2,300000,0
|
||||
gl_cas01,0,0,0,0 monster Elusive Carat 2877,2,300000,0
|
||||
mjolnir_01,0,0,0,0 monster Swift Caramel 2878,2,300000,0
|
||||
ma_fild02,0,0,0,0 monster Solid Bungisngis 2879,2,300000,0
|
||||
odin_tem01,0,0,0,0 monster Breeze Ringleader 2880,2,300000,0
|
||||
lhz_fild03,0,0,0,0 monster Furious Breeze 2881,2,300000,0
|
||||
man_fild02,0,0,0,0 monster Elusive Bradium Golem 2882,2,300000,0
|
||||
gon_dun01,0,0,0,0 monster Swift Bloody Butterfly 2883,2,300000,0
|
||||
pay_fild07,0,0,0,0 monster Bigfoot Ringleader 2884,2,300000,0
|
||||
alde_dun04,0,0,0,0 monster Furious Bathory 2885,2,300000,0
|
||||
arug_dun01,0,0,0,0 monster Elusive Banshee Master 2886,2,300000,0
|
||||
abbey01,0,0,0,0 monster Swift Banshee 2887,2,300000,0
|
||||
dew_dun02,0,0,0,0 monster Solid Banaspaty 2888,2,300000,0
|
||||
tur_dun04,0,0,0,0 monster Assaulter Ringleader 2889,2,300000,0
|
||||
mjolnir_10,0,0,0,0 monster Furious Argos 2890,2,300000,0
|
||||
mjolnir_11,0,0,0,0 monster Elusive Argiope 2891,2,300000,0
|
||||
mjolnir_05,0,0,0,0 monster Swift Argiope 2892,2,300000,0
|
||||
gl_dun01,0,0,0,0 monster Solid Arclouze 2893,2,300000,0
|
||||
alde_dun01,0,0,0,0 monster Arclouze Ringleader 2894,2,300000,0
|
||||
juperos_02,0,0,0,0 monster Furious Apocalypse 2895,2,300000,0
|
||||
dic_dun02,0,0,0,0 monster Elusive Antler Scaraba 2896,2,300000,0
|
||||
ecl_tdun03,0,0,0,0 monster Swift Antique Book 2897,2,300000,0
|
||||
ecl_tdun02,0,0,0,0 monster Solid Antique Book 2898,2,300000,0
|
||||
gl_sew04,0,0,0,0 monster Furious Anolian 2899,2,300000,0
|
||||
gld2_ald,0,0,0,0 monster Elusive Angra Mantis 2900,2,300000,0
|
||||
gld_dun02_2,0,0,0,0 monster Swift Angra Mantis 2901,2,300000,0
|
||||
anthell02,0,0,0,0 monster Solid Andre 2902,2,300000,0
|
||||
tha_t02,0,0,0,0 monster Ancient Mimic Ringleader 2903,2,300000,0
|
||||
ra_fild08,0,0,0,0 monster Furious Anacondaq 2904,2,300000,0
|
||||
prt_fild04,0,0,0,0 monster Elusive Ambernite 2905,2,300000,0
|
||||
dew_fild01,0,0,0,0 monster Swift Rafflesia Arnoldi 2906,2,300000,0
|
||||
cmd_fild03,0,0,0,0 monster Solid Alligator 2907,2,300000,0
|
||||
kh_dun01,0,0,0,0 monster Aliza Ringleader 2908,2,300000,0
|
||||
kh_dun02,0,0,0,0 monster Furious Alicel 2909,2,300000,0
|
||||
c_tower3,0,0,0,0 monster Elusive Alarm 2910,2,300000,0
|
||||
ra_san05,0,0,0,0 monster Swift Agav 2911,2,300000,0
|
||||
abyss_03,0,0,0,0 monster Solid Acidus 2912,2,300000,0
|
||||
abyss_02,0,0,0,0 monster Acidus Ringleader 2913,2,300000,0
|
||||
abbey02,0,0 monster Swift Zombie Slaughter 2603,2,300000
|
||||
gl_prison,0,0 monster Solid Zombie Prisoner 2604,2,300000
|
||||
gld_dun04,0,0 monster Zombie Master Ringleader 2605,2,300000
|
||||
pay_dun00,0,0 monster Furious Zombie 2606,2,300000
|
||||
schg_dun01,0,0 monster Elusive Zakudam 2607,2,300000
|
||||
prt_fild03,0,0 monster Swift Yoyo 2608,2,300000
|
||||
ayo_fild02,0,0 monster Solid Yoyo 2609,2,300000
|
||||
pay_fild06,0,0 monster Wormtail Ringleader 2610,2,300000
|
||||
um_fild02,0,0 monster Furious Wootan Fighter 2611,2,300000
|
||||
mosk_dun01,0,0 monster Elusive Wood Goblin 2612,2,300000
|
||||
moc_fild03,0,0 monster Swift Wolf 2613,2,300000
|
||||
gl_step,0,0 monster Solid Wind Ghost 2614,2,300000
|
||||
pay_fild01,0,0 monster Willow Ringleader 2615,2,300000
|
||||
um_fild04,0,0 monster Furious Wild Rose 2616,2,300000
|
||||
gon_dun03,0,0 monster Elusive Evil Nymph 2617,2,300000
|
||||
gl_sew01,0,0 monster Solid Whisper 2618,2,300000
|
||||
treasure_n2,0,0 monster Weak Skeleton Ringleader 2619,2,300000
|
||||
gl_cas02,0,0 monster Furious Wanderer 2620,2,300000
|
||||
gefenia04,0,0 monster Elusive Violy 2621,2,300000
|
||||
gefenia03,0,0 monster Swift Violy 2622,2,300000
|
||||
gefenia02,0,0 monster Solid Violy 2623,2,300000
|
||||
ein_fild04,0,0 monster Venomous Ringleader 2624,2,300000
|
||||
juperos_01,0,0 monster Furious Venatu 2625,2,300000
|
||||
mosk_dun03,0,0 monster Elusive Vavayaga 2626,2,300000
|
||||
ra_san01,0,0 monster Swift Vanberk 2627,2,300000
|
||||
iz_dun01,0,0 monster Solid Vadon 2628,2,300000
|
||||
ein_fild02,0,0 monster Ungoliant Ringleader 2629,2,300000
|
||||
bra_fild01,0,0 monster Furious Toucan 2630,2,300000
|
||||
ma_fild01,0,0 monster Elusive Tiyanak 2631,2,300000
|
||||
prt_sewb4,0,0 monster Solid Thief Bug 2632,2,300000
|
||||
prt_sewb3,0,0 monster Thief Bug Ringleader 2633,2,300000
|
||||
prt_sewb2,0,0 monster Furious Thief Bug 2634,2,300000
|
||||
beach_dun3,0,0 monster Elusive Thara Frog 2635,2,300000
|
||||
ein_fild03,0,0 monster Swift Teddy Bear 2636,2,300000
|
||||
man_fild03,0,0 monster Solid Tatacho 2637,2,300000
|
||||
mjo_dun01,0,0 monster Tarou Ringleader 2638,2,300000
|
||||
ayo_dun02,0,0 monster Furious Tamruan 2639,2,300000
|
||||
gl_sew03,0,0 monster Elusive Sting 2640,2,300000
|
||||
lhz_fild02,0,0 monster Swift Stem Worm 2641,2,300000
|
||||
moc_fild13,0,0 monster Solid Steel Chonchon 2642,2,300000
|
||||
ve_fild07,0,0 monster Stapo Ringleader 2643,2,300000
|
||||
beach_dun2,0,0 monster Furious Stalactic Golem 2644,2,300000
|
||||
prt_fild02,0,0 monster Elusive Stainer 2645,2,300000
|
||||
treasure_n1,0,0 monster Swift Spore 2646,2,300000
|
||||
tur_dun02,0,0 monster Solid Solider 2647,2,300000
|
||||
pay_dun02,0,0 monster Soldier Skeleton Ringleader 2648,2,300000
|
||||
pay_dun01,0,0 monster Furious Soldier Skeleton 2649,2,300000
|
||||
tha_t09,0,0 monster Elusive Lady Solace 2650,2,300000
|
||||
pay_dun03,0,0 monster Swift Sohee 2651,2,300000
|
||||
ice_dun02,0,0 monster Solid Snowier 2652,2,300000
|
||||
pay_fild02,0,0 monster Boa Ringleader 2653,2,300000
|
||||
ayo_fild01,0,0 monster Furious Smokie 2654,2,300000
|
||||
yuno_fild06,0,0 monster Elusive Sleeper 2655,2,300000
|
||||
yuno_fild02,0,0 monster Swift Sleeper 2656,2,300000
|
||||
odin_tem02,0,0 monster Solid Skogul 2657,2,300000
|
||||
gld2_pay,0,0 monster Skeleton General Ringleader 2658,2,300000
|
||||
gld_dun01_2,0,0 monster Furious Skeleton General 2659,2,300000
|
||||
mjo_dun03,0,0 monster Elusive Skeleton Worker 2660,2,300000
|
||||
ice_dun01,0,0 monster Swift Siroma 2661,2,300000
|
||||
mosk_fild02,0,0 monster Solid Side Winder 2662,2,300000
|
||||
mjolnir_03,0,0 monster Side Winder Ringleader 2663,2,300000
|
||||
ama_dun03,0,0 monster Furious Shinobi 2664,2,300000
|
||||
tha_t11,0,0 monster Elusive Mistress of Shelter 2665,2,300000
|
||||
hu_fild06,0,0 monster Swift Shellfish 2666,2,300000
|
||||
lhz_dun03,0,0 monster Solid Cecil Damon 2667,2,300000
|
||||
cmd_fild04,0,0 monster Sea Otter Ringleader 2668,2,300000
|
||||
iz_dun05,0,0 monster Furious Lamp Rey 2669,2,300000
|
||||
moc_fild18,0,0 monster Elusive Scorpion 2670,2,300000
|
||||
mjolnir_09,0,0 monster Swift Savage Babe 2671,2,300000
|
||||
prt_maze01,0,0 monster Solid Savage 2672,2,300000
|
||||
mjolnir_07,0,0 monster Savage Ringleader 2673,2,300000
|
||||
moc_fild16,0,0 monster Furious Sandman 2674,2,300000
|
||||
thor_v03,0,0 monster Elusive Salamander 2675,2,300000
|
||||
treasure01,0,0 monster Swift Sailor Skeleton 2676,2,300000
|
||||
ra_fild12,0,0 monster Solid Roween 2677,2,300000
|
||||
prt_fild00,0,0 monster Roda Frog Ringleader 2678,2,300000
|
||||
gef_fild01,0,0 monster Furious Roda Frog 2679,2,300000
|
||||
prt_fild07,0,0 monster Elusive Rocker 2680,2,300000
|
||||
tha_t01,0,0 monster Swift Rideword 2681,2,300000
|
||||
c_tower1,0,0 monster Solid Rideword 2682,2,300000
|
||||
gon_fild01,0,0 monster Dumpling Child Ringleader 2683,2,300000
|
||||
tha_t10,0,0 monster Furious Baroness of Retribution 2684,2,300000
|
||||
tha_t08,0,0 monster Elusive Baroness of Retribution 2685,2,300000
|
||||
tha_t07,0,0 monster Swift Baroness of Retribution 2686,2,300000
|
||||
in_sphinx2,0,0 monster Solid Requiem 2687,2,300000
|
||||
lhz_dun01,0,0 monster Remover Ringleader 2688,2,300000
|
||||
mal_dun01,0,0 monster Elusive Red Eruma 2689,2,300000
|
||||
gl_knt02,0,0 monster Swift Raydric 2690,2,300000
|
||||
gl_knt01,0,0 monster Solid Raydric 2691,2,300000
|
||||
lhz_dun02,0,0 monster Laurell Weinder Ringleader 2692,2,300000
|
||||
dic_dun03,0,0 monster Furious Rake Scaraba 2693,2,300000
|
||||
cmd_fild07,0,0 monster Elusive Raggler 2694,2,300000
|
||||
lhz_fild01,0,0 monster Swift Rafflesia 2695,2,300000
|
||||
lhz_fild01,0,0 monster Poring Ringleader 2696,2,300000
|
||||
lhz_fild01,0,0 monster Furious Poring 2697,2,300000
|
||||
lhz_fild01,0,0 monster Elusive Poring 2698,2,300000
|
||||
gef_fild07,0,0 monster Swift Poring 2699,2,300000
|
||||
ein_fild09,0,0 monster Solid Porcellio 2700,2,300000
|
||||
prt_maze03,0,0 monster Poporing Ringleader 2701,2,300000
|
||||
prt_maze02,0,0 monster Furious Poporing 2702,2,300000
|
||||
pay_fild04,0,0 monster Elusive Poporing 2703,2,300000
|
||||
ama_dun02,0,0 monster Swift Poison Toad 2704,2,300000
|
||||
mjolnir_06,0,0 monster Solid Poison Spore 2705,2,300000
|
||||
odin_tem03,0,0 monster Plasma Ringleader 2706,2,300000
|
||||
iz_dun00,0,0 monster Furious Plankton 2707,2,300000
|
||||
ein_dun01,0,0 monster Elusive Pitman 2708,2,300000
|
||||
bra_dun01,0,0 monster Swift Piranha 2709,2,300000
|
||||
spl_fild01,0,0 monster Solid Dark Pinguicula 2710,2,300000
|
||||
spl_fild02,0,0 monster Pinguicula Ringleader 2711,2,300000
|
||||
moc_fild12,0,0 monster Furious Picky 2712,2,300000
|
||||
iz_dun03,0,0 monster Elusive Phen 2713,2,300000
|
||||
gef_fild08,0,0 monster Swift Petite 2714,2,300000
|
||||
gef_fild06,0,0 monster Solid Petite 2715,2,300000
|
||||
treasure02,0,0 monster Penomena Ringleader 2716,2,300000
|
||||
alde_dun03,0,0 monster Furious Penomena 2717,2,300000
|
||||
moc_fild02,0,0 monster Elusive Peco Peco 2718,2,300000
|
||||
in_sphinx5,0,0 monster Swift Pasana 2719,2,300000
|
||||
um_fild03,0,0 monster Solid Parasite 2720,2,300000
|
||||
tha_t05,0,0 monster Owl Duke Ringleader 2721,2,300000
|
||||
gef_fild10,0,0 monster Furious Orc Warrior 2722,2,300000
|
||||
orcsdun01,0,0 monster Elusive Orc Zombie 2723,2,300000
|
||||
orcsdun02,0,0 monster Swift Orc Skeleton 2724,2,300000
|
||||
gef_fild03,0,0 monster Solid Orc Lady 2725,2,300000
|
||||
tha_t12,0,0 monster Dame of Sentinel Ringleader 2726,2,300000
|
||||
ein_fild05,0,0 monster Furious Noxious 2727,2,300000
|
||||
hu_fild05,0,0 monster Elusive Novus 2728,2,300000
|
||||
hu_fild04,0,0 monster Swift Novus 2729,2,300000
|
||||
hu_fild02,0,0 monster Solid Novus 2730,2,300000
|
||||
hu_fild01,0,0 monster Novus Ringleader 2731,2,300000
|
||||
mag_dun02,0,0 monster Furious Nightmare Terror 2732,2,300000
|
||||
gl_chyard_,0,0 monster Elusive Wraith Dead (Nightmare) 2733,2,180000,0
|
||||
gl_cas02_,0,0 monster Furious Wanderer (Nightmare) 2734,2,180000,0
|
||||
man_fild01,0,0 monster Solid Nephentes 2735,2,300000
|
||||
abbey03,0,0 monster Necromancer Ringleader 2736,2,300000
|
||||
xmas_dun02,0,0 monster Furious Myst Case 2737,2,300000
|
||||
ve_fild04,0,0 monster Elusive Muscipular 2738,2,300000
|
||||
moc_pryd03,0,0 monster Swift Mummy 2739,2,300000
|
||||
moc_pryd02,0,0 monster Solid Mummy 2740,2,300000
|
||||
moc_fild01,0,0 monster Muka Ringleader 2741,2,300000
|
||||
moc_fild22,0,0 monster Furious Incarnation of Morroc 2742,2,300000
|
||||
moc_fild21,0,0 monster Elusive Incarnation of Morroc 2743,2,300000
|
||||
moc_fild20,0,0 monster Swift Incarnation of Morroc 2744,2,300000
|
||||
ein_fild06,0,0 monster Solid Holden 2745,2,300000
|
||||
ama_dun01,0,0 monster Miyabi Doll Ringleader 2746,2,300000
|
||||
moc_prydn1,0,0 monster Furious Minorous 2747,2,300000
|
||||
moc_pryd05,0,0 monster Elusive Minorous 2748,2,300000
|
||||
in_sphinx4,0,0 monster Swift Minorous 2749,2,300000
|
||||
ein_dun02,0,0 monster Solid Mineral 2750,2,300000
|
||||
bif_fild01,0,0 monster Miming Ringleader 2751,2,300000
|
||||
moc_prydn2,0,0 monster Furious Mimic 2752,2,300000
|
||||
moc_pryd06,0,0 monster Elusive Mimic 2753,2,300000
|
||||
cmd_fild09,0,0 monster Swift Metaller 2754,2,300000
|
||||
ein_fild08,0,0 monster Solid Metaling 2755,2,300000
|
||||
ein_fild07,0,0 monster Metaling Ringleader 2756,2,300000
|
||||
iz_dun04,0,0 monster Furious Merman 2757,2,300000
|
||||
ecl_fild01,0,0 monster Elusive Menblatt 2758,2,300000
|
||||
beach_dun,0,0 monster Swift Medusa 2759,2,300000
|
||||
mjo_dun02,0,0 monster Solid Martin 2760,2,300000
|
||||
gl_in01,0,0 monster Marionette Ringleader 2761,2,300000
|
||||
xmas_fild01,0,0 monster Furious Marin 2762,2,300000
|
||||
in_sphinx3,0,0 monster Elusive Marduk 2763,2,300000
|
||||
prt_maze03,0,0 monster Swift Mantis 2764,2,300000
|
||||
gef_fild04,0,0 monster Solid Mandragora 2765,2,300000
|
||||
ma_dun01,0,0 monster Manananggal Ringleader 2766,2,300000
|
||||
gl_dun02,0,0 monster Furious Majoruros 2767,2,300000
|
||||
prt_fild09,0,0 monster Elusive Magnolia 2768,2,300000
|
||||
ve_fild03,0,0 monster Swift Magmaring 2769,2,300000
|
||||
prt_fild08,0,0 monster Solid Lunatic 2770,2,300000
|
||||
prt_fild01,0,0 monster Lunatic Ringleader 2771,2,300000
|
||||
niflheim,0,0 monster Furious Lude 2772,2,300000
|
||||
spl_fild03,0,0 monster Elusive Luciola Vespa 2773,2,300000
|
||||
nif_fild02,0,0 monster Swift Loli Ruri 2774,2,300000
|
||||
gon_dun02,0,0 monster Solid Enchanted Peach Tree 2775,2,300000
|
||||
new_1-3,0,0 monster Baby Poring Ringleader 2776,2,300000
|
||||
bif_fild02,0,0 monster Furious Little Fatum 2777,2,300000
|
||||
lou_dun01,0,0 monster Elusive Jing Guai 2778,2,300000
|
||||
mosk_dun02,0,0 monster Swift Les 2779,2,300000
|
||||
gld_dun01,0,0 monster Solid Leib Olmai 2780,2,300000
|
||||
ayo_dun01,0,0 monster Leaf Cat Ringleader 2781,2,300000
|
||||
//teg_dun02,0,0 monster [PH] 분노의 로그 휘케바인 2782,2,300000,0
|
||||
//teg_dun01,0,0 monster [PH] 떠도는 어세신 에르메스 2783,2,300000,0
|
||||
ra_fild06,0,0 monster Swift Kobold Archer 2784,2,300000
|
||||
ra_fild05,0,0 monster Solid Kobold 2785,2,300000
|
||||
thor_v02,0,0 monster Knocker Ringleader 2786,2,300000
|
||||
mjolnir_08,0,0 monster Furious Beetle King 2787,2,300000
|
||||
thor_v01,0,0 monster Elusive Kasa 2788,2,300000
|
||||
ama_fild01,0,0 monster Swift Karakasa 2789,2,300000
|
||||
moc_pryd04,0,0 monster Solid Isis 2790,2,300000
|
||||
ra_san02,0,0 monster Isilla Ringleader 2791,2,300000
|
||||
gl_prison1,0,0 monster Furious Injustice 2792,2,300000
|
||||
lou_fild01,0,0 monster Elusive Mi Gao 2793,2,300000
|
||||
ice_dun03,0,0 monster Swift Ice Titan 2794,2,300000
|
||||
bra_dun02,0,0 monster Solid Iara 2795,2,300000
|
||||
lou_dun02,0,0 monster Yao Jun Ringleader 2796,2,300000
|
||||
gef_dun00,0,0 monster Furious Hunter Fly 2797,2,300000
|
||||
prt_fild05,0,0 monster Elusive Hornet 2798,2,300000
|
||||
dic_dun01,0,0 monster Swift Uni-horn Scaraba 2799,2,300000
|
||||
pay_fild09,0,0 monster Solid Horn 2800,2,300000
|
||||
ra_san03,0,0 monster Hodremlin Ringleader 2801,2,300000
|
||||
moc_fild17,0,0 monster Furious Hode 2802,2,300000
|
||||
ra_fild04,0,0 monster Elusive Hill Wind 2803,2,300000
|
||||
ra_fild03,0,0 monster Swift Hill Wind 2804,2,300000
|
||||
alde_dun02,0,0 monster Solid High Orc 2805,2,300000
|
||||
yuno_fild04,0,0 monster Harpy Ringleader 2806,2,300000
|
||||
yuno_fild03,0,0 monster Furious Harpy 2807,2,300000
|
||||
cmd_fild01,0,0 monster Elusive Grove 2808,2,300000
|
||||
pay_fild10,0,0 monster Swift Greatest General 2809,2,300000
|
||||
yuno_fild09,0,0 monster Solid Grand Peco 2810,2,300000
|
||||
yuno_fild08,0,0 monster Grand Peco Ringleader 2811,2,300000
|
||||
cmd_fild06,0,0 monster Furious Golem 2812,2,300000
|
||||
prt_fild11,0,0 monster Elusive Goblin 2813,2,300000
|
||||
gef_fild11,0,0 monster Swift Goblin 2814,2,300000
|
||||
yuno_fild11,0,0 monster Solid Goat 2815,2,300000
|
||||
yuno_fild07,0,0 monster Goat Ringleader 2816,2,300000
|
||||
gld2_prt,0,0 monster Furious Dark Hammer Kobold 2817,2,300000
|
||||
gld_dun03_2,0,0 monster Elusive Dark Hammer Kobold 2818,2,300000
|
||||
gld2_gef,0,0 monster Swift Dark Shadow 2819,2,300000
|
||||
gld_dun04_2,0,0 monster Solid Dark Shadow 2820,2,300000
|
||||
gld_dun02,0,0 monster Giant Hornet Ringleader 2821,2,300000
|
||||
nameless_n,0,0 monster Furious Ghoul 2822,2,300000
|
||||
gef_dun01,0,0 monster Elusive Ghoul 2823,2,300000
|
||||
yuno_fild12,0,0 monster Swift Geographer 2824,2,300000
|
||||
yuno_fild01,0,0 monster Solid Geographer 2825,2,300000
|
||||
glast_01,0,0 monster Gargoyle Ringleader 2826,2,300000
|
||||
gl_sew02,0,0 monster Furious Gargoyle 2827,2,300000
|
||||
ve_fild01,0,0 monster Elusive Galion 2828,2,300000
|
||||
cmd_fild02,0,0 monster Swift Seal 2829,2,300000
|
||||
tur_dun05,0,0 monster Solid Freezer 2830,2,300000
|
||||
tur_dun03,0,0 monster Freezer Ringleader 2831,2,300000
|
||||
abyss_01,0,0 monster Furious Ferus 2832,2,300000
|
||||
prt_sewb1,0,0 monster Elusive Familiar 2833,2,300000
|
||||
gefenia01,0,0 monster Swift False Angel 2834,2,300000
|
||||
prt_fild06,0,0 monster Solid Fabre 2835,2,300000
|
||||
pay_fild03,0,0 monster Fabre Ringleader 2836,2,300000
|
||||
mag_dun01,0,0 monster Furious Explosion 2837,2,300000
|
||||
gl_church,0,0 monster Elusive Evil Druid 2838,2,300000
|
||||
prt_fild10,0,0 monster Swift Elder Willow 2839,2,300000
|
||||
mjolnir_02,0,0 monster Solid Elder Willow 2840,2,300000
|
||||
ra_san04,0,0 monster Echio Ringleader 2841,2,300000
|
||||
mjolnir_12,0,0 monster Furious Dustiness 2842,2,300000
|
||||
um_fild01,0,0 monster Swift Dryad 2843,2,300000
|
||||
ve_fild02,0,0 monster Solid Drosera 2844,2,300000
|
||||
moc_fild07,0,0 monster Drops Ringleader 2845,2,300000
|
||||
mjolnir_04,0,0 monster Furious Driller 2846,2,300000
|
||||
in_sphinx1,0,0 monster Elusive Drainliar 2847,2,300000
|
||||
tur_dun01,0,0 monster Swift Dragon Tail 2848,2,300000
|
||||
nyd_dun01,0,0 monster Solid Draco 2849,2,300000
|
||||
dic_fild02,0,0 monster Dolomedes Ringleader 2850,2,300000
|
||||
pay_dun04,0,0 monster Furious Dokebi 2851,2,300000
|
||||
nif_fild01,0,0 monster Elusive Disguise 2852,2,300000
|
||||
jupe_core,0,0 monster Swift Dimik 2853,2,300000
|
||||
gef_dun02,0,0 monster Solid Deviruchi 2854,2,300000
|
||||
ra_fild01,0,0 monster Baby Desert Wolf Ringleader 2855,2,300000
|
||||
moc_fild11,0,0 monster Furious Baby Desert Wolf 2856,2,300000
|
||||
cmd_fild08,0,0 monster Elusive Deniro 2857,2,300000
|
||||
tha_t06,0,0 monster Swift Death Word 2858,2,300000
|
||||
tha_t04,0,0 monster Solid Death Word 2859,2,300000
|
||||
tha_t03,0,0 monster Death Word Ringleader 2860,2,300000
|
||||
gl_chyard,0,0 monster Furious Dark Priest 2861,2,300000
|
||||
lou_dun03,0,0 monster Elusive Zhu Po Long 2862,2,300000
|
||||
gef_fild05,0,0 monster Swift Creamy 2863,2,300000
|
||||
iz_dun02,0,0 monster Solid Cornutus 2864,2,300000
|
||||
xmas_dun01,0,0 monster Cookie Ringleader 2865,2,300000
|
||||
kh_kiehl01,0,0 monster Furious Constant 2866,2,300000
|
||||
dew_dun01,0,0 monster Elusive Comodo 2867,2,300000
|
||||
gef_fild09,0,0 monster Swift Coco 2868,2,300000
|
||||
gef_fild02,0,0 monster Solid Coco 2869,2,300000
|
||||
c_tower4,0,0 monster Clock Ringleader 2870,2,300000
|
||||
c_tower2,0,0 monster Furious Clock 2871,2,300000
|
||||
gef_fild00,0,0 monster Elusive Chonchon 2872,2,300000
|
||||
dic_fild01,0,0 monster Swift Centipede 2873,2,300000
|
||||
ecl_tdun01,0,0 monster Solid Cenere 2874,2,300000
|
||||
lhz_dun04,0,0 monster Celia Ringleader 2875,2,300000
|
||||
gld_dun03,0,0 monster Furious Caterpillar 2876,2,300000
|
||||
gl_cas01,0,0 monster Elusive Carat 2877,2,300000
|
||||
mjolnir_01,0,0 monster Swift Caramel 2878,2,300000
|
||||
ma_fild02,0,0 monster Solid Bungisngis 2879,2,300000
|
||||
odin_tem01,0,0 monster Breeze Ringleader 2880,2,300000
|
||||
lhz_fild03,0,0 monster Furious Breeze 2881,2,300000
|
||||
man_fild02,0,0 monster Elusive Bradium Golem 2882,2,300000
|
||||
gon_dun01,0,0 monster Swift Bloody Butterfly 2883,2,300000
|
||||
pay_fild07,0,0 monster Bigfoot Ringleader 2884,2,300000
|
||||
alde_dun04,0,0 monster Furious Bathory 2885,2,300000
|
||||
arug_dun01,0,0 monster Elusive Banshee Master 2886,2,300000
|
||||
abbey01,0,0 monster Swift Banshee 2887,2,300000
|
||||
dew_dun02,0,0 monster Solid Banaspaty 2888,2,300000
|
||||
tur_dun04,0,0 monster Assaulter Ringleader 2889,2,300000
|
||||
mjolnir_10,0,0 monster Furious Argos 2890,2,300000
|
||||
mjolnir_11,0,0 monster Elusive Argiope 2891,2,300000
|
||||
mjolnir_05,0,0 monster Swift Argiope 2892,2,300000
|
||||
gl_dun01,0,0 monster Solid Arclouze 2893,2,300000
|
||||
alde_dun01,0,0 monster Arclouze Ringleader 2894,2,300000
|
||||
juperos_02,0,0 monster Furious Apocalypse 2895,2,300000
|
||||
dic_dun02,0,0 monster Elusive Antler Scaraba 2896,2,300000
|
||||
ecl_tdun03,0,0 monster Swift Antique Book 2897,2,300000
|
||||
ecl_tdun02,0,0 monster Solid Antique Book 2898,2,300000
|
||||
gl_sew04,0,0 monster Furious Anolian 2899,2,300000
|
||||
gld2_ald,0,0 monster Elusive Angra Mantis 2900,2,300000
|
||||
gld_dun02_2,0,0 monster Swift Angra Mantis 2901,2,300000
|
||||
anthell02,0,0 monster Solid Andre 2902,2,300000
|
||||
tha_t02,0,0 monster Ancient Mimic Ringleader 2903,2,300000
|
||||
ra_fild08,0,0 monster Furious Anacondaq 2904,2,300000
|
||||
prt_fild04,0,0 monster Elusive Ambernite 2905,2,300000
|
||||
dew_fild01,0,0 monster Swift Rafflesia Arnoldi 2906,2,300000
|
||||
cmd_fild03,0,0 monster Solid Alligator 2907,2,300000
|
||||
kh_dun01,0,0 monster Aliza Ringleader 2908,2,300000
|
||||
kh_dun02,0,0 monster Furious Alicel 2909,2,300000
|
||||
c_tower3,0,0 monster Elusive Alarm 2910,2,300000
|
||||
ra_san05,0,0 monster Swift Agav 2911,2,300000
|
||||
abyss_03,0,0 monster Solid Acidus 2912,2,300000
|
||||
abyss_02,0,0 monster Acidus Ringleader 2913,2,300000
|
||||
|
||||
@@ -15,17 +15,17 @@
|
||||
//==================================================
|
||||
// Wild Rose City Spawns
|
||||
//==================================================
|
||||
brasilis,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
dewata,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
malaya,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
izlude_a,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
izlude_b,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
izlude_c,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
izlude_d,0,0,0,0 monster Wild Rose 1261,1,7200000,3600000,0
|
||||
brasilis,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
dewata,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
malaya,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
izlude_a,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
izlude_b,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
izlude_c,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
izlude_d,0,0 monster Wild Rose 1261,1,7200000,3600000
|
||||
|
||||
//==================================================
|
||||
// Thief Bug Egg City Spawns
|
||||
//==================================================
|
||||
payon_in02,23,68,5,5 monster Thief Bug Egg 1048,7,1200000,600000,0
|
||||
jawaii_in,73,117,4,4 monster Thief Bug Egg 1048,1,5400000,3000000,0
|
||||
jawaii_in,83,117,5,5 monster Thief Bug Egg 1048,1,4800000,2400000,0
|
||||
payon_in02,23,68,5,5 monster Thief Bug Egg 1048,7,1200000,600000
|
||||
jawaii_in,73,117,4,4 monster Thief Bug Egg 1048,1,5400000,3000000
|
||||
jawaii_in,83,117,5,5 monster Thief Bug Egg 1048,1,4800000,2400000
|
||||
|
||||
@@ -15,36 +15,36 @@
|
||||
//==================================================
|
||||
// nameless_n - Nameless Island
|
||||
//==================================================
|
||||
nameless_n,0,0,0,0 monster Ghoul 1036,40,5000,0,0
|
||||
nameless_n,0,0,0,0 monster Hellhound 1866,17,5000,0,0
|
||||
nameless_n,0,0,0,0 monster Banshee 1867,16,5000,0,0
|
||||
nameless_n,0,0,0,0 monster Ragged Zombie 1865,12,5000,0,0
|
||||
nameless_n,0,0,0,0 monster Zombie Slaughter 1864,12,5000,0,0
|
||||
nameless_n,0,0,0,0 monster Flame Skull 1869,3,5000,0,0
|
||||
nameless_n,0,0 monster Ghoul 1036,40,5000
|
||||
nameless_n,0,0 monster Hellhound 1866,17,5000
|
||||
nameless_n,0,0 monster Banshee 1867,16,5000
|
||||
nameless_n,0,0 monster Ragged Zombie 1865,12,5000
|
||||
nameless_n,0,0 monster Zombie Slaughter 1864,12,5000
|
||||
nameless_n,0,0 monster Flame Skull 1869,3,5000
|
||||
|
||||
//==================================================
|
||||
// abbey01 - Cursed Monastery
|
||||
//==================================================
|
||||
abbey01,0,0,0,0 monster Banshee 1867,93,5000,0,0
|
||||
abbey01,0,0,0,0 monster Ghoul 1036,56,5000,0,0
|
||||
abbey01,0,0,0,0 monster Ragged Zombie 1865,33,5000,0,0
|
||||
abbey01,0,0,0,0 monster Zombie Slaughter 1864,30,5000,0,0
|
||||
abbey01,0,0,0,0 monster Hellhound 1866,25,5000,0,0
|
||||
abbey01,0,0,0,0 monster Flame Skull 1869,21,5000,0,0
|
||||
abbey01,0,0 monster Banshee 1867,93,5000
|
||||
abbey01,0,0 monster Ghoul 1036,56,5000
|
||||
abbey01,0,0 monster Ragged Zombie 1865,33,5000
|
||||
abbey01,0,0 monster Zombie Slaughter 1864,30,5000
|
||||
abbey01,0,0 monster Hellhound 1866,25,5000
|
||||
abbey01,0,0 monster Flame Skull 1869,21,5000
|
||||
|
||||
//==================================================
|
||||
// abbey02 - Cursed Monastery
|
||||
//==================================================
|
||||
abbey02,0,0,0,0 monster Zombie Slaughter 1864,210,5000,0,0
|
||||
abbey02,0,0,0,0 monster Ragged Zombie 1865,70,5000,0,0
|
||||
abbey02,0,0,0,0 monster Flame Skull 1869,21,5000,0,0
|
||||
abbey02,0,0,0,0 monster Necromancer 1870,7,5000,0,0
|
||||
abbey02,0,0 monster Zombie Slaughter 1864,210,5000
|
||||
abbey02,0,0 monster Ragged Zombie 1865,70,5000
|
||||
abbey02,0,0 monster Flame Skull 1869,21,5000
|
||||
abbey02,0,0 monster Necromancer 1870,7,5000
|
||||
abbey02,236,78,21,18 boss_monster Fallen Bishop 1871,1,7200000,600000,1
|
||||
|
||||
//==================================================
|
||||
// abbey03 - Cursed Monastery
|
||||
//==================================================
|
||||
abbey03,0,0,0,0 monster Necromancer 1870,60,5000,0,0
|
||||
abbey03,0,0,0,0 monster Banshee 1867,30,5000,0,0
|
||||
abbey03,0,0,0,0 monster Flame Skull 1869,25,5000,0,0
|
||||
abbey03,0,0 monster Necromancer 1870,60,5000
|
||||
abbey03,0,0 monster Banshee 1867,30,5000
|
||||
abbey03,0,0 monster Flame Skull 1869,25,5000
|
||||
abbey03,0,0,0,0 boss_monster Beelzebub 1873,1,43200000,600000,1
|
||||
|
||||
@@ -16,36 +16,36 @@
|
||||
//==================================================
|
||||
// abyss_01 - Abyss Lake Underground Cave
|
||||
//==================================================
|
||||
abyss_01,0,0,0,0 monster Ferus 1717,55,5000,0,0
|
||||
abyss_01,0,0,0,0 monster Penomena 1216,30,5000,0,0
|
||||
abyss_01,0,0,0,0 monster Ferus 1714,30,5000,0,0
|
||||
abyss_01,0,0,0,0 monster Mimic 1191,10,5000,0,0
|
||||
abyss_01,0,0,0,0 monster Ancient Mimic 1699,10,5000,0,0
|
||||
abyss_01,0,0,0,0 monster Novus 1715,9,5000,0,0
|
||||
abyss_01,0,0,0,0 monster Novus 1718,9,5000,0,0
|
||||
abyss_01,0,0,0,0 monster Dragon Egg 1721,8,5000,0,0
|
||||
abyss_01,0,0 monster Ferus 1717,55,5000
|
||||
abyss_01,0,0 monster Penomena 1216,30,5000
|
||||
abyss_01,0,0 monster Ferus 1714,30,5000
|
||||
abyss_01,0,0 monster Mimic 1191,10,5000
|
||||
abyss_01,0,0 monster Ancient Mimic 1699,10,5000
|
||||
abyss_01,0,0 monster Novus 1715,9,5000
|
||||
abyss_01,0,0 monster Novus 1718,9,5000
|
||||
abyss_01,0,0 monster Dragon Egg 1721,8,5000
|
||||
|
||||
//==================================================
|
||||
// abyss_02 - Abyss Lake Underground Cave
|
||||
//==================================================
|
||||
abyss_02,0,0,0,0 monster Acidus 1716,60,5000,0,0
|
||||
abyss_02,0,0,0,0 monster Ferus 1714,50,5000,0,0
|
||||
abyss_02,0,0,0,0 monster Dragon Egg 1721,10,5000,0,0
|
||||
abyss_02,0,0,0,0 monster Mimic 1191,10,5000,0,0
|
||||
abyss_02,0,0,0,0 monster Acidus 1713,10,5000,0,0
|
||||
abyss_02,0,0,0,0 monster Ancient Mimic 1699,10,5000,0,0
|
||||
abyss_02,0,0,0,0 monster Novus 1715,5,5000,0,0
|
||||
abyss_02,0,0,0,0 monster Novus 1718,5,5000,0,0
|
||||
abyss_02,0,0 monster Acidus 1716,60,5000
|
||||
abyss_02,0,0 monster Ferus 1714,50,5000
|
||||
abyss_02,0,0 monster Dragon Egg 1721,10,5000
|
||||
abyss_02,0,0 monster Mimic 1191,10,5000
|
||||
abyss_02,0,0 monster Acidus 1713,10,5000
|
||||
abyss_02,0,0 monster Ancient Mimic 1699,10,5000
|
||||
abyss_02,0,0 monster Novus 1715,5,5000
|
||||
abyss_02,0,0 monster Novus 1718,5,5000
|
||||
|
||||
//==================================================
|
||||
// abyss_03 - Abyss Lake Underground Cave
|
||||
//==================================================
|
||||
abyss_03,0,0,0,0 monster Acidus 1713,60,5000,0,0
|
||||
abyss_03,0,0,0,0 monster Dragon Egg 1721,10,5000,0,0
|
||||
abyss_03,0,0,0,0 monster Mimic 1191,10,5000,0,0
|
||||
abyss_03,0,0,0,0 monster Acidus 1716,10,5000,0,0
|
||||
abyss_03,0,0,0,0 monster Ancient Mimic 1699,10,5000,0,0
|
||||
abyss_03,0,0,0,0 monster Ferus 1714,10,5000,0,0
|
||||
abyss_03,0,0,0,0 monster Ferus 1717,10,5000,0,0
|
||||
abyss_03,0,0,0,0 monster Hydrolancer 1720,3,5000,0,0
|
||||
abyss_03,0,0 monster Acidus 1713,60,5000
|
||||
abyss_03,0,0 monster Dragon Egg 1721,10,5000
|
||||
abyss_03,0,0 monster Mimic 1191,10,5000
|
||||
abyss_03,0,0 monster Acidus 1716,10,5000
|
||||
abyss_03,0,0 monster Ancient Mimic 1699,10,5000
|
||||
abyss_03,0,0 monster Ferus 1714,10,5000
|
||||
abyss_03,0,0 monster Ferus 1717,10,5000
|
||||
abyss_03,0,0 monster Hydrolancer 1720,3,5000
|
||||
abyss_03,0,0,0,0 boss_monster Detardeurus 1719,1,10800000,600000,0
|
||||
|
||||
@@ -15,27 +15,27 @@
|
||||
//==================================================
|
||||
// alde_dun01 - Clock Tower B1f
|
||||
//==================================================
|
||||
alde_dun01,0,0,0,0 monster Arclouze 1194,50,5000,0,0
|
||||
alde_dun01,0,0,0,0 monster Drainliar 1111,40,5000,0,0
|
||||
alde_dun01,0,0 monster Arclouze 1194,50,5000
|
||||
alde_dun01,0,0 monster Drainliar 1111,40,5000
|
||||
|
||||
//==================================================
|
||||
// alde_dun02 - Clock Tower B2f
|
||||
//==================================================
|
||||
alde_dun02,0,0,0,0 monster High Orc 1213,50,5000,0,0
|
||||
alde_dun02,0,0,0,0 monster Brilight 1211,20,5000,0,0
|
||||
alde_dun02,0,0,0,0 monster Arclouze 1194,20,5000,0,0
|
||||
alde_dun02,0,0,0,0 monster Orc Archer 1189,20,5000,0,0
|
||||
alde_dun02,0,0 monster High Orc 1213,50,5000
|
||||
alde_dun02,0,0 monster Brilight 1211,20,5000
|
||||
alde_dun02,0,0 monster Arclouze 1194,20,5000
|
||||
alde_dun02,0,0 monster Orc Archer 1189,20,5000
|
||||
|
||||
//==================================================
|
||||
// alde_dun03 - Clock Tower B3f
|
||||
//==================================================
|
||||
alde_dun03,0,0,0,0 monster Penomena 1216,85,5000,0,0
|
||||
alde_dun03,0,0,0,0 monster Cramp 1209,56,5000,0,0
|
||||
alde_dun03,0,0,0,0 monster Drainliar 1111,55,5000,0,0
|
||||
alde_dun03,0,0 monster Penomena 1216,85,5000
|
||||
alde_dun03,0,0 monster Cramp 1209,56,5000
|
||||
alde_dun03,0,0 monster Drainliar 1111,55,5000
|
||||
|
||||
//==================================================
|
||||
// alde_dun04 - Clock Tower B4f
|
||||
//==================================================
|
||||
alde_dun04,0,0,0,0 monster Bathory 1102,50,5000,0,0
|
||||
alde_dun04,0,0,0,0 monster Whisper 1179,10,5000,0,0
|
||||
alde_dun04,0,0,0,0 monster Joker 1131,10,5000,0,0
|
||||
alde_dun04,0,0 monster Bathory 1102,50,5000
|
||||
alde_dun04,0,0 monster Whisper 1179,10,5000
|
||||
alde_dun04,0,0 monster Joker 1131,10,5000
|
||||
|
||||
@@ -14,27 +14,27 @@
|
||||
//==================================================
|
||||
// ama_dun01 - Tatami Maze
|
||||
//==================================================
|
||||
ama_dun01,0,0,0,0 monster Miyabi Doll 1404,65,5000,0,0
|
||||
ama_dun01,0,0,0,0 monster Firelock Soldier 1403,45,5000,0,0
|
||||
ama_dun01,0,0,0,0 monster Shinobi 1401,2,5000,0,0
|
||||
ama_dun01,0,0 monster Miyabi Doll 1404,65,5000
|
||||
ama_dun01,0,0 monster Firelock Soldier 1403,45,5000
|
||||
ama_dun01,0,0 monster Shinobi 1401,2,5000
|
||||
|
||||
//==================================================
|
||||
// ama_dun02 - Battle Field in the Underground Forest
|
||||
//==================================================
|
||||
ama_dun02,0,0,0,0 monster Poison Toad 1402,35,5000,0,0
|
||||
ama_dun02,0,0,0,0 monster Firelock Soldier 1403,20,5000,0,0
|
||||
ama_dun02,0,0,0,0 monster Horong 1129,10,5000,0,0
|
||||
ama_dun02,0,0,0,0 monster Miyabi Doll 1404,5,5000,0,0
|
||||
ama_dun02,0,0,0,0 monster Shinobi 1401,2,5000,0,0
|
||||
ama_dun02,0,0,0,0 monster The Paper 1375,1,5000,0,0
|
||||
ama_dun02,0,0 monster Poison Toad 1402,35,5000
|
||||
ama_dun02,0,0 monster Firelock Soldier 1403,20,5000
|
||||
ama_dun02,0,0 monster Horong 1129,10,5000
|
||||
ama_dun02,0,0 monster Miyabi Doll 1404,5,5000
|
||||
ama_dun02,0,0 monster Shinobi 1401,2,5000
|
||||
ama_dun02,0,0 monster The Paper 1375,1,5000
|
||||
|
||||
//==================================================
|
||||
// ama_dun03 - Amatsu Underground Shrine
|
||||
//==================================================
|
||||
ama_dun03,0,0,0,0 monster Shinobi 1401,55,5000,0,0
|
||||
ama_dun03,0,0,0,0 monster Tengu 1405,55,5000,0,0
|
||||
ama_dun03,0,0,0,0 monster Firelock Soldier 1403,25,5000,0,0
|
||||
ama_dun03,0,0,0,0 monster The Paper 1375,20,5000,0,0
|
||||
ama_dun03,0,0,0,0 monster Mimic 1191,5,5000,0,0
|
||||
ama_dun03,0,0,0,0 monster Miyabi Doll 1404,1,5000,0,0
|
||||
ama_dun03,0,0 monster Shinobi 1401,55,5000
|
||||
ama_dun03,0,0 monster Tengu 1405,55,5000
|
||||
ama_dun03,0,0 monster Firelock Soldier 1403,25,5000
|
||||
ama_dun03,0,0 monster The Paper 1375,20,5000
|
||||
ama_dun03,0,0 monster Mimic 1191,5,5000
|
||||
ama_dun03,0,0 monster Miyabi Doll 1404,1,5000
|
||||
ama_dun03,0,0,0,0 boss_monster Samurai Specter 1492,1,5460000,600000,0
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user