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