物品说明
A magic book that was once used during the old Prontera era.
You can feel a faint magic energy flow in it.
―――――――――――――
Cannot be destroyed in battle.
―――――――――――――
For every 2 refine level, S.MATK + 2.
―――――――――――――
For every 3 refine level, MATK + 30.
―――――――――――――
When refined to +10 or higher, increase magic damage against all property enemies by 20%.
―――――――――――――
When refined to +12 or higher, reduce Variable Casting Time by 30%.
―――――――――――――
When refined to +14 or higher,
there's a 7% chance to gain INT + 70 and SPL + 70 for 20 seconds when performing physical or magic attack.
―――――――――――――
Set Bonus:
Ancient Prontera Book [1]
White Lady Card
INT + 30, SPL + 30.
Increase magic damage against all property enemies by 20%.
―――――――――――――
[Grade Bonus]
[Grade D] MHP + 15%, MSP + 15%.
[Grade C] Reduce damage taken from Ghost, Shadow, and Poison property attacks by 25%.
[Grade B] Increase Genesis Ray damage by 100%.
[Grade A] When performing melee or long-range physical attack, there's a 7% chance to autocast Lv.7 Genesis Ray.
―――――――――――――
Type : Shield
Def : 70
Weight : 20
Required Level : 100
Class : All Jobs
物品脚本 (Script)
.@r = getrefine();
.@g = getenchantgrade();
bonus bUnbreakableShield;
bonus bSMatk,2*(.@r/2);
bonus bMatk,30*(.@r/3);
if (.@r>=10)
bonus2 bMagicAddEle,Ele_All,20;
if (.@r>=12)
bonus bVariableCast,-30;
if (.@r>=14)
autobonus "{ bonus bInt,70; bonus bSpl,70; }",70,20000,BF_WEAPON|BF_MAGIC;
if (.@g>=ENCHANTGRADE_D) {
bonus bMaxHPrate,15;
bonus bMaxSPrate,15;
if (.@g>=ENCHANTGRADE_C) {
bonus2 bSubEle,Ele_Dark,25;
bonus2 bSubEle,Ele_Ghost,25;
bonus2 bSubEle,Ele_Poison,25;
if (.@g>=ENCHANTGRADE_B) {
bonus2 bSkillAtk,"LG_RAYOFGENESIS",100;
if (.@g>=ENCHANTGRADE_A) {
bonus5 bAutoSpell,"LG_RAYOFGENESIS",7,70,BF_WEAPON|BF_LONG,1;
}
}
}
}