diff options
Diffstat (limited to 'db/craft_db.conf')
-rw-r--r-- | db/craft_db.conf | 87 |
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 +}, ) |