77 lines
2.8 KiB
JavaScript
77 lines
2.8 KiB
JavaScript
/*=============================================================================
|
||
StateEffect.js
|
||
----------------------------------------------------------------------------
|
||
(C)2022 Triacontane
|
||
This software is released under the MIT License.
|
||
http://opensource.org/licenses/mit-license.php
|
||
----------------------------------------------------------------------------
|
||
Version
|
||
1.0.0 2022/04/10 初版
|
||
----------------------------------------------------------------------------
|
||
[Blog] : https://triacontane.blogspot.jp/
|
||
[Twitter]: https://twitter.com/triacontane/
|
||
[GitHub] : https://github.com/triacontane/
|
||
=============================================================================*/
|
||
|
||
/*:
|
||
* @plugindesc ステートエフェクトプラグイン
|
||
* @target MZ
|
||
* @url https://github.com/triacontane/RPGMakerMV/tree/mz_master/StateEffect.js
|
||
* @base PluginCommonBase
|
||
* @orderAfter PluginCommonBase
|
||
* @author トリアコンタン
|
||
*
|
||
* @help StateEffect.js
|
||
*
|
||
* ステートが有効になったとき、対象者に指定スキルの使用効果を適用します。
|
||
* 継続的な効果ではなく有効になった瞬間にだけ発現する効果を表現できます。
|
||
*
|
||
* ステートが有効になったときにスキル[3]のダメージと効果を
|
||
* 対象者に適用します。
|
||
* <StateEffect:3>
|
||
* <ステート効果:3>
|
||
*
|
||
* 使用効果以外のスキル内容(ダメージやアニメーション等)は参照されません。
|
||
*
|
||
* このプラグインの利用にはベースプラグイン『PluginCommonBase.js』が必要です。
|
||
* 『PluginCommonBase.js』は、RPGツクールMZのインストールフォルダ配下の
|
||
* 以下のフォルダに格納されています。
|
||
* dlc/BasicResources/plugins/official
|
||
*
|
||
* 利用規約:
|
||
* 作者に無断で改変、再配布が可能で、利用形態(商用、18禁利用等)
|
||
* についても制限はありません。
|
||
* このプラグインはもうあなたのものです。
|
||
*/
|
||
|
||
(() => {
|
||
"use strict";
|
||
|
||
const _Game_BattlerBase_addNewState = Game_BattlerBase.prototype.addNewState;
|
||
Game_BattlerBase.prototype.addNewState = function (stateId) {
|
||
_Game_BattlerBase_addNewState.apply(this, arguments);
|
||
const skillId = PluginManagerEx.findMetaValue($dataStates[stateId] || {}, [
|
||
"ステート効果",
|
||
"StateEffect",
|
||
]);
|
||
if (skillId) {
|
||
this.applyStateEffect(skillId);
|
||
}
|
||
};
|
||
|
||
Game_BattlerBase.prototype.applyStateEffect = function (skillId) {
|
||
if (!$dataSkills[skillId]) {
|
||
return;
|
||
}
|
||
const action = new Game_Action(this);
|
||
action.setSkill(skillId);
|
||
action.applyStateEffect(this);
|
||
};
|
||
|
||
Game_Action.prototype.applyStateEffect = function (target) {
|
||
this.item().effects.forEach(function (effect) {
|
||
this.applyItemEffect(target, effect);
|
||
}, this);
|
||
this.applyGlobal();
|
||
};
|
||
})();
|