当サイトの運営者です。ゲーム制作とプラグイン開発が好きで、コミュニティに貢献したいと考えています。
RPGツクールMZでゲームを制作中です。
※プログラマ・エンジニアではありません。
DarkPlasma バフ倍率を個別設定 - DarkPlasma_BuffRate.js
シェア用テキスト:
▼DarkPlasma バフ倍率を個別設定(DarkPlasma様作) - DarkPlasma_BuffRate.js
https://plugin-mz.fungamemake.com/archives/802
バフの倍率を個別に設定する
ふりがな:ばふばいりつをこべつせってい
機能概要: バフの倍率を個別に設定する
利用規約(ライセンス): 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_BuffRate.js
プラグインのヘルプ:
// DarkPlasma_BuffRate 2.0.0
// Copyright (c) 2020 DarkPlasma
// This software is released under the MIT license.
// http://opensource.org/licenses/mit-license.php
/**
* 2020/09/08 2.0.0 パラメータ名変更
* 2020/08/27 1.0.0 MZ版公開
*/
/*:ja
* @plugindesc バフの倍率を個別に設定する
* @author DarkPlasma
* @license MIT
*
* @target MZ
* @url https://github.com/elleonard/RPGtkoolMZ-Plugins
*
* @param attack
* @text 攻撃力の強化/弱化倍率
* @type struct<BuffRate>
* @default {”buffRate1”:”25”, ”buffRate2”:”50”, ”debuffRate1”:”25”, ”debuffRate2”:”50”}
*
* @param defense
* @text 防御力の強化/弱化倍率
* @type struct<BuffRate>
* @default {”buffRate1”:”25”, ”buffRate2”:”50”, ”debuffRate1”:”25”, ”debuffRate2”:”50”}
*
* @param magicAttack
* @text 魔法力の強化/弱化倍率
* @type struct<BuffRate>
* @default {”buffRate1”:”25”, ”buffRate2”:”50”, ”debuffRate1”:”25”, ”debuffRate2”:”50”}
*
* @param magicDefense
* @text 魔法防御力の強化/弱化倍率
* @type struct<BuffRate>
* @default {”buffRate1”:”25”, ”buffRate2”:”50”, ”debuffRate1”:”25”, ”debuffRate2”:”50”}
*
* @param agility
* @text 敏捷性の強化/弱化倍率
* @type struct<BuffRate>
* @default {”buffRate1”:”25”, ”buffRate2”:”50”, ”debuffRate1”:”25”, ”debuffRate2”:”50”}
*
* @param luck
* @text 運の強化/弱化倍率
* @type struct<BuffRate>
* @default {”buffRate1”:”25”, ”buffRate2”:”50”, ”debuffRate1”:”25”, ”debuffRate2”:”50”}
*
* @help
* バフ(強化状態)の能力強化/弱化倍率を個別に設定できるようにします。
*/
/*~struct~BuffRate:
* @param buffRate1
* @text 1段階目強化倍率(%)
* @type number
* @default 25
*
* @param buffRate2
* @text 2段階目強化倍率(%)
* @type number
* @default 50
*
* @param debuffRate1
* @text 1段階目弱化倍率(%)
* @type number
* @default 25
*
* @param debuffRate2
* @text 2段階目弱化倍率(%)
* @type number
* @default 50
*/