Custom Actor Types/Sheets
As of the 0.2.0 version of the PbtA system, you can now make custom actor types in addition to characters and NPCs.
To define a custom actor type, you use the same structure as either characters or npcs, but you use your custom actor type name instead of character or npc in all of your properties. In addition, there's an optional baseType property on custom actor types to choose whether it should use the character sheet as its base (meaning a wider layout and with support for stats) or the npc sheet.
Example Custom Actor Type
The following example would be added to the end of your sheetConfig TOML after all of your other settings.
In it, we've defined two custom actor types:
foobar
- Custom actor type using thenpc
sheet as itsbaseType
.ipsum
- Custom actor type using thecharacter
sheet as itsbaseType
, which also allows for including rollable stats.
Last updated