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

14
world/skill/base/whip.js Normal file
View File

@@ -0,0 +1,14 @@
this.inherits(SKILL);
this.id = "whip";
this.name = "基本鞭法";
this.grade = 0;
this.type = SKILL_TYPES.BASE;
this.attack_actions = [
"$N用$W往$n的$l抽去", "$N甩动$W往$n的$l抽去", "$N挥动$W,扫向$n的$l"
];
this.set_default(this.id);
this.desc = "鞭法类技能的基础功法,坚持锻炼会磨练你的技巧增加命中";
this.query_prop = function (lv) {
return { mz: lv };
}