diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-01-20 22:14:13 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-01-20 22:14:13 -0300 |
commit | 5140b8d9fb6e5055502d51d6934b0c00adb4804f (patch) | |
tree | a82a51d4ba02829bfc7a12c6ce77a66bb17e9739 | |
parent | 0f698d4c834814b9747e25004ceaff02a8c5a834 (diff) | |
download | serverdata-5140b8d9fb6e5055502d51d6934b0c00adb4804f.tar.gz serverdata-5140b8d9fb6e5055502d51d6934b0c00adb4804f.tar.bz2 serverdata-5140b8d9fb6e5055502d51d6934b0c00adb4804f.tar.xz serverdata-5140b8d9fb6e5055502d51d6934b0c00adb4804f.zip |
Because I'm lazy, Flour became a Basic Alchemy recipe
(which doesn't make much sense either)
-rw-r--r-- | db/craft_db.conf | 26 | ||||
-rw-r--r-- | npc/craft/recipes.txt | 4 |
2 files changed, 29 insertions, 1 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf index 086cf85cd..438bd858c 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -1373,6 +1373,32 @@ craft_db: ( Priority: 15 }, /****************************************************************************/ +{ + Id: 50 + Name: "CraftFlour" + Flag: 8 + SourceItems: + ( + { + Acorn: 10 + OrangeCupcake: 3 + }, + ) + CreateItems: + ( + { + Flour: 2 + }, + { + Flour: 3 + }, + { + Flour: 2 + }, + ) + Priority: 5 +}, +/****************************************************************************/ diff --git a/npc/craft/recipes.txt b/npc/craft/recipes.txt index 3d819e654..1a688e94d 100644 --- a/npc/craft/recipes.txt +++ b/npc/craft/recipes.txt @@ -208,7 +208,8 @@ function readAlchemy { ScentGrenade, Grenade, Insurance, - InsuranceContract); + InsuranceContract, + Flour); next; @scope$=""; @@ -385,6 +386,7 @@ function script MakeBlueprint { array_push(.@recipes, CraftCoffee); array_push(.@recipes, CraftScrollSCave); array_push(.@recipes, CraftScrollSMaggot); + array_push(.@recipes, CraftFlour); } if (.@rarity & CRAFT_INTERMEDIARY) { array_push(.@recipes, CraftLukPotionA); |