-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRotomecaMogExt.js
39 lines (32 loc) · 1.19 KB
/
RotomecaMogExt.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
//=============================================================================
// RotomecaMog.js
//=============================================================================
/*:
* @target MZ
* @plugindesc (V2.0.0) Divers extensions pour les plugins de MOGHUNTER
* @author Rotomeca
* @url https://github.com/Rotomeca/RPG-Maker-MZ-plugins
* @orderAfter RotomecaCore
*
* @help
* Site de MogHunter : https://mogplugins.wordpress.com
*
*/
//=============================================================================
// ** PLUGIN PARAMETERS
//=============================================================================
var Imported = Imported || {};
Imported.RotomecaMogExt = true;
var Rotomeca = Rotomeca || {};
(() => {
//=============================================================================
// *** MOG_ATB_Gauge ***
//=============================================================================
if (Imported.MOG_ATB_Gauge === true)
{
ImageManager.loadATBIcon = function(filename) {
if (StorageManager.spriteExist('atb', filename)) return this.loadBitmap('img/atb/', filename, 0, true);
else return this.loadBitmap('img/atb/', 'Face_Test', 0, true);
};
}
})();