DarkPlasma アイテムの入手個数を記録する - DarkPlasma_StoreItemGetCount.js
シェア用テキスト:
▼DarkPlasma アイテムの入手個数を記録する(DarkPlasma様作) - DarkPlasma_StoreItemGetCount.js
https://plugin.fungamemake.com/archives/28111
アイテムの入手個数を記録する
ふりがな:あいてむのにゅうしゅこすうをきろくする
機能概要: アイテムの入手個数を記録する
利用規約(ライセンス): MITライセンス
作者:DarkPlasma
作者サイト:https://elleonard.github.io/DarkPlasma-MZ-Plugins/index.html
解説ページ:https://github.com/elleonard/RPGtkoolMV-Plugins
ダウンロードページ:https://raw.githubusercontent.com/elleonard/RPGtkoolMV-…
ファイル名:DarkPlasma_StoreItemGetCount.js
プラグインのヘルプ:
/*: * @plugindesc アイテムの入手個数を記録するプラグイン * @author DarkPlasma * @license MIT * * @target MV * @url https://github.com/elleonard/RPGtkoolMV-Plugins * * @param storeAllGetCount * @text 全記録 * @desc 全アイテム/武器/防具の入手数を記録します。入手した種類が多いほどセーブデータが大きくなることに注意してください。 * @type boolean * @default false * * @param storeItemIds * @text 記録アイテム一覧 * @desc 入手数を記録するアイテム一覧です。全記録がONの時、この設定は意味がありません。 * @type item[] * @default [] * * @param storeWeaponIds * @text 記録武器一覧 * @desc 入手数を記録する武器一覧です。全記録がONの時、この設定は意味がありません。 * @type weapon[] * @default [] * * @param storeArmorIds * @text 記録防具一覧 * @desc 入手数を記録する防具一覧です。全記録がONの時、この設定は意味がありません。 * @type armor[] * @default [] * * @help * アイテム/武器/防具の入手数を記録します。 * 入手数は入手時に加算され、売却したり使用しても減少しません。 * * 入手数は以下のスクリプトで取得することができます。 * * アイテムの入手数 * $gameParty.itemGetCount(アイテムID) * * 武器の入手数 * $gameParty.weaponGetCount(武器ID) * * 防具の入手数 * $gameParty.armorGetCount(防具ID) */