Skill Custom [Interlude]

Gabaranth

Vagabond
[PT]

Então, estou tentando criar uma skill custom para as armaduras S-Grade com um bônus que funcione apenas quando o player estiver em PvP, como acontece em servidores H5 com os armaduras PvP, por exemplo:

• Imperial Crusader Breatsplate PvP. Bônus = Decreases damage received during PvP and has a chance to decrease all the attacker's speeds

Copiei o status da Skill de um servidor H5 mas não sei como adaptar para lucera, alguém pode me ajudar?

[ENG]

So, I'm trying to create a custom skill for S-Grade Armor with bonuses that work only when the player is in PvP, as is the case with H5 servers with PvP Armors, for example:

• Imperial Crusader Breatsplate PvP. Bonus = Decreases damage received during PvP and has a chance to decrease all the attacker's speeds

I copied the Skill status from an H5 server but I don't know how to adapt it for lucera, can someone help me?


Skill.xml:


<list>
<!-- Imperial Crusader PVP -->
<skill id="7100" levels="1" name="Imperial Crusader Heavy Armor Set {PVP}">
<set name="icon" val="iconspvp.armor_t88_u_i00"/>
<set name="magicLevel" val="75"/>
<set name="target" val="TARGET_SELF"/>
<set name="skillType" val="BUFF"/>
<set name="operateType" val="OP_PASSIVE"/>
<for>
<sub order="0x40" stat="DEX" val="2"/>
<add order="0x40" stat="maxHp" val="445"/>
<mul order="0x30" stat="pDef" val="1.08"/>
<add order="0x40" stat="STR" val="2"/>
<add order="0x40" stat="sleepResist" val="70"/>
<add order="0x40" stat="rootResist" val="70"/>

<!-- PvP Status -->
<mul order="0x30" stat="pvpPhysDef" val="1.05" />
<mul order="0x30" stat="pvpMagicalDef" val="1.05" />
<mul order="0x30" stat="pvpPhysSkillsDef" val="1.05" />
<!-- PvP Status -->
</for>
</skill>
</list>
 
Back
Top