summaryrefslogtreecommitdiff
path: root/npc/items
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-04-15 14:24:39 -0300
committerJesusaves <cpntb1@ymail.com>2020-04-15 14:24:39 -0300
commit55084f835cbc5f41fd076d15fcb3a746c7746024 (patch)
treed21635dffc4e0a3983bc1b575a5d9a2aa88fca99 /npc/items
parent25c3a8a3a4e1831a565cf16d00b244ed31b33bda (diff)
downloadserverdata-55084f835cbc5f41fd076d15fcb3a746c7746024.tar.gz
serverdata-55084f835cbc5f41fd076d15fcb3a746c7746024.tar.bz2
serverdata-55084f835cbc5f41fd076d15fcb3a746c7746024.tar.xz
serverdata-55084f835cbc5f41fd076d15fcb3a746c7746024.zip
Placeholders.
Currently, only one terranite recipe exists. A total of 7 are planned. Not all of them exist as items...?
Diffstat (limited to 'npc/items')
-rw-r--r--npc/items/miscrecipes.txt19
1 files changed, 14 insertions, 5 deletions
diff --git a/npc/items/miscrecipes.txt b/npc/items/miscrecipes.txt
index fa35b76ef..7e5d0bc6d 100644
--- a/npc/items/miscrecipes.txt
+++ b/npc/items/miscrecipes.txt
@@ -6,12 +6,21 @@
// callfunc("TerraniteBlueprint")
function script TerraniteBlueprint {
+ // Lucky roll (0.25%)
+ if (rand2(2500) < 1) {
+ getitem AncientBlueprint, 1;
+ dispbottom l("Wait a minute... This is written in Mananese! I can't read!");
+ return;
+ }
+
// Setup
- array_push(.@recipes, CraftWoodenSword);
- array_push(.@recipes, CraftWoodenSword);
- array_push(.@recipes, CraftWoodenSword);
- array_push(.@recipes, CraftWoodenSword);
- array_push(.@recipes, CraftWoodenSword);
+ array_push(.@recipes, CraftRockKnife); // Weapon: Rock Knife
+ array_push(.@recipes, CraftRockKnife); // TerraniteArmor
+ array_push(.@recipes, CraftRockKnife); // TerranitePants
+ array_push(.@recipes, CraftRockKnife); // TerraniteMask (?)
+ array_push(.@recipes, CraftRockKnife); // TerraniteHelmet (?)
+ array_push(.@recipes, CraftRockKnife); // TerraniteGloves (?)
+ array_push(.@recipes, CraftRockKnife); // TerraniteBoots (?)
// Now you'll learn some recipe!
.@rcp=any_of(.@recipes);