赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 4 |
经验 | 0 |
最后登录 | 2018-8-11 |
在线时间 | 58 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 407
- 在线时间
- 58 小时
- 注册时间
- 2018-4-17
- 帖子
- 10
|
大佬请问一下,我用下面这个注释之后,有这个状态的角色,对队友使用回复技能的时候,也会对队友造成50点伤害,这个可以解决吗?
<Custom Conclude Effect>
// Check if the target is hit, alive, the action is physical, and dealing damage.
if (target) {
// Play animation on target.
target.startAnimation(3);
// Get the amount of damage dealt.
var dmg = 50;
var el=target.elementRate(2)
// Make the target lose HP.
target.gainHp(Math.ceil(-dmg*el));
// Disable critical hit effects.
target.result().critical = false;
// Start the damage popup.
target.startDamagePopup();
if(target.isDead()){
target.performCollapse()
}
// Clear the result.
target.clearResult();
}
</Custom Conclude Effect> |
|