craft_db: (
// craft Database
/******************************************************************************
************* Entry structure ************************************************
******************************************************************************
{
Id: craft id [int]
Name: craft name [string]
Priority: craft priority [int]
Price: craft price [int]
Lv: base level [int]
Flag: flag from craft object [string/int]
ReturnCode: return code for scripts [int]
SourceItems: ({ craft inventory source (will be deleted after crafting)
Name: amount [int]
...
},
...
)
CreateItems: ( // items what will be creted in crafting
{
Name: amount
...
},
{
Name:
{
Amount: amount
Cards: ["card0", ...]
},
},
...
)
DeleteItems: { additional items what will be deleted from inventory
Name: amount [int]
...
}
RequiredItems: { required additional items. will be unchanged
Name: amount [int]
...
}
RequiredSkills: { required skills and levels
Name: level [int]
...
}
RequiredQuests: {
Name: level [int]
...
}
RequiredEquips: {
Name: true
}
},
******************************************************************************/
// Cooking System (ID 0~20, Flag 4)
//////////////////////////////////////////////////////////////////////////////
/****************************************************************************/
// Alchemy System (ID 21~50, Flag 8)
//////////////////////////////////////////////////////////////////////////////
{
Id: 21
Name: "CraftHastePotion"
Flag: 8
SourceItems:
(
{
Plushroom: 15
},
)
CreateItems:
(
{
HastePotion: 3
},
{
HastePotion: 3
},
{
HastePotion: 2
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 22
Name: "CraftStrengthPotion"
Flag: 8
SourceItems:
(
{
Chagashroom: 15
},
)
CreateItems:
(
{
StrengthPotion: 3
},
{
StrengthPotion: 3
},
{
StrengthPotion: 2
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 23
Name: "CraftResetPotion"
Flag: 8
SourceItems:
(
{
ManaPiouFeathers: 90
Curshroom: 10
},
)
CreateItems:
(
{
StatusResetPotion: 3
},
{
StatusResetPotion: 2
},
{
StatusResetPotion: 2
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 24
Name: "CraftSpeedPotion"
Flag: 8
SourceItems:
(
{
GemPowder: 1
FluoPowder: 5
},
)
CreateItems:
(
{
MoveSpeedPotion: 6
},
{
MoveSpeedPotion: 4
},
{
MoveSpeedPotion: 3
},
{
MoveSpeedPotion: 5
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 25
Name: "CraftPrecisionPotion"
Flag: 8
SourceItems:
(
{
Piberries: 3
MountainSnakeEgg: 1
},
)
CreateItems:
(
{
PrecisionPotion: 2
},
{
PrecisionPotion: 2
},
{
PrecisionPotion: 1
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 26
Name: "CraftDodgePotion"
Flag: 8
SourceItems:
(
{
Piberries: 3
SnakeEgg: 1
},
)
CreateItems:
(
{
DodgePotion: 2
},
{
DodgePotion: 1
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 27
Name: "CraftLukPotionA"
Flag: 8
SourceItems:
(
{
EmeraldPowder: 1
HerbalTea: 1
},
)
CreateItems:
(
{
LukPotionA: 2
},
{
LukPotionA: 3
},
{
LukPotionA: 2
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 28
Name: "CraftLukPotionB"
Flag: 8
SourceItems:
(
{
Emerald: 1
HerbalTea: 2
},
)
CreateItems:
(
{
LukPotionB: 3
},
{
LukPotionB: 2
},
{
LukPotionB: 2
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 29
Name: "CraftLukPotionC"
Flag: 8
SourceItems:
(
{
PolishedEmerald: 1
HerbalTea: 3
},
)
CreateItems:
(
{
LukPotionC: 3
},
{
LukPotionC: 2
},
{
LukPotionC: 2
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 30
Name: "CraftDexPotionA"
Flag: 8
SourceItems:
(
{
AmethystPowder: 1
HerbalTea: 1
},
)
CreateItems:
(
{
DexPotionA: 3
},
{
DexPotionA: 2
},
{
DexPotionA: 2
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 31
Name: "CraftDexPotionB"
Flag: 8
SourceItems:
(
{
Amethyst: 1
HerbalTea: 2
},
)
CreateItems:
(
{
DexPotionB: 2
},
{
DexPotionB: 3
},
{
DexPotionB: 2
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 32
Name: "CraftDexPotionC"
Flag: 8
SourceItems:
(
{
PolishedAmethyst: 1
HerbalTea: 3
},
)
CreateItems:
(
{
DexPotionC: 3
},
{
DexPotionC: 2
},
{
DexPotionC: 2
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 33
Name: "CraftIntPotionA"
Flag: 8
SourceItems:
(
{
SapphirePowder: 1
HerbalTea: 1
},
)
CreateItems:
(
{
IntPotionA: 2
},
{
IntPotionA: 3
},
{
IntPotionA: 2
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 34
Name: "CraftIntPotionB"
Flag: 8
SourceItems:
(
{
Sapphire: 1
HerbalTea: 2
},
)
CreateItems:
(
{
IntPotionB: 3
},
{
IntPotionB: 2
},
{
IntPotionB: 2
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 35
Name: "CraftIntPotionC"
Flag: 8
SourceItems:
(
{
PolishedSapphire: 1
HerbalTea: 3
},
)
CreateItems:
(
{
IntPotionC: 2
},
{
IntPotionC: 3
},
{
IntPotionC: 2
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 36
Name: "CraftVitPotionA"
Flag: 8
SourceItems:
(
{
DiamondPowder: 1
HerbalTea: 1
},
)
CreateItems:
(
{
VitPotionA: 3
},
{
VitPotionA: 2
},
{
VitPotionA: 2
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 37
Name: "CraftVitPotionB"
Flag: 8
SourceItems:
(
{
Diamond: 1
HerbalTea: 2
},
)
CreateItems:
(
{
VitPotionB: 3
},
{
VitPotionB: 2
},
{
VitPotionB: 2
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 38
Name: "CraftVitPotionC"
Flag: 8
SourceItems:
(
{
PolishedDiamond: 1
HerbalTea: 3
},
)
CreateItems:
(
{
VitPotionC: 3
},
{
VitPotionC: 2
},
{
VitPotionC: 2
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 39
Name: "CraftAgiPotionA"
Flag: 8
SourceItems:
(
{
TopazPowder: 1
HerbalTea: 1
},
)
CreateItems:
(
{
AgiPotionA: 3
},
{
AgiPotionA: 2
},
{
AgiPotionA: 2
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 40
Name: "CraftAgiPotionB"
Flag: 8
SourceItems:
(
{
Topaz: 1
HerbalTea: 2
},
)
CreateItems:
(
{
AgiPotionB: 3
},
{
AgiPotionB: 2
},
{
AgiPotionB: 2
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 41
Name: "CraftAgiPotionC"
Flag: 8
SourceItems:
(
{
PolishedTopaz: 1
HerbalTea: 3
},
)
CreateItems:
(
{
AgiPotionC: 3
},
{
AgiPotionC: 2
},
{
AgiPotionC: 2
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 42
Name: "CraftSacredLifePot"
Flag: 8
SourceItems:
(
{
GoldenApple: 1
ElixirOfLife: 1
},
)
CreateItems:
(
{
SacredLifePotion: 3
},
{
SacredLifePotion: 3
},
{
SacredLifePotion: 5
},
)
Priority: 10
},
/****************************************************************************/
// CelestiaTea takes about 1 hour the unit to get ingame
{
Id: 43
Name: "CraftSacredManaPot"
Flag: 8
SourceItems:
(
{
GoldenApple: 1
CelestiaTea: 15
},
)
CreateItems:
(
{
SacredManaPotion: 3
},
{
SacredManaPotion: 3
},
{
SacredManaPotion: 5
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 44
Name: "CraftPiberriesInfusion"
Flag: 8
SourceItems:
(
{
Piberries: 5
Curshroom: 1
},
)
CreateItems:
(
{
PiberriesInfusion: 1
},
{
PiberriesInfusion: 1
},
{
PiberriesInfusion: 2
},
)
Priority: 10
},
/****************************************************************************/
// Crafting System (ID 51~100, Flag 16)
// 51~71 → Swords
// 72~76 → Bows (ok)
// 77~81 → Wands (ok)
// 82 → Reserved for guns (ok)
// 83~87 → Gloves
// 88~91 → Stronger Shields
// 92 → Reserved for gloves
// 93~97 → Shields
// 98, 99, 100 → Reserved for guns (ok)
// 101, 102 → Misc
// 103~114 → Helmets
// 115~121 → Terranite
// 122~124 → Special
// 125~132 → Chest Armors
// 132~140 → Pants
// 141+ → WIP
//////////////////////////////////////////////////////////////////////////////
// Output PileOfAsh
// Require 1x EverburnPowder to lit (maybe Sulphur?)
// Require BentNeddle to costure (leather)
// We rely on hardcoded values here, BEWARE
{
Id: 51
Name: "CraftWoodenSword"
Flag: 16
ReturnCode: 3503
//WoodenSword
SourceItems:
(
{
WoodenLog: 20
RawLog: 5
SharpKnife: 1
},
)
CreateItems:
(
{
RawLog: 1
},
{
RustyKnife: 1
RawLog: 1
},
{
RustyKnife: 1
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 52
Name: "CraftBugSlayer"
Flag: 16
ReturnCode: 3501
//BugSlayer
SourceItems:
(
{
IronIngot: 8
Coal: 12
EverburnPowder: 1
},
)
CreateItems:
(
{
PileOfAsh: 1
},
{
PileOfAsh: 2
},
)
Priority: 11
},
/****************************************************************************/
{
Id: 53
Name: "CraftShortGladius"
Flag: 16
ReturnCode: 3502
//ShortGladius
SourceItems:
(
{
IronIngot: 12
Coal: 16
EverburnPowder: 1
},
)
CreateItems:
(
{
PileOfAsh: 1
},
{
PileOfAsh: 2
},
{
PileOfAsh: 3
},
)
Priority: 20
},
/****************************************************************************/
{
Id: 54
Name: "CraftBacksword"
Flag: 16
ReturnCode: 3504
//Backsword
SourceItems:
(
{
IronIngot: 18
TinIngot: 3
Coal: 20
EverburnPowder: 1
},
)
CreateItems:
(
{
PileOfAsh: 1
},
{
TinIngot: 1
PileOfAsh: 1
},
{
PileOfAsh: 2
},
{
PileOfAsh: 3
},
)
Priority: 30
},
/****************************************************************************/
{
Id: 55
Name: "CraftShortsword"
Flag: 16
ReturnCode: 3527
//ShortSword
SourceItems:
(
{
IronIngot: 24
TinIngot: 5
Coal: 24
EverburnPowder: 1
},
)
CreateItems:
(
{
PileOfAsh: 1
},
{
TinIngot: 1
PileOfAsh: 1
},
{
PileOfAsh: 2
},
{
PileOfAsh: 3
},
)
Priority: 40
},
/****************************************************************************/
{
Id: 56
Name: "CraftKitana"
Flag: 16
ReturnCode: 3531
//Kitana
SourceItems:
(
{
IronIngot: 30
TinIngot: 9
Coal: 30
EverburnPowder: 1
},
)
CreateItems:
(
{
PileOfAsh: 1
},
{
IronIngot: 1
PileOfAsh: 1
},
{
PileOfAsh: 2
},
{
PileOfAsh: 3
},
)
Priority: 50
},
/****************************************************************************/
{
Id: 57
Name: "CraftBoneKnife"
Flag: 16
ReturnCode: 3508
//BoneKnife
SourceItems:
(
{
IronIngot: 36
Bone: 90
Coal: 30
EverburnPowder: 1
},
)
CreateItems:
(
{
PileOfAsh: 1
},
{
Bone: 1
PileOfAsh: 1
},
{
PileOfAsh: 2
},
{
PileOfAsh: 3
},
)
Priority: 51
},
/****************************************************************************/
{
Id: 58
Name: "CraftLongSword"
Flag: 16
ReturnCode: 3516
//LongSword
SourceItems:
(
{
IronIngot: 42
PlatinumIngot: 1
IridiumIngot: 1
Coal: 32
},
)
CreateItems:
(
{
PileOfAsh: 1
},
{
IronIngot: 1
PileOfAsh: 1
},
{
PileOfAsh: 2
},
{
PileOfAsh: 3
},
)
Priority: 60
},
/****************************************************************************/
{
Id: 59
Name: "CraftRockKnife"
Flag: 16
ReturnCode: 3509
//RockKnife
SourceItems:
(
{
TerraniteOre: 50
PlatinumIngot: 2
IridiumIngot: 3
Coal: 40
},
)
CreateItems:
(
{
PileOfAsh: 1
},
{
TerraniteOre: 1
PileOfAsh: 1
},
{
PileOfAsh: 2
},
{
PileOfAsh: 3
},
)
Priority: 70
},
/****************************************************************************/
{
Id: 60
Name: "CraftDivineSword"
Flag: 16
ReturnCode: 3511
//DivineSword
SourceItems:
(
{
DivineApple: 2
PlatinumIngot: 3
IridiumIngot: 5
Coal: 60
},
)
CreateItems:
(
{
PileOfAsh: 1
},
{
PileOfAsh: 2
},
{
PileOfAsh: 3
},
)
Priority: 80
},
/****************************************************************************/
// 61~71 two hand swords I guess
{
Id: 61
Name: "CraftMiereCleaver"
Flag: 16
ReturnCode: 3523
//MiereCleaver
SourceItems:
(
{
SilverIngot: 12
TinIngot: 1
Coal: 8
EverburnPowder: 1
},
)
CreateItems:
(
{
PileOfAsh: 1
},
{
TinIngot: 1
PileOfAsh: 1
},
{
PileOfAsh: 2
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 62
Name: "CraftBroadsword"
Flag: 16
ReturnCode: 3524
//Broadsword
SourceItems:
(
{
SilverIngot: 27
TinIngot: 1
Coal: 20
EverburnPowder: 1
},
)
CreateItems:
(
{
PileOfAsh: 2
},
{
TinIngot: 1
PileOfAsh: 1
},
{
PileOfAsh: 3
},
)
Priority: 20
},
/****************************************************************************/
// ID 63 Priority 30 reserved for Kanabo or successor
/****************************************************************************/
// ID 64 Priority 40 reserved for Zambacutou or successor
/****************************************************************************/
{
Id: 65
Name: "CraftHalberd"
Flag: 16
ReturnCode: 3534
//Halberd
SourceItems:
(
{
SilverIngot: 45
TinIngot: 5
Coal: 34
EverburnPowder: 1
},
)
CreateItems:
(
{
TinIngot: 1
PileOfAsh: 2
},
{
TinIngot: 2
PileOfAsh: 1
},
{
PileOfAsh: 3
},
)
Priority: 50
},
/****************************************************************************/
{
Id: 66
Name: "CraftImmortalSword"
Flag: 16
ReturnCode: 3532
//ImmortalSword
SourceItems:
(
{
SilverIngot: 40
PlatinumIngot: 2
IridiumIngot: 3
BlueManaPearl: 1
},
)
CreateItems:
(
{
SilverIngot: 1
PileOfAsh: 2
},
{
SilverIngot: 2
PileOfAsh: 1
},
{
PileOfAsh: 3
},
)
Priority: 51
},
/****************************************************************************/
// 51~71 → Swords
// 72~76 → Bows
// 77~81 → Wands
// 82 → Reserved for guns
// 83~87 → Gloves
// 88~91 → Stronger Shields
// 92 → Reserved for gloves
// 93~97 → Shields
// 98, 99, 100 → Reserved for guns
// 101, 102 → Misc
// 103~114 → Helmets
// 115~121 → Terranite
// 122~124 → Special
// 125~132 → Chest Armors
// 132~140 → Pants
// 141+ → WIP
//////////////////////////////////////////////////////////////////////////////
{
Id: 72
Name: "CraftShortBow"
Flag: 16
ReturnCode: 6002
// ShortBow
SourceItems:
(
{
WoodenLog: 18
Root: 12
LeatherPatch: 3
CommonCarp: 1
},
)
CreateItems:
(
{
Arrow: 10
},
{
TrainingArrow: 20
},
{
TolchiArrow: 30
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 73
Name: "CraftForestBow"
Flag: 16
ReturnCode: 6003
// ForestBow
SourceItems:
(
{
WoodenLog: 24
Root: 16
LeatherPatch: 5
CommonCarp: 3
},
)
CreateItems:
(
{
IronArrow: 10
},
{
Arrow: 20
},
{
TrainingArrow: 30
},
)
Priority: 20
},
/****************************************************************************/
{
Id: 74
Name: "CraftElficBow"
Flag: 16
ReturnCode: 6004
// ElficBow
SourceItems:
(
{
WoodenLog: 33
Root: 22
IronIngot: 1
CommonCarp: 4
},
)
CreateItems:
(
{
CursedArrow: 10
},
{
IronArrow: 20
},
{
Arrow: 30
},
)
Priority: 30
},
/****************************************************************************/
{
Id: 75
Name: "CraftChampionshipBow"
Flag: 16
ReturnCode: 6005
// ChampionshipBow
SourceItems:
(
{
WoodenLog: 48
Root: 32
GoldIngot: 1
CommonCarp: 5
},
)
CreateItems:
(
{
ThornArrow: 10
},
{
CursedArrow: 20
},
{
IronArrow: 30
},
)
Priority: 40
},
/****************************************************************************/
{
Id: 76
Name: "CraftBansheeBow"
Flag: 16
ReturnCode: 6006
// BansheeBow
SourceItems:
(
{
WoodenLog: 70
Root: 45
DarkCrystal: 5
CommonCarp: 5
},
)
CreateItems:
(
{
BoneArrow: 4
},
{
BoneArrow: 8
},
{
BoneArrow: 12
},
)
Priority: 50
},
/****************************************************************************/
// 51~71 → Swords
// 72~76 → Bows
// 77~81 → Wands
// 82 → Reserved for guns
// 83~87 → Gloves
// 88~91 → Stronger Shields
// 92 → Reserved for gloves
// 93~97 → Shields
// 98, 99, 100 → Reserved for guns
// 101, 102 → Misc
// 103~114 → Helmets
// 115~121 → Terranite
// 122~124 → Special
// 125~132 → Chest Armors
// 132~140 → Pants
// 141+ → WIP
//////////////////////////////////////////////////////////////////////////////
{
Id: 77
Name: "CraftTrainingWand"
Flag: 16
ReturnCode: 7000
//TrainingWand
SourceItems:
(
{
WoodenLog: 20
ManaPiouFeathers: 30
FluoPowder: 5
GemPowder: 1
},
)
CreateItems:
(
{
RawLog: 1
},
{
PileOfAsh: 1
RawLog: 1
},
{
PileOfAsh: 1
},
{
PileOfAsh: 1
},
{
Quill: 1
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 78
Name: "CraftNoviceWand"
Flag: 16
ReturnCode: 7001
//NoviceWand
SourceItems:
(
{
WoodenLog: 40
ManaPiouFeathers: 60
FluoPowder: 8
GemPowder: 1
},
)
CreateItems:
(
{
RawLog: 2
},
{
PileOfAsh: 2
RawLog: 2
},
{
PileOfAsh: 2
},
{
Quill: 1
},
)
Priority: 20
},
/****************************************************************************/
{
Id: 79
Name: "CraftApprenticeWand"
Flag: 16
ReturnCode: 7002
//ApprenticeWand
SourceItems:
(
{
WoodenLog: 60
ManaPiouFeathers: 90
FluoPowder: 12
GemPowder: 1
},
)
CreateItems:
(
{
RawLog: 3
},
{
PileOfAsh: 3
RawLog: 2
},
{
PileOfAsh: 3
},
{
Quill: 1
},
)
Priority: 30
},
/****************************************************************************/
{
Id: 80
Name: "CraftLeaderWand"
Flag: 16
ReturnCode: 7003
//LeaderWand
SourceItems:
(
{
WoodenLog: 100
ManaPiouFeathers: 120
FluoPowder: 15
GemPowder: 1
},
)
CreateItems:
(
{
PileOfAsh: 1
RawLog: 5
},
{
PileOfAsh: 5
RawLog: 3
},
{
PileOfAsh: 4
},
{
Quill: 1
PileOfAsh: 1
},
)
Priority: 40
},
/****************************************************************************/
{
Id: 81
Name: "CraftLegendaryWand"
Flag: 16
ReturnCode: 7004
//LegendaryWand
SourceItems:
(
{
WoodenLog: 110
GoldenApple: 3
FluoPowder: 20
GemPowder: 1
},
)
CreateItems:
(
{
PileOfAsh: 1
RawLog: 5
},
{
PileOfAsh: 5
RawLog: 3
},
{
PileOfAsh: 4
},
{
Quill: 1
PileOfAsh: 2
},
)
Priority: 50
},
/****************************************************************************/
// 51~71 → Swords
// 72~76 → Bows
// 77~81 → Wands
// 82 → Reserved for guns
// 83~87 → Gloves
// 88~91 → Stronger Shields
// 92 → Reserved for gloves
// 93~97 → Shields
// 98, 99, 100 → Reserved for guns
// 101, 102 → Misc
// 103~114 → Helmets
// 115~121 → Terranite
// 122~124 → Special
// 125~132 → Chest Armors
// 132~140 → Pants
// 141+ → WIP
//////////////////////////////////////////////////////////////////////////////
{
Id: 82
Name: "CraftPynRevolver"
Flag: 16
ReturnCode: 6040
//PynRevolver
SourceItems:
(
{
LeadIngot: 4
TitaniumIngot: 5
Coal: 11
EverburnPowder: 1
},
)
CreateItems:
(
{
PileOfAsh: 1
},
{
PileOfAsh: 1
LeadOre: 1
},
{
PileOfAsh: 2
},
)
Priority: 10
},
/****************************************************************************/
// We don't care for order here. You noticed.
{
Id: 98
Name: "CraftPynRifle"
Flag: 16
ReturnCode: 6010
//PynRifle
SourceItems:
(
{
LeadIngot: 6
TitaniumIngot: 7
Coal: 14
EverburnPowder: 1
},
)
CreateItems:
(
{
PileOfAsh: 1
},
{
PileOfAsh: 1
LeadOre: 1
},
{
PileOfAsh: 2
},
)
Priority: 20
},
/****************************************************************************/
{
Id: 99
Name: "CraftPynGatling"
Flag: 16
ReturnCode: 6020
//PynGatling
SourceItems:
(
{
LeadIngot: 7
TitaniumIngot: 7
Coal: 14
EverburnPowder: 1
},
)
CreateItems:
(
{
PileOfAsh: 1
},
{
PileOfAsh: 1
LeadOre: 1
},
{
PileOfAsh: 2
},
)
Priority: 30
},
/****************************************************************************/
{
Id: 100
Name: "CraftPynShotgun"
Flag: 16
ReturnCode: 6030
//PynShotgun
SourceItems:
(
{
LeadIngot: 9
TitaniumIngot: 10
Coal: 16
EverburnPowder: 1
},
)
CreateItems:
(
{
PileOfAsh: 2
},
{
PileOfAsh: 1
LeadOre: 1
},
{
PileOfAsh: 3
},
)
Priority: 40
},
/****************************************************************************/
// 51~71 → Swords
// 72~76 → Bows
// 77~81 → Wands
// 82 → Reserved for guns
// 83~87 → Gloves
// 88~91 → Stronger Shields
// 92 → Reserved for gloves
// 93~97 → Shields
// 98, 99, 100 → Reserved for guns
// 101, 102 → Misc
// 103~114 → Helmets
// 115~121 → Terranite
// 122~124 → Special
// 125~132 → Chest Armors
// 132~140 → Pants
// 141+ → WIP
//////////////////////////////////////////////////////////////////////////////
{
Id: 93
Name: "CraftWoodenShield"
Flag: 16
ReturnCode: 2710
//WoodenShield
SourceItems:
(
{
WoodenLog: 40
LeatherPatch: 2
SharpKnife: 1
},
)
CreateItems:
(
{
RawLog: 1
},
{
RustyKnife: 1
RawLog: 1
},
{
RustyKnife: 1
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 94
Name: "CraftBladeShield"
Flag: 16
ReturnCode: 2702
//BladeShield
SourceItems:
(
{
IronIngot: 14
TinIngot: 4
Coal: 5
EverburnPowder: 1
},
)
CreateItems:
(
{
TinIngot: 1
},
{
TinIngot: 1
IronIngot: 1
},
{
IronIngot: 1
},
{
PileOfAsh: 1
},
)
Priority: 20
},
/****************************************************************************/
{
Id: 95
Name: "CraftBraknarShield"
Flag: 16
ReturnCode: 2709
//BraknarShield
SourceItems:
(
{
CopperIngot: 18
TinIngot: 2
Coal: 5
EverburnPowder: 1
},
)
CreateItems:
(
{
CopperIngot: 1
},
{
CopperIngot: 1
TinIngot: 1
},
{
CopperIngot: 1
PileOfAsh: 1
},
{
PileOfAsh: 1
},
)
Priority: 30
},
/****************************************************************************/
{
Id: 96
Name: "CraftBritShield"
Flag: 16
ReturnCode: 2704
//BritShield
SourceItems:
(
{
CopperIngot: 20
TitaniumIngot: 3
Coal: 7
EverburnPowder: 1
},
)
CreateItems:
(
{
CopperIngot: 1
},
{
CopperIngot: 1
PileOfAsh: 1
},
{
PileOfAsh: 1
},
)
Priority: 40
},
/****************************************************************************/
{
Id: 97
Name: "CraftBromenalShield"
Flag: 16
ReturnCode: 2706
//BromenalShield
SourceItems:
(
{
CopperIngot: 24
TitaniumIngot: 4
Coal: 10
EverburnPowder: 1
},
)
CreateItems:
(
{
CopperIngot: 1
},
{
CopperIngot: 1
PileOfAsh: 1
},
{
PileOfAsh: 1
},
)
Priority: 50
},
/****************************************************************************/
{
Id: 88
Name: "CraftBlueKnightShield"
Flag: 16
ReturnCode: 2703
//BlueKnightShield
SourceItems:
(
{
CopperIngot: 30
TitaniumIngot: 5
Coal: 15
EverburnPowder: 1
},
)
CreateItems:
(
{
CopperIngot: 1
},
{
CopperIngot: 2
},
{
CopperIngot: 1
PileOfAsh: 1
},
{
PileOfAsh: 1
},
)
Priority: 60
},
/****************************************************************************/
{
Id: 89
Name: "CraftSteelShield"
Flag: 16
ReturnCode: 2711
//SteelShield
SourceItems:
(
{
TinIngot: 20
TitaniumIngot: 7
Coal: 20
EverburnPowder: 1
},
)
CreateItems:
(
{
TinIngot: 1
},
{
TitaniumIngot: 1
TinIngot: 1
},
{
TinIngot: 1
PileOfAsh: 1
},
{
PileOfAsh: 1
},
)
Priority: 70
},
/****************************************************************************/
{
Id: 90
Name: "CraftDragonShield"
Flag: 16
ReturnCode: 2712
//DragonShield
SourceItems:
(
{
DragonScales: 80
TitaniumIngot: 10
Coal: 30
EverburnPowder: 1
},
)
CreateItems:
(
{
DragonScales: 1
},
{
DragonScales: 1
TitaniumIngot: 1
},
{
DragonScales: 1
PileOfAsh: 1
},
{
PileOfAsh: 1
},
)
Priority: 80
},
/****************************************************************************/
{
Id: 91
Name: "CraftSaviorShield"
Flag: 16
ReturnCode: 2705
//SaviorShield
SourceItems:
(
{
MylarinDust: 1
TitaniumIngot: 15
Coal: 40
EverburnPowder: 1
},
)
CreateItems:
(
{
TitaniumIngot: 1
},
{
TitaniumIngot: 1
Coal: 1
},
{
TitaniumIngot: 1
PileOfAsh: 1
},
{
PileOfAsh: 1
},
)
Priority: 90
},
/****************************************************************************/
// 51~71 → Swords
// 72~76 → Bows
// 77~81 → Wands
// 82 → Reserved for guns
// 83~87 → Gloves
// 88~91 → Stronger Shields
// 92 → Reserved for gloves
// 93~97 → Shields
// 98, 99, 100 → Reserved for guns
// 101, 102 → Misc
// 103~114 → Helmets
// 115~121 → Terranite
// 122~124 → Special
// 125~132 → Chest Armors
// 132~140 → Pants
// 141+ → WIP
//////////////////////////////////////////////////////////////////////////////
{
Id: 83
Name: "CraftSilkGloves"
Flag: 16
ReturnCode: 2007
//SilkGloves
SourceItems:
(
{
SilkCocoon: 40
PiouFeathers: 5
WhiteFur: 1
EarthPowder: 1
},
)
CreateItems:
(
{
SilkCocoon: 1
},
{
SilkCocoon: 1
WhiteFur: 1
},
{
WhiteFur: 1
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 84
Name: "CraftLeatherGloves"
Flag: 16
ReturnCode: 2008
//LeatherGloves
SourceItems:
(
{
LeatherPatch: 10
PiouFeathers: 10
WhiteFur: 5
EarthPowder: 1
},
)
CreateItems:
(
{
LeatherPatch: 1
},
{
LeatherPatch: 1
WhiteFur: 1
},
{
WhiteFur: 1
},
)
Priority: 20
},
/****************************************************************************/
{
Id: 85
Name: "CraftBromenalGloves"
Flag: 16
ReturnCode: 2010
//BromenalGloves
SourceItems:
(
{
LeatherPatch: 30
AnimalBones: 3
WhiteFur: 15
EarthPowder: 1
},
)
CreateItems:
(
{
LeatherPatch: 1
},
{
LeatherPatch: 1
WhiteFur: 1
},
{
WhiteFur: 1
},
)
Priority: 30
},
/****************************************************************************/
{
Id: 86
Name: "CraftManaGloves"
Flag: 16
ReturnCode: 2013
//ManaGloves
SourceItems:
(
{
SacredManaPotion: 1
BlueManaPearl: 1
WhiteFur: 45
EarthPowder: 1
},
)
CreateItems:
(
{
WhiteFur: 1
},
{
WhiteFur: 2
},
{
WhiteFur: 1
},
)
Priority: 40
},
/****************************************************************************/
{
Id: 87
Name: "CraftWarlordGloves"
Flag: 16
ReturnCode: 2012
//WarlordGloves
SourceItems:
(
{
IridiumIngot: 1
PlatinumIngot: 1
WhiteFur: 60
EarthPowder: 1
},
)
CreateItems:
(
{
WhiteFur: 1
},
{
WhiteFur: 2
},
{
WhiteFur: 1
},
)
Priority: 50
},
/****************************************************************************/
{
Id: 92
Name: "CraftAssassinGloves"
Flag: 16
ReturnCode: 2015
//AssassinGloves
SourceItems:
(
{
IridiumIngot: 1
PlatinumIngot: 1
WhiteFur: 150
EarthPowder: 1
},
)
CreateItems:
(
{
WhiteFur: 1
},
{
WhiteFur: 2
},
{
WhiteFur: 1
},
)
Priority: 60
},
/****************************************************************************/
// 51~71 → Swords
// 72~76 → Bows
// 77~81 → Wands
// 82 → Reserved for guns
// 83~87 → Gloves
// 88~91 → Stronger Shields
// 92 → Reserved for gloves
// 93~97 → Shields
// 98, 99, 100 → Reserved for guns
// 101, 102 → Misc
// 103~114 → Helmets
// 115~121 → Terranite
// 122~124 → Special
// 125~132 → Chest Armors
// 132~140 → Pants
// 141+ → WIP
//////////////////////////////////////////////////////////////////////////////
{
Id: 101
Name: "CraftGoldenRing"
Flag: 16
ReturnCode: 2501
//GoldenRing
SourceItems:
(
{
GoldPieces: 5
TitaniumIngot: 1
Coal: 8
EverburnPowder: 1
},
)
CreateItems:
(
{
PileOfAsh: 1
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 102
Name: "CraftDagger"
Flag: 16
ReturnCode: 3507
//Dagger
SourceItems:
(
{
IronIngot: 1
Coal: 3
SulfurPowder: 1
},
)
CreateItems:
(
{
PileOfAsh: 1
},
)
Priority: 5
},
/****************************************************************************/
// 51~71 → Swords
// 72~76 → Bows
// 77~81 → Wands
// 82 → Reserved for guns
// 83~87 → Gloves
// 88~91 → Stronger Shields
// 92 → Reserved for gloves
// 93~97 → Shields
// 98, 99, 100 → Reserved for guns
// 101, 102 → Misc
// 103~114 → Helmets
// 115~121 → Terranite
// 122~124 → Special
// 125~132 → Chest Armors
// 132~140 → Pants
// 141+ → WIP
//////////////////////////////////////////////////////////////////////////////
{
Id: 103
Name: "CraftInfantryHelmet"
Flag: 16
ReturnCode: 2911
//InfantryHelmet
SourceItems:
(
{
IronIngot: 3
CopperIngot: 3
Lifestone: 5
EarthPowder: 1
},
)
CreateItems:
(
{
Lifestone: 1
},
{
Lifestone: 2
},
{
Lifestone: 1
},
)
Priority: 10
},
/****************************************************************************/
{
Id: 104
Name: "CraftDesertHelmet"
Flag: 16
ReturnCode: 2916
//DesertHelmet
SourceItems:
(
{
IronIngot: 4
CopperIngot: 4
Lifestone: 7
EarthPowder: 1
},
)
CreateItems:
(
{
Lifestone: 1
},
)
Priority: 20
},
/****************************************************************************/
{
Id: 105
Name: "CraftBromenalHelmet"
Flag: 16
ReturnCode: 2914
//BromenalHelmet
SourceItems:
(
{
CopperIngot: 7
SilverIngot: 2
Lifestone: 8
EarthPowder: 1
},
)
CreateItems:
(
{
Lifestone: 1
},
{
Lifestone: 2
},
{
Lifestone: 1
},
)
Priority: 30
},
/****************************************************************************/
{
Id: 106
Name: "CraftCandleHelmet"
Flag: 16
ReturnCode: 2914
//CandleHelmet
SourceItems:
(
{
EverburnPowder: 2
DesertHelmet: 1
Lifestone: 10
EarthPowder: 1
},
)
CreateItems:
(
{
Lifestone: 1
},
{
Lifestone: 2
},
{
Lifestone: 1
},
)
Priority: 31
},
/****************************************************************************/
{
Id: 107
Name: "CraftCrusadeHelmet"
Flag: 16
ReturnCode: 2909
//CrusadeHelmet
SourceItems:
(
{
SilverIngot: 7
TinIngot: 5
Lifestone: 14
EarthPowder: 1
},
)
CreateItems:
(
{
Lifestone: 1
},
{
Lifestone: 2
},
{
Lifestone: 1
},
)
Priority: 40
},
/****************************************************************************/
{
Id: 108
Name: "CraftWarlordHelmet"
Flag: 16
ReturnCode: 2920
//WarlordHelmet
SourceItems:
(
{
SilverIngot: 7
TitaniumIngot: 2
Lifestone: 20
EarthPowder: 1
},
)
CreateItems:
(
{
Lifestone: 1
},
{
Lifestone: 2
},
{
Lifestone: 1
},
)
Priority: 50
},
/****************************************************************************/
{
Id: 109
Name: "CraftVikingHelmet"
Flag: 16
ReturnCode: 2941
//VikingHelmet
SourceItems:
(
{
IridiumIngot: 1
TitaniumIngot: 5
Lifestone: 27
EarthPowder: 1
},
)
CreateItems:
(
{
Lifestone: 1
},
{
Lifestone: 2
},
{
Lifestone: 1
},
)
Priority: 51
},
/****************************************************************************/
{
Id: 110
Name: "CraftCenturionHelmet"
Flag: 16
ReturnCode: 2942
//CenturionHelmet
SourceItems:
(
{
IridiumIngot: 2
TitaniumIngot: 10
Lifestone: 32
EarthPowder: 1
},
)
CreateItems:
(
{
Lifestone: 1
},
{
Lifestone: 2
},
{
Lifestone: 1
},
)
Priority: 60
},
/****************************************************************************/
{
Id: 111
Name: "CraftBullHelmet"
Flag: 16
ReturnCode: 2906
//BullHelmet
SourceItems:
(
{
IridiumIngot: 3
LeadIngot: 10
Lifestone: 36
EarthPowder: 1
},
)
CreateItems:
(
{
Lifestone: 1
},
{
Lifestone: 2
},
{
Lifestone: 1
},
)
Priority: 70
},
/****************************************************************************/
{
Id: 112
Name: "CraftDarkHelm"
Flag: 16
ReturnCode: 2907
//DarkHelm
SourceItems:
(
{
IridiumIngot: 3
LeadIngot: 12
Lifestone: 40
EarthPowder: 1
},
)
CreateItems:
(
{
Lifestone: 1
},
{
Lifestone: 2
},
{
Lifestone: 1
},
)
Priority: 71
},
/****************************************************************************/
{
Id: 113
Name: "CraftDarkKnightHelmet"
Flag: 16
ReturnCode: 2927
//DarkKnightHelmet
SourceItems:
(
{
IridiumIngot: 5
PlatinumIngot: 3
Lifestone: 50
EarthPowder: 1
},
)
CreateItems:
(
{
Lifestone: 1
},
{
Lifestone: 2
},
{
Lifestone: 1
},
)
Priority: 80
},
/****************************************************************************/
{
Id: 114
Name: "CraftSamuraiHelmet"
Flag: 16
ReturnCode: 2929
//SamuraiHelmet
SourceItems:
(
{
IridiumIngot: 3
PlatinumIngot: 5
Lifestone: 50
EarthPowder: 1
},
)
CreateItems:
(
{
Lifestone: 1
},
{
Lifestone: 2
},
{
Lifestone: 1
},
)
Priority: 81
},
/****************************************************************************/
// 51~71 → Swords
// 72~76 → Bows
// 77~81 → Wands
// 82 → Reserved for guns
// 83~87 → Gloves
// 88~91 → Stronger Shields
// 92 → Reserved for gloves
// 93~97 → Shields
// 98, 99, 100 → Reserved for guns
// 101, 102 → Misc
// 103~114 → Helmets
// 115~121 → Terranite
// 122~124 → Special
// 125~132 → Chest Armors
// 132~140 → Pants
// 141+ → WIP
//////////////////////////////////////////////////////////////////////////////
{
Id: 115
Name: "CraftTerraniteHelmet"
Flag: 16
ReturnCode: 3020
//TerraniteHelmet
SourceItems:
(
{
TerraniteIngot: 3
Coal: 30
Lifestone: 32
EarthPowder: 1
},
)
CreateItems:
(
{
Lifestone: 1
},
{
Lifestone: 2
},
{
Lifestone: 1
},
)
Priority: 70
},
/****************************************************************************/
{
Id: 116
Name: "CraftTerraniteArmor"
Flag: 16
ReturnCode: 1311
//TerraniteArmor
SourceItems:
(
{
TerraniteIngot: 4
Coal: 45
IronPowder: 32
EarthPowder: 1
},
)
CreateItems:
(
{
IronPowder: 1
},
{
IronPowder: 2
},
{
IronPowder: 1
},
)
Priority: 71
},
/****************************************************************************/
{
Id: 117
Name: "CraftTerranitePants"
Flag: 16
ReturnCode: 2210
//TerranitePants
SourceItems:
(
{
TerraniteIngot: 2
Coal: 15
LeatherPatch: 32
EarthPowder: 1
},
)
CreateItems:
(
{
LeatherPatch: 1
},
{
LeatherPatch: 2
},
{
LeatherPatch: 1
},
)
Priority: 72
},
/****************************************************************************/
// 51~71 → Swords
// 72~76 → Bows
// 77~81 → Wands
// 82 → Reserved for guns
// 83~87 → Gloves
// 88~91 → Stronger Shields
// 92 → Reserved for gloves
// 93~97 → Shields
// 98, 99, 100 → Reserved for guns
// 101, 102 → Misc
// 103~114 → Helmets
// 115~121 → Terranite
// 122~124 → Special
// 125~132 → Chest Armors
// 132~140 → Pants
// 141+ → WIP
//////////////////////////////////////////////////////////////////////////////
{
Id: 122
Name: "CraftSkyPiercer"
Flag: 16
ReturnCode: 7421
//Skypiercer
SourceItems:
(
{
SunnyCrystal: 1
PlatinumIngot: 5
IridiumIngot: 20
EverburnPowder: 10
},
)
CreateItems:
(
{
MylarinDust: 1
},
)
Priority: 99
},
/****************************************************************************/
// 51~71 → Swords
// 72~76 → Bows
// 77~81 → Wands
// 82 → Reserved for guns
// 83~87 → Gloves
// 88~91 → Stronger Shields
// 92 → Reserved for gloves
// 93~97 → Shields
// 98, 99, 100 → Reserved for guns
// 101, 102 → Misc
// 103~114 → Helmets
// 115~121 → Terranite
// 122~124 → Special
// 125~132 → Chest Armors
// 132~143 → Pants
// 144+ → WIP
//////////////////////////////////////////////////////////////////////////////
{
Id: 125
Name: "CraftLeatherShirt"
Flag: 16
ReturnCode: 1314
//LeatherShirt
SourceItems:
(
{
LeatherPatch: 35
IronIngot: 2
IronPowder: 8
EarthPowder: 1
},
)
CreateItems:
(
{
IronPowder: 1
},
{
IronPowder: 2
},
{
IronPowder: 1
},
)
Priority: 20
},
/****************************************************************************/
{
Id: 126
Name: "CraftLieutenantArmor"
Flag: 16
ReturnCode: 1304
//LieutenantArmor
SourceItems:
(
{
CopperIngot: 4
IronIngot: 4
IronPowder: 12
EarthPowder: 1
},
)
CreateItems:
(
{
IronPowder: 1
},
{
IronPowder: 2
},
{
IronPowder: 1
},
)
Priority: 30
},
/****************************************************************************/
{
Id: 127
Name: "CraftChainmail"
Flag: 16
ReturnCode: 1310
//Chainmail
SourceItems:
(
{
IronIngot: 10
SilverIngot: 2
IronPowder: 18
EarthPowder: 1
},
)
CreateItems:
(
{
IronPowder: 1
},
{
IronPowder: 2
},
{
IronPowder: 1
},
)
Priority: 50
},
/****************************************************************************/
{
Id: 128
Name: "CraftCopperArmor"
Flag: 16
ReturnCode: 1305
//CopperArmor
SourceItems:
(
{
CopperIngot: 10
IronIngot: 3
IronPowder: 22
EarthPowder: 1
},
)
CreateItems:
(
{
IronPowder: 1
},
{
IronPowder: 2
},
{
IronPowder: 1
},
)
Priority: 51
},
/****************************************************************************/
{
Id: 129
Name: "CraftLightPlatemail"
Flag: 16
ReturnCode: 1312
//LightPlatemail
SourceItems:
(
{
IronIngot: 15
SilverIngot: 5
IronPowder: 24
EarthPowder: 1
},
)
CreateItems:
(
{
IronPowder: 1
},
{
IronPowder: 2
},
{
IronPowder: 1
},
)
Priority: 60
},
/****************************************************************************/
{
Id: 130
Name: "CraftGoldenLightPlate"
Flag: 16
ReturnCode: 1328
//GoldenLightPlatemail
SourceItems:
(
{
GoldIngot: 15
LightPlatemail: 1
IronPowder: 26
EarthPowder: 1
},
)
CreateItems:
(
{
IronPowder: 1
},
{
IronPowder: 2
},
{
IronPowder: 1
},
)
Priority: 61
},
/****************************************************************************/
{
Id: 131
Name: "CraftWarlordPlate"
Flag: 16
ReturnCode: 1306
//WarlordPlate
SourceItems:
(
{
TitaniumIngot: 15
SilverIngot: 5
IronPowder: 28
EarthPowder: 1
},
)
CreateItems:
(
{
IronPowder: 1
},
{
IronPowder: 2
},
{
IronPowder: 1
},
)
Priority: 70
},
/****************************************************************************/
{
Id: 132
Name: "CraftGoldenWarlord"
Flag: 16
ReturnCode: 1329
//GoldenWarlordPlate
SourceItems:
(
{
GoldIngot: 45
WarlordPlate: 1
IronPowder: 30
EarthPowder: 1
},
)
CreateItems:
(
{
IronPowder: 1
},
{
IronPowder: 2
},
{
IronPowder: 1
},
)
Priority: 71
},
/****************************************************************************/
{
Id: 133
Name: "CraftBromenalChest"
Flag: 16
ReturnCode: 1307
//BromenalChest
SourceItems:
(
{
TitaniumIngot: 11
CopperIngot: 5
IronPowder: 28
EarthPowder: 1
},
)
CreateItems:
(
{
IronPowder: 1
},
{
IronPowder: 2
},
{
IronPowder: 1
},
)
Priority: 72
},
/****************************************************************************/
{
Id: 134
Name: "CraftAssassinChest"
Flag: 16
ReturnCode: 1333
//AssassinChest
SourceItems:
(
{
IridiumIngot: 5
CottonCloth: 30
IronPowder: 34
EarthPowder: 1
},
)
CreateItems:
(
{
IronPowder: 1
},
{
IronPowder: 2
},
{
IronPowder: 1
},
)
Priority: 80
},
/****************************************************************************/
// 51~71 → Swords
// 72~76 → Bows
// 77~81 → Wands
// 82 → Reserved for guns
// 83~87 → Gloves
// 88~91 → Stronger Shields
// 92 → Reserved for gloves
// 93~97 → Shields
// 98, 99, 100 → Reserved for guns
// 101, 102 → Misc
// 103~114 → Helmets
// 115~121 → Terranite
// 122~124 → Special
// 125~134 → Chest Armors
// 134~140 → Pants
// 141+ → WIP
//////////////////////////////////////////////////////////////////////////////
{
Id: 135
Name: "CraftJeansShorts"
Flag: 16
ReturnCode: 2212
//JeansShorts
SourceItems:
(
{
CottonCloth: 10
CaveSnakeSkin: 5
LeatherPatch: 10
EarthPowder: 1
},
)
CreateItems:
(
{
LeatherPatch: 1
},
{
LeatherPatch: 2
},
{
LeatherPatch: 1
},
)
Priority: 20
},
/****************************************************************************/
{
Id: 136
Name: "CraftRaidTrousers"
Flag: 16
ReturnCode: 2201
//RaidTrousers
SourceItems:
(
{
CottonCloth: 30
WhiteFur: 25
LeatherPatch: 14
EarthPowder: 1
},
)
CreateItems:
(
{
LeatherPatch: 1
},
{
LeatherPatch: 2
},
{
LeatherPatch: 1
},
)
Priority: 30
},
/****************************************************************************/
{
Id: 137
Name: "CraftLeatherTrousers"
Flag: 16
ReturnCode: 2213
//LeatherTrousers
SourceItems:
(
{
CottonCloth: 30
Coal: 20
LeatherPatch: 19
EarthPowder: 1
},
)
CreateItems:
(
{
LeatherPatch: 1
},
{
LeatherPatch: 2
},
{
LeatherPatch: 1
},
)
Priority: 40
},
/****************************************************************************/
{
Id: 138
Name: "CraftJeansChaps"
Flag: 16
ReturnCode: 2204
//JeansChaps
SourceItems:
(
{
SnakeSkin: 35
CottonCloth: 20
LeatherPatch: 22
EarthPowder: 1
},
)
CreateItems:
(
{
LeatherPatch: 1
},
{
LeatherPatch: 2
},
{
LeatherPatch: 1
},
)
Priority: 50
},
/****************************************************************************/
{
Id: 139
Name: "CraftSilkPants"
Flag: 16
ReturnCode: 2208
//SilkPants
SourceItems:
(
{
SilkCocoon: 150
CottonCloth: 5
LeatherPatch: 24
EarthPowder: 1
},
)
CreateItems:
(
{
LeatherPatch: 1
},
{
LeatherPatch: 2
},
{
LeatherPatch: 1
},
)
Priority: 51
},
/****************************************************************************/
{
Id: 140
Name: "CraftChainmailSkirt"
Flag: 16
ReturnCode: 2211
//ChainmailSkirt
SourceItems:
(
{
IronIngot: 10
SilverIngot: 15
LeatherPatch: 26
EarthPowder: 1
},
)
CreateItems:
(
{
LeatherPatch: 1
},
{
LeatherPatch: 2
},
{
LeatherPatch: 1
},
)
Priority: 60
},
/****************************************************************************/
{
Id: 141
Name: "CraftBromenalPants"
Flag: 16
ReturnCode: 2203
//BromenalPants
SourceItems:
(
{
TitaniumIngot: 5
CopperIngot: 4
LeatherPatch: 28
EarthPowder: 1
},
)
CreateItems:
(
{
LeatherPatch: 1
},
{
LeatherPatch: 2
},
{
LeatherPatch: 1
},
)
Priority: 70
},
/****************************************************************************/
{
Id: 142
Name: "CraftWarlordPants"
Flag: 16
ReturnCode: 2215
//WarlordPants
SourceItems:
(
{
TitaniumIngot: 8
SilverIngot: 10
LeatherPatch: 30
EarthPowder: 1
},
)
CreateItems:
(
{
LeatherPatch: 1
},
{
LeatherPatch: 2
},
{
LeatherPatch: 1
},
)
Priority: 71
},
/****************************************************************************/
{
Id: 143
Name: "CraftAssassinPants"
Flag: 16
ReturnCode: 2202
//AssassinPants
SourceItems:
(
{
IridiumIngot: 3
CottonCloth: 35
LeatherPatch: 34
EarthPowder: 1
},
)
CreateItems:
(
{
LeatherPatch: 1
},
{
LeatherPatch: 2
},
{
LeatherPatch: 1
},
)
Priority: 80
},
/****************************************************************************/
)