| 赞 | 36 |
| VIP | 0 |
| 好人卡 | 0 |
| 积分 | 96 |
| 经验 | 0 |
| 最后登录 | 2025-10-26 |
| 在线时间 | 462 小时 |
Lv4.逐梦者
- 梦石
- 2
- 星屑
- 7638
- 在线时间
- 462 小时
- 注册时间
- 2021-12-4
- 帖子
- 492

|
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之类的。 |
|