-
Notifications
You must be signed in to change notification settings - Fork 8
/
PluginTemplateFull.js
executable file
·103 lines (94 loc) · 2.23 KB
/
PluginTemplateFull.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
//=============================================================================
// RPG Maker MZ - PluginTemplate
//=============================================================================
/*:
* @target MZ
* @plugindesc It's a plugin template.
* @author
* @url
*
* @help PluginTemplate.js
* ver. 1.0.0
*
* [History]
* 01/01/2022 1.0.0 Released
*
* This is a plugin template.
*
*
* This plugin is released under MIT license.
* https://opensource.org/licenses/mit-license.php
*
*
* @param paramTemplate
* @text Parameter Template
* @desc It's a template for a plugin parameter.
* @default 0
* @type number
*
*
* @command commandTemplate
* @text Command Template
* @desc It's a template for a plugin command.
*
* @arg commandArg
* @text Command Argument
* @desc It's an argument for the plugin command.
* @default 0
* @type select
* @option Value Template1
* @value 0
* @option Value Template2
* @value 1
*
*/
/*:ja
* @target MZ
* @plugindesc プラグインのテンプレートです。
* @author
* @url
*
* @help PluginTemplate.js
* ver. 1.0.0
*
* [バージョン履歴]
* 2022/01/01 1.0.0 リリース
*
* これはプラグインのテンプレートです。
*
*
* このプラグインはMITライセンスにてリリースされています。
* https://opensource.org/licenses/mit-license.php
*
*
* @param paramTemplate
* @text パラメータテンプレート
* @desc プラグインパラメータのテンプレートです。
* @default 0
* @type number
*
*
* @command commandTemplate
* @text コマンドテンプレート
* @desc プラグインコマンドのテンプレートです。
*
* @arg commandArg
* @text コマンドテンプレート引数
* @desc コマンドテンプレートの引数です。
* @default 0
* @type select
* @option 値テンプレート1
* @value 0
* @option 値テンプレート2
* @value 1
*
*/
(() => {
'use strict';
const PLUGIN_NAME = "PluginTemplate";
const pluginParams = PluginManager.parameters(PLUGIN_NAME);
const PARAM_TEMPLATE = Number(pluginParams.paramTemplate);
PluginManager.registerCommand(PLUGIN_NAME, "commandTemplate", args => {
Number(args.commandArg);
});
})();