summaryrefslogtreecommitdiff
path: root/world/map/npc/019-1
diff options
context:
space:
mode:
Diffstat (limited to 'world/map/npc/019-1')
-rw-r--r--world/map/npc/019-1/_import.txt9
-rw-r--r--world/map/npc/019-1/_mobs.txt7
-rw-r--r--world/map/npc/019-1/_nodes.txt4
-rw-r--r--world/map/npc/019-1/_warps.txt7
-rw-r--r--world/map/npc/019-1/mapflags.txt1
-rw-r--r--world/map/npc/019-1/santa_helper.txt96
-rw-r--r--world/map/npc/019-1/snowman.txt87
7 files changed, 0 insertions, 211 deletions
diff --git a/world/map/npc/019-1/_import.txt b/world/map/npc/019-1/_import.txt
deleted file mode 100644
index 9eeea2c7..00000000
--- a/world/map/npc/019-1/_import.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-// Map 019-1: snow Field
-// This file is generated automatically. All manually added changes will be removed when running the Converter.
-map: 019-1
-npc: npc/019-1/_mobs.txt
-npc: npc/019-1/_nodes.txt
-npc: npc/019-1/_warps.txt
-npc: npc/019-1/mapflags.txt
-npc: npc/019-1/santa_helper.txt
-npc: npc/019-1/snowman.txt
diff --git a/world/map/npc/019-1/_mobs.txt b/world/map/npc/019-1/_mobs.txt
deleted file mode 100644
index 28f76d9a..00000000
--- a/world/map/npc/019-1/_mobs.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-// This file is generated automatically. All manually added changes will be removed when running the Converter.
-// snow Field mobs
-
-019-1,0,0,0,0|monster|Fluffy|1020,50,100000ms,30000ms
-019-1,0,0,0,0|monster|Reinboo|1094,4,100000ms,30000ms
-019-1,0,0,0,0|monster|WhiteBell|1095,5,100000ms,30000ms
-019-1,0,0,0,0|monster|Santaboo|1112,4,100000ms,30000ms
diff --git a/world/map/npc/019-1/_nodes.txt b/world/map/npc/019-1/_nodes.txt
deleted file mode 100644
index 091beb4e..00000000
--- a/world/map/npc/019-1/_nodes.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-// This file is generated automatically. All manually added changes will be removed when running the Converter.
-// snow Field nodes
-
-// (no nodes)
diff --git a/world/map/npc/019-1/_warps.txt b/world/map/npc/019-1/_warps.txt
deleted file mode 100644
index acbfd282..00000000
--- a/world/map/npc/019-1/_warps.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-// This file is generated automatically. All manually added changes will be removed when running the Converter.
-// snow Field warps
-
-019-1,70,21|warp|2,-1,020-1,70,127
-019-1,96,40|warp|-1,-1,019-3,98,30
-019-1,38,75|warp|-1,-1,019-3,39,101
-019-1,21,70|warp|-1,0,033-1,118,69
diff --git a/world/map/npc/019-1/mapflags.txt b/world/map/npc/019-1/mapflags.txt
deleted file mode 100644
index 888c4354..00000000
--- a/world/map/npc/019-1/mapflags.txt
+++ /dev/null
@@ -1 +0,0 @@
-019-1|mapflag|resave|020-1,52,118
diff --git a/world/map/npc/019-1/santa_helper.txt b/world/map/npc/019-1/santa_helper.txt
deleted file mode 100644
index 9d8a21b9..00000000
--- a/world/map/npc/019-1/santa_helper.txt
+++ /dev/null
@@ -1,96 +0,0 @@
-// Author: accoring to git history probably Jaxad
-// and extended by wushin to be included in the annual
-// quest made seasonal and adapted to new scripting standards by Jenalya
-
-019-1,74,75,0|script|Santa's Helper|105
-{
- callfunc "XmasStates";
-
- if (($@xmas_time) && (@xmas_sh_done)) goto L_Done;
- if ($@xmas_time) goto L_Quest;
-
- mes "[Santa's Helper]";
- mes "\"Ah, isn't it peaceful here? Around Christmas time we always have problems with some slimy monsters.";
- mes "They steal the presents boxes. I think they feel attracted by the spiritual power of the Christmas presents.\"";
- next;
- mes "He smiles happily.";
- mes "[Santa's Helper]";
- mes "\"But at this time of the year everything's calm and relaxing.\"";
- goto L_Close;
-
-L_Quest:
- mes "[Santa's Helper]";
- mes "\"Hello my young friend.";
- mes "Would you like to help me?\"";
- next;
- mes "[Santa's Helper]";
- mes "\"Those monsters stole Santa's presents.";
- mes "If you help me, I'll give you something very nice\"";
- next;
- goto L_Menu;
-
-L_Menu:
- menu
- "I have some present boxes", L_Yes,
- "Hmm, see you later", L_No,
- "What you need exactly?", L_Help;
-
-L_Yes:
- mes "[Santa's Helper]";
- mes "\"Hmm, let me check what you have.\"";
- next;
- if (countitem("PurplePresentBox") < $@xmas_sh_purple_amount)
- goto L_NoItem;
- if (countitem("BluePresentBox") < $@xmas_sh_blue_amount)
- goto L_NoItem;
- if (countitem("GreenPresentBox") < $@xmas_sh_green_amount)
- goto L_NoItem;
- getinventorylist;
- set @SantasHelper_Reward$, $@SantasHelper_Annual_Reward$[ rand(getarraysize($@SantasHelper_Annual_Reward$)) ];
- if ((@inventorylist_count > 99) || (checkweight(@SantasHelper_Reward$, 1) == 0))
- goto L_TooMany;
- mes "[Santa's Helper]";
- mes "\"Great! Here is something for you\"";
- delitem "PurplePresentBox", $@xmas_sh_purple_amount;
- delitem "BluePresentBox", $@xmas_sh_blue_amount;
- delitem "GreenPresentBox", $@xmas_sh_green_amount;
- getitem @SantasHelper_Reward$, 1;
- set @SantasHelper_Reward$, "";
- set XMASTIME, XMASTIME | $@xmas_sh_bit;
- set @karma_bonus, $@xmas_karma_bonus;
- callfunc "XmasNice";
- goto L_Close;
-
-L_Help:
- mes "[Santa's Helper]";
- mes "\"I need:";
- mes $@xmas_sh_purple_amount + " Purple Present Boxes";
- mes $@xmas_sh_blue_amount + " Blue Present Boxes";
- mes $@xmas_sh_green_amount + " Green Present Boxes\"";
- next;
- goto L_Menu;
-
-L_No:
- mes "[Santa's Helper]";
- mes "\"Enjoy your holidays and I wish you a happy Christmas!\"";
- goto L_Close;
-
-L_NoItem:
- mes "[Santa's Helper]";
- mes "\"You dont seem to have enough presents.\"";
- goto L_Close;
-
-L_Done:
- mes "[Santa's Helper]";
- mes "\"All the children got their Christmas presents.";
- mes "Thank you for your help.\"";
- goto L_Close;
-
-L_TooMany:
- mes "[Santa's Helper]";
- mes "\"It doesn't look like you have room for this. Come back later.\"";
- goto L_Close;
-
-L_Close:
- close;
-}
diff --git a/world/map/npc/019-1/snowman.txt b/world/map/npc/019-1/snowman.txt
deleted file mode 100644
index 98b749df..00000000
--- a/world/map/npc/019-1/snowman.txt
+++ /dev/null
@@ -1,87 +0,0 @@
-// Author: accoring to git history probably Jaxad
-// quest made seasonal and adapted to new scripting standards by Jenalya
-
-019-1,77,44,0|script|Snowman|129
-{
- if (FLAGS & FLAG_SNOWMAN) goto L_Done;
- if (gettime(6) == 12 || gettime(6) == 1 || gettime(6) == 2) goto L_Quest;
-
- mes "A beautiful snowman. It looks almost alive.";
- mes "Maybe the magic of Christmas time will breath life into it?";
- goto L_Close;
-
-L_Quest:
- set @candy_amount, 15;
- set @chocolate_amount, 10;
- set @cactus_amount, 5;
-
- mes "[Snowman]";
- mes "\"Hello there.";
- mes "Would you like a Christmas hat?\"";
- next;
- goto L_Menu;
-
-L_Menu:
- menu
- "Yes", L_Sure,
- "No", L_Next,
- "What do you need?", L_Need;
-
-L_Next:
- mes "[Snowman]";
- mes "\"Well, thats too bad, but make sure to have the holiday spirit!\"";
- goto L_Close;
-
-L_Sure:
- mes "[Snowman]";
- mes "\"Hmm, let me see what you have.\"";
- next;
- if(countitem("Candy") < @candy_amount)
- goto L_NoItem;
- if(countitem("ChocolateBar") < @chocolate_amount)
- goto L_NoItem;
- if(countitem("CactusPotion") < @cactus_amount)
- goto L_NoItem;
- getinventorylist;
- if (@inventorylist_count > 99)
- goto L_TooMany;
- delitem "Candy", @candy_amount;
- delitem "ChocolateBar", @chocolate_amount;
- delitem "CactusPotion", @cactus_amount;
- mes "[Snowman]";
- mes "\"Here you go, enjoy your new hat!\"";
- getitem "SantaHat", 1;
- set FLAGS, FLAGS | FLAG_SNOWMAN;
- goto L_Close;
-
-L_Need:
- mes "[Snowman]";
- mes "\"For this special hat, I need a pint of magic and a little help.";
- mes "Just kidding. I would like to get some food:";
- mes @candy_amount + " pieces of Candy";
- mes @chocolate_amount + " Chocolate Bars";
- mes @cactus_amount + " Cactus Potions\"";
- next;
- goto L_Menu;
-
-L_NoItem:
- mes "[Snowman]";
- mes "\"Well, I am interested in some food and you don't have enought to get a hat.\"";
- goto L_Close;
-
-L_Done:
- mes "[Snowman]";
- mes "\"Thank you for your help!\"";
- goto L_Close;
-
-L_TooMany:
- mes "[Snowman]";
- mes "\"It doesn't look like you have room for this. Come back later.\"";
- goto L_Close;
-
-L_Close:
- set @candy_amount, 0;
- set @chocolate_amount, 0;
- set @cactus_amount, 0;
- close;
-}