diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-04-15 14:24:39 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-04-15 14:24:39 -0300 |
commit | 55084f835cbc5f41fd076d15fcb3a746c7746024 (patch) | |
tree | d21635dffc4e0a3983bc1b575a5d9a2aa88fca99 /npc | |
parent | 25c3a8a3a4e1831a565cf16d00b244ed31b33bda (diff) | |
download | serverdata-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')
-rw-r--r-- | npc/craft/recipes.txt | 2 | ||||
-rw-r--r-- | npc/items/miscrecipes.txt | 19 |
2 files changed, 15 insertions, 6 deletions
diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt index c17ed174b..e03e815d2 100644 --- a/npc/craft/recipes.txt +++ b/npc/craft/recipes.txt @@ -593,7 +593,7 @@ function script MakeBlueprint { array_push(.@recipes, CraftDragonShield); array_push(.@recipes, CraftManaGloves); array_push(.@recipes, CraftWarlordGloves); - array_push(.@recipes, CraftCenturionHelmet); + array_push(.@recipes, CraftCenturionHelmet); array_push(.@recipes, CraftBullHelmet); array_push(.@recipes, CraftDarkHelm); } 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); |