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

27
world/obj/cash/sm.js Normal file
View File

@@ -0,0 +1,27 @@
this.inherits(OBJ);
this.set({
name: "副本补给包",
desc: "包含328个扫荡符18个天师符100精力",
unit: "个",
value: 0,
grade: 5
});
this.on_open = function (me) {
var result = [
{
obj: "cash/saodang",
count: 328
},
{
obj: "cash/tianshifu",
count: 18
},
{
obj: "cash/jing#4"
}
];
return OBJ.create_by_odds(result);
}