summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2020-08-14 10:33:50 -0400
committergumi <git@gumi.ca>2020-08-14 10:33:50 -0400
commit1fc59241ed6bc4283ad2863c3daf83341544e41d (patch)
tree1bc8e853069b6e3f63ff91b6ffa9dd27df298808
parent892170939a8a9fe34e280cdafcd3f3b17d38ba53 (diff)
downloadserverdata-1fc59241ed6bc4283ad2863c3daf83341544e41d.tar.gz
serverdata-1fc59241ed6bc4283ad2863c3daf83341544e41d.tar.bz2
serverdata-1fc59241ed6bc4283ad2863c3daf83341544e41d.tar.xz
serverdata-1fc59241ed6bc4283ad2863c3daf83341544e41d.zip
add the Slippers recipe
Co-authored-by: Christopher Chay <2@hisfootsteps.net>
-rw-r--r--db/craft_db.conf25
-rw-r--r--npc/items/recipes.txt3
2 files changed, 27 insertions, 1 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf
index f4f59da0..387f8f7a 100644
--- a/db/craft_db.conf
+++ b/db/craft_db.conf
@@ -1352,4 +1352,29 @@ Boots: 700 --> 799
}
Priority: 10
},
+{
+ Id: 701
+ Name: "CraftSlippers"
+ Flag: "CRAFT_TAILORING"
+ ReturnCode: "Slippers"
+ SourceItems:
+ (
+ {
+ FluffyFur: 16
+ SilkCocoon: 20
+ TortugaShell: 6
+ Knife: 1
+ },
+ )
+ CreateItems:
+ (
+ {
+ Slippers: 1
+ },
+ )
+ RequiredItems: {
+ RecipeBook: 1
+ }
+ Priority: 11
+},
)
diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt
index 7763ec35..158ed4b6 100644
--- a/npc/items/recipes.txt
+++ b/npc/items/recipes.txt
@@ -224,7 +224,8 @@ function read_tailoring {
mesf(".:: %s ::.", l("Boots"));
mes();
- showRecipe(LousyMoccasins);
+ showRecipe(LousyMoccasins,
+ Slippers);
return;
}