summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-06-27 15:27:31 -0300
committerJesusaves <cpntb1@ymail.com>2021-06-27 15:27:31 -0300
commite40be282036892f47763e3471d65a5fce695dfb4 (patch)
tree75a67d10333c599119b5c1a706b4bcffd1e600bc
parent67389fe9b71f90999b1b22d80c08a9c0928c3959 (diff)
downloadserverdata-e40be282036892f47763e3471d65a5fce695dfb4.tar.gz
serverdata-e40be282036892f47763e3471d65a5fce695dfb4.tar.bz2
serverdata-e40be282036892f47763e3471d65a5fce695dfb4.tar.xz
serverdata-e40be282036892f47763e3471d65a5fce695dfb4.zip
Readd Alchemy recipes (still cannot be done as functionality is missing)
-rw-r--r--db/constants.conf7
-rw-r--r--db/craft_db.conf56
2 files changed, 63 insertions, 0 deletions
diff --git a/db/constants.conf b/db/constants.conf
index a51297ad..075670e8 100644
--- a/db/constants.conf
+++ b/db/constants.conf
@@ -2932,6 +2932,13 @@ more than one separator can be used in a row (so 12_3___456 is illegal).
SUMMER: 2
AUTUMN: 3
+ comment__: "CRAFT enum"
+ CRAFT_COOKING: 4
+ CRAFT_ALCHEMY: 8
+ CRAFT_SMITHERY: 16
+ CRAFT_TAILORING: 32
+ CRAFT_JEWELERY: 64
+
comment__: "speechflags"
S_FIRST_BLANK_LINE: 0b00000001
S_LAST_BLANK_LINE: 0b00000010
diff --git a/db/craft_db.conf b/db/craft_db.conf
index 538e699a..cc6846e9 100644
--- a/db/craft_db.conf
+++ b/db/craft_db.conf
@@ -69,6 +69,7 @@ Weapons: 400 --> 499
Shields: 500 --> 599
Hats: 600 --> 699
Boots: 700 --> 799
+Alchemy: 800 --> 899
**************/
/****************************** COOKING ****************************************
@@ -1854,4 +1855,59 @@ Boots: 700 --> 799
Priority: 71
},
*/
+
+/****************************** ALCHEMY ****************************************
+********************************************************************************
+**** Reserved range for <Id>: 700 --> 799
+**** Valid <Flag> parameters: CRAFT_ALCHEMY
+*******************************************************************************/
+{
+ Id: 700
+ Name: "CraftConcentrationPotion"
+ Flag: "CRAFT_ALCHEMY"
+ SourceItems:
+ (
+ {
+ PinkPetal: 1
+ BottleOfWater: 1
+ },
+ {
+ BottleOfWater: 1
+ PinkPetal: 1
+ },
+ )
+ CreateItems:
+ (
+ {
+ ConcentrationPotion: 1
+ },
+ )
+ Priority: 10
+},
+{
+ Id: 701
+ Name: "CraftCactusPotion"
+ Flag: "CRAFT_ALCHEMY"
+ SourceItems:
+ (
+ {
+ CactusDrink: 1
+ CactusDrink: 1
+ },
+ {
+ CactusDrink: 1
+ CactusDrink: 1
+ },
+ {
+ CactusDrink: 2
+ },
+ )
+ CreateItems:
+ (
+ {
+ CactusPotion: 1
+ },
+ )
+ Priority: 10
+},
)