An intentionally minimalist Foundry system designed to let you play your games while staying out of the way. https://foundryvtt.com/packages/taf
Find a file
2024-09-29 00:46:39 -06:00
.github/workflows Move the workflow into the workflow folder :') 2024-08-30 18:10:15 -06:00
.vscode Get the base Actor sheet working w/ collaboration 2024-08-28 22:36:12 -06:00
scripts Tweak the dice rolling macro to utilize the multi-input ask dialog 2024-09-21 18:08:50 -06:00
src Feature-flag the StorableSize implementation 2024-09-29 00:18:57 -06:00
styles Working on an update for DialogManager#ask that allows multiple inputs in the Dialog 2024-09-02 00:48:32 -06:00
templates Working on an update for DialogManager#ask that allows multiple inputs in the Dialog 2024-09-02 00:48:32 -06:00
.gitignore Have git ignore the compiled styles 2024-09-02 00:49:35 -06:00
augments.d.ts Initial commit 2024-08-28 21:23:31 -06:00
eslint.config.mjs Change the way feature flags are working because using settings was a bad idea (and bump version to 2.0.0 since it's an API change) 2024-09-29 00:09:30 -06:00
jsconfig.json Initial commit 2024-08-28 21:23:31 -06:00
package-lock.json Get the base Actor sheet working w/ collaboration 2024-08-28 22:36:12 -06:00
package.json Initial commit 2024-08-28 21:23:31 -06:00
README.md Add some info into the README about the featureflags 2024-09-29 00:46:39 -06:00
system.json Change the way feature flags are working because using settings was a bad idea (and bump version to 2.0.0 since it's an API change) 2024-09-29 00:09:30 -06:00

Text-Based Actors

This is an intentionally bare-bones system that features a text-only character sheet, allowing the playing of games that may not otherwise have a Foundry system implementation.

Features

There are not too many features included in this system for things like automation as it's meant to be used to mostly play rules-light games. However there are some special features that can be enabled on a per-world basis using a world script to enable feature flags that you want.

List of Feature Flags

Flag Description
ROLL_MODE_CONTENT Allows players, GMs, and macros to send "blind" chat messages where only the GM gets to see the content.
STORABLE_SHEET_SIZE Makes it so that certain sheets are able to have their size saved, so that it resumes that size when opened.

Example Feature Flag

In order to change these flags, you must make a world script that has something like the below code in it:

//           v- this is the name of the flag from the table above
taf.FEATURES.STORABLE_SHEET_SIZE = true;