summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--db/craft_db.conf26
-rw-r--r--npc/craft/recipes.txt4
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);