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,32 @@
this.inherits(SKILL);
this.name = "意形步法";
this.id = "yixingbufa";
this.grade = 1;
this.dodge_actions = [
"$n漫不经心的向左迈出一步刚好避过$N的凌厉攻势。",
"可是$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: 500,
skill: {
dodge: 50
}
};
this.query_enable_prop = function (lv) {
return {
dodge: {
ds: lv + 5
}
};
}