diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-10-23 21:44:22 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-10-23 21:44:22 -0300 |
commit | a7c45a192268da2601cef47a4cdba987ae2327ca (patch) | |
tree | c5fb5b97db109fe7106496dd96498c475881046b /npc/001-12 | |
download | serverdata-a7c45a192268da2601cef47a4cdba987ae2327ca.tar.gz serverdata-a7c45a192268da2601cef47a4cdba987ae2327ca.tar.bz2 serverdata-a7c45a192268da2601cef47a4cdba987ae2327ca.tar.xz serverdata-a7c45a192268da2601cef47a4cdba987ae2327ca.zip |
Initial commit (Moubootaur Legends fork)
Diffstat (limited to 'npc/001-12')
-rw-r--r-- | npc/001-12/_import.txt | 4 | ||||
-rw-r--r-- | npc/001-12/_mobs.txt | 12 | ||||
-rw-r--r-- | npc/001-12/event_soulmenhir.txt | 29 |
3 files changed, 45 insertions, 0 deletions
diff --git a/npc/001-12/_import.txt b/npc/001-12/_import.txt new file mode 100644 index 0000000..33a1ed3 --- /dev/null +++ b/npc/001-12/_import.txt @@ -0,0 +1,4 @@ +// Map 001-12: Southeast Enchanted Forest +// This file is generated automatically. All manually added changes will be removed when running the Converter. +"npc/001-12/_mobs.txt", +"npc/001-12/event_soulmenhir.txt", diff --git a/npc/001-12/_mobs.txt b/npc/001-12/_mobs.txt new file mode 100644 index 0000000..99f05db --- /dev/null +++ b/npc/001-12/_mobs.txt @@ -0,0 +1,12 @@ +// This file is generated automatically. All manually added changes will be removed when running the Converter. +// Map 001-12: Southeast Enchanted Forest mobs +001-12,99,98,23,23 monster Clover Field 1028,2,90000,120000 +001-12,90,88,70,68 monster Lovely Fluffy 1050,80,22000,1000 +001-12,22,89,6,69 monster Duck 1029,4,60000,120000 +001-12,87,148,71,10 monster Duck 1029,4,60000,120000 +001-12,96,79,64,60 monster Red Mushroom 1042,20,175000,50000 +001-12,102,108,4,3 monster Chocolate Slime 1180,2,220000,50000 +001-12,80,139,85,28 monster Whirly Bird (BOSS) 1232,1,36000000,50000 +001-12,115,40,36,13 monster Angry Bat 1194,6,260000,50000 +001-12,94,93,4,3 monster Mana Piou 1155,1,220000,50000 +001-12,37,149,1,1 monster Mana Piou 1155,3,220000,50000 diff --git a/npc/001-12/event_soulmenhir.txt b/npc/001-12/event_soulmenhir.txt new file mode 100644 index 0000000..27a563c --- /dev/null +++ b/npc/001-12/event_soulmenhir.txt @@ -0,0 +1,29 @@ +// TMW2 scripts. +// Author: +// Jesusalva +// Description: +// Special Soul Menhir which only allows leaving the map. + +001-12,54,16,0 script Soul Stone#001-12 NPC_SOUL_CLEAN,{ + mesn; + mes l("(A mystical aura surrounds this stone. It probably can return you home. What do you do?)"); + + menu + l("Touch it."), L_Warp, + l("Return to main island."), L_WarpEnchanted, + l("Leave it alone."), -; + close; + +L_Warp: + warp "Save", 0, 0; + close; + +L_WarpEnchanted: + warp "001-11", 37, 31; + close; + +OnInit: + .distance = 10; + end; +} + |