Item Use Script
|
1 .@r = getrefine();
2 bonus bAspd,1;
3 bonus bCriticalLong,5;
4 bonus bCritAtkRate,10;
5 bonus2 bIgnoreDefRaceRate,RC_All,10;
6 if (.@r > 4) {
7 bonus bAspd,1;
8 bonus bCriticalLong,10;
9 bonus bCritAtkRate,2;
10 bonus2 bIgnoreDefRaceRate,RC_All,20;
11 }
12 if (.@r > 6) {
13 bonus bAspd,1;
14 bonus bCriticalLong,15;
15 bonus bCritAtkRate,6;
16 bonus2 bIgnoreDefRaceRate,RC_All,30;
17 }
18 if (.@r > 8) {
19 bonus bAspd,1;
20 bonus bCriticalLong,20;
21 bonus bCritAtkRate,12;
22 bonus2 bIgnoreDefRaceRate,RC_All,40;
23 autobonus "{ bonus bCritAtkRate,100; }",70,5000;
24 }
|