-
Notifications
You must be signed in to change notification settings - Fork 11
/
MNKR_GetItemId.js
70 lines (64 loc) · 2.52 KB
/
MNKR_GetItemId.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
/*
* --------------------------------------------------
* MNKR_GetItemId.js
* Ver.1.1.0
* Copyright (c) 2022 Munokura
* This software is released under the MIT license.
* http://opensource.org/licenses/mit-license.php
* --------------------------------------------------
*/
/*:
* @target MZ MV
* @url https://raw.githubusercontent.com/munokura/MNKR-MZ-plugins/master/MNKR_GetItemId.js
* @plugindesc アイテムを使用した時、アイテムIDを指定変数に代入します。アイテムを使用すると開始するイベント等が作成できます。
* @author munokura
*
* @help
* アイテムを使用した時、アイテムIDを指定変数に代入します。
* タグ指定していないアイテムを使用すると、0を代入します。
* アイテムシーンをキャンセルした時にも、0を代入します。
*
* イベントの出現条件・条件分岐に使用することで、
* アイテムを使用すると開始するイベント等が作成できます。
*
*
* 使い方
* 使用対象にしたいアイテムのメモ欄に下記のタグを入れてください。
* <MNKR_GetItemId>
*
*
* 利用規約:
* MITライセンスです。
* https://licenses.opensource.jp/MIT/MIT.html
* 作者に無断で改変、再配布が可能で、
* 利用形態(商用、18禁利用等)についても制限はありません。
*
*
* @param itemIdVariables
* @text アイテムID代入変数
* @type variable
* @default 0
* @desc タグ指定されたアイテムを使用した時にIDを代入する先の変数です。
*/
(() => {
"use strict";
const pluginName = document.currentScript.src.split("/").pop().replace(/\.js$/, "");
const parameters = PluginManager.parameters(pluginName);
const PRM_itemIdVariables = Number(parameters['itemIdVariables'] || 0);
const _Scene_Item_onItemOk = Scene_Item.prototype.onItemOk;
Scene_Item.prototype.onItemOk = function () {
const hasItemMeta = this.item().meta.MNKR_GetItemId;
if (hasItemMeta) {
const usedItemId = this.item().id;
$gameVariables.setValue(PRM_itemIdVariables, usedItemId);
} else {
$gameVariables.setValue(PRM_itemIdVariables, 0);
}
_Scene_Item_onItemOk.call(this);
};
const _Scene_Item_onItemCancel = Scene_Item.prototype.onItemCancel;
Scene_Item.prototype.onItemCancel = function () {
$gameVariables.setValue(PRM_itemIdVariables, 0);
_Scene_Item_onItemCancel.call(this);
};
})();