当サイトの運営者です。ゲーム制作とプラグイン開発が好きで、コミュニティに貢献したいと考えています。
RPGツクールMZでゲームを制作中です。
※プログラマ・エンジニアではありません。
DarkPlasma ちいさなメダルシステム - DarkPlasma_TinyMedal.js
シェア用テキスト:
▼DarkPlasma ちいさなメダルシステム(DarkPlasma様作) - DarkPlasma_TinyMedal.js
https://plugin-mz.fungamemake.com/archives/824
DQシリーズのちいさなメダルシステム(累計式)を実現します。
ふりがな:ちいさなめだるしすてむ
機能概要: DQシリーズのちいさなメダルシステム(累計式)を実現します。
利用規約(ライセンス): MITライセンス
作者:DarkPlasma
作者サイト:https://elleonard.github.io/DarkPlasma-MZ-Plugins/index.html
解説ページ:https://github.com/elleonard/DarkPlasma-MZ-Plugins/tree…
ダウンロードページ:https://raw.githubusercontent.com/elleonard/DarkPlasma-…
ファイル名:DarkPlasma_TinyMedal.js
プラグインのヘルプ:
// DarkPlasma_TinyMedal 2.1.0
// Copyright (c) 2020 DarkPlasma
// This software is released under the MIT license.
// http://opensource.org/licenses/mit-license.php
/**
* 2020/09/18 2.1.0 入手順を必要メダルの少ない順に変更
* 2020/09/10 2.0.0 パラメータ名を変更
* ウェイトなし歩行が遅れる不具合を修正
* 2020/08/25 1.0.0 MZ版公開
*/
/*:ja
* @plugindesc ちいさなメダルシステム
* @author DarkPlasma
* @license MIT
*
* @target MZ
* @url https://github.com/elleonard/RPGtkoolMZ-Plugins
*
* @param medalItem
* @desc メダルアイテム
* @text メダルアイテム
* @type item
* @default 1
*
* @param medalCountVariable
* @desc メダルの預かり数を記録する変数
* @text メダル預かり数変数
* @type variable
* @default 1
* @min 1
*
* @param medalUnit
* @desc メダルカウントの単位
* @text メダルの単位
* @type string
* @default 枚
*
* @param rewardItems
* @desc 報酬アイテムの一覧
* @text 報酬アイテム
* @type struct<RewardItems>[]
* @default []
*
* @param rewardWeapons
* @desc 報酬武器の一覧
* @text 報酬武器
* @type struct<RewardWeapons>[]
* @default []
*
* @param rewardArmors
* @desc 報酬防具の一覧
* @text 報酬防具
* @type struct<RewardArmors>[]
* @default []
*
* @param rewardMessages
* @desc 報酬メッセージリスト
* @text 報酬メッセージ
* @type struct<RewardMessage>[]
* @default [”{”message”:”${itemName} を手に入れた!”,”faceFile”:””,”faceIndex”:”0”}”]
*
* @command gotoSceneMedal
* @text ちいさなメダルシーンを開く
*
* @command processTinyMedal
* @text ちいさなメダルを渡す
*
* @help
* DQシリーズのちいさなメダルシステム(累計式)を実現します。
*/