Skip to content

Latest commit

 

History

History
97 lines (78 loc) · 3.94 KB

File metadata and controls

97 lines (78 loc) · 3.94 KB

Templates for 5eTools

5eTools default templates

5eTools default templates

Valid template keys for 5etools: background, class, deck, deity, feat, hazard, index.txt, item, monster, note, object, psionic, race, reward, spell, subclass, vehicle

5eTools templates with images

Some 5eTools data types have fluff images. These templates include those images in the markdown.

5eTools alternate monster templates

  • Markdown statblock with minimal YAML frontmatter for use with Fantasy Statblock and Initiative Tracker plugins

    • Monsters, objects, and vehicles that have statblock: true will populate the Fantasy Statblock bestiary.
    • Initiative Tracker only needs a few elements from the statblock for encounter building. {resource.5eInitiativeYaml} will emit only those elements.
    • The statblock-link is used by Initiative Tracker to embed the markdown statblock in the creature view.
    • monster2md-yamlStatblock-header.txt
    • object2md-yamlStatblock-header.txt

    The important frontmatter elements of this example:

    statblock: true
    statblock-link: "#^statblock"
    {resource.5eInitiativeYaml}

    In the body of the note:

    ```ad-statblock
    ...statblock content...
    ```
    ^statblock
  • Fantasy Statblock statblock in the body

    The important frontmatter elements of this example:

    statblock: inline

    In the body of the note:

    ```statblock
    {resource.5eStatblockYaml}
    ```
  • Markdown statblock, alternate score display - monster2md-scores.txt (similar will work for objects)

    ```ad-statblock
    ...
    - STR: {resource.scores.str} `dice: 1d20 {resource.scores.strMod}`
    - DEX: {resource.scores.dex} `dice: 1d20 {resource.scores.dexMod}`
    - CON: {resource.scores.con} `dice: 1d20 {resource.scores.conMod}`
    - INT: {resource.scores.int} `dice: 1d20 {resource.scores.intMod}`
    - WIS: {resource.scores.wis} `dice: 1d20 {resource.scores.wisMod}`
    - CHA: {resource.scores.cha} `dice: 1d20 {resource.scores.chaMod}`
    ...
    ```
    ^statblock