当サイトの運営者です。ゲーム制作とプラグイン開発が好きで、コミュニティに貢献したいと考えています。
RPGツクールMZでゲームを制作中です。
※プログラマ・エンジニアではありません。
バトルコマンドを画像化 - Kpp_PictureBattleCommand.js
シェア用テキスト:
▼バトルコマンドを画像化(カッピ様作) - Kpp_PictureBattleCommand.js
https://plugin-mz.fungamemake.com/archives/706
バトル画面のコマンドウィンドウのデザインを変更します。 ウィンドウの項目に、背景画像が追加されます。 画像はプラグインパラメータで差し替えできます。
ふりがな:ばとるこまんどをがぞうか
機能概要: バトル画面のコマンドウィンドウのデザインを変更します。 ウィンドウの項目に、背景画像が追加されます。 画像はプラグインパラメータで差し替えできます。
利用規約(ライセンス): MITライセンス
作者:カッピ
作者サイト:http://birdwind.webcrow.jp/
ダウンロードページ:http://birdwind.webcrow.jp/plugin/MZ/PictureBattleComma…
ファイル名:Kpp_PictureBattleCommand.js
プラグインのヘルプ:
//============================================================================= // RPG Maker MZ - Kpp_PictureBattleCommand.js //============================================================================= // Copyright (c) 2020 カッピ // Released under the MIT license // http://opensource.org/licenses/mit-license.php // // ウェブサイト // http://birdwind.webcrow.jp/ // // Twitter // https://twitter.com/kappi_bw /*: * @target MZ * @plugindesc バトルコマンドを画像化 ver 1.01 * @author カッピ * @url http://birdwind.webcrow.jp/plugin/ * * @help Kpp_PictureBattleCommand.js * * バトル画面のコマンドウィンドウのデザインを変更します。 * ウィンドウの項目に、背景画像が追加されます。 * 画像はプラグインパラメータで差し替えできます。 * * 背景画像は、次のフォルダに入れてください。 * img/pictures/ * * <スキルリストの背景画像> * 戦闘中のスキルリストに表示される背景画像は、 * プラグインパラメータで指定する以外に、 * データベースのスキルでも変更できます。 * データベースで指定しなかったスキルのみ、 * プラグインパラメータで指定した画像を表示します。 * * データベースで指定するには、 * スキルのメモ欄に以下のようなテキストを書きます。 * <commandPicture:画像ファイル名> * * 例) <commandPicture:BattleCommand_Heal> * * ※拡張子(.png)は書きません * ※画像は img/pictures/ フォルダに入れておいてください * * @param modeHorz * @text コマンド横表示モード * @desc 縦表示のバトルコマンドを横表示に切り替える * @type select * @option OFF * @option ON * @default OFF * * @param pictureWidth * @text 画像ファイルの幅 * @desc コマンドに表示する画像ファイルの共通の横幅 * @type number * @default 160 * @min 60 * @max 384 * * @param pictureHeight * @text 画像ファイルの高さ * @desc コマンドに表示する画像ファイルの共通の縦幅 * @type number * @default 80 * @min 40 * @max 256 * * @param selectScale * @text 選択中の拡大率 * @desc コマンドが選択されている時の画像の拡大率(%) * @type number * @default 100 * @min 0 * @max 100 * * @param deselectScale * @text 非選択時の拡大率 * @desc コマンドが選択されていない時の画像の拡大率(%) * @type number * @default 80 * @min 0 * @max 100 * @param fileFight * @text 戦うコマンドの画像 * @desc 「戦う」コマンドに表示する画像ファイル * @default BattleCommand_Fight * @type file * @dir img/pictures/ * * @param fileEscape * @text 逃げるコマンドの画像 * @desc 「逃げる」コマンドに表示する画像ファイル * @default BattleCommand_Escape * @type file * @dir img/pictures/ * * @param fileAttack * @text 攻撃コマンドの画像 * @desc 「攻撃」コマンドに表示する画像ファイル * @default BattleCommand_Fight * @type file * @dir img/pictures/ * * @param fileSkill * @text スキルコマンドの画像 * @desc 「スキル(必殺技など)」コマンドに表示する画像ファイル * @default BattleCommand_Skill * @type file * @dir img/pictures/ * * @param fileGuard * @text 防御コマンドの画像 * @desc 「防御」コマンドに表示する画像ファイル * @default BattleCommand_Guard * @type file * @dir img/pictures/ * * @param fileItem * @text アイテムコマンドの画像 * @desc 「アイテム」コマンドに表示する画像ファイル * @default BattleCommand_Item * @type file * @dir img/pictures/ * * @param fileItemList * @text アイテムリストの項目の画像 * @desc 戦闘中のアイテムリストに表示する画像ファイル * @default BattleCommand_Item * @type file * @dir img/pictures/ * * @param fileSkillList * @text スキルリストの項目の画像 * @desc 戦闘中のスキルリストに表示する画像ファイル / データベースで指定されていれば、そちらを優先 * @default BattleCommand_Skill * @type file * @dir img/pictures/ * * @param fileEnemy * @text エネミー選択ウィンドウの項目の画像 * @desc 戦闘中のエネミー選択ウィンドウに表示する画像ファイル * @default BattleCommand_Enemy * @type file * @dir img/pictures/ * * @noteParam commandPicture * @noteRequire 1 * @noteDir img/pictures/ * @noteType file * @noteData skills */