forked from triacontane/RPGMakerMV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathActionResultKeep.js
237 lines (216 loc) · 7.26 KB
/
ActionResultKeep.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
/*=============================================================================
ActionResultKeep.js
----------------------------------------------------------------------------
(C)2022 Triacontane
This software is released under the MIT License.
http://opensource.org/licenses/mit-license.php
----------------------------------------------------------------------------
Version
1.0.0 2022/08/30 初版
----------------------------------------------------------------------------
[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/ActionResultKeep.js
* @base PluginCommonBase
* @orderAfter PluginCommonBase
* @author トリアコンタン
*
* @param flagResultList
* @text フラグ結果リスト
* @desc 行動結果のうちフラグ項目を指定したスイッチに格納します。
* @default []
* @type struct<FlagResult>[]
*
* @param variableResultList
* @text 数値結果リスト
* @desc 行動結果のうち数値、配列項目を指定した変数に格納します。
* @default []
* @type struct<VariableResult>[]
*
* @help ActionResultKeep.js
*
* 直前の行動の使用者や結果を専用の変数に保持します。
* スキルから呼び出されたコモンイベントなどで参照できます。
* それぞれ対応するスクリプトを実行してください。
*
* ・使用者
* $gameTemp.lastSubject()
* ・対象者
* $gameTemp.lastTarget()
* ・スキル
* $gameTemp.lastSkill()
* ・行動結果(成功判定や回避判定)
* プラグインパラメータで設定した内容がスイッチや変数に格納されます。
*
* このプラグインの利用にはベースプラグイン『PluginCommonBase.js』が必要です。
* 『PluginCommonBase.js』は、RPGツクールMZのインストールフォルダ配下の
* 以下のフォルダに格納されています。
* dlc/BasicResources/plugins/official
*
* 利用規約:
* 作者に無断で改変、再配布が可能で、利用形態(商用、18禁利用等)
* についても制限はありません。
* このプラグインはもうあなたのものです。
*/
/*~struct~FlagResult:
*
* @param switchId
* @text スイッチID
* @desc フラグ項目が格納されるスイッチ番号です。
* @default 1
* @type switch
*
* @param property
* @text プロパティ
* @desc 指定したプロパティの値がスイッチに格納されます。
* @default missed
* @type select
* @option ミス
* @value missed
* @option 回避
* @value evaded
* @option 物理攻撃
* @value physical
* @option 吸収
* @value drain
* @option クリティカル
* @value critical
* @option 行動に成功
* @value success
* @option HP効果あり
* @value hpAffected
*
*/
/*~struct~VariableResult:
*
* @param variableId
* @text 変数ID
* @desc 数値項目が格納される変数番号です。
* @default 1
* @type variable
*
* @param property
* @text プロパティ
* @desc 指定したプロパティの値が変数に格納されます。
* @default hpDamage
* @type select
* @option HP効果量
* @value hpDamage
* @option MP効果量
* @value mpDamage
* @option TP効果量
* @value tpDamage
* @option 付加ステート配列
* @value addedStates
* @option 解除ステート配列
* @value removedStates
* @option 付加バフ配列
* @value addedBuffs
* @option 付加デバフ配列
* @value addedDebuffs
* @option 解除バフ配列
* @value removedBuffs
*
*/
(() => {
'use strict';
const script = document.currentScript;
const param = PluginManagerEx.createParameter(script);
if (!param.flagResultList) {
param.flagResultList = [];
}
if (!param.variableResultList) {
param.variableResultList = [];
}
const _Game_Temp_initialize = Game_Temp.prototype.initialize;
Game_Temp.prototype.initialize = function() {
_Game_Temp_initialize.apply(this, arguments);
this._lastAction = new Game_LastAction();
};
Game_Temp.prototype.lastAction = function() {
return this._lastAction
};
Game_Temp.prototype.lastSubject = function() {
return this._lastAction.findSubject();
};
Game_Temp.prototype.lastTarget = function() {
return this._lastAction.findTarget();
};
Game_Temp.prototype.lastSkill = function() {
return this._lastAction.findItem();
};
/**
* Game_LastAction
* 最後の行動結果を保持するためのクラスです。
*/
class Game_LastAction {
constructor() {
this._subjectIsActor = null;
this._targetIsActor = null;
this._usingIsSkill = null;
}
updateSubject(subject) {
this._subjectIsActor = subject.isActor();
}
updateTarget(target) {
this._targetIsActor = target.isActor();
}
updateUsed(item) {
this._usingIsSkill = DataManager.isSkill(item);
}
updateResult(result) {
param.flagResultList.forEach(item => {
$gameSwitches.setValue(item.switchId, result[item.property]);
});
param.variableResultList.forEach(item => {
$gameVariables.setValue(item.variableId, result[item.property]);
});
}
findSubject() {
if (this._subjectIsActor) {
return $gameActors.actor($gameTemp.lastActionData(2));
} else {
return $gameTroop.members()[$gameTemp.lastActionData(3) - 1];
}
}
findTarget() {
if (this._targetIsActor) {
return $gameActors.actor($gameTemp.lastActionData(4));
} else {
return $gameTroop.members()[$gameTemp.lastActionData(5) - 1];
}
}
findItem() {
if (this._usingIsSkill) {
return $dataSkills[$gameTemp.lastActionData(0)];
} else {
return $dataItems[$gameTemp.lastActionData(1)];
}
}
}
const _Game_Action_apply = Game_Action.prototype.apply;
Game_Action.prototype.apply = function(target) {
_Game_Action_apply.apply(this, arguments);
$gameTemp.lastAction().updateResult(target.result());
};
const _Game_Action_updateLastSubject = Game_Action.prototype.updateLastSubject;
Game_Action.prototype.updateLastSubject = function() {
_Game_Action_updateLastSubject.apply(this, arguments);
$gameTemp.lastAction().updateSubject(this.subject());
};
const _Game_Action_updateLastUsed = Game_Action.prototype.updateLastUsed;
Game_Action.prototype.updateLastUsed = function() {
_Game_Action_updateLastUsed.apply(this, arguments);
$gameTemp.lastAction().updateUsed(this.item());
};
const _Game_Action_updateLastTarget = Game_Action.prototype.updateLastTarget;
Game_Action.prototype.updateLastTarget = function(target) {
_Game_Action_updateLastTarget.apply(this, arguments);
$gameTemp.lastAction().updateTarget(target);
};
})();