summaryrefslogtreecommitdiff
path: root/db/craft_db.conf
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-06-08 13:26:18 -0300
committerJesusaves <cpntb1@ymail.com>2019-06-08 13:26:18 -0300
commit425c3025fa4b82585f732998474d54ddc96def67 (patch)
tree3522fd75947e9fdb549afb12b407abb4f2a0c966 /db/craft_db.conf
parentb441dd36f18727cba727c7fd7cc3321b3f7d8d52 (diff)
downloadserverdata-425c3025fa4b82585f732998474d54ddc96def67.tar.gz
serverdata-425c3025fa4b82585f732998474d54ddc96def67.tar.bz2
serverdata-425c3025fa4b82585f732998474d54ddc96def67.tar.xz
serverdata-425c3025fa4b82585f732998474d54ddc96def67.zip
Add wands to craft recipes
Diffstat (limited to 'db/craft_db.conf')
-rw-r--r--db/craft_db.conf173
1 files changed, 171 insertions, 2 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf
index 3de9bbca5..fe6979185 100644
--- a/db/craft_db.conf
+++ b/db/craft_db.conf
@@ -644,10 +644,13 @@ craft_db: (
// Crafting System (ID 51~100, Flag 16)
// 51~71 → Swords
-// 72~82 → Bows and Wands (5x each)
+// 72~76 → Bows
+// 77~81 → Wands
+// 82 → Reserved for guns
// 83~87 → Armor Chestplates
// 88~92 → Armor Helmets
-// 93+ → TODO
+// 93~97 → Shields
+// 98, 99, 100 → Reserved for guns
//////////////////////////////////////////////////////////////////////////////
// Output PileOfAsh
// Require 1x EverburnPowder to lit (maybe Sulphur?)
@@ -806,5 +809,171 @@ craft_db: (
Priority: 40
},
/****************************************************************************/
+// 51~71 → Swords
+// 72~76 → Bows
+// 77~81 → Wands
+// 82 → Reserved for guns
+// 83~87 → Armor Chestplates
+// 88~92 → Armor Helmets
+// 93~97 → Shields
+// 98, 99, 100 → Reserved for guns
+//////////////////////////////////////////////////////////////////////////////
+{
+ Id: 77
+ Name: "CraftTrainingWand"
+ Flag: 16
+ ReturnCode: 7000
+ //WoodenSword
+ SourceItems:
+ (
+ {
+ WoodenLog: 20
+ ManaPiouFeathers: 30
+ FluoPowder: 5
+ GemPowder: 1
+ },
+ )
+ CreateItems:
+ (
+ {
+ RawLog: 1
+ },
+ {
+ PileOfAsh: 1
+ RawLog: 1
+ },
+ {
+ PileOfAsh: 1
+ },
+ )
+ Priority: 10
+},
+/****************************************************************************/
+{
+ Id: 78
+ Name: "CraftNoviceWand"
+ Flag: 16
+ ReturnCode: 7001
+ //WoodenSword
+ SourceItems:
+ (
+ {
+ WoodenLog: 40
+ ManaPiouFeathers: 60
+ FluoPowder: 8
+ GemPowder: 2
+ },
+ )
+ CreateItems:
+ (
+ {
+ RawLog: 2
+ },
+ {
+ PileOfAsh: 2
+ RawLog: 2
+ },
+ {
+ PileOfAsh: 2
+ },
+ )
+ Priority: 20
+},
+/****************************************************************************/
+{
+ Id: 79
+ Name: "CraftApprenticeWand"
+ Flag: 16
+ ReturnCode: 7002
+ //WoodenSword
+ SourceItems:
+ (
+ {
+ WoodenLog: 60
+ ManaPiouFeathers: 90
+ FluoPowder: 12
+ GemPowder: 3
+ },
+ )
+ CreateItems:
+ (
+ {
+ RawLog: 3
+ },
+ {
+ PileOfAsh: 3
+ RawLog: 2
+ },
+ {
+ PileOfAsh: 3
+ },
+ )
+ Priority: 30
+},
+/****************************************************************************/
+{
+ Id: 80
+ Name: "CraftLeaderWand"
+ Flag: 16
+ ReturnCode: 7003
+ //WoodenSword
+ SourceItems:
+ (
+ {
+ WoodenLog: 100
+ ManaPiouFeathers: 120
+ FluoPowder: 15
+ GemPowder: 5
+ },
+ )
+ CreateItems:
+ (
+ {
+ PileOfAsh: 1
+ RawLog: 5
+ },
+ {
+ PileOfAsh: 5
+ RawLog: 3
+ },
+ {
+ PileOfAsh: 4
+ },
+ )
+ Priority: 40
+},
+/****************************************************************************/
+{
+ Id: 81
+ Name: "CraftLegendaryWand"
+ Flag: 16
+ ReturnCode: 7004
+ //WoodenSword
+ SourceItems:
+ (
+ {
+ WoodenLog: 110
+ GoldenApple: 3
+ FluoPowder: 20
+ GemPowder: 7
+ },
+ )
+ CreateItems:
+ (
+ {
+ PileOfAsh: 1
+ RawLog: 5
+ },
+ {
+ PileOfAsh: 5
+ RawLog: 3
+ },
+ {
+ PileOfAsh: 4
+ },
+ )
+ Priority: 50
+},
+/****************************************************************************/
)