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

31 lines
1.1 KiB
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 = "zhutianbu";
this.grade = 1;
this.family = FAMILIES.EMEI;
this.dodge_actions = [
"只见$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: 600,
skill: {
dodge: 50
}
};
this.query_enable_prop = function (lv) {
return {
dodge: {
ds: lv +10
}
};
}