summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-11-13 20:30:10 -0300
committerJesusaves <cpntb1@ymail.com>2020-11-13 20:30:10 -0300
commit550fcf33c493bfcbc15ab8940f1ad9cacea0a94e (patch)
treea2b2bfccfceba68569ab205be993f6450a7cd8cb
parent822efd0c0aa2b74bba54f2c4d46dd14221cb2f0a (diff)
downloadserverdata-550fcf33c493bfcbc15ab8940f1ad9cacea0a94e.tar.gz
serverdata-550fcf33c493bfcbc15ab8940f1ad9cacea0a94e.tar.bz2
serverdata-550fcf33c493bfcbc15ab8940f1ad9cacea0a94e.tar.xz
serverdata-550fcf33c493bfcbc15ab8940f1ad9cacea0a94e.zip
Reid's Inn Basement: Add Aldred and Golbenez
-rw-r--r--npc/009-2-4/_import.txt2
-rw-r--r--npc/009-2-4/aldred.txt18
-rw-r--r--npc/009-2-4/golbenez.txt47
3 files changed, 67 insertions, 0 deletions
diff --git a/npc/009-2-4/_import.txt b/npc/009-2-4/_import.txt
index 480c5419..0c8dd0be 100644
--- a/npc/009-2-4/_import.txt
+++ b/npc/009-2-4/_import.txt
@@ -1,3 +1,5 @@
// Map 009-2-4: Reid's Inn Basement
// This file is generated automatically. All manually added changes will be removed when running the Converter.
"npc/009-2-4/_warps.txt",
+"npc/009-2-4/aldred.txt",
+"npc/009-2-4/golbenez.txt",
diff --git a/npc/009-2-4/aldred.txt b/npc/009-2-4/aldred.txt
new file mode 100644
index 00000000..a08a745a
--- /dev/null
+++ b/npc/009-2-4/aldred.txt
@@ -0,0 +1,18 @@
+// Evol scripts.
+// Author:
+// Micksha
+// Description:
+// Aldred is Hamond's and Reid's son.
+// THIS IS A PLACEHOLDER!
+
+009-2-4,50,35,0 script Aldred NPC_UNDEAD_WEPPER,{
+ mesn;
+ mesq l("Waaahhhhh!");
+ close;
+
+OnInit:
+ .bodytype = BODYTYPE_2;
+ .distance = 4;
+ end;
+}
+
diff --git a/npc/009-2-4/golbenez.txt b/npc/009-2-4/golbenez.txt
new file mode 100644
index 00000000..368b2efe
--- /dev/null
+++ b/npc/009-2-4/golbenez.txt
@@ -0,0 +1,47 @@
+// Evol scripts.
+// Author:
+// Micksha
+// Description (SPOILERS):
+// Golbenez, a very dangerous, evil AND cruel woman from a parallel dimension.
+// After being summoned by Savaric, she betrayed him and made the Inn in her
+// leisure place. Later, she invaded The Mana World, kidnapped Santa to obtain
+// enough spiritual energy, and brought the whole Inn to The Mana World.
+//
+// At time of writing, it is unknown how Asphodel Moors came to be.
+// It is possible that Golbenez cannot return to her original dimension,
+// And it is also possible that her attempt resulted in she ending up in TMW.
+//
+// At time of writing, It is unknown if she is alive, undead, or neither and
+// is a spirit.
+// Other NPCs cannot comprehend and will always treat her as a "him".
+// Most other NPCs cannot say Golbenez' name properly, and will say "Golbanez",
+// "Galvanes", "Gilbenos", "Golbinos" and/or "Galvanis".
+// This is part of lore, please do not try to "fix" it in other NPCs as well.
+// THIS IS A PLACEHOLDER!
+
+009-2-4,30,32,0 script Golbenez NPC_GOLBENEZ,{
+ mesn;
+ mesq l("How do you like my place of leisure, mortal?");
+ select
+ l("What is this place? Why is it full of dead people?"),
+ l("You look different here. Nice horns."),
+ l("I'm enjoying myself, thanks for asking.");
+ mes "";
+ switch (@menu) {
+ case 1:
+ mesn;
+ mesq l("Mortal, this is beyond your comprehension. Do not worry about it and enjoy your time.");
+ break;
+ case 2:
+ mesn;
+ mesc l("%s bursts out with laughter.", .name$);
+ mesq l("Mortals! They never stop surprising me.");
+ break;
+ }
+ close;
+
+OnInit:
+ .bodytype = BODYTYPE_2;
+ .distance = 4;
+ end;
+}