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

17
world/obj/drug/huoyan.js Normal file
View File

@@ -0,0 +1,17 @@
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>");
}