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

28 lines
616 B
JavaScript
Raw 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 = "feiyanzoubi";
this.grade = 1;
this.family = FAMILIES.GAIBANG;
this.dodge_actions = [
"$n身形急转避过了$N的攻势。",
"可是$n拔地而起躲过了$N这一招。。",
"$n作闪右避总算躲过了$N这一招。"
];
this.desc = "江湖中常见的轻功身法。";
//"(\w+)"(.+?)"NOR"
//<$1>$2</$1>
this.can_enables = ["dodge"];
this.learn_condition = {
max_mp: 700,
skill: {
dodge:50
}
};
this.query_enable_prop = function (lv) {
return {
dodge: {
ds: lv +5
}
};
}