forked from League-of-Foundry-Developers/fvtt-module-furnace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule.json
59 lines (59 loc) · 2.74 KB
/
module.json
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
{
"name": "furnace",
"title": "The Furnace",
"description": "<p>No Foundry is complete without it's Furnace!</p><p>This module contains a set of features that improve the Quality of Life of the DM/Players. The current features are : </p><p><strong>Advanced Drawing Tools :</strong>Improved drawing tools with different pattern fill types, new HUD, and various options.</p><p><strong>Advanced Macros:</strong> Use async script macros, handlebars templating, recursive macro calls and call macros with arguments or directly from chat.</p><p><strong>Split Journal :</strong> Select the split option from the context menu on a journal entry to split it into multiple entries.</p><p><strong>Tokens : </strong>As GM, you can enable/disable token vision for yourself. You can also drop an actor folder into a scene to deploy multiple tokens at once.</p><p><strong>Combat : </strong>Double click the initiative value in the combat tracker to quickly modify it.</p><p><strong>Playlists : </strong>Adds a 'Now Playing' section, and auto-hides sound controls until hovered. Helps in fine tuning of low level volumes.</p><hr/><p>See website from URL below for instructions on how to use all these features.</p><hr/>",
"version": "2.2",
"author": "KaKaRoTo",
"scripts": [
"libs/split-html.js",
"libs/h.min.js",
"libs/tokenizer.min.js",
"libs/hljs/highlight.pack.js",
"Patches/Patches.js",
"Macros/Macros.js",
"DrawingTools/DrawingsLayer.js",
"DrawingTools/RotationHandle.js",
"DrawingTools/Drawing.js",
"DrawingTools/DrawingHUD.js",
"DrawingTools/DrawingConfig.js",
"DrawingTools/DrawingTools.js",
"QoL/HBHelpers.js",
"QoL/Debug.js",
"QoL/Entities.js",
"QoL/Tokens.js",
"QoL/Combat.js",
"QoL/Playlist.js",
"QoL/Macros.js"
],
"styles": [
"Furnace.css",
"libs/hljs/styles/github-gist.css"
],
"packs": [
{
"name": "macros",
"label": "Advanced Macros",
"path": "packs/macros.db",
"module": "furnace",
"entity": "Macro"
}
],
"languages": [
{
"lang": "en",
"name": "English",
"path": "lang/en.json"
},
{
"lang": "pt-BR",
"name": "Português (Brasil)",
"path": "lang/pt-BR.json"
}
],
"url": "https://github.com/kakaroto/fvtt-module-furnace",
"manifest": "https://raw.githubusercontent.com/kakaroto/fvtt-module-furnace/master/module.json",
"download": "https://github.com/kakaroto/fvtt-module-furnace/archive/v2.2.zip",
"socket": true,
"minimumCoreVersion": "0.6.5",
"compatibleCoreVersion": "0.7.0"
}