diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-04 09:59:18 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-04 09:59:18 -0300 |
commit | 9de1fddc8efa3e0f81dfd0cb28404e8f1eaac2d7 (patch) | |
tree | e31997f0b557c6c396f4c48bf0327005982e6304 /db/craft_db.conf | |
parent | fddbdd1444120578d24dbd13a1643b4774e00901 (diff) | |
download | serverdata-jesusalva/craft.tar.gz serverdata-jesusalva/craft.tar.bz2 serverdata-jesusalva/craft.tar.xz serverdata-jesusalva/craft.zip |
Crafting System base code used for Evol - this is for reference purposes, DO NOT MERGEjesusalva/craft
Diffstat (limited to 'db/craft_db.conf')
-rw-r--r-- | db/craft_db.conf | 82 |
1 files changed, 81 insertions, 1 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf index 6a015fb65..071180566 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -54,7 +54,7 @@ craft_db: ( }, ******************************************************************************/ -// Evol Recipes +// Pet Egg Recipes { Id: 0 Name: "CraftEgg" @@ -108,6 +108,8 @@ craft_db: ( Priority: 10 Price: 100 }, + +// Generic Item Recipes { Id: 1 Name: "CraftPiouFeathers" @@ -214,6 +216,8 @@ craft_db: ( Price: 0 ReturnCode: 123 }, + +// Dye Recipes { Id: 2 Name: "CraftOrangeDye" @@ -257,6 +261,8 @@ craft_db: ( } Priority: 10 }, + +// Equipment recipes { Id: 3 Name: "CraftItemWithDye" @@ -305,4 +311,78 @@ craft_db: ( Priority: 10 }, +// Help +{ + Id: 5 + Name: "CraftCarpCocktail" + Flag: 4 + SourceItems: + ( + { + Bread: 1 + LettuceLeaf: 1 + Cheese: 1 + CommonCarp: 1 + }, + ) + CreateItems: + ( + { + CactusCocktail: 1 + }, + ) + RequiredItems: { + ThetaBook: 1 + } + Priority: 10 +}, +{ + Id: 6 + Name: "CraftMananaCocktail" + Flag: 4 + SourceItems: + ( + { + Bread: 1 + LettuceLeaf: 1 + Cheese: 1 + Manana: 1 + }, + ) + CreateItems: + ( + { + AppleCocktail: 1 + }, + ) + RequiredItems: { + ThetaBook: 1 + } + Priority: 10 +}, +{ + Id: 7 + Name: "CraftLegsCocktail" + Flag: 4 + SourceItems: + ( + { + Bread: 1 + LettuceLeaf: 1 + Cheese: 1 + PiouLegs: 1 + }, + ) + CreateItems: + ( + { + CherryCocktail: 1 + }, + ) + RequiredItems: { + ThetaBook: 1 + } + Priority: 10 +}, + ) |