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

21
world/area/map/party.js Normal file
View File

@@ -0,0 +1,21 @@
this.inherits(AREA);
this.set({
name: "帮会",
room_path: "banghui/",
id: "banghui",
is_copy: true,
not_fb: true
});
this.map = [{ n: "大门", id: "home/danjian", p: [0, 0] },
{ n: "聚义堂", id: "home/woshi", p: [2, 0] },
{ n: "院子", id: "home/yuanzi", p: [1, 0], exits: ["w", "e", "s", "n"] },
{ n: "练功房", id: "home/liangong", p: [1, -1] },
{ n: "炼药房", id: "home/lianyao", p: [1, 1] },
{ n: "仓库", id: "home/cangku", p: [2, -1] }
];
this.query_owner = function (me) {
return me.query_temp("pt");
}