summaryrefslogtreecommitdiff
path: root/npc/craft/options.txt
blob: 0466b7d0537d2b12c312f86457074ce21d3cc524 (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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
// TMW2 Script
// Author:
//  Jesusalva
// Description:
//  Item Option System
// Notes:
//  Awarded for crafters and their own base skill tree system

// Player knowledge structure
// CRAFTSYS[ SKILL_SCOPE ] = SKILL_LV

// Player craft skills selection:
// CRAFTSYS_CURRENT

// Generate() takes the scope and finds out the skills on the group
// It'll fill the following variables:
//      @csys_attr → Available attributes
//      @csys_penalty → Penalty attribute array
//
//      use getarraysize(@csys_attr) to know how many are there.
// Players can active the bonus groups they want to use (in future, TODO)

// Max Level for base: 10
// Max Level for first tier: 5
// Max Level for second tier: 
// Max Level for third tier: 
// Max Level for ultimate tier: 1

// csys_Generate( cr_id{, preserve} )
function	script	csys_Generate	{
    .@gid=getarg(0);
    if (!getarg(1, false)) {
        deletearray(@csys_attr);
        deletearray(@csys_penalty);
    }
    .@lvl=getd("CRAFTSYS["+.@gid+"]");

    switch (.@gid) {
        case CRGROUP_BASE:
            if (@lvl >= 1)
                array_push(@csys_attr, VAR_STRAMOUNT);
            if (@lvl >= 2)
                array_push(@csys_attr, VAR_AGIAMOUNT);
            if (@lvl >= 3)
                array_push(@csys_attr, VAR_VITAMOUNT);
            if (@lvl >= 4)
                array_push(@csys_attr, VAR_INTAMOUNT);
            if (@lvl >= 5)
                array_push(@csys_attr, VAR_DEXAMOUNT);
            if (@lvl >= 6)
                array_push(@csys_attr, VAR_LUKAMOUNT);
            if (@lvl >= 8)
                array_push(@csys_attr, VAR_MAXHPAMOUNT);
            if (@lvl >= 10)
                array_push(@csys_attr, VAR_MAXSPAMOUNT);
            break;
        // First tier
        case CRGROUP_ATK:
            if (@lvl >= 1) {
                array_push(@csys_attr, VAR_ATTPOWER);
                array_push(@csys_attr, VAR_ATTMPOWER);
            }
            if (@lvl >= 5) {
                array_push(@csys_attr, VAR_MAGICATKPERCENT);
                array_push(@csys_attr, VAR_ATKPERCENT);
            }
            array_push(@csys_penalty, VAR_ITEMDEFPOWER);
            array_push(@csys_penalty, VAR_MDEFPOWER);
            break;
        case CRGROUP_DEF:
            if (@lvl >= 1) {
                array_push(@csys_attr, VAR_ITEMDEFPOWER);
                array_push(@csys_attr, VAR_MDEFPOWER);
            }
            if (@lvl >= 5) {
                array_push(@csys_attr, DAMAGE_CRI_USER);
                array_push(@csys_attr, RANGE_ATTACK_DAMAGE_USER);
            }
            array_push(@csys_penalty, VAR_ATTPOWER);
            array_push(@csys_penalty, VAR_ATTMPOWER);
            break;
        case CRGROUP_ACC:
            if (@lvl >= 1) {
                array_push(@csys_attr, VAR_HITSUCCESSVALUE);
            }
            if (@lvl >= 5) {
                array_push(@csys_attr, VAR_CRITICALSUCCESSVALUE);
            }
            array_push(@csys_penalty, VAR_ATTPOWER);
            array_push(@csys_penalty, VAR_ATTMPOWER);
            break;
            break;
        case CRGROUP_EVD:
            if (@lvl >= 1) {
                array_push(@csys_attr, VAR_AVOIDSUCCESSVALUE);
            }
            if (@lvl >= 5) {
                array_push(@csys_attr, VAR_PLUSAVOIDSUCCESSVALUE);
            }
            array_push(@csys_penalty, VAR_ATTPOWER);
            array_push(@csys_penalty, VAR_ATTMPOWER);
            break;
            break;
        // Second tier
        case CRGROUP_REGEN:
            if (@lvl >= 1) {
                array_push(@csys_attr, VAR_HPACCELERATION);
            }
            if (@lvl >= 5) {
                array_push(@csys_attr, VAR_SPACCELERATION);
            }
            array_push(@csys_penalty, VAR_ATTPOWER);
            array_push(@csys_penalty, VAR_ATTMPOWER);
            break;
    }
    return;
    //return Exception("Invalid ID");
}

// Confirms if player really wants to tweak a craft.
// Do not cast after new crafts. Returns false to stop script.
// csys_Confirm( invindex )
function	script	csys_Confirm	{
    .@id=getarg(0);

    // Sanitize input
    if (.@id < 0)
        return false;

    // *getequipisenableopt(<equipment slot>) → cannot use here
    // Not an equipment
    if (!getiteminfo(.@id, ITEMINFO_LOC))
        return false;

    mesc l("Really try to tweak this item? All current options will be deleted.");
    next;
    if (askyesno() == ASK_NO)
        return false;

    return true;
}

// Check if you'll have success in applying options or not
// Returns true if you was successful, and also cleans previous options
// If you only want cleaning, just disregard the output.
// csys_Check( invindex )
function	script	csys_Check	{
    .@id=getarg(0);

    // Clear all five options
    setitemoptionbyindex(.@id, 0, 0, 0);
    setitemoptionbyindex(.@id, 1, 0, 0);
    setitemoptionbyindex(.@id, 2, 0, 0);
    setitemoptionbyindex(.@id, 3, 0, 0);
    setitemoptionbyindex(.@id, 4, 0, 0);

    // Base Success Rate is: 40% + 5% each craft skill level
    .@base=4000+(getskilllv(TMW2_CRAFT)*500);
    if (rand(10000) < .@base)
        return true;
    return false;
}

// Attribute item options
// Does NOT performs success chance check, and can be used by NPC
// csys_Apply( invindex{, lvl, scope} )
function	script	csys_Apply	{
    .@id=getarg(0);
    .@lv=getarg(1, getskilllv(TMW2_CRAFT));
    .@sc=getarg(1, CRAFTSYS_CURRENT);

    csys_Generate(.@sc);
    // @csys_attr → Available attributes
    // @csys_penalty → Penalty attribute array

    // Shuffle the arrays
    array_shuffle(@csys_attr);
    array_shuffle(@csys_penalty);

    // How many bonuses we'll have? Never more than 3 bonus and 2 onus.
    .@max_attr=getarraysize(@csys_attr);
    .@max_pena=getarraysize(@csys_penalty);

    .@slot=0;
    while (.@slot < min(3, .@max_attr)) {
        // You have 100% for first bonus/onus, -20% each, depending on skill lv
        .@base=2000-(.@lv*75);
        if (rand(10000) < 10000-(.@base*.@slot))
            break;

        // Apply a bonus using array_pop (it was shuffled so we're fine)
        // A pity 1 str and 1 hp is so different.
        .@vartp=array_pop(@csys_attr);
        .@bonus=rand(1, .@lv/2);
        setitemoptionbyindex(.@id, .@slot, .@vartp, .@bonus);
        .@slot+=1;
    }

    // We need a new temp var
    .@slt=0;
    while (.@slt < min(2, .@max_pena)) {
        // You have 100% for first bonus/onus, -20% each, depending on skill lv
        .@base=2000-(.@lv*75);
        if (rand(10000) < 10000-(.@base*.@slot))
            break;

        // Apply a bonus using array_pop (it was shuffled so we're fine)
        // A pity 1 str and 1 hp is so different.
        .@vartp=array_pop(@csys_penalty);
        .@bonus=rand(1, .@lv/2);
        setitemoptionbyindex(.@id, .@slot, .@vartp, .@bonus);
        .@slot+=1;
        .@slt+=1;
    }

    // The options have been attributed
    return;
}