diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-13 16:49:01 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-13 16:49:01 -0300 |
commit | bd8c1bf6d2b5112e63a078507e351baed7a977eb (patch) | |
tree | 022936944667872c1d79cc82fe28a7fb659bde20 | |
parent | 247e86cb0fd30b01b4862326e9d0964bfe48d9b1 (diff) | |
download | serverdata-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.
-rw-r--r-- | db/craft_db.conf | 54 |
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 +}, /****************************************************************************/ ) |