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

11
world/map/yz/by/damen.js Normal file
View File

@@ -0,0 +1,11 @@
this.inherits(ROOM);
this.name = "兵营大门"
this.desc = "你正站在兵营的门口,面对着一排简陋的营房,可以看到穿着制服的官兵正在操练,不时地传来呐喊声。老百姓是不允许在此观看的,你最好赶快走开。";
this.exits = { "south": "yz/by/bingying"};
this.set_npc( ["pub/bing", 2]);
this.on_leave = function (me, dir) {
if (dir === "south" && this.find_obj_bypath("pub/bing")) {
me.notify("官兵拦住了你的去路。");
return false;
}
}