summaryrefslogtreecommitdiff
path: root/db/craft_db.conf
blob: a3828b4045c1ddfeed01d0b8f46151d7f095ad86 (plain) (blame)
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
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
},
/****************************************************************************/
{
    Id: 23
    Name: "CraftResetPotion"
    Flag: 8
    SourceItems:
    (
        {
            ManaPiouFeathers: 90
            Curshroom: 10
        },
    )
    CreateItems:
    (
        {
            StatusResetPotion: 1
        },
    )
    Priority: 10
},
/****************************************************************************/
{
    Id: 24
    Name: "CraftSpeedPotion"
    Flag: 8
    SourceItems:
    (
        {
            GemPowder: 1
            FluoPowder: 5
        },
    )
    CreateItems:
    (
        {
            MoveSpeedPotion: 1
        },
    )
    Priority: 10
},
/****************************************************************************/
{
    Id: 25
    Name: "CraftPrecisionPotion"
    Flag: 8
    SourceItems:
    (
        {
            Piberries: 100
            GoldenApple: 1
        },
    )
    CreateItems:
    (
        {
            PrecisionPotion: 82
        },
        {
            PrecisionPotion: 81
        },
        {
            PrecisionPotion: 80
        },
        {
            PrecisionPotion: 79
        },
    )
    Priority: 10
},
/****************************************************************************/

// Crafting System (ID 41~80, Flag 16)
//////////////////////////////////////////////////////////////////////////////
/****************************************************************************/

)