SRD Battle Popup Customizer - SRD_BattlePopupCustomizer.js

シェア用テキスト:
▼SRD Battle Popup Customizer(SumRndmDde様作) - SRD_BattlePopupCustomizer.js
https://plugin.fungamemake.com/archives/26492
ポップアップの属性をカスタマイズして追加できます。

ふりがな:ばとるぽっぷあっぷかすたまいざー

機能概要: ポップアップの属性をカスタマイズして追加できます。

利用規約(ライセンス):https://fungamemake.com/srd-japanese

作者:SumRndmDde

ダウンロードページ:https://fungamemake.com/archives/9418

ファイル名:SRD_BattlePopupCustomizer.js

プラグインのヘルプ:

/*:ja
 * @plugindesc ポップアップの属性をカスタマイズして追加することができます。
 * @author SumRndmDde
 *
 * @param == Global Options ==
 * @text -- 全般オプション --
 * @default
 *
 * @param Font
 * @text フォント
 * @desc ダメージポップアップのフォント
 * @default GameFont
 *
 * @param Font Size
 * @text フォントサイズ
 * @desc ダメージポップアップのフォントのサイズ
 * @default 34
 *
 * @param X Shift
 * @text Xシフト
 * @desc 各スタック結果間のX位置のシフト
 * @default 0
 *
 * @param Y Shift
 * @text Yシフト
 * @desc 各スタック結果間のY位置のシフト
 * @default 34
 *
 * @param Global Condition
 * @text グローバル表示条件
 * @desc ポップアップが表示される条件。’target’と’result’の両方を使用可能
 * @default target.isAppeared()
 *
 * @param == HP Damage ==
 * @text -- HPダメージ --
 * @default
 *
 * @param HP Damage Condition
 * @text HPダメージ表示条件
 * @desc HPダメージのポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default result.hpDamage > 0
 *
 * @param HP Damage Text
 * @text HPダメージテキスト
 * @desc HPダメージが発生した時の表示テキスト
 * %1がダメージ値を表示
 * @default -%1 HP
 *
 * @param HP Damage Location
 * @text HPダメージの位置
 * @desc HPダメージを受けた時の表示テキストの最初の位置
 * 書式: X位置, Y位置
 * @default 0, 0
 *
 * @param HP Damage Colors
 * @text HPダメージ色
 * @desc HPダメージの色
 * 書式: ベース色 | アウトライン色
 * @default #FF4D4D | #000000
 *
 * @param HP Damage Animations
 * @text HPダメージのアニメーション
 * @desc HPダメージの表示アニメーション
 * 選択肢はヘルプ参照
 * @default default
 *
 * @param HP Damage Duration
 * @text HPダメージ表示時間
 * @type number
 * @desc HPダメージの表示時間
 * 正の整数
 * @default 120
 *
 * @param HP Damage Flash
 * @text HPダメージフラッシュ
 * @desc HPダメージのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == HP Heal ==
 * @text -- HP回復 --
 * @default
 *
 * @param HP Heal Condition
 * @text HP回復コンディション
 * @desc HP回復のポップアップを表示する条件
 * JavaScript式。’result’はGame_ActionResult
 * @default result.hpDamage < 0
 *
 * @param HP Heal Text
 * @text HP回復テキスト
 * @desc HP回復が発生時の表示テキスト
 * %1が回復値を表示
 * @default +%1 HP
 *
 * @param HP Heal Location
 * @text HP回復の位置
 * @desc HP回復のテキストの最初の位置
 * 書式: X位置, Y位置
 * @default 0, 0
 *
 * @param HP Heal Colors
 * @text HP回復色
 * @desc HP回復のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #8CFF66 | #000000
 *
 * @param HP Heal Animations
 * @text HP回復アニメーション
 * @desc HP回復の表示アニメーション
 * 選択肢はヘルプ参照
 * @default default
 *
 * @param HP Heal Duration
 * @text HP回復の表示時間
 * @type number
 * @desc HP回復のテキストの表示時間
 * 正の整数
 * @default 120
 *
 * @param HP Heal Flash
 * @text HP回復フラッシュ
 * @desc HP回復のテキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == MP Damage ==
 * @text -- MPダメージ --
 * @default
 *
 * @param MP Damage Condition
 * @text MPダメージ表示条件
 * @desc MPダメージのポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default result.mpDamage > 0
 *
 * @param MP Damage Text
 * @text MPダメージテキスト
 * @desc MPダメージが発生した時の表示テキスト
 * %1がダメージ値を表示
 * @default -%1 MP
 *
 * @param MP Damage Location
 * @text MPダメージの位置
 * @desc MPダメージを受けた時の表示テキストの最初の位置
 * 書式: X位置, Y位置
 * @default 0, 0
 *
 * @param MP Damage Colors
 * @text MPダメージ色
 * @desc MPダメージの色
 * 書式: ベース色 | アウトライン色
 * @default #66B3FF | #000000
 *
 * @param MP Damage Animations
 * @text MPダメージのアニメーション
 * @desc MPダメージの表示アニメーション
 * 選択肢はヘルプ参照
 * @default default
 *
 * @param MP Damage Duration
 * @text MPダメージ表示時間
 * @type number
 * @desc MPダメージの表示時間
 * 正の整数
 * @default 120
 *
 * @param MP Damage Flash
 * @text MPダメージフラッシュ
 * @desc MPダメージのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == MP Heal ==
 * @text -- MP回復 --
 * @default
 *
 * @param MP Heal Condition
 * @text MP回復コンディション
 * @desc MP回復のポップアップを表示する条件
 * JavaScript式。’result’はGame_ActionResult
 * @default result.mpDamage < 0
 *
 * @param MP Heal Text
 * @text MP回復テキスト
 * @desc MP回復が発生時の表示テキスト
 * %1が回復値を表示
 * @default +%1 MP
 *
 * @param MP Heal Location
 * @text MP回復の位置
 * @desc MP回復のテキストの最初の位置
 * 書式: X位置, Y位置
 * @default 0, 0
 *
 * @param MP Heal Colors
 * @text MP回復色
 * @desc MP回復のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFF99 | #000000
 *
 * @param MP Heal Animations
 * @text MP回復アニメーション
 * @desc MP回復の表示アニメーション
 * 選択肢はヘルプ参照
 * @default default
 *
 * @param MP Heal Duration
 * @text MP回復の表示時間
 * @type number
 * @desc MP回復のテキストの表示時間
 * 正の整数
 * @default 120
 *
 * @param MP Heal Flash
 * @text MP回復フラッシュ
 * @desc MP回復のテキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == TP Damage ==
 * @text -- TPダメージ --
 * @default
 *
 * @param TP Damage Condition
 * @text TPダメージ表示条件
 * @desc TPダメージのポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default result.tpDamage > 0
 *
 * @param TP Damage Text
 * @text TPダメージテキスト
 * @desc TPダメージが発生した時の表示テキスト
 * %1がダメージ値を表示
 * @default -%1 TP
 *
 * @param TP Damage Location
 * @text TPダメージの位置
 * @desc TPダメージを受けた時の表示テキストの最初の位置
 * 書式: X位置, Y位置
 * @default 0, 0
 *
 * @param TP Damage Colors
 * @text TPダメージ色
 * @desc TPダメージの色
 * 書式: ベース色 | アウトライン色
 * @default #FFB3FF | #000000
 *
 * @param TP Damage Animations
 * @text TPダメージのアニメーション
 * @desc TPダメージの表示アニメーション
 * 選択肢はヘルプ参照
 * @default default
 *
 * @param TP Damage Duration
 * @text TPダメージ表示時間
 * @type number
 * @desc TPダメージの表示時間
 * 正の整数
 * @default 120
 *
 * @param TP Damage Flash
 * @text TPダメージフラッシュ
 * @desc TPダメージのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == TP Heal ==
 * @text -- TP回復 --
 * @default
 *
 * @param TP Heal Condition
 * @text TP回復コンディション
 * @desc TP回復のポップアップを表示する条件
 * JavaScript式。’result’はGame_ActionResult
 * @default result.tpDamage < 0
 *
 * @param TP Heal Text
 * @text TP回復テキスト
 * @desc TP回復が発生時の表示テキスト
 * %1が回復値を表示
 * @default +%1 TP
 *
 * @param TP Heal Location
 * @text TP回復の位置
 * @desc TP回復のテキストの最初の位置
 * 書式: X位置, Y位置
 * @default 0, 0
 *
 * @param TP Heal Colors
 * @text TP回復色
 * @desc TP回復のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #99FF66 | #000000
 *
 * @param TP Heal Animations
 * @text TP回復アニメーション
 * @desc TP回復の表示アニメーション
 * 選択肢はヘルプ参照
 * @default default
 *
 * @param TP Heal Duration
 * @text TP回復の表示時間
 * @type number
 * @desc TP回復のテキストの表示時間
 * 正の整数
 * @default 120
 *
 * @param TP Heal Flash
 * @text TP回復フラッシュ
 * @desc TP回復のテキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Miss ==
 * @text -- ミス --
 * @default
 *
 * @param Miss Condition
 * @text ミス表示条件
 * @desc ミスのポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default result.used && result.missed
 *
 * @param Miss Text
 * @text ミステキスト
 * @desc ミス発生時の表示テキスト
 * @default ミス
 *
 * @param Miss Location
 * @text ミスの位置
 * @desc ミスのテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, this._sprite.height * (-1/3)
 *
 * @param Miss Colors
 * @text ミス色
 * @desc ミスのテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000000
 *
 * @param Miss Animations
 * @text ミスのアニメーション
 * @desc ミスの表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Miss Duration
 * @text ミス表示時間
 * @type number
 * @desc ミス時のテキストの表示時間
 * 正の整数
 * @default 45
 *
 * @param Miss Flash
 * @text ミスフラッシュ
 * @desc ミステキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Evade ==
 * @text -- 回避 --
 * @default
 *
 * @param Evade Condition
 * @text 回避表示条件
 * @desc 回避のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default result.evaded
 *
 * @param Evade Text
 * @text 回避テキスト
 * @desc 回避発生時の表示テキスト
 * @default 回避
 *
 * @param Evade Location
 * @text 回避の位置
 * @desc 回避のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, this._sprite.height * (-1/3)
 *
 * @param Evade Colors
 * @text 回避色
 * @desc 回避のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000000
 *
 * @param Evade Animations
 * @text 回避のアニメーション
 * @desc 回避の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Evade Duration
 * @text 回避表示時間
 * @type number
 * @desc 回避時のテキストの表示時間
 * 正の整数
 * @default 45
 *
 * @param Evade Flash
 * @text 回避フラッシュ
 * @desc 回避テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Critical ==
 * @text -- 会心 --
 * @default
 *
 * @param Critical Condition
 * @text 会心表示条件
 * @desc 会心のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default result.critical && result.used && !result.missed
 *
 * @param Critical Text
 * @text 会心テキスト
 * @desc 会心発生時の表示テキスト
 * @default 会心
 *
 * @param Critical Location
 * @text 会心の位置
 * @desc 会心のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, this._sprite.height * (-1/3)
 *
 * @param Critical Colors
 * @text 会心色
 * @desc 会心のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000000
 *
 * @param Critical Animations
 * @text 会心のアニメーション
 * @desc 会心の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Critical Duration
 * @text 会心表示時間
 * @type number
 * @desc 会心時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Critical Flash
 * @text 会心フラッシュ
 * @desc 会心テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 255, 0, 0, 160, 60
 *
 * @param == Guarded ==
 * @text -- 防御 --
 * @default
 *
 * @param Guarded Condition
 * @text 防御表示条件
 * @desc 防御のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default result.guarded && result.used && !result.missed
 *
 * @param Guarded Text
 * @text 防御テキスト
 * @desc 防御発生時の表示テキスト
 * @default 防御
 *
 * @param Guarded Location
 * @text 防御の位置
 * @desc 防御のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, this._sprite.height * (-1/3)
 *
 * @param Guarded Colors
 * @text 防御色
 * @desc 防御のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000000
 *
 * @param Guarded Animations
 * @text 防御のアニメーション
 * @desc 防御の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Guarded Duration
 * @text 防御表示時間
 * @type number
 * @desc 防御時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Guarded Flash
 * @text 防御フラッシュ
 * @desc 防御テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 130, 130, 160, 60
 *
 * @param == Custom 1 ==
 * @text -- カスタム1 --
 * @default
 *
 * @param Custom 1 Condition
 * @text カスタム1表示条件
 * @desc カスタム1のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default result.drain && result.used && !result.missed
 *
 * @param Custom 1 Text
 * @text カスタム1テキスト
 * @desc カスタム1発生時の表示テキスト
 * @default 吸収
 *
 * @param Custom 1 Location
 * @text カスタム1の位置
 * @desc カスタム1のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, this._sprite.height * (-1/3)
 *
 * @param Custom 1 Colors
 * @text カスタム1色
 * @desc カスタム1のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000000
 *
 * @param Custom 1 Animations
 * @text カスタム1のアニメーション
 * @desc カスタム1の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 1 Duration
 * @text カスタム1表示時間
 * @type number
 * @desc カスタム1時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 1 Flash
 * @text カスタム1フラッシュ
 * @desc カスタム1テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 204, 153, 255, 160, 60
 *
 * @param == Custom 2 ==
 * @text -- カスタム2 --
 * @default
 *
 * @param Custom 2 Condition
 * @text カスタム2表示条件
 * @desc カスタム2のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 2 Text
 * @text カスタム2テキスト
 * @desc カスタム2発生時の表示テキスト
 * @default
 *
 * @param Custom 2 Location
 * @text カスタム2の位置
 * @desc カスタム2のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 2 Colors
 * @text カスタム2色
 * @desc カスタム2のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000001
 *
 * @param Custom 2 Animations
 * @text カスタム2のアニメーション
 * @desc カスタム2の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 2 Duration
 * @text カスタム2表示時間
 * @type number
 * @desc カスタム2時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 2 Flash
 * @text カスタム2フラッシュ
 * @desc カスタム2テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 3 ==
 * @text -- カスタム3 --
 * @default
 *
 * @param Custom 3 Condition
 * @text カスタム3表示条件
 * @desc カスタム3のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 3 Text
 * @text カスタム3テキスト
 * @desc カスタム3発生時の表示テキスト
 * @default
 *
 * @param Custom 3 Location
 * @text カスタム3の位置
 * @desc カスタム3のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 3 Colors
 * @text カスタム3色
 * @desc カスタム3のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000002
 *
 * @param Custom 3 Animations
 * @text カスタム3のアニメーション
 * @desc カスタム3の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 3 Duration
 * @text カスタム3表示時間
 * @type number
 * @desc カスタム3時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 3 Flash
 * @text カスタム3フラッシュ
 * @desc カスタム3テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 4 ==
 * @text -- カスタム4 --
 * @default
 *
 * @param Custom 4 Condition
 * @text カスタム4表示条件
 * @desc カスタム4のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 4 Text
 * @text カスタム4テキスト
 * @desc カスタム4発生時の表示テキスト
 * @default
 *
 * @param Custom 4 Location
 * @text カスタム4の位置
 * @desc カスタム4のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 4 Colors
 * @text カスタム4色
 * @desc カスタム4のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000003
 *
 * @param Custom 4 Animations
 * @text カスタム4のアニメーション
 * @desc カスタム4の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 4 Duration
 * @text カスタム4表示時間
 * @type number
 * @desc カスタム4時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 4 Flash
 * @text カスタム4フラッシュ
 * @desc カスタム4テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 5 ==
 * @text -- カスタム5 --
 * @default
 *
 * @param Custom 5 Condition
 * @text カスタム5表示条件
 * @desc カスタム5のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 5 Text
 * @text カスタム5テキスト
 * @desc カスタム5発生時の表示テキスト
 * @default
 *
 * @param Custom 5 Location
 * @text カスタム5の位置
 * @desc カスタム5のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 5 Colors
 * @text カスタム5色
 * @desc カスタム5のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000004
 *
 * @param Custom 5 Animations
 * @text カスタム5のアニメーション
 * @desc カスタム5の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 5 Duration
 * @text カスタム5表示時間
 * @type number
 * @desc カスタム5時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 5 Flash
 * @text カスタム5フラッシュ
 * @desc カスタム5テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 6 ==
 * @text -- カスタム6 --
 * @default
 *
 * @param Custom 6 Condition
 * @text カスタム6表示条件
 * @desc カスタム6のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 6 Text
 * @text カスタム6テキスト
 * @desc カスタム6発生時の表示テキスト
 * @default
 *
 * @param Custom 6 Location
 * @text カスタム6の位置
 * @desc カスタム6のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 6 Colors
 * @text カスタム6色
 * @desc カスタム6のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000005
 *
 * @param Custom 6 Animations
 * @text カスタム6のアニメーション
 * @desc カスタム6の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 6 Duration
 * @text カスタム6表示時間
 * @type number
 * @desc カスタム6時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 6 Flash
 * @text カスタム6フラッシュ
 * @desc カスタム6テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 7 ==
 * @text -- カスタム7 --
 * @default
 *
 * @param Custom 7 Condition
 * @text カスタム7表示条件
 * @desc カスタム7のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 7 Text
 * @text カスタム7テキスト
 * @desc カスタム7発生時の表示テキスト
 * @default
 *
 * @param Custom 7 Location
 * @text カスタム7の位置
 * @desc カスタム7のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 7 Colors
 * @text カスタム7色
 * @desc カスタム7のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000006
 *
 * @param Custom 7 Animations
 * @text カスタム7のアニメーション
 * @desc カスタム7の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 7 Duration
 * @text カスタム7表示時間
 * @type number
 * @desc カスタム7時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 7 Flash
 * @text カスタム7フラッシュ
 * @desc カスタム7テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 8 ==
 * @text -- カスタム8 --
 * @default
 *
 * @param Custom 8 Condition
 * @text カスタム8表示条件
 * @desc カスタム8のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 8 Text
 * @text カスタム8テキスト
 * @desc カスタム8発生時の表示テキスト
 * @default
 *
 * @param Custom 8 Location
 * @text カスタム8の位置
 * @desc カスタム8のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 8 Colors
 * @text カスタム8色
 * @desc カスタム8のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000007
 *
 * @param Custom 8 Animations
 * @text カスタム8のアニメーション
 * @desc カスタム8の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 8 Duration
 * @text カスタム8表示時間
 * @type number
 * @desc カスタム8時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 8 Flash
 * @text カスタム8フラッシュ
 * @desc カスタム8テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 9 ==
 * @text -- カスタム9 --
 * @default
 *
 * @param Custom 9 Condition
 * @text カスタム9表示条件
 * @desc カスタム9のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 9 Text
 * @text カスタム9テキスト
 * @desc カスタム9発生時の表示テキスト
 * @default
 *
 * @param Custom 9 Location
 * @text カスタム9の位置
 * @desc カスタム9のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 9 Colors
 * @text カスタム9色
 * @desc カスタム9のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000008
 *
 * @param Custom 9 Animations
 * @text カスタム9のアニメーション
 * @desc カスタム9の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 9 Duration
 * @text カスタム9表示時間
 * @type number
 * @desc カスタム9時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 9 Flash
 * @text カスタム9フラッシュ
 * @desc カスタム9テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 10 ==
 * @text -- カスタム10 --
 * @default
 *
 * @param Custom 10 Condition
 * @text カスタム10表示条件
 * @desc カスタム10のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 10 Text
 * @text カスタム10テキスト
 * @desc カスタム10発生時の表示テキスト
 * @default
 *
 * @param Custom 10 Location
 * @text カスタム10の位置
 * @desc カスタム10のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 10 Colors
 * @text カスタム10色
 * @desc カスタム10のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000009
 *
 * @param Custom 10 Animations
 * @text カスタム10のアニメーション
 * @desc カスタム10の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 10 Duration
 * @text カスタム10表示時間
 * @type number
 * @desc カスタム10時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 10 Flash
 * @text カスタム10フラッシュ
 * @desc カスタム10テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 11 ==
 * @text -- カスタム11 --
 * @default
 *
 * @param Custom 11 Condition
 * @text カスタム11表示条件
 * @desc カスタム11のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 11 Text
 * @text カスタム11テキスト
 * @desc カスタム11発生時の表示テキスト
 * @default
 *
 * @param Custom 11 Location
 * @text カスタム11の位置
 * @desc カスタム11のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 11 Colors
 * @text カスタム11色
 * @desc カスタム11のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000010
 *
 * @param Custom 11 Animations
 * @text カスタム11のアニメーション
 * @desc カスタム11の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 11 Duration
 * @text カスタム11表示時間
 * @type number
 * @desc カスタム11時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 11 Flash
 * @text カスタム11フラッシュ
 * @desc カスタム11テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 12 ==
 * @text -- カスタム12 --
 * @default
 *
 * @param Custom 12 Condition
 * @text カスタム12表示条件
 * @desc カスタム12のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 12 Text
 * @text カスタム12テキスト
 * @desc カスタム12発生時の表示テキスト
 * @default
 *
 * @param Custom 12 Location
 * @text カスタム12の位置
 * @desc カスタム12のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 12 Colors
 * @text カスタム12色
 * @desc カスタム12のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000011
 *
 * @param Custom 12 Animations
 * @text カスタム12のアニメーション
 * @desc カスタム12の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 12 Duration
 * @text カスタム12表示時間
 * @type number
 * @desc カスタム12時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 12 Flash
 * @text カスタム12フラッシュ
 * @desc カスタム12テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 13 ==
 * @text -- カスタム13 --
 * @default
 *
 * @param Custom 13 Condition
 * @text カスタム13表示条件
 * @desc カスタム13のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 13 Text
 * @text カスタム13テキスト
 * @desc カスタム13発生時の表示テキスト
 * @default
 *
 * @param Custom 13 Location
 * @text カスタム13の位置
 * @desc カスタム13のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 13 Colors
 * @text カスタム13色
 * @desc カスタム13のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000012
 *
 * @param Custom 13 Animations
 * @text カスタム13のアニメーション
 * @desc カスタム13の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 13 Duration
 * @text カスタム13表示時間
 * @type number
 * @desc カスタム13時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 13 Flash
 * @text カスタム13フラッシュ
 * @desc カスタム13テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 14 ==
 * @text -- カスタム14 --
 * @default
 *
 * @param Custom 14 Condition
 * @text カスタム14表示条件
 * @desc カスタム14のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 14 Text
 * @text カスタム14テキスト
 * @desc カスタム14発生時の表示テキスト
 * @default
 *
 * @param Custom 14 Location
 * @text カスタム14の位置
 * @desc カスタム14のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 14 Colors
 * @text カスタム14色
 * @desc カスタム14のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000013
 *
 * @param Custom 14 Animations
 * @text カスタム14のアニメーション
 * @desc カスタム14の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 14 Duration
 * @text カスタム14表示時間
 * @type number
 * @desc カスタム14時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 14 Flash
 * @text カスタム14フラッシュ
 * @desc カスタム14テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 15 ==
 * @text -- カスタム15 --
 * @default
 *
 * @param Custom 15 Condition
 * @text カスタム15表示条件
 * @desc カスタム15のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 15 Text
 * @text カスタム15テキスト
 * @desc カスタム15発生時の表示テキスト
 * @default
 *
 * @param Custom 15 Location
 * @text カスタム15の位置
 * @desc カスタム15のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 15 Colors
 * @text カスタム15色
 * @desc カスタム15のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000014
 *
 * @param Custom 15 Animations
 * @text カスタム15のアニメーション
 * @desc カスタム15の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 15 Duration
 * @text カスタム15表示時間
 * @type number
 * @desc カスタム15時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 15 Flash
 * @text カスタム15フラッシュ
 * @desc カスタム15テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 16 ==
 * @text -- カスタム16 --
 * @default
 *
 * @param Custom 16 Condition
 * @text カスタム16表示条件
 * @desc カスタム16のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 16 Text
 * @text カスタム16テキスト
 * @desc カスタム16発生時の表示テキスト
 * @default
 *
 * @param Custom 16 Location
 * @text カスタム16の位置
 * @desc カスタム16のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 16 Colors
 * @text カスタム16色
 * @desc カスタム16のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000015
 *
 * @param Custom 16 Animations
 * @text カスタム16のアニメーション
 * @desc カスタム16の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 16 Duration
 * @text カスタム16表示時間
 * @type number
 * @desc カスタム16時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 16 Flash
 * @text カスタム16フラッシュ
 * @desc カスタム16テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 17 ==
 * @text -- カスタム17 --
 * @default
 *
 * @param Custom 17 Condition
 * @text カスタム17表示条件
 * @desc カスタム17のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 17 Text
 * @text カスタム17テキスト
 * @desc カスタム17発生時の表示テキスト
 * @default
 *
 * @param Custom 17 Location
 * @text カスタム17の位置
 * @desc カスタム17のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 17 Colors
 * @text カスタム17色
 * @desc カスタム17のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000016
 *
 * @param Custom 17 Animations
 * @text カスタム17のアニメーション
 * @desc カスタム17の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 17 Duration
 * @text カスタム17表示時間
 * @type number
 * @desc カスタム17時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 17 Flash
 * @text カスタム17フラッシュ
 * @desc カスタム17テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 18 ==
 * @text -- カスタム18 --
 * @default
 *
 * @param Custom 18 Condition
 * @text カスタム18表示条件
 * @desc カスタム18のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 18 Text
 * @text カスタム18テキスト
 * @desc カスタム18発生時の表示テキスト
 * @default
 *
 * @param Custom 18 Location
 * @text カスタム18の位置
 * @desc カスタム18のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 18 Colors
 * @text カスタム18色
 * @desc カスタム18のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000017
 *
 * @param Custom 18 Animations
 * @text カスタム18のアニメーション
 * @desc カスタム18の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 18 Duration
 * @text カスタム18表示時間
 * @type number
 * @desc カスタム18時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 18 Flash
 * @text カスタム18フラッシュ
 * @desc カスタム18テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 19 ==
 * @text -- カスタム19 --
 * @default
 *
 * @param Custom 19 Condition
 * @text カスタム19表示条件
 * @desc カスタム19のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 19 Text
 * @text カスタム19テキスト
 * @desc カスタム19発生時の表示テキスト
 * @default
 *
 * @param Custom 19 Location
 * @text カスタム19の位置
 * @desc カスタム19のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 19 Colors
 * @text カスタム19色
 * @desc カスタム19のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000018
 *
 * @param Custom 19 Animations
 * @text カスタム19のアニメーション
 * @desc カスタム19の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 19 Duration
 * @text カスタム19表示時間
 * @type number
 * @desc カスタム19時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 19 Flash
 * @text カスタム19フラッシュ
 * @desc カスタム19テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 20 ==
 * @text -- カスタム20 --
 * @default
 *
 * @param Custom 20 Condition
 * @text カスタム20表示条件
 * @desc カスタム20のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 20 Text
 * @text カスタム20テキスト
 * @desc カスタム20発生時の表示テキスト
 * @default
 *
 * @param Custom 20 Location
 * @text カスタム20の位置
 * @desc カスタム20のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 20 Colors
 * @text カスタム20色
 * @desc カスタム20のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000019
 *
 * @param Custom 20 Animations
 * @text カスタム20のアニメーション
 * @desc カスタム20の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 20 Duration
 * @text カスタム20表示時間
 * @type number
 * @desc カスタム20時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 20 Flash
 * @text カスタム20フラッシュ
 * @desc カスタム20テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 21 ==
 * @text -- カスタム21 --
 * @default
 *
 * @param Custom 21 Condition
 * @text カスタム21表示条件
 * @desc カスタム21のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 21 Text
 * @text カスタム21テキスト
 * @desc カスタム21発生時の表示テキスト
 * @default
 *
 * @param Custom 21 Location
 * @text カスタム21の位置
 * @desc カスタム21のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 21 Colors
 * @text カスタム21色
 * @desc カスタム21のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000020
 *
 * @param Custom 21 Animations
 * @text カスタム21のアニメーション
 * @desc カスタム21の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 21 Duration
 * @text カスタム21表示時間
 * @type number
 * @desc カスタム21時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 21 Flash
 * @text カスタム21フラッシュ
 * @desc カスタム21テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 22 ==
 * @text -- カスタム22 --
 * @default
 *
 * @param Custom 22 Condition
 * @text カスタム22表示条件
 * @desc カスタム22のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 22 Text
 * @text カスタム22テキスト
 * @desc カスタム22発生時の表示テキスト
 * @default
 *
 * @param Custom 22 Location
 * @text カスタム22の位置
 * @desc カスタム22のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 22 Colors
 * @text カスタム22色
 * @desc カスタム22のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000021
 *
 * @param Custom 22 Animations
 * @text カスタム22のアニメーション
 * @desc カスタム22の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 22 Duration
 * @text カスタム22表示時間
 * @type number
 * @desc カスタム22時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 22 Flash
 * @text カスタム22フラッシュ
 * @desc カスタム22テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 23 ==
 * @text -- カスタム23 --
 * @default
 *
 * @param Custom 23 Condition
 * @text カスタム23表示条件
 * @desc カスタム23のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 23 Text
 * @text カスタム23テキスト
 * @desc カスタム23発生時の表示テキスト
 * @default
 *
 * @param Custom 23 Location
 * @text カスタム23の位置
 * @desc カスタム23のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 23 Colors
 * @text カスタム23色
 * @desc カスタム23のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000022
 *
 * @param Custom 23 Animations
 * @text カスタム23のアニメーション
 * @desc カスタム23の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 23 Duration
 * @text カスタム23表示時間
 * @type number
 * @desc カスタム23時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 23 Flash
 * @text カスタム23フラッシュ
 * @desc カスタム23テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 24 ==
 * @text -- カスタム24 --
 * @default
 *
 * @param Custom 24 Condition
 * @text カスタム24表示条件
 * @desc カスタム24のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 24 Text
 * @text カスタム24テキスト
 * @desc カスタム24発生時の表示テキスト
 * @default
 *
 * @param Custom 24 Location
 * @text カスタム24の位置
 * @desc カスタム24のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 24 Colors
 * @text カスタム24色
 * @desc カスタム24のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000023
 *
 * @param Custom 24 Animations
 * @text カスタム24のアニメーション
 * @desc カスタム24の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 24 Duration
 * @text カスタム24表示時間
 * @type number
 * @desc カスタム24時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 24 Flash
 * @text カスタム24フラッシュ
 * @desc カスタム24テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 25 ==
 * @text -- カスタム25 --
 * @default
 *
 * @param Custom 25 Condition
 * @text カスタム25表示条件
 * @desc カスタム25のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 25 Text
 * @text カスタム25テキスト
 * @desc カスタム25発生時の表示テキスト
 * @default
 *
 * @param Custom 25 Location
 * @text カスタム25の位置
 * @desc カスタム25のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 25 Colors
 * @text カスタム25色
 * @desc カスタム25のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000024
 *
 * @param Custom 25 Animations
 * @text カスタム25のアニメーション
 * @desc カスタム25の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 25 Duration
 * @text カスタム25表示時間
 * @type number
 * @desc カスタム25時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 25 Flash
 * @text カスタム25フラッシュ
 * @desc カスタム25テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 26 ==
 * @text -- カスタム26 --
 * @default
 *
 * @param Custom 26 Condition
 * @text カスタム26表示条件
 * @desc カスタム26のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 26 Text
 * @text カスタム26テキスト
 * @desc カスタム26発生時の表示テキスト
 * @default
 *
 * @param Custom 26 Location
 * @text カスタム26の位置
 * @desc カスタム26のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 26 Colors
 * @text カスタム26色
 * @desc カスタム26のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000025
 *
 * @param Custom 26 Animations
 * @text カスタム26のアニメーション
 * @desc カスタム26の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 26 Duration
 * @text カスタム26表示時間
 * @type number
 * @desc カスタム26時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 26 Flash
 * @text カスタム26フラッシュ
 * @desc カスタム26テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 27 ==
 * @text -- カスタム27 --
 * @default
 *
 * @param Custom 27 Condition
 * @text カスタム27表示条件
 * @desc カスタム27のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 27 Text
 * @text カスタム27テキスト
 * @desc カスタム27発生時の表示テキスト
 * @default
 *
 * @param Custom 27 Location
 * @text カスタム27の位置
 * @desc カスタム27のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 27 Colors
 * @text カスタム27色
 * @desc カスタム27のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000026
 *
 * @param Custom 27 Animations
 * @text カスタム27のアニメーション
 * @desc カスタム27の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 27 Duration
 * @text カスタム27表示時間
 * @type number
 * @desc カスタム27時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 27 Flash
 * @text カスタム27フラッシュ
 * @desc カスタム27テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 28 ==
 * @text -- カスタム28 --
 * @default
 *
 * @param Custom 28 Condition
 * @text カスタム28表示条件
 * @desc カスタム28のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 28 Text
 * @text カスタム28テキスト
 * @desc カスタム28発生時の表示テキスト
 * @default
 *
 * @param Custom 28 Location
 * @text カスタム28の位置
 * @desc カスタム28のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 28 Colors
 * @text カスタム28色
 * @desc カスタム28のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000027
 *
 * @param Custom 28 Animations
 * @text カスタム28のアニメーション
 * @desc カスタム28の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 28 Duration
 * @text カスタム28表示時間
 * @type number
 * @desc カスタム28時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 28 Flash
 * @text カスタム28フラッシュ
 * @desc カスタム28テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 29 ==
 * @text -- カスタム29 --
 * @default
 *
 * @param Custom 29 Condition
 * @text カスタム29表示条件
 * @desc カスタム29のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 29 Text
 * @text カスタム29テキスト
 * @desc カスタム29発生時の表示テキスト
 * @default
 *
 * @param Custom 29 Location
 * @text カスタム29の位置
 * @desc カスタム29のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 29 Colors
 * @text カスタム29色
 * @desc カスタム29のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000028
 *
 * @param Custom 29 Animations
 * @text カスタム29のアニメーション
 * @desc カスタム29の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 29 Duration
 * @text カスタム29表示時間
 * @type number
 * @desc カスタム29時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 29 Flash
 * @text カスタム29フラッシュ
 * @desc カスタム29テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 30 ==
 * @text -- カスタム30 --
 * @default
 *
 * @param Custom 30 Condition
 * @text カスタム30表示条件
 * @desc カスタム30のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 30 Text
 * @text カスタム30テキスト
 * @desc カスタム30発生時の表示テキスト
 * @default
 *
 * @param Custom 30 Location
 * @text カスタム30の位置
 * @desc カスタム30のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 30 Colors
 * @text カスタム30色
 * @desc カスタム30のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000029
 *
 * @param Custom 30 Animations
 * @text カスタム30のアニメーション
 * @desc カスタム30の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 30 Duration
 * @text カスタム30表示時間
 * @type number
 * @desc カスタム30時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 30 Flash
 * @text カスタム30フラッシュ
 * @desc カスタム30テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 31 ==
 * @text -- カスタム31 --
 * @default
 *
 * @param Custom 31 Condition
 * @text カスタム31表示条件
 * @desc カスタム31のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 31 Text
 * @text カスタム31テキスト
 * @desc カスタム31発生時の表示テキスト
 * @default
 *
 * @param Custom 31 Location
 * @text カスタム31の位置
 * @desc カスタム31のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 31 Colors
 * @text カスタム31色
 * @desc カスタム31のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000030
 *
 * @param Custom 31 Animations
 * @text カスタム31のアニメーション
 * @desc カスタム31の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 31 Duration
 * @text カスタム31表示時間
 * @type number
 * @desc カスタム31時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 31 Flash
 * @text カスタム31フラッシュ
 * @desc カスタム31テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 32 ==
 * @text -- カスタム32 --
 * @default
 *
 * @param Custom 32 Condition
 * @text カスタム32表示条件
 * @desc カスタム32のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 32 Text
 * @text カスタム32テキスト
 * @desc カスタム32発生時の表示テキスト
 * @default
 *
 * @param Custom 32 Location
 * @text カスタム32の位置
 * @desc カスタム32のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 32 Colors
 * @text カスタム32色
 * @desc カスタム32のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000031
 *
 * @param Custom 32 Animations
 * @text カスタム32のアニメーション
 * @desc カスタム32の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 32 Duration
 * @text カスタム32表示時間
 * @type number
 * @desc カスタム32時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 32 Flash
 * @text カスタム32フラッシュ
 * @desc カスタム32テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 33 ==
 * @text -- カスタム33 --
 * @default
 *
 * @param Custom 33 Condition
 * @text カスタム33表示条件
 * @desc カスタム33のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 33 Text
 * @text カスタム33テキスト
 * @desc カスタム33発生時の表示テキスト
 * @default
 *
 * @param Custom 33 Location
 * @text カスタム33の位置
 * @desc カスタム33のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 33 Colors
 * @text カスタム33色
 * @desc カスタム33のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000032
 *
 * @param Custom 33 Animations
 * @text カスタム33のアニメーション
 * @desc カスタム33の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 33 Duration
 * @text カスタム33表示時間
 * @type number
 * @desc カスタム33時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 33 Flash
 * @text カスタム33フラッシュ
 * @desc カスタム33テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 34 ==
 * @text -- カスタム34 --
 * @default
 *
 * @param Custom 34 Condition
 * @text カスタム34表示条件
 * @desc カスタム34のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 34 Text
 * @text カスタム34テキスト
 * @desc カスタム34発生時の表示テキスト
 * @default
 *
 * @param Custom 34 Location
 * @text カスタム34の位置
 * @desc カスタム34のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 34 Colors
 * @text カスタム34色
 * @desc カスタム34のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000033
 *
 * @param Custom 34 Animations
 * @text カスタム34のアニメーション
 * @desc カスタム34の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 34 Duration
 * @text カスタム34表示時間
 * @type number
 * @desc カスタム34時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 34 Flash
 * @text カスタム34フラッシュ
 * @desc カスタム34テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 35 ==
 * @text -- カスタム35 --
 * @default
 *
 * @param Custom 35 Condition
 * @text カスタム35表示条件
 * @desc カスタム35のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 35 Text
 * @text カスタム35テキスト
 * @desc カスタム35発生時の表示テキスト
 * @default
 *
 * @param Custom 35 Location
 * @text カスタム35の位置
 * @desc カスタム35のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 35 Colors
 * @text カスタム35色
 * @desc カスタム35のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000034
 *
 * @param Custom 35 Animations
 * @text カスタム35のアニメーション
 * @desc カスタム35の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 35 Duration
 * @text カスタム35表示時間
 * @type number
 * @desc カスタム35時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 35 Flash
 * @text カスタム35フラッシュ
 * @desc カスタム35テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 36 ==
 * @text -- カスタム36 --
 * @default
 *
 * @param Custom 36 Condition
 * @text カスタム36表示条件
 * @desc カスタム36のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 36 Text
 * @text カスタム36テキスト
 * @desc カスタム36発生時の表示テキスト
 * @default
 *
 * @param Custom 36 Location
 * @text カスタム36の位置
 * @desc カスタム36のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 36 Colors
 * @text カスタム36色
 * @desc カスタム36のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000035
 *
 * @param Custom 36 Animations
 * @text カスタム36のアニメーション
 * @desc カスタム36の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 36 Duration
 * @text カスタム36表示時間
 * @type number
 * @desc カスタム36時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 36 Flash
 * @text カスタム36フラッシュ
 * @desc カスタム36テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 37 ==
 * @text -- カスタム37 --
 * @default
 *
 * @param Custom 37 Condition
 * @text カスタム37表示条件
 * @desc カスタム37のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 37 Text
 * @text カスタム37テキスト
 * @desc カスタム37発生時の表示テキスト
 * @default
 *
 * @param Custom 37 Location
 * @text カスタム37の位置
 * @desc カスタム37のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 37 Colors
 * @text カスタム37色
 * @desc カスタム37のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000036
 *
 * @param Custom 37 Animations
 * @text カスタム37のアニメーション
 * @desc カスタム37の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 37 Duration
 * @text カスタム37表示時間
 * @type number
 * @desc カスタム37時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 37 Flash
 * @text カスタム37フラッシュ
 * @desc カスタム37テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 38 ==
 * @text -- カスタム38 --
 * @default
 *
 * @param Custom 38 Condition
 * @text カスタム38表示条件
 * @desc カスタム38のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 38 Text
 * @text カスタム38テキスト
 * @desc カスタム38発生時の表示テキスト
 * @default
 *
 * @param Custom 38 Location
 * @text カスタム38の位置
 * @desc カスタム38のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 38 Colors
 * @text カスタム38色
 * @desc カスタム38のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000037
 *
 * @param Custom 38 Animations
 * @text カスタム38のアニメーション
 * @desc カスタム38の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 38 Duration
 * @text カスタム38表示時間
 * @type number
 * @desc カスタム38時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 38 Flash
 * @text カスタム38フラッシュ
 * @desc カスタム38テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 39 ==
 * @text -- カスタム39 --
 * @default
 *
 * @param Custom 39 Condition
 * @text カスタム39表示条件
 * @desc カスタム39のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 39 Text
 * @text カスタム39テキスト
 * @desc カスタム39発生時の表示テキスト
 * @default
 *
 * @param Custom 39 Location
 * @text カスタム39の位置
 * @desc カスタム39のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 39 Colors
 * @text カスタム39色
 * @desc カスタム39のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000038
 *
 * @param Custom 39 Animations
 * @text カスタム39のアニメーション
 * @desc カスタム39の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 39 Duration
 * @text カスタム39表示時間
 * @type number
 * @desc カスタム39時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 39 Flash
 * @text カスタム39フラッシュ
 * @desc カスタム39テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 40 ==
 * @text -- カスタム40 --
 * @default
 *
 * @param Custom 40 Condition
 * @text カスタム40表示条件
 * @desc カスタム40のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 40 Text
 * @text カスタム40テキスト
 * @desc カスタム40発生時の表示テキスト
 * @default
 *
 * @param Custom 40 Location
 * @text カスタム40の位置
 * @desc カスタム40のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 40 Colors
 * @text カスタム40色
 * @desc カスタム40のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000039
 *
 * @param Custom 40 Animations
 * @text カスタム40のアニメーション
 * @desc カスタム40の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 40 Duration
 * @text カスタム40表示時間
 * @type number
 * @desc カスタム40時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 40 Flash
 * @text カスタム40フラッシュ
 * @desc カスタム40テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 41 ==
 * @text -- カスタム41 --
 * @default
 *
 * @param Custom 41 Condition
 * @text カスタム41表示条件
 * @desc カスタム41のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 41 Text
 * @text カスタム41テキスト
 * @desc カスタム41発生時の表示テキスト
 * @default
 *
 * @param Custom 41 Location
 * @text カスタム41の位置
 * @desc カスタム41のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 41 Colors
 * @text カスタム41色
 * @desc カスタム41のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000040
 *
 * @param Custom 41 Animations
 * @text カスタム41のアニメーション
 * @desc カスタム41の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 41 Duration
 * @text カスタム41表示時間
 * @type number
 * @desc カスタム41時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 41 Flash
 * @text カスタム41フラッシュ
 * @desc カスタム41テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 42 ==
 * @text -- カスタム42 --
 * @default
 *
 * @param Custom 42 Condition
 * @text カスタム42表示条件
 * @desc カスタム42のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 42 Text
 * @text カスタム42テキスト
 * @desc カスタム42発生時の表示テキスト
 * @default
 *
 * @param Custom 42 Location
 * @text カスタム42の位置
 * @desc カスタム42のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 42 Colors
 * @text カスタム42色
 * @desc カスタム42のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000041
 *
 * @param Custom 42 Animations
 * @text カスタム42のアニメーション
 * @desc カスタム42の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 42 Duration
 * @text カスタム42表示時間
 * @type number
 * @desc カスタム42時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 42 Flash
 * @text カスタム42フラッシュ
 * @desc カスタム42テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 43 ==
 * @text -- カスタム43 --
 * @default
 *
 * @param Custom 43 Condition
 * @text カスタム43表示条件
 * @desc カスタム43のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 43 Text
 * @text カスタム43テキスト
 * @desc カスタム43発生時の表示テキスト
 * @default
 *
 * @param Custom 43 Location
 * @text カスタム43の位置
 * @desc カスタム43のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 43 Colors
 * @text カスタム43色
 * @desc カスタム43のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000042
 *
 * @param Custom 43 Animations
 * @text カスタム43のアニメーション
 * @desc カスタム43の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 43 Duration
 * @text カスタム43表示時間
 * @type number
 * @desc カスタム43時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 43 Flash
 * @text カスタム43フラッシュ
 * @desc カスタム43テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 44 ==
 * @text -- カスタム44 --
 * @default
 *
 * @param Custom 44 Condition
 * @text カスタム44表示条件
 * @desc カスタム44のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 44 Text
 * @text カスタム44テキスト
 * @desc カスタム44発生時の表示テキスト
 * @default
 *
 * @param Custom 44 Location
 * @text カスタム44の位置
 * @desc カスタム44のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 44 Colors
 * @text カスタム44色
 * @desc カスタム44のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000043
 *
 * @param Custom 44 Animations
 * @text カスタム44のアニメーション
 * @desc カスタム44の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 44 Duration
 * @text カスタム44表示時間
 * @type number
 * @desc カスタム44時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 44 Flash
 * @text カスタム44フラッシュ
 * @desc カスタム44テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 45 ==
 * @text -- カスタム45 --
 * @default
 *
 * @param Custom 45 Condition
 * @text カスタム45表示条件
 * @desc カスタム45のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 45 Text
 * @text カスタム45テキスト
 * @desc カスタム45発生時の表示テキスト
 * @default
 *
 * @param Custom 45 Location
 * @text カスタム45の位置
 * @desc カスタム45のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 45 Colors
 * @text カスタム45色
 * @desc カスタム45のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000044
 *
 * @param Custom 45 Animations
 * @text カスタム45のアニメーション
 * @desc カスタム45の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 45 Duration
 * @text カスタム45表示時間
 * @type number
 * @desc カスタム45時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 45 Flash
 * @text カスタム45フラッシュ
 * @desc カスタム45テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 46 ==
 * @text -- カスタム46 --
 * @default
 *
 * @param Custom 46 Condition
 * @text カスタム46表示条件
 * @desc カスタム46のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 46 Text
 * @text カスタム46テキスト
 * @desc カスタム46発生時の表示テキスト
 * @default
 *
 * @param Custom 46 Location
 * @text カスタム46の位置
 * @desc カスタム46のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 46 Colors
 * @text カスタム46色
 * @desc カスタム46のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000045
 *
 * @param Custom 46 Animations
 * @text カスタム46のアニメーション
 * @desc カスタム46の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 46 Duration
 * @text カスタム46表示時間
 * @type number
 * @desc カスタム46時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 46 Flash
 * @text カスタム46フラッシュ
 * @desc カスタム46テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 47 ==
 * @text -- カスタム47 --
 * @default
 *
 * @param Custom 47 Condition
 * @text カスタム47表示条件
 * @desc カスタム47のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 47 Text
 * @text カスタム47テキスト
 * @desc カスタム47発生時の表示テキスト
 * @default
 *
 * @param Custom 47 Location
 * @text カスタム47の位置
 * @desc カスタム47のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 47 Colors
 * @text カスタム47色
 * @desc カスタム47のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000046
 *
 * @param Custom 47 Animations
 * @text カスタム47のアニメーション
 * @desc カスタム47の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 47 Duration
 * @text カスタム47表示時間
 * @type number
 * @desc カスタム47時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 47 Flash
 * @text カスタム47フラッシュ
 * @desc カスタム47テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 48 ==
 * @text -- カスタム48 --
 * @default
 *
 * @param Custom 48 Condition
 * @text カスタム48表示条件
 * @desc カスタム48のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 48 Text
 * @text カスタム48テキスト
 * @desc カスタム48発生時の表示テキスト
 * @default
 *
 * @param Custom 48 Location
 * @text カスタム48の位置
 * @desc カスタム48のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 48 Colors
 * @text カスタム48色
 * @desc カスタム48のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000047
 *
 * @param Custom 48 Animations
 * @text カスタム48のアニメーション
 * @desc カスタム48の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 48 Duration
 * @text カスタム48表示時間
 * @type number
 * @desc カスタム48時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 48 Flash
 * @text カスタム48フラッシュ
 * @desc カスタム48テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 49 ==
 * @text -- カスタム49 --
 * @default
 *
 * @param Custom 49 Condition
 * @text カスタム49表示条件
 * @desc カスタム49のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 49 Text
 * @text カスタム49テキスト
 * @desc カスタム49発生時の表示テキスト
 * @default
 *
 * @param Custom 49 Location
 * @text カスタム49の位置
 * @desc カスタム49のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 49 Colors
 * @text カスタム49色
 * @desc カスタム49のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000048
 *
 * @param Custom 49 Animations
 * @text カスタム49のアニメーション
 * @desc カスタム49の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 49 Duration
 * @text カスタム49表示時間
 * @type number
 * @desc カスタム49時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 49 Flash
 * @text カスタム49フラッシュ
 * @desc カスタム49テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @param == Custom 50 ==
 * @text -- カスタム50 --
 * @default
 *
 * @param Custom 50 Condition
 * @text カスタム50表示条件
 * @desc カスタム50のポップアップが表示される条件
 * JavaScript式。’result’はGame_ActionResult
 * @default false
 *
 * @param Custom 50 Text
 * @text カスタム50テキスト
 * @desc カスタム50発生時の表示テキスト
 * @default
 *
 * @param Custom 50 Location
 * @text カスタム50の位置
 * @desc カスタム50のテキストの初期位置
 * 書式: X位置, Y位置
 * @default 24, -48
 *
 * @param Custom 50 Colors
 * @text カスタム50色
 * @desc カスタム50のテキスト色
 * 書式: ベース色 | アウトライン色
 * @default #FFFFFF | #000049
 *
 * @param Custom 50 Animations
 * @text カスタム50のアニメーション
 * @desc カスタム50の表示アニメーション
 * 選択肢はヘルプ参照
 * @default float
 *
 * @param Custom 50 Duration
 * @text カスタム50表示時間
 * @type number
 * @desc カスタム50時のテキストの表示時間
 * 正の整数
 * @default 60
 *
 * @param Custom 50 Flash
 * @text カスタム50フラッシュ
 * @desc カスタム50テキストのフラッシュ
 * 書式: 赤, 緑, 青, 強さ, 表示時間
 * @default 0, 0, 0, 0, 0
 *
 * @help
 * 翻訳:ムノクラ
 * https://fungamemake.com/
 * https://twitter.com/munokura/
 *
 * 元プラグイン: http://sumrndm.site/battle-popup-customizer/
 *
 *
 * Battle Popup Customizer
 * Version 1.20
 * SumRndmDde
 *
 *
 * このプラグインはバトルポップアップにオプションを追加します。
 * ポップアップの属性をよりカスタマイズできるようになり、
 * カスタムポップアップを追加することもできます。
 *
 * このプラグインは、
 * ポップアップのテキストが外部ファイルを必要とするという事実を含め、
 * システムのコアな仕組みの多くを変更します。
 * 好きなフォントや色を入力するだけでいいようになりました。
 *
 *
 * ==========================================================================
 *  グローバルオプション
 * ==========================================================================
 *
 * 全てのポップアップのプロパティを操作することができます。
 * これにはフォントとフォントサイズが含まれます。
 * 前述したように、画像ファイルの代わりにフォントが使用されます。
 * さらに、同じセクション内に複数のポップアップがある場合、
 * 進行するポップアップがX軸とY軸上でどれだけずれるかを設定できます。
 *
 *
 * ==========================================================================
 *  既存のポップアップ
 * ==========================================================================
 *
 * 以下の既存のポップアップを操作することができます。
 *
 * HP Damage  - HPダメージ
 * HP Heal    - HP回復
 * MP Damage  - MPダメージ
 * MP Heal    - MP回復
 * TP Damage  - TPダメージ
 * TP Heal    - TP回復
 * --------------
 * Miss       - ミス
 * Evade      - 回避
 * Critical   - 会心
 * Guarded    - 防御
 *
 * 最初の6つは1つのセクションに設定され、
 * 残りのポップアップはそれぞれのセクションに落ちます。
 * これらのセクションは、ポップアップが重ならないようにそれぞれ移動します。
 *
 *
 * ==========================================================================
 *  ポップアップの属性
 * ==========================================================================
 *
 * 操作可能な属性の一覧です。
 *
 *
 *   Condition
 * このJavaScriptの条件がtrueの場合、ポップアップが使用されます。
 *
 * ==========================================================================
 *
 *   Text
 * ポップアップに表示されるテキスト。
 *
 * ==========================================================================
 *
 *   Location
 * ポップアップのX座標とY座標です。
 * ポップアップの初期位置を指します。
 * x,yの形式を使用します。
 *
 * 例: 20, -20
 *
 * ==========================================================================
 *
 *   Colors
 * ポップアップテキストで使われる色。
 * 書式: メインカラー|アウトラインカラー
 *
 * 例: #FFFFFF | #000000
 *
 * ==========================================================================
 *
 *   Animations
 * ポップアップに影響を与える全てのアニメーションのリストです。
 * 利用可能なアニメーションは以下です。
 *
 *   default    - デフォルト
 *   horizontal - 横伸縮
 *   float      - 浮かび上がる
 *   fall       - 落ちる
 *   left       - 左へスライド
 *   right      - 右へスライド
 *   rotation   - 1回転
 *
 * 1つまたは複数のアニメーションを使用することができます。
 * 複数のアニメーションはカンマで区切ってください。
 *
 * 例: default, rotation
 *
 *
 * ==========================================================================
 *
 *   Duration
 * ポップアップの表示時間をフレーム単位で指定します。
 *
 * ==========================================================================
 *
 *   Flash
 * ポップアップのフラッシュ。
 * 書式:赤,緑,青,強度,表示時間
 *
 * 例: 255, 0, 0, 160, 60
 *
 *
 * ==========================================================================
 *  ヘルプファイルの終わり
 * ==========================================================================
 *
 * ヘルプファイルの終わりへようこそ。
 *
 * 読んでくれてありがとう!
 * 質問があったり、このプラグインを楽しめたら、
 * 私のYouTubeチャンネルを登録してください!!
 *
 * https://www.youtube.com/c/SumRndmDde
 *
 *
 * 次の機会まで
 *   ~ SumRndmDde
 *
 */

スポンサードリンク

スポンサードリンク

Copyright© #ツクプラ , 2024 All Rights Reserved.