forked from Roll20/roll20-api-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCheckItOutTheme.js
58 lines (51 loc) · 1.51 KB
/
CheckItOutTheme.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
(() => {
'use strict';
CheckItOut.themes.impl = {};
/**
* The base class for system-specific themes used by the Check It Out script.
* @abstract
*/
CheckItOut.themes.CheckItOutTheme = class {
/**
* The name of the theme.
* @type {string}
*/
get name() {
throw new Error('Not implemented.');
}
constructor() {}
/**
* Have a character check out some object, using any applicable system-
* specific rules.
* @param {Character} character The character who is checking the object.
* @param {Graphic} checkedObj The graphic for the object being checked.
* @return {Promise<string[]>}
*/
checkObject(character, checkedObj) {
_.noop(character, checkedObj);
throw new Error('Not implemented');
}
/**
* Get a list of the system-specific properties of an object to display
* in the GM wizard.
* @abstract
* @param {Graphic} checkedObj
* @return {WizardProperty[]}
*/
getWizardProperties(checkedObj) {
_.noop(checkedObj);
throw new Error('Not implemented');
}
/**
* Modifies a theme-specific property for an object.
* @abstract
* @param {Graphic} checkedObj
* @param {string} prop The ID of the property being modified.
* @param {string[]} params The parameters given for the new property value.
*/
modifyWizardProperty(checkedObj, prop, params) {
_.noop(checkedObj, prop, params);
throw new Error('Not implemented.');
}
};
})();