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

15
world/skill/base/dodge.js Normal file
View File

@@ -0,0 +1,15 @@
this.inherits(SKILL);
this.id = "dodge";
this.name = "基本轻功";
this.grade = 0;
this.desc = "轻功的基础功法坚持锻炼会身轻如燕。每10级增加1点后天身法";
this.type = SKILL_TYPES.BASE;
this.dodge_actions = ["但是和$p$l偏了几寸。",
"但是被$p机灵地躲开了。",
"但是$n身子一侧闪了开去。",
"但是被$p及时避开。",
"但是$n已有准备不慌不忙的躲开。"];
this.set_default(this.id);
this.query_prop = lv => ({ dex: parseInt(lv / 10) });