summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
+},
/****************************************************************************/
)