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

31 lines
847 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 = "qingfushenfa";
this.grade =2;
this.dodge_actions = [
"只见$n一招「福满乾坤」身形陡然纵起躲过了$N这一招。",
"$n一式「五蝠献寿」身形晃动向一旁飘出避开了$N这一招。。",
"$n使出「洞天福地」一个空心筋斗向后翻出避开了$N的凌厉攻势。",
"$n一招「云龙百蝠」身随意转$N只觉眼前一花$n已绕至$N的身后。"
];
this.desc = "明教青翼蝠王成名绝技";
//"(\w+)"(.+?)"NOR"
//<$1>$2</$1>
this.can_enables = ["dodge"];
this.query_enable_prop = function (lv) {
return {
dodge: {
ds:parseInt(lv * 1.8) + 100,
dex:parseInt(lv/10)
}
};
}
this.learn_condition = {
max_mp: 2000,
skill: {
dodge: 200
}
};