赞 | 36 |
VIP | 0 |
好人卡 | 0 |
积分 | 73 |
经验 | 0 |
最后登录 | 2025-7-18 |
在线时间 | 454 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 7282
- 在线时间
- 454 小时
- 注册时间
- 2021-12-4
- 帖子
- 486
|
Game_Enemy.prototype.dropItemRate = function() {
return $gameParty.hasDropItemDouble() ? 2 : 1;
};
Game_Party.prototype.hasDropItemDouble = function() {
return this.partyAbility(Game_Party.ABILITY_DROP_ITEM_DOUBLE);
};
第一个函数在rpg_objects.js第4377行,可以把这个2改成3什么的;也可以仿照第二个函数的写法自己定义一个hasDropItemTriple之类的。 |
|