init: add workspace files

This commit is contained in:
2026-05-26 16:41:20 +08:00
commit f4f2393f72
1041 changed files with 67405 additions and 0 deletions

View 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)
}
};
}