summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-12-25 16:51:17 -0300
committerJesusaves <cpntb1@ymail.com>2021-12-25 16:51:17 -0300
commit19193da1c252b23547bfb89d9169ec22d7d755cc (patch)
tree8355e0a87246aa32db0a174542fae8e190387539
parent635fe3bca06d673a9f0c5917da1e1f4c14ef09cb (diff)
downloadserverdata-19193da1c252b23547bfb89d9169ec22d7d755cc.tar.gz
serverdata-19193da1c252b23547bfb89d9169ec22d7d755cc.tar.bz2
serverdata-19193da1c252b23547bfb89d9169ec22d7d755cc.tar.xz
serverdata-19193da1c252b23547bfb89d9169ec22d7d755cc.zip
Register this new boss as an easter egg; It *is* a secret boss, in a sense.
Gives 25 Strange Coins when defeating it for the first time.
-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;
}