赞 | 160 |
VIP | 0 |
好人卡 | 3 |
积分 | 161 |
经验 | 39823 |
最后登录 | 2024-12-27 |
在线时间 | 3996 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 16119
- 在线时间
- 3996 小时
- 注册时间
- 2015-9-14
- 帖子
- 1337
|
日本論壇:http://tm.lucky-duet.com/viewtopic.php?f=5&t=1308
(未測試)
- //=============================================================================
- // Escape100.js
- //=============================================================================
- /*:
- * @plugindesc 逃げる成功率を100%にする
- * @author みこと
- *
- * @param escapeSwitche
- * @desc 逃げる成功率を100%にするスイッチの番号
- * @default 10
- *
- * @help 指定のスイッチがONになっている間、戦闘コマンド『逃げる』を必ず成功させます。
- * ただしバトルの処理で『逃走可能』にチェックが入っていない場合は逃げられません。
- *
- * このプラグインには、プラグインコマンドはありません。
- */
- (function() {
- var parameters = PluginManager.parameters('Escape100');
- BattleManager.processEscape = function() {
- $gameParty.performEscape();
- SoundManager.playEscape();
- var success = this._preemptive ? true : (Math.random() < this._escapeRatio);
- if (success || $gameSwitches.value(parameters['escapeSwitche'])) {
- this.displayEscapeSuccessMessage();
- this._escaped = true;
- this.processAbort();
- } else {
- this.displayEscapeFailureMessage();
- this._escapeRatio += 0.1;
- $gameParty.clearActions();
- this.startTurn();
- }
- return success;
- };
- })();
复制代码 |
|