summaryrefslogtreecommitdiff
path: root/db/craft_db.conf
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-03-13 16:49:01 -0300
committerJesusaves <cpntb1@ymail.com>2019-03-13 16:49:01 -0300
commitbd8c1bf6d2b5112e63a078507e351baed7a977eb (patch)
tree022936944667872c1d79cc82fe28a7fb659bde20 /db/craft_db.conf
parent247e86cb0fd30b01b4862326e9d0964bfe48d9b1 (diff)
downloadserverdata-bd8c1bf6d2b5112e63a078507e351baed7a977eb.tar.gz
serverdata-bd8c1bf6d2b5112e63a078507e351baed7a977eb.tar.bz2
serverdata-bd8c1bf6d2b5112e63a078507e351baed7a977eb.tar.xz
serverdata-bd8c1bf6d2b5112e63a078507e351baed7a977eb.zip
Add a couple weapon craft prototype... Must have a [Knife] equipped.
It have similar cost to Nicholas etc., but needs more coal and gives Pile of Ash.
Diffstat (limited to 'db/craft_db.conf')
-rw-r--r--db/craft_db.conf54
1 files changed, 54 insertions, 0 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf
index a3828b404..0896d53ae 100644
--- a/db/craft_db.conf
+++ b/db/craft_db.conf
@@ -182,6 +182,60 @@ craft_db: (
// Crafting System (ID 41~80, Flag 16)
//////////////////////////////////////////////////////////////////////////////
+// Output PileOfAsh
+// Require 1x EverburnPowder to lit (maybe Sulphur?)
+// Require BentNeddle to costure (leather)
+{
+ Id: 41
+ Name: "CraftWoodenSword"
+ Flag: 16
+ SourceItems:
+ (
+ {
+ WoodenLog: 25
+ RawLog: 5
+ },
+ )
+ RequiredEquips: {
+ Knife: true
+ }
+ CreateItems:
+ (
+ {
+ WoodenSword: 1
+ },
+ {
+ WoodenSword: 1
+ RawLog: 1
+ },
+ )
+ Priority: 10
+},
+/****************************************************************************/
+{
+ Id: 42
+ Name: "CraftBugSlayer"
+ Flag: 16
+ SourceItems:
+ (
+ {
+ IronIngot: 8
+ Coal: 15
+ EverburnPowder: 1
+ },
+ )
+ RequiredEquips: {
+ Knife: true
+ }
+ CreateItems:
+ (
+ {
+ BugSlayer: 1
+ PileOfAsh: 1
+ },
+ )
+ Priority: 10
+},
/****************************************************************************/
)