Add a 5% chance of auto casting Level 1 Strip Armor on the enemy when attacking.
[ + Stainer & Wanderer & Wild Rose & Shinobi ]
• STR + 6
• AGI + 4
• Inflict 10% more damage with Back Stab.
• Add a 5% chance of auto casting Level 5 Strip Armor on the enemy when attacking if the user has mastered the skill at Level 5.
[ Rogue, Stalker ]
• Intimidate Auto-Spell will not function.
• Reduce SP Consumption of skills by 20%.
Класс : Card
Вставляется в : Accessory
Вес : 1
Доп. информация:
ID : 4348
Цена у NPC : 10
Script :
{ bonus3 bAutoSpell,"RG_STRIPARMOR",1,50; if(isequipped(4039,4210,4257,4230)) { bonus bStr,6; bonus bAgi,4; bonus2 bSkillAtk,"RG_BACKSTAP",10; if(getskilllv("RG_STRIPARMOR")==5) bonus3 bAutoSpell,"RG_STRIPARMOR",5,50; if(BaseJob == Job_Rogue) { bonus bUseSPrate,-20; bonus3 bAutoSpell,"RG_INTIMIDATE",1,-20; } } }
{
...bonus3 bAutoSpell,"RG_STRIPARMOR",1,50;
...if(isequipped(4039,4210,4257,4230)) {
......bonus bStr,6;
......bonus bAgi,4;
......bonus2 bSkillAtk,"RG_BACKSTAP",10;
......if(getskilllv("RG_STRIPARMOR")==5) bonus3 bAutoSpell,"RG_STRIPARMOR",5,50;
......if(BaseJob == Job_Rogue) {
.........bonus bUseSPrate,-20;
.........bonus3 bAutoSpell,"RG_INTIMIDATE",1,-20;
......}
...}
}