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

25
world/obj/cash/fang.js Normal file
View File

@@ -0,0 +1,25 @@
this.inherits(OBJ);
this.set({
unit: "份",
name: "房契",
desc: "使用获得扬州城豪华住宅",
grade: 3,
value: 0
});
this.on_use = function (me, par) {
if (!me.is_player) return me.notify_fail("你不能使用" + this.name + "。");
let home = me.query_temp('home', 0);
if (home === 2) return me.notify_fail('你已经拥有自己的住宅了。');
if (home === 1) {
if (!par) {
me.notify_fail('你已经购买了单间使用契约将退款100<hiy>黄金</hiy>,是否确定?');
me.send_commands('use ' + this.id + " ok", '确定使用');
return false;
}
me.add_exp(0, 0, 1000000);
}
me.set_temp('home', 2);
me.send('<hic>感谢购买,恭喜你拥有了自己的住宅。</hic>');
me.send_commands('goto home', '现在就过去');
return true;
}