物品说明
─────────────
基本属性STR 90 以上时,ATK+15 (精炼+9时再+15),
─────────────
基本属性INT 90 以上时,MATK+15(精炼+9时再+15),
─────────────
基本属性VIT 90 以上时,MaxHP/MaxSP 5%(精炼+9时再+5%),
─────────────
基本属性AGI 90 以上时,攻速+ 1(精炼+9时ASPD再+1),
─────────────
基本属性DEX 90 以上时,远距离攻击力+5%(精炼+9时再+5%),
─────────────
基本属性LUK 90 以上时,暴击伤害+5%(精炼+9时再+5%)。
─────────────
系列 : 披肩 防御 : 20
重量:1
要求等级 : 1
要求职业 : 全职业
物品脚本 (Script)
.@r = getrefine();
if (readparam(bStr) >= 90) {
bonus bBaseAtk,15;
if (.@r >= 9)
bonus bBaseAtk,15;
}
if (readparam(bInt) >= 90) {
bonus bMatk,15;
if (.@r >= 9)
bonus bMatk,15;
}
if (readparam(bVit) >= 90) {
bonus bMaxHPrate,5;
bonus bMaxSPrate,5;
if (.@r >= 9) {
bonus bMaxHPrate,5;
bonus bMaxSPrate,5;
}
}
if (readparam(bAgi) >= 90) {
bonus bAspd,1;
if (.@r >= 9)
bonus bAspd,1;
}
if (readparam(bDex) >= 90) {
bonus bLongAtkRate,5;
if (.@r >= 9)
bonus bLongAtkRate,5;
}
if (readparam(bLuk) >= 90) {
bonus bCritAtkRate,5;
if (.@r >= 9)
bonus bCritAtkRate,5;
}