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

10
world/map/yz/kuang.js Normal file
View File

@@ -0,0 +1,10 @@
this.inherits(ROOM);
this.name = "矿山"
this.desc = "这里原来是一处高山,不知道什么原因崩塌了,四周散落着各种石块。据说有人在这里找到过稀有的宝石,所以有不少来来往往的人们背着背篓在这里碰运气。"
this.exits = { "east": "yz/ximen" };
this.max_count = 8;
this.no_fight = true;
this.add_action("wa", "挖矿", function (me) {
WORLD.COMMANDS['wk'].enter(me);
});