Lineage Justice
Spells & Skills
Lookup and validate skills and spells.
|
GuardBreak
|
MP:
|
0
|
HP:
|
20
|
Item:
|
None
|
Amount:
|
N/A
|
Duration:
|
32
|
Skill Type:
|
Probability
|
Delay:
|
1000
|
Cast Invis:
|
No
|
Ignores CM:
|
No
|
Element:
|
None
|
Range:
|
3
|
Area:
|
N/A
|
Dmg Value:
|
0.0
|
Dmg Dice:
|
0
|
Dice Count:
|
0
|
Prob Value:
|
0
|
Prob Dice:
|
26
|
Prob Max:
|
40
|
Add Effect:
private static final int _ac = 15;
@Override
public void addEffect(L1Character user, L1Character target,
int durationSeconds) {
target.addAc(_ac);
}
Remove Effect:
private static final int _ac = 15;
@Override
public void removeEffect(L1Character target) {
target.addAc(-_ac);
}