-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from Larkinabout/1.0.0
1.0.0
- Loading branch information
Showing
11 changed files
with
527 additions
and
407 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/** | ||
* Module-based constants | ||
*/ | ||
export const MODULE = { | ||
ID: 'token-action-hud-dnd5e' | ||
} | ||
|
||
/** | ||
* Core module version required by the system module | ||
*/ | ||
export const REQUIRED_CORE_MODULE_VERSION = { | ||
full: '1.0.(0+)', | ||
major: '1', | ||
minor: '0' | ||
} | ||
|
||
/** | ||
* Activation type icons | ||
*/ | ||
export const ACTIVATION_TYPE_ICON = { | ||
bonus: 'fas fa-plus', | ||
crew: 'fas fa-users', | ||
day: 'fas fa-hourglass-end', | ||
hour: 'fas fa-hourglass-half', | ||
lair: 'fas fa-home', | ||
minute: 'fas fa-hourglass-start', | ||
legendary: 'fas fas fa-dragon', | ||
reaction: 'fas fa-bolt', | ||
special: 'fas fa-star' | ||
} | ||
|
||
/** | ||
* Concentration icon | ||
*/ | ||
export const CONCENTRATION_ICON = 'fas fa-circle-c' | ||
|
||
/** | ||
* Prepared icon | ||
*/ | ||
export const PREPARED_ICON = 'fas fa-sun' | ||
|
||
/** | ||
* Ritual icon | ||
*/ | ||
export const RITUAL_ICON = 'fas fa-circle-r' | ||
|
||
/** | ||
* Proficiency level icons | ||
*/ | ||
export const PROFICIENCY_LEVEL_ICON = { | ||
0.5: 'fas fa-adjust', | ||
1: 'fas fa-check', | ||
2: 'fas fa-check-double' | ||
} |
Oops, something went wrong.