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

13
world/map/new/new3.js Normal file
View File

@@ -0,0 +1,13 @@
this.inherits(ROOM);
this.name = "训练室"
this.desc = "这是一间空荡荡的训练室所有要去闯荡江湖的人们都需要在这里学习一些基本知识就算你是MUD老鸟你也需要了解下在没有命令可以输入的情况下如何挖泥。";
this.exits = { "north": "new/new2" };
this.on_enter = function (me) {
var npc = this.find_obj_bypath("new/mutouren");
if (!npc) {
NPC.CREATE("new/mutouren", me.environment);
}
}
this.on_leave = function (me, dir) {
if (dir != "north") return me.notify_fail("你还没去交任务。");
}