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

12 lines
259 B
JavaScript

this.inherits(OBJ);
this.set({
name: "潜能",
desc: "学习或练习武功需要消耗的潜能",
unit: "点",
value: 0,
grade: 1
});
this.on_receive = function (me) {
if (!this.count) return false;
me.add_exp(0, this.count);
}