summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--db/constants.conf1
-rw-r--r--npc/006-6/core.txt2
-rw-r--r--npc/006-7/ctrl.txt1
3 files changed, 3 insertions, 1 deletions
diff --git a/db/constants.conf b/db/constants.conf
index 27ae96fb5..d853f4abe 100644
--- a/db/constants.conf
+++ b/db/constants.conf
@@ -2091,6 +2091,7 @@ constants_db: {
EE_MANATAURO: 64
EE_SEWERS: 128
EE_AETHYR: 256
+ EE_SNOWMAN: 512
comment__: "Teleporter enum"
TP_NONE: 0
diff --git a/npc/006-6/core.txt b/npc/006-6/core.txt
index b10bf24d9..fb303d469 100644
--- a/npc/006-6/core.txt
+++ b/npc/006-6/core.txt
@@ -6,7 +6,7 @@
end;
OnTouch:
- //if (!getq(CandorQuest_Area1)) goto L_Reject;
+ if (!(getq(General_EasterEggs) & EE_SNOWMAN)) goto L_Reject;
//if (!getq(CandorQuest_Area2)) goto L_Reject;
//if (!getq(CandorQuest_Area3)) goto L_Reject;
if (getq(General_Narrator) < 17) goto L_Reject; // Frostia Arc must be finished
diff --git a/npc/006-7/ctrl.txt b/npc/006-7/ctrl.txt
index 3dd1aae15..59ca902d1 100644
--- a/npc/006-7/ctrl.txt
+++ b/npc/006-7/ctrl.txt
@@ -14,6 +14,7 @@ OnRw:
getexp 1000000, 0;
Mobpt += 10000;
dispbottom l("Der Schneemann has been defeated: %s Monster Points gained.", fnum(10000));
+ RegEasterEgg(EE_SNOWMAN, 25);
end;
}