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

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