「全てのVictor Engineプラグインに必要なベースプラグイン」です。
元プラグインは 下記ページで英語版が配布されています。
victorenginescripts.wordpress.com/rpg-maker-mv/basic-module/
類似機能のプラグイン
- 未発見
どなたかのお役に立てば幸いです 。
/*:ja
* ===========================================================================
* @plugindesc v1.23 - 全てのVictor Engineプラグインに必要なベースコード付きプラグイン
* @author Victor Sant
*
* @param == Trait Names ==
* @text == 特性名 ==
*
* @param Hit Rate Name
* @text 命中率の名前
* @desc '命中率'ウィンドウに表示される元パラメータ名
* @default 命中
*
* @param Evasion Rate Name
* @text 回避率の名前
* @desc '回避率'ウィンドウに表示される元パラメータ名
* @default 回避
*
* @param Critical Rate Name
* @text 会心率の名前
* @desc '会心率'ウィンドウに表示される元パラメータ名
* @default 会心
*
* @param Critical Evasion Name
* @text 会心回避率の名前
* @desc '会心回避率'ウィンドウに表示される元のパラメータ名
* @default 会心回避
*
* @param Magic Evasion Name
* @text 魔法回避率の名前
* @desc '魔法回避率'ウィンドウに表示される元のパラメータ名
* @default 魔法回避
*
* @param Magic Reflection Name
* @text 魔法反射率の名前
* @desc '魔法反射率'ウィンドウに表示される元のパラメータ名
* @default 魔法反射
*
* @param Counter Attack Name
* @text 反撃率の名前
* @desc '反撃率'ウィンドウに表示される元のパラメータ名
* @default 反撃
*
* @param HP Regeneration Name
* @text HP再生率の名前
* @desc 'HP再生率'ウィンドウに表示される元のパラメータ名
* @default HP再生
*
* @param MP Regeneration Name
* @text MP再生率の名前
* @desc 'MP再生率'ウィンドウに表示される元のパラメータ名
* @default MP再生
*
* @param TP Regeneration Name
* @text TP再生率の名前
* @desc 'TP再生率'ウィンドウに表示される元のパラメータ名
* @default TP再生
*
* @param Target Rate Name
* @text 狙われ率の名前
* @desc '狙われ率'ウィンドウに表示される元のパラメータ名
* @default 狙われ率
*
* @param Guard Rate Name
* @text 防御効果率の名前
* @desc '防御効果率'ウィンドウに表示される元のパラメータ名
* @default 防御効果率
*
* @param Recovery Effect Name
* @text 回復効果率の名前
* @desc '回復効果率'ウィンドウに表示される元のパラメータ名
* @default 回復
*
* @param Pharmacology Name
* @text 薬の知識の名前
* @desc '薬の知識'ウィンドウに表示される元のパラメータ名
* @default 薬の知識
*
* @param MP Cost Rate Name
* @text MP消費率の名前
* @desc 'MP消費率'ウィンドウに表示される元のパラメータ名
* @default MP消費
*
* @param TP Charge Rate Name
* @text TPチャージ率の名前
* @desc 'TPチャージ率'ウィンドウに表示される元のパラメータ名
* @default TPチャージ
*
* @param Physical Damage Name
* @text 物理ダメージ率の名前
* @desc '物理ダメージ率'ウィンドウに表示される元のパラメータ名
* @default 物理ダメージ
*
* @param Magical Damage Name
* @text 魔法ダメージ率の名前
* @desc '魔法ダメージ率'ウィンドウに表示される元のパラメータ名
* @default 魔法ダメージ
*
* @param Floor Damage Name
* @text 床ダメージ率の名前
* @desc '床ダメージ率'ウィンドウに表示される元のパラメータ名
* @default 床ダメージ
*
* @param Experience Rate Name
* @text 経験値獲得率の名前
* @desc '経験値獲得率'ウィンドウに表示される元のパラメータ名
* @default 経験値獲得率
*
* ===========================================================================
* @help
* 翻訳:ムノクラ
* https://fungamemake.com/
* https://twitter.com/munokura/
*
* 元プラグイン:
* https://victorenginescripts.wordpress.com/rpg-maker-mv/basic-module/
* ===========================================================================
* このプラグインを他のVictor Engineプラグインの上にインストールします。
* ===========================================================================
*
* ===========================================================================
* Version History:
* ---------------------------------------------------------------------------
* v1.00 - 2015.11.26 First release.
* v1.01 - 2015.11.29 Added function to get database objects.
* v1.02 - 2015.12.07 Added function to get multiples elements.
* Added check for plugin correct order.
* v1.03 - 2015.12.13 Added function to get page comments.
* v1.04 - 2015.12.21 Added function to check only relevant objects.
* v1.05 - 2015.12.25 Added check to wait bitmap loading.
* v1.06 - 2015.12.31 Added rgb to hex and hex to rgb functions.
* Added function to get plugins parameters.
* v1.07 - 2016.01.07 Fixed issue with plugin order checks.
* v1.08 - 2016.01.17 Added function to get BattleLog method index.
* Added function to insert methods on BattleLog.
* v1.09 - 2016.01.24 Added function to set wait for animations.
* v1.10 - 2016.02.05 Added function to get values from regex.
* v1.11 - 2016.02.10 Added function to capitalize texts.
* Added Plugin Parameter to set trait display names.
* v1.12 - 2016.02.18 Added function to get parameter names.
* v1.13 - 2016.02.26 Added functions to setup battler direction.
* v1.14 - 2016.03.15 Added functions to check opponents.
* v1.15 - 2016.03.18 Added function for compatibility with YEP.
* v1.16 - 2016.03.23 Added function to replace mathods.
* Added functions for dynamic motions.
* v1.17 - 2016.04.01 Fixed issue with battler sprite check.
* v1.18 - 2016.04.21 Fixed issue with damage popup on action user.
* v1.19 - 2016.04.30 Added function to get evaluated font color.
* v1.20 - 2016.05.12 Added function to get width of text with escape codes.
* v1.21 - 2016.05.31 Improved method stack for dynamic motions.
* Added functions for compatibility with Battle Motions.
* v1.22 - 2016.06.26 Added functions for escape command.
* v1.23 - 2017.05.25 Added functions for damage formula.
* ===========================================================================
*/