Files
wsmud/world/obj/drug/huoyan.js
2026-05-26 16:41:20 +08:00

17 lines
606 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(OBJ);
this.set({
unit: "颗",
name: "玲珑火芝",
grade: 3,
desc: "生长在火山中心的一种灵芝,食用后使人增加内力上限",
value: 980000
});
this.transable = true;
this.on_use = function (me) {
me.send_room("<hir>$N拿出一颗玲珑火芝一口气吞了下去。</hir>");
var sx = me.random(me.query_skill("force") / 5) + 100;
me.limit_mp += sx;
me.notify("<red>你感觉一股热流顺着喉咙涌到全身,你的经脉仿佛都被拓宽了。</red>");
me.notify("<hiw>你的内力上限增加了" + sx + "。</hiw>");
}