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

13
world/skill/base/bite.js Normal file
View File

@@ -0,0 +1,13 @@
this.inherits(SKILL);
this.type = SKILL_TYPES.BASE;
this.id = "bite";
this.name = "野兽扑咬";
this.grade = 0;
this.desc = "动物类技能";
this.family = FAMILIES.MONSTER;
this.attack_actions = [
"$N张嘴朝$n的$l咬去", "$N抬起前爪往$n的$l一抓", "$N往$n的$l狠狠的扑了过去",
"$N跳起来用前抓往$n的$l抓去", "$N猛的扑向$n的$l"
];
this.query_prop = lv => ({ gj: parseInt(lv / 5), mz: parseInt(lv / 5) });
this.set_default(this.id);