赞 | 35 |
VIP | 0 |
好人卡 | 0 |
积分 | 34 |
经验 | 0 |
最后登录 | 2024-10-21 |
在线时间 | 277 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 3360
- 在线时间
- 277 小时
- 注册时间
- 2019-4-23
- 帖子
- 202
|
- Window_ItemList.prototype.drawItemCarryNumber = function (item, dx, dy, dw) {
- if (DataManager.isItem(item)) {
- var index = $gameParty.items().indexOf(item);
- } else if (DataManager.isWeapon(item)) {
- var index = $gameParty.weapons().indexOf(item);
- } else if (DataManager.isArmor(item)) {
- var index = $gameParty.armors().indexOf(item);
- }
- if (index < 0) return this.drawEquippedActor(item, dx, dy, dw);
- index += 1;
- var max = $gameParty.getIndependentItemTypeMax(item);
- var fmt = Yanfly.Param.ItemCarryFmt;
- var text = fmt.format(Yanfly.Util.toGroup(index), Yanfly.Util.toGroup(max));
- if (Yanfly.Param.ItemQuantitySize) {
- this.contents.fontSize = Yanfly.Param.ItemQuantitySize;
- }
- if (index > max) {
- this.changeTextColor(this.powerDownColor());
- } else if (index === max) {
- this.changeTextColor(this.crisisColor());
- } else {
- this.changeTextColor(this.normalColor());
- }
- this.drawText(text, dx, dy, dw, 'right');
- this.resetFontSettings();
- };
复制代码
1705行的代码吧 |
|