init: add workspace files
This commit is contained in:
29
world/skill/huashan/huashanquanfa.js
Normal file
29
world/skill/huashan/huashanquanfa.js
Normal file
@@ -0,0 +1,29 @@
|
||||
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)
|
||||
}
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user