| 赞 | 36 |
| VIP | 0 |
| 好人卡 | 0 |
| 积分 | 102 |
| 经验 | 0 |
| 最后登录 | 2026-1-6 |
| 在线时间 | 463 小时 |
Lv4.逐梦者
- 梦石
- 2
- 星屑
- 8219
- 在线时间
- 463 小时
- 注册时间
- 2021-12-4
- 帖子
- 493

|
Game_Party.prototype.gold = function() {
return this._gold;
};
Game_Party.prototype.gainGold = function(amount) {
this._gold = (this._gold + amount).clamp(0, this.maxGold());
};
Game_Party.prototype.loseGold = function(amount) {
this.gainGold(-amount); // 感觉可能要从这个函数下手,把amount通过$gameMessage.add("xxx")显示出来。
}; |
|