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

@@ -0,0 +1,11 @@
this.inherits(ROOM);
this.name = "药林"
this.desc = "这是一片茂密的树林。很多棵几十丈高的大树聚在一块,象一把把琼天大伞,连日月都被遮蔽得黯然无光,这里生长这很多奇花异草,运气好还可以找到珍稀的药材。"
this.exits = { "north": "yz/dongmen" };
this.no_fight = true;
this.can_caiyao = true;
this.add_action("cai", "采药", function (me) {
return WORLD.COMMANDS['caiyao'].enter(me);
});