赞 | 35 |
VIP | 0 |
好人卡 | 0 |
积分 | 73 |
经验 | 0 |
最后登录 | 2024-11-22 |
在线时间 | 475 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 7289
- 在线时间
- 475 小时
- 注册时间
- 2021-12-4
- 帖子
- 514
|
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);
};
Game_Party.prototype.maxGold = function() {
return 99999999;
};
Game_Party.prototype.steps = function() {
return this._steps;
};
Game_Party.prototype.increaseSteps = function() {
this._steps++;
};
Game_Party.prototype.numItems = function(item) {
const container = this.itemContainer(item);
return container ? container[item.id] || 0 : 0;
};
Game_Party.prototype.maxItems = function(item) {
return 99; // 甚至可以根据item.id为不同道具设置不同的上限
};
Game_Party.prototype.hasMaxItems = function(item) {
return this.numItems(item) >= this.maxItems(item);
};
有什么插件的必要么,rmmz_objects.js第5600行,金钱上限和道具上限都在这里了。 |
|