Files
wsmud/world/skill/base/club.js
2026-05-26 16:41:20 +08:00

14 lines
404 B
JavaScript

this.inherits(SKILL);
this.id = "club";
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 { zj: lv };
}