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/obj/cash/box_sm.js Normal file
View File

@@ -0,0 +1,21 @@
this.inherits(OBJ);
this.set({
name: "师门补给包",
desc: "里面有28个橙色师门令牌,6个紫色师门令牌50精力",
unit: "个",
value: 0,
grade: 5
});
this.on_open = function (me) {
var result = [
{
obj: ["cash/jing#3"], count: 1,
}
];
return OBJ.create_by_odds(result);
}