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

@@ -0,0 +1,21 @@
this.inherits(AREA);
this.set({
name: "住房",
room_path: "home/",
id: "home",
is_copy: true,
not_fb: true
});
this.map = [{ n: "卧室", id: "home/danjian", p: [0, 0] },
{ n: "卧室", id: "home/woshi", p: [4, 0] },
{ n: "院子", id: "home/yuanzi", p: [4, 1], exits: ["w", "e", "n"] },
{ n: "练功房", id: "home/liangong", p: [3, 1] },
{ n: "炼药房", id: "home/lianyao", p: [5, 1] },
{ n: "小花园", id: "home/huayuan", p: [5, 0] }
];
this.query_owner = function (me) {
return me.id;
}