Dark Plasma ちいさなメダルシステムを実現 - DarkPlasma_TinyMedal.js
シェア用テキスト:
▼Dark Plasma ちいさなメダルシステムを実現(DarkPlasma様作) - DarkPlasma_TinyMedal.js
https://plugin.fungamemake.com/archives/23872
DQシリーズのちいさなメダルシステムを実現します。
ふりがな:ちいさなめだるしすてむをじつげん
機能概要: DQシリーズのちいさなメダルシステムを実現します。
利用規約(ライセンス): MITライセンス
作者:DarkPlasma
作者サイト:https://twitter.com/plasma_dark
解説ページ:https://github.com/elleonard/RPGtkoolMV-Plugins
ダウンロードページ:https://raw.githubusercontent.com/elleonard/RPGtkoolMV-…
ファイル名:DarkPlasma_TinyMedal.js
プラグインのヘルプ:
/*: * @plugindesc ちいさなメダルシステムを実現するプラグイン * @author DarkPlasma * @license MIT * * @param Medal Item * @desc メダルアイテム * @text メダルアイテム * @type item * @default 1 * * @param Medal Count Variable * @desc メダルの預かり数を記録する変数 * @text メダル預かり数変数 * @type variable * @default 1 * @min 1 * * @param Auto Process Medal * @desc メダルシーンに入った時に自動でメダルを預かってもらう * @text 自動メダル預かり * @type boolean * @default false * * @param Medal Unit * @desc メダルカウントの単位 * @text メダルの単位 * @type string * @default 枚 * * @param Reward Items * @desc 報酬アイテムの一覧 * @text 報酬アイテム * @type struct<RewardItems>[] * @default [] * * @param Reward Weapons * @desc 報酬武器の一覧 * @text 報酬武器 * @type struct<RewardWeapons>[] * @default [] * * @param Reward Armors * @desc 報酬防具の一覧 * @text 報酬防具 * @type struct<RewardArmors>[] * @default [] * * @help * DQシリーズのちいさなメダルシステムを実現します。 * * ちいさなメダル預かり数が一定値を越えた時に一度だけアイテムがもらえます。 * * 以下のプラグインコマンドでちいさなメダルシーンに移行します。 * gotoSceneMedal */ /*~struct~RewardItems: * * @param Medal Count * @desc アイテムをもらうために必要なメダルの数 * @text 必要メダル数 * @type number * @default 1 * * @param Id * @desc もらえるアイテム * @text 報酬アイテム * @type item * @default 1 */ /*~struct~RewardWeapons: * * @param Medal Count * @desc 武器をもらうために必要なメダルの数 * @text 必要メダル数 * @type number * @default 1 * * @param Id * @desc もらえる武器 * @text 報酬武器 * @type weapon * @default 1 */ /*~struct~RewardArmors: * * @param Medal Count * @desc 防具をもらうために必要なメダルの数 * @text 必要メダル数 * @type number * @default 1 * * @param Id * @desc もらえる防具 * @text 報酬防具 * @type armor * @default 1 */