Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding tools to Active Effects Guide wiki page #5069

Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 102 additions & 0 deletions wiki/Active-Effect-Guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,108 @@ These are properties that cause the actor to take increased or decreased damage

---

## Tools

```
system.tools.[abbreviation].value
bonuses.check
IainFielding marked this conversation as resolved.
Show resolved Hide resolved
```

### Artisan Tools
IainFielding marked this conversation as resolved.
Show resolved Hide resolved

> <details>
> <summary>Artisan Tools</summary>
IainFielding marked this conversation as resolved.
Show resolved Hide resolved
>
> | Tool Type | Value |
> | ----------------------- | --------------- |
> | Alchemist's Supplies | `acalchemist` |
IainFielding marked this conversation as resolved.
Show resolved Hide resolved
> | Brewer's Supplies | `brewer` |
> | Calligrapher's Supplies | `calligrapher` |
> | Carpenter's Tools | `carpenter` |
> | Cartographer's Tools | `cartographer` |
> | Cobbler's Tools | `cobbler` |
> | Cook's Utensils | `cook` |
> | Glassblower's Tools | `glassblower` |
> | Jeweler's Kit | `jeweler` |
> | Leatherworker's Tools | `leatherworker` |
> | Mason's Tools | `mason` |
> | Painter's Supplies | `painter` |
> | Potter's Tools | `potter` |
> | Smith's Tools | `smith` |
> | Tinker's Tools | `tinker` |
> | Weavers's Tools | `weaver` |
> | Woodcarver's Tools | `woodcarver` |
>
> Source: `CONFIG.DND5E.tools`
> </details>

### Gaming Sets

> <details>
> <summary>Gaming Sets</summary>
>
> | Gaming Set | Value |
> | ----------------- | ------------- |
> | Playing Cards Set | `card` |
> | Chess Set | `chess` |
> | Dice Set | `dice` |
>
> Source: `CONFIG.DND5E.tools`
> </details>

### Musical Instruments

> <details>
> <summary>Musical Instruments</summary>
>
> | Instrument | Value |
> | ----------- | ------------- |
> | Bagpipes | `bagpipes` |
> | Drum | `drum` |
> | Dulcimer | `dulcimer` |
> | Flute | `flute` |
> | Horn | `horn` |
> | Lute | `lute` |
> | Lyre | `lyre` |
> | Pan Flute | `panflute ` |
IainFielding marked this conversation as resolved.
Show resolved Hide resolved
> | Shawm | `shawm` |
> | Viol | `viol ` |
IainFielding marked this conversation as resolved.
Show resolved Hide resolved
>
> Source: `CONFIG.DND5E.tools`
> </details>

### Other Tools

> <details>
> <summary>Other Tools</summary>
>
> | Damage Type | Value |
> | ----------------- | ------------- |
> | Disguise Kit | `disg` |
> | Forgery Kit | `forg` |
> | Herbalism Kit | `herb` |
> | Navigator's Tools | `navg` |
> | Poisoner's Kit | `pois` |
> | Thieves' Tools | `thief` |
>
> Source: `CONFIG.DND5E.tools`
> </details>

### Bonus to a Specific Tool Check

| Attribute Key | Change Mode | Effect Value | Roll Data? |
| -------------------------------------------- | ----------- | ------------ | ---------- |
| `system.tools.[abbreviation].bonuses.check` | Add | `[formula]` | Yes |

### Upgrade Proficiency Level to Expertise
The number must be one of 0, 0.5, 1, and 2.

| Attribute Key | Change Mode | Effect Value | Roll Data? |
| ------------------------------------ | ----------- | ------------ | ---------- |
| `system.tools.[abbreviation].value` | Upgrade | `[number]` | No |

---

## Creature Type
Temporarily override the displayed creature type of an actor. For example using 'humanoid' as the `value` and 'elf' as the `subtype` to display an actor's creature type as 'Humanoid (elf)'.

Expand Down