1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
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~40, 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
},
/****************************************************************************/
// Crafting System (ID 41~80, Flag 16)
//////////////////////////////////////////////////////////////////////////////
/****************************************************************************/
)
|