역동적인 방어Active
DYNAMIC_DEFENSE
4s 동안, 대상 적이나 아군이 들고 있는 무기에 따라 전투 스타일을 조정합니다.
만약 대상이 마법 무기를 들고 있다면:
마법 저항력이 80%만큼, 가하는 대미지가 10%만큼 증가합니다.
만약 대상이 물리 무기를 들고 있다면:
방어력이 80%만큼, 가하는 대미지가 10%만큼 증가합니다.
만약 대상이 몬스터라면:
방어력 vs 몬스터가 50%만큼, 대미지 vs 몬스터가 25%만큼 증가합니다.
Stats
| Energy cost | 26 |
|---|---|
| Cooldown | 20 s |
| Cast time | Instant |
| Range | 15 m |
| Target | all |
Granted by(1)
Advanced view
Where each number comes from, and the arithmetic behind it. How this works
| # | Source | Base | Progression | Result |
|---|---|---|---|---|
| {0} | $DYNAMIC_DEFENSE_MAGIC.buffovertime[0].time | 4 | — | 4s |
| {1} | $DYNAMIC_DEFENSE_MAGIC.buffovertime[0].value | 0.8 | — | 80% |
| {2} | $DYNAMIC_DEFENSE_MAGIC.buffovertime[1].value | 0.1 | — | 10% |
| {3} | $DYNAMIC_DEFENSE_PHYSICAL.buffovertime[0].value | 0.8 | — | 80% |
| {4} | $DYNAMIC_DEFENSE_PHYSICAL.buffovertime[1].value | 0.1 | — | 10% |
| {5} | $DYNAMIC_DEFENSE_MOB.buffovertime[0].value | 0.5 | — | 50% |
| {6} | $DYNAMIC_DEFENSE_MOB.buffovertime[1].value | 0.25 | — | 25% |
Ability definition
{
"@uniquename": "DYNAMIC_DEFENSE",
"@target": "all",
"@energyusage": "9",
"@castingtime": "0",
"@castrange": "15",
"@recastdelay": "20",
"@category": "instant",
"@uitype": "buff",
"@descriptionlocatag": "@SPELLS_DYNAMIC_DEFENSE_DESC",
"@statblock": "@SPELLS_STANDARD_STATBLOCK",
"@autoattackcooldownaftercasting": "Trigger",
"@controllerpreferredtarget": "enemyandally",
"applyspell": [
{
"@target": "all",
"@spell": "DYNAMIC_DEFENSE_MAGIC",
"IfTargetWeaponTypeEquipped": {
"@type": "Magic"
},
"not": {
"or": {
"IfTargetType": {
"@type": "mob"
}
}
}
},
{
"@target": "all",
"@spell": "DYNAMIC_DEFENSE_PHYSICAL",
"not": {
"IfTargetWeaponTypeEquipped": {
"@type": "Magic"
},
"IfTargetType": {
"@type": "mob"
}
}
},
{
"@target": "all",
"@spell": "DYNAMIC_DEFENSE_MOB",
"IfTargetType": {
"@type": "mob"
}
}
]
}