物品说明
A decorated hat modeled after the legendary Peco Peco.
It's the symbol of the Peco Peco Fan Club.
―――――――――――――
MHP + 10%.
―――――――――――――
All Basic Status + 5.
―――――――――――――
Reduce After Cast Delay by 20%.
―――――――――――――
When Base Level is 99 or lower,
There's a 5% chance to cast Level 10 Sonic Blow when performing melee physical attack.
―――――――――――――
When Base Level is 100 or higher,
There's a 5% chance to cast Level 3 Cross Impact when performing melee physical attack.
―――――――――――――
Set Bonus:
Peco Warrior Hat [1]
Peco Peco Egg
ATK + 50, ASPD + 5,
―――――――――――――
When intimacy is loyal,
Increase movement speed,
All Basic Status + 5.
―――――――――――――
When Headgear is refined to +10 or higher, MHP + 10%, MSP + 10%.
―――――――――――――
When Headgear is refined to +11 or higher, ATK + 25%.
―――――――――――――
When Headgear is refined to +12 or higher, additional MHP + 20%, MSP + 20%.
―――――――――――――
Set Bonus:
Peco Warrior Hat [1]
Peco Peco Card
ATK + 15%, MHP + 15%.
Armor and Weapon will be indestructible.
―――――――――――――
Type : Headgear
Def : 10
Location : Upper
Weight : 30
Required Level : 1
Class : All Jobs
物品脚本 (Script)
.@r = getrefine();
bonus bMaxHPrate,10;
bonus bAllStats,5;
bonus bDelayrate,-20;
if (BaseLevel>=100)
bonus3 bAutoSpell,"GC_CROSSIMPACT",3,50;
else if (BaseLevel<=99)
bonus3 bAutoSpell,"AS_SONICBLOW",10,50;
if (getpetinfo(PETINFO_EGGID) == 9014) {
bonus bBaseAtk,50;
bonus bAspd,5;
if (getpetinfo(PETINFO_INTIMATE) >= PET_INTIMATE_LOYAL) {
bonus bSpeedRate,25;
bonus bAllStats,5;
if (.@r>=10) {
bonus bMaxHPrate,10;
bonus bMaxSPrate,10;
if (.@r>=11) {
bonus bAtkRate,25;
if (.@r>=12) {
bonus bMaxHPrate,20;
bonus bMaxSPrate,20;
}
}
}
}
}