Files
wsmud/world/obj/cash/box_sm.js
2026-05-26 16:41:20 +08:00

22 lines
358 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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);
}