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/dushe.js Normal file
View File

@@ -0,0 +1,17 @@
this.inherits(OBJ);
this.unit = "颗";
this.name = "解毒丹";
this.value = 1000;
this.desc = "这是螣蛇血清制成的解药,可以解螣蛇毒";
this.distime = 30000;
this.grade = 5;
this.allow_fight = true;
this.transable = true;
this.on_use = function (me) {
if (me.query_status('shedu')) {
me.send_room('<hig>$N吞下一颗解毒丹脸上的灰白死气终于褪去。</hig>');
me.remove_status('shedu', true);
return;
}
return me.notify_fail('你没中蛇毒,用不着吃解药。');
}