Add a 2% chance of auto casting Level 1 Heal on the user when attacking.
If the user has mastered the skill at Level 10, it will cast Level 10 Heal .
[ Geographer & Rideword & Cookie & Seal Card Combo ]
Класс : Card
Вставляется в : Shield
Вес : 1
Доп. информация:
ID : 4217
Цена у NPC : 10
Script :
{ bonus3 bAutoSpell,"AL_HEAL",1+9*(getskilllv("AL_HEAL")==10),20; if(isequipped(4280,4185,4293,4312)) { bonus bVit,10; bonus bCastrate,-10; bonus bUseSPRate,-10; if(BaseClass == Job_Acolyte) { bonus2 bExpAddRace,RC_Undead,5; bonus2 bExpAddRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,30; bonus2 bSubRace,RC_Demon,30; } } }
{
...bonus3 bAutoSpell,"AL_HEAL",1+9*(getskilllv("AL_HEAL")==10),20;
...if(isequipped(4280,4185,4293,4312)) {
......bonus bVit,10;
......bonus bCastrate,-10;
......bonus bUseSPRate,-10;
......if(BaseClass == Job_Acolyte) {
.........bonus2 bExpAddRace,RC_Undead,5;
.........bonus2 bExpAddRace,RC_Demon,5;
.........bonus2 bSubRace,RC_Undead,30;
.........bonus2 bSubRace,RC_Demon,30;
......}
...}
}