summaryrefslogtreecommitdiff
path: root/db/craft_db.conf
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-03-05 22:47:40 +0000
committerMicksha <ms-shaman@gmx.de>2019-03-05 22:47:40 +0000
commitcf525a4a26597c3bc3d69e2a7456205b598fdf0c (patch)
treefa0dee3ab01bcce0f29919a14f1251aeb0e4ba77 /db/craft_db.conf
parent019ebd01ca5f0aaa7fe890657d40a4d6b3ebd9f3 (diff)
downloadserverdata-cf525a4a26597c3bc3d69e2a7456205b598fdf0c.tar.gz
serverdata-cf525a4a26597c3bc3d69e2a7456205b598fdf0c.tar.bz2
serverdata-cf525a4a26597c3bc3d69e2a7456205b598fdf0c.tar.xz
serverdata-cf525a4a26597c3bc3d69e2a7456205b598fdf0c.zip
Update the quest to address Micksha notes.
Playtested locally. Besides, it is now possible to use Grass Carp for Carp Sandwich. The use of a Grass Carp won't have any special effects. WIP status can now be safely removed.
Diffstat (limited to 'db/craft_db.conf')
-rw-r--r--db/craft_db.conf87
1 files changed, 87 insertions, 0 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf
index c010081e..589fd3a7 100644
--- a/db/craft_db.conf
+++ b/db/craft_db.conf
@@ -54,6 +54,7 @@ craft_db: (
},
******************************************************************************/
+// Pet Egg Recipes
{
Id: 0
Name: "CraftEgg"
@@ -107,6 +108,8 @@ craft_db: (
Priority: 10
Price: 100
},
+
+// Generic Item Recipes
{
Id: 1
Name: "CraftPiouFeathers"
@@ -213,6 +216,8 @@ craft_db: (
Price: 0
ReturnCode: 123
},
+
+// Dye Recipes
{
Id: 2
Name: "CraftOrangeDye"
@@ -256,6 +261,8 @@ craft_db: (
}
Priority: 10
},
+
+// Equipment recipes
{
Id: 3
Name: "CraftItemWithDye"
@@ -304,4 +311,84 @@ craft_db: (
Priority: 10
},
+// Cooking
+// for Flag field, please see constants.conf (CRAFT enum)
+{
+ Id: 5
+ Name: "CraftCarpSandwich"
+ Flag: 4
+ SourceItems:
+ (
+ {
+ Bread: 1
+ LettuceLeaf: 3
+ Cheese: 2
+ CommonCarp: 1
+ },
+ {
+ Bread: 1
+ LettuceLeaf: 3
+ Cheese: 2
+ GrassCarp: 1
+ },
+ )
+ CreateItems:
+ (
+ {
+ CarpSandwich: 1
+ },
+ )
+ RequiredItems: {
+ RecipeBook: 1
+ }
+ Priority: 10
+},
+{
+ Id: 6
+ Name: "CraftPioulegSandwich"
+ Flag: 4
+ SourceItems:
+ (
+ {
+ Bread: 1
+ LettuceLeaf: 3
+ Cheese: 2
+ PiouLegs: 1
+ },
+ )
+ CreateItems:
+ (
+ {
+ PioulegSandwich: 1
+ },
+ )
+ RequiredItems: {
+ RecipeBook: 1
+ }
+ Priority: 10
+},
+{
+ Id: 7
+ Name: "CraftMananaSandwich"
+ Flag: 4
+ SourceItems:
+ (
+ {
+ Bread: 1
+ LettuceLeaf: 3
+ Cheese: 2
+ Manana: 1
+ },
+ )
+ CreateItems:
+ (
+ {
+ MananaSandwich: 1
+ },
+ )
+ RequiredItems: {
+ RecipeBook: 1
+ }
+ Priority: 10
+},
)