物品说明
霸肋门德生物圈深层能量研究所创造的铠甲。
被火焰和大地的符文魔力以及使用者的魔力所烙印。
_
POW+3,CON+3,CRI-10。
ATK+140。
每当精炼+2,ATK+15,DEF+30。
精炼+7时,ATK+5%,P.ATK+2,MDEF+25。
精炼+9时,P.ATK+5,MDEF再+25。
精炼+11时,技能后延迟-10%,近距离物理伤害+15%。
_
[各阶级追加能力]
[D阶级] ATK+25,ATK+5%。
[C阶级] ATK+45,ATK再+8%,近距离物理伤害+3%。
[B阶级] ATK+13%,近距离物理伤害再+5%,POW+10。
[A阶级] ATK+16%,近距离物理伤害再+7%,CON+10。
系列 : 铠甲 防御 : 200
重量 : 0
防具等级 : 2
要求等级 : 250
装备 : 全职业
物品脚本 (Script)
.@g = getenchantgrade();
.@r = getrefine();
bonus bCritical,-10;
bonus bPow,3;
bonus bCon,3;
bonus bBaseAtk,140+15*(.@r/2);
bonus bDef,30*(.@r/2);
if (.@r>=7) {
bonus bPAtk,2;
bonus bAtkRate,5;
bonus bMdef,25;
if (.@r>=9) {
bonus bPAtk,5;
bonus bMdef,25;
if (.@r>=11) {
bonus bShortAtkRate,15;
bonus bDelayrate,-10;
}
}
}
if (.@g>=ENCHANTGRADE_D) {
bonus bAtkRate,5;
bonus bBaseAtk,25;
if (.@g>=ENCHANTGRADE_C) {
bonus bShortAtkRate,3;
bonus bAtkRate,8;
bonus bBaseAtk,45;
if (.@g>=ENCHANTGRADE_B) {
bonus bShortAtkRate,5;
bonus bAtkRate,13;
bonus bPow,10;
if (.@g>=ENCHANTGRADE_A) {
bonus bShortAtkRate,7;
bonus bAtkRate,16;
bonus bCon,10;
}
}
}
}