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

29 lines
901 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 = "huashanquanfa";
this.grade = 1;
this.family = FAMILIES.HUASHAN;
this.attack_actions = [
"$N使一招「云里乾坤」左拳击出不等招式使老右拳已从左拳之底穿出对准$n的$l「呼」地一拳",
"$N左拳突然张开拳开变掌直击化为横扫一招「雾里看花」便往$n的$l招呼过去",
"$N步履一沉左拳虚晃一招右拳使出「梅花弄影」击向$n$l",
"$N两手虎口相对往内一圈一招「金鼓齐鸣」往$n的$l击出"
];
this.desc = "华山派的入门拳法";
//"(\w+)"(.+?)"NOR"
//<$1>$2</$1>
this.can_enables = ["unarmed"];
this.learn_condition = {
max_mp: 500,
skill: {
unarmed: 50
}
};
this.query_enable_prop = function (lv) {
return {
unarmed: {
gj: parseInt(lv * 1.1 + 20)
}
};
}