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,31 @@
this.inherits(SKILL);
this.name = "青蝠身法";
this.id = "qingfushenfa";
this.grade =2;
this.dodge_actions = [
"只见$n一招「福满乾坤」身形陡然纵起躲过了$N这一招。",
"$n一式「五蝠献寿」身形晃动向一旁飘出避开了$N这一招。。",
"$n使出「洞天福地」一个空心筋斗向后翻出避开了$N的凌厉攻势。",
"$n一招「云龙百蝠」身随意转$N只觉眼前一花$n已绕至$N的身后。"
];
this.desc = "明教青翼蝠王成名绝技";
//"(\w+)"(.+?)"NOR"
//<$1>$2</$1>
this.can_enables = ["dodge"];
this.query_enable_prop = function (lv) {
return {
dodge: {
ds:parseInt(lv * 1.8) + 100,
dex:parseInt(lv/10)
}
};
}
this.learn_condition = {
max_mp: 2000,
skill: {
dodge: 200
}
};