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

14
world/obj/money/gongji.js Normal file
View File

@@ -0,0 +1,14 @@
this.inherits(OBJ);
this.set({
name: "门派功绩",
desc: "你对门派的贡献,可以在门派管理那里换取各种物资",
unit: "点",
value: 0,
grade:3
});
this.on_receive = function (me) {
if (!this.count) return false;
me.add_temp('gongji', this.count);
me.notify("你获得了" + UTIL.to_c(this.count) + "点<hiy>门派功绩</hiy>。");
me.set_temp('last_sm', Date.now());
}