ldng / global-progress-clocks

FoundryVTT module for Blades in the Dark style progress clocks that show on the sidebar

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Global Progress Clocks

Blades in the Dark style progress clocks that show on the sidebar for Foundry VTT. These are shown globally to all players, and are not stored in actor data like other modules so they should be system agnostic (except for those that make use of that space in some way).

image

These clocks are only editable by the gamemaster, and can either be edited with a dialog or ticked by left or right clicking.

Scripting

There is no full api, but there is window.clockDatabase to mess with the clocks themselves. Here's an example to increment an existing clock.

const clock = window.clockDatabase.getName("Test a cloc");
window.clockDatabase.update({ id: clock.id, value: clock.value + 1 });

Credits

  • Lunar-Dawn for converting from the original images to CSS generated

About

FoundryVTT module for Blades in the Dark style progress clocks that show on the sidebar

License:MIT License


Languages

Language:JavaScript 93.1%Language:Handlebars 3.8%Language:CSS 3.1%