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

9 lines
396 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
this.inherits(SKILL);
this.name = "基本内功";
this.id = "force";
this.grade = 0;
this.type = SKILL_TYPES.BASE;
this.set_default(this.id);
this.desc = "内功的基础功法坚持锻炼会增强体质。每10级增加1点后天根骨增加内力上限";
this.query_prop = lv => ({ con: parseInt(lv / 10), limit_mp: 100 + lv * 5, desc: "唯一将你内力的10%转化为气血" });