Files
wsmud/world/skill/dodge/yixingbufa.js
2026-05-26 16:41:20 +08:00

32 lines
1011 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
this.inherits(SKILL);
this.name = "意形步法";
this.id = "yixingbufa";
this.grade = 1;
this.dodge_actions = [
"$n漫不经心的向左迈出一步刚好避过$N的凌厉攻势。",
"可是$n不紧不慢往右走了一步躲过了$N这一招。",
"但是$n身形飘忽轻轻一纵早已避开。",
"$n身随意转倏地往一旁挪开了三尺避过了这一招。",
"可是$n侧身一让$N这一招扑了个空。",
"却见$n足不点地往旁窜开数尺躲了开去。",
"$n身形微晃有惊无险地避开了$N这一招。",
"$n看似无心地信手一拂肩头微侧堪堪避过了$N这一招。"
];
this.desc = "神龙岛独门轻功身法,模仿毒蛇游走而得名";
//"(\w+)"(.+?)"NOR"
//<$1>$2</$1>
this.can_enables = ["dodge"];
this.learn_condition = {
max_mp: 500,
skill: {
dodge: 50
}
};
this.query_enable_prop = function (lv) {
return {
dodge: {
ds: lv + 5
}
};
}