Entity
GET /get
Get entity details
This endpoint retrieves the details of a specific entity.
Required scope: entity:read
Parameters
| Name | Type | Required | Source | Description |
|---|---|---|---|---|
| clientId | string | query | Client ID for the Foundry world | |
| uuid | string | query | UUID of the entity to retrieve (optional if selected=true) | |
| selected | boolean | query, body | Whether to get the selected entity | |
| actor | boolean | query | Return the actor of specified entity | |
| userId | string | query, body | Foundry user ID or username to scope permissions (omit for GM-level access) |
Returns
object - Entity details object containing requested information
Try It Out
Code Examples
- JavaScript
- cURL
- Python
- TypeScript
- Emojicode
const baseUrl = 'http://localhost:3010';
const path = '/get';
const params = {
clientId: 'fvtt_099ad17ea199e7e3',
uuid: 'Actor.S6Nh5SfYPcyyUhRg'
};
const queryString = new URLSearchParams(params).toString();
const url = `${baseUrl}${path}?${queryString}`;
const response = await fetch(url, {
method: 'GET',
headers: {
'x-api-key': 'your-api-key-here'
}
});
const data = await response.json();
console.log(data);
curl -X GET 'http://localhost:3010/get?clientId=fvtt_099ad17ea199e7e3&uuid=Actor.S6Nh5SfYPcyyUhRg' \
-H "x-api-key: your-api-key-here"
import requests
base_url = 'http://localhost:3010'
path = '/get'
params = {
'clientId': 'fvtt_099ad17ea199e7e3',
'uuid': 'Actor.S6Nh5SfYPcyyUhRg'
}
url = f'{base_url}{path}'
response = requests.get(
url,
params=params,
headers={
'x-api-key': 'your-api-key-here'
}
)
data = response.json()
print(data)
import axios from 'axios';
(async () => {
const baseUrl = 'http://localhost:3010';
const path = '/get';
const params = {
clientId: 'fvtt_099ad17ea199e7e3',
uuid: 'Actor.S6Nh5SfYPcyyUhRg'
};
const queryString = new URLSearchParams(params).toString();
const url = `${baseUrl}${path}?${queryString}`;
const response = await axios({
method: 'get',
headers: {
'x-api-key': 'your-api-key-here'
},
url
});
const data = response.data;
console.log(data);
})();
📦 sockets 🏠
💭 Emojicode HTTP Client
💭 Compile: emojicodec example.🍇 -o example
💭 Run: ./example
🏁 🍇
💭 Connection settings
🔤localhost🔤 ➡️ host
3010 ➡️ port
🔤/get🔤 ➡️ path
💭 Query parameters
🔤clientId=fvtt_099ad17ea199e7e3🔤 ➡️ clientId
🔤uuid=Actor.S6Nh5SfYPcyyUhRg🔤 ➡️ uuid
🔤?🧲clientId🧲&🧲uuid🧲🔤 ➡️ queryString
💭 Build HTTP request
🔤GET /get🧲queryString🧲 HTTP/1.1❌r❌nHost: localhost:3010❌r❌nx-api-key: your-api-key-here❌r❌n❌r❌n🔤 ➡️ request
💭 Connect and send
🍺 🆕📞 host port❗ ➡️ socket
🍺 💬 socket 📇 request❗❗
💭 Read and print response
🍺 👂 socket 4096❗ ➡️ data
😀 🍺 🔡 data❗❗
💭 Close socket
🚪 socket❗
🍉
Response
Status: 200
{ "type": "entity-result", "requestId": "entity_1778896412494", "uuid": "Actor.S6Nh5SfYPcyyUhRg", "data": { "effects": [], "img": "systems/dnd5e/tokens/heroes/MonkStaff.webp", "items": [ 0: { 11 keys }, 1: { 11 keys }, 2: { 11 keys }, 3: { 11 keys }, 4: { 11 keys }, 5: { 11 keys }, 6: { 11 keys }, 7: { 11 keys }, 8: { 11 keys }, 9: { 11 keys }, 10: { 11 keys }, 11: { 11 keys }, 12: { 11 keys }, 13: { 11 keys }, 14: { 11 keys }, 15: { 11 keys }, 16: { 11 keys }, 17: { 11 keys }, 18: { 11 keys }, 19: { 11 keys }, 20: { 11 keys }, 21: { 11 keys }, 22: { 11 keys }, 23: { 11 keys }, 24: { 11 keys }, 25: { 11 keys }, 26: { 11 keys } ], "name": "test-perrin (halfling monk)", "prototypeToken": { "actorLink": true, "alpha": 1, "appendNumber": false, "bar1": { 1 key }, "bar2": { 1 key }, "detectionModes": [], "displayBars": 40, "displayName": 30, "disposition": 1, "flags": {}, "height": 1, "light": { 15 keys }, "lockRotation": false, "movementAction": null, "name": "Perrin", "occludable": { 1 key }, "prependAdjective": false, "randomImg": false, "ring": { 4 keys }, "rotation": 0, "sight": { 9 keys }, "texture": { 11 keys }, "turnMarker": { 4 keys }, "width": 1 }, "system": { "abilities": { 6 keys }, "attributes": { 12 keys }, "bastion": { 2 keys }, "bonuses": { 6 keys }, "currency": { 5 keys }, "details": { 19 keys }, "favorites": [ 4 items ], "resources": { 3 keys }, "skills": { 18 keys }, "spells": { 11 keys }, "tools": { 2 keys }, "traits": { 9 keys } }, "type": "character", "folder": null, "_id": "S6Nh5SfYPcyyUhRg", "sort": 0, "ownership": { "default": 0, "r6bXhB7k9cXa3cif": 3 }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, "coreVersion": "13.348", "systemId": "dnd5e", "systemVersion": "5.0.4", "createdTime": 1778896412043, "modifiedTime": 1778896412043, "lastModifiedBy": "r6bXhB7k9cXa3cif" } }}
POST /create
Create a new entity
This endpoint creates a new entity in the Foundry world.
Required scope: entity:write
Parameters
| Name | Type | Required | Source | Description |
|---|---|---|---|---|
| entityType | string | ✓ | body | Document type of entity to create (Scene, Actor, Item, JournalEntry, RollTable, Cards, Macro, Playlist, ext.) |
| data | object | ✓ | body | Data for the new entity |
| clientId | string | query | Client ID for the Foundry world | |
| folder | string | body | Optional folder UUID to place the new entity in | |
| keepId | boolean | body, query | If true, preserve the _id from the provided data instead of generating a new one | |
| override | boolean | body, query | If true and keepId is set, replace any existing entity with the same ID | |
| userId | string | query, body | Foundry user ID or username to scope permissions (omit for GM-level access) |
Returns
object - Result of the entity creation operation
Try It Out
Code Examples
- JavaScript
- cURL
- Python
- TypeScript
- Emojicode
const baseUrl = 'http://localhost:3010';
const path = '/create';
const params = {
clientId: 'fvtt_099ad17ea199e7e3'
};
const queryString = new URLSearchParams(params).toString();
const url = `${baseUrl}${path}?${queryString}`;
const response = await fetch(url, {
method: 'POST',
headers: {
'x-api-key': 'your-api-key-here',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"entityType": "Actor",
"data": {
"name": "test-perrin (halfling monk)",
"type": "character",
"img": "systems/dnd5e/tokens/heroes/MonkStaff.webp",
"system": {
"abilities": {
"str": {
"value": 8,
"proficient": 1,
"max": 20,
"bonuses": {
"check": "",
"save": ""
},
"check": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"save": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
}
},
"dex": {
"value": 16,
"proficient": 1,
"max": 20,
"bonuses": {
"check": "",
"save": ""
},
"check": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"save": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
}
},
"con": {
"value": 13,
"proficient": 0,
"max": 20,
"bonuses": {
"check": "",
"save": ""
},
"check": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"save": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
}
},
"int": {
"value": 12,
"proficient": 0,
"max": 20,
"bonuses": {
"check": "",
"save": ""
},
"check": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"save": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
}
},
"wis": {
"value": 15,
"proficient": 0,
"max": 20,
"bonuses": {
"check": "",
"save": ""
},
"check": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"save": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
}
},
"cha": {
"value": 11,
"proficient": 0,
"max": 20,
"bonuses": {
"check": "",
"save": ""
},
"check": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"save": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
}
}
},
"attributes": {
"ac": {
"flat": null,
"calc": "unarmoredMonk",
"formula": ""
},
"hp": {
"value": 9,
"max": 9,
"temp": null,
"tempmax": null,
"bonuses": {
"level": "",
"overall": ""
}
},
"init": {
"ability": "",
"bonus": "0",
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"movement": {
"burrow": 0,
"climb": 0,
"fly": 0,
"swim": 0,
"walk": 25,
"units": "ft",
"hover": false
},
"attunement": {
"max": 3
},
"senses": {
"darkvision": 0,
"blindsight": 0,
"tremorsense": 0,
"truesight": 0,
"units": "ft",
"special": ""
},
"spellcasting": "int",
"death": {
"success": 0,
"failure": 0,
"roll": {
"min": null,
"max": null,
"mode": 0
},
"bonuses": {
"save": ""
}
},
"exhaustion": 0,
"inspiration": false,
"concentration": {
"ability": "",
"roll": {
"min": null,
"max": null,
"mode": 0
},
"bonuses": {
"save": ""
},
"limit": 1
},
"loyalty": {}
},
"details": {
"biography": {
"value": "<p>A devoted student of his local monastery, Perrin has been tasked with bringing balance to the surrounding lands.</p><p><em>Token artwork by <a href=\"https://www.forgotten-adventures.net/\" target=\"_blank\" rel=\"noopener\">Forgotten Adventures</a>.</em></p>",
"public": ""
},
"alignment": "True Neutral",
"race": "O3ZjSw0GtAOPScHI",
"background": "q4tr1vTU8RxtU1UZ",
"originalClass": "8Grf7ga6JcZF0X6x",
"xp": {
"value": 0
},
"appearance": "",
"trait": "",
"ideal": "",
"bond": "",
"flaw": "",
"eyes": "",
"height": "",
"faith": "",
"hair": "",
"weight": "",
"gender": "",
"skin": "",
"age": ""
},
"traits": {
"size": "sm",
"di": {
"value": [],
"bypasses": [],
"custom": ""
},
"dr": {
"value": [],
"bypasses": [],
"custom": ""
},
"dv": {
"value": [],
"bypasses": [],
"custom": ""
},
"ci": {
"value": [],
"custom": "Advantage against being frightenned"
},
"languages": {
"value": [
"celestial",
"draconic",
"common",
"halfling"
],
"custom": "",
"communication": {}
},
"weaponProf": {
"value": [
"sim",
"shortsword"
],
"custom": "",
"mastery": {
"value": [],
"bonus": []
}
},
"armorProf": {
"value": [],
"custom": ""
},
"dm": {
"amount": {},
"bypasses": []
}
},
"currency": {
"pp": 0,
"gp": 15,
"ep": 0,
"sp": 0,
"cp": 0
},
"skills": {
"acr": {
"value": 1,
"ability": "dex",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"ani": {
"value": 0,
"ability": "wis",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"arc": {
"value": 0,
"ability": "int",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"ath": {
"value": 1,
"ability": "str",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"dec": {
"value": 0,
"ability": "cha",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"his": {
"value": 0,
"ability": "int",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"ins": {
"value": 1,
"ability": "wis",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"itm": {
"value": 0,
"ability": "cha",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"inv": {
"value": 0,
"ability": "int",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"med": {
"value": 0,
"ability": "wis",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"nat": {
"value": 0,
"ability": "int",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"prc": {
"value": 0,
"ability": "wis",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"prf": {
"value": 0,
"ability": "cha",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"per": {
"value": 0,
"ability": "cha",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"rel": {
"value": 1,
"ability": "int",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"slt": {
"value": 0,
"ability": "dex",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"ste": {
"value": 0,
"ability": "dex",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"sur": {
"value": 0,
"ability": "wis",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
}
},
"tools": {
"art": {
"value": 1,
"ability": "int",
"bonuses": {
"check": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"brewer": {
"value": 1,
"ability": "int",
"bonuses": {
"check": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
}
},
"spells": {
"spell1": {
"value": 0,
"override": null
},
"spell2": {
"value": 0,
"override": null
},
"spell3": {
"value": 0,
"override": null
},
"spell4": {
"value": 0,
"override": null
},
"spell5": {
"value": 0,
"override": null
},
"spell6": {
"value": 0,
"override": null
},
"spell7": {
"value": 0,
"override": null
},
"spell8": {
"value": 0,
"override": null
},
"spell9": {
"value": 0,
"override": null
},
"pact": {
"value": 0,
"override": null
},
"spell0": {
"value": 0,
"override": null
}
},
"bonuses": {
"mwak": {
"attack": "",
"damage": ""
},
"rwak": {
"attack": "",
"damage": ""
},
"msak": {
"attack": "",
"damage": ""
},
"rsak": {
"attack": "",
"damage": ""
},
"abilities": {
"check": "",
"save": "",
"skill": ""
},
"spell": {
"dc": ""
}
},
"resources": {
"primary": {
"value": null,
"max": null,
"sr": true,
"lr": true,
"label": "Ki"
},
"secondary": {
"value": null,
"max": null,
"sr": false,
"lr": false,
"label": ""
},
"tertiary": {
"value": null,
"max": null,
"sr": false,
"lr": false,
"label": ""
}
},
"favorites": [
{
"type": "item",
"id": ".Item.FtOM4QiOW5MwgcS3",
"sort": 500000
},
{
"type": "item",
"id": ".Item.WeKJI3gPUAU52WAX",
"sort": 600000
},
{
"type": "item",
"id": ".Item.g7U3OAXVcoI4lwzf",
"sort": 550000
},
{
"type": "item",
"id": ".Item.GYyovoNdU66nxOlX",
"sort": 700000
}
],
"bastion": {
"name": "",
"description": ""
}
},
"prototypeToken": {
"flags": {},
"name": "Perrin",
"displayName": 30,
"width": 1,
"height": 1,
"lockRotation": false,
"rotation": 0,
"actorLink": true,
"disposition": 1,
"displayBars": 40,
"bar1": {
"attribute": "attributes.hp"
},
"bar2": {
"attribute": "attributes.ac.value"
},
"randomImg": false,
"alpha": 1,
"light": {
"alpha": 1,
"angle": 360,
"bright": 0,
"coloration": 1,
"dim": 0,
"luminosity": 0.5,
"saturation": 0,
"contrast": 0,
"shadows": 0,
"animation": {
"speed": 5,
"intensity": 5,
"type": null,
"reverse": false
},
"darkness": {
"min": 0,
"max": 1
},
"color": null,
"attenuation": 0.5,
"negative": false,
"priority": 0
},
"texture": {
"src": "systems/dnd5e/tokens/heroes/MonkStaff.webp",
"tint": "#ffffff",
"scaleX": 0.8,
"scaleY": 0.8,
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
},
"sight": {
"angle": 360,
"enabled": true,
"range": 5,
"brightness": 0,
"visionMode": "basic",
"color": null,
"attenuation": 0.1,
"saturation": 0,
"contrast": 0
},
"detectionModes": [],
"appendNumber": false,
"prependAdjective": false,
"occludable": {
"radius": 0
},
"ring": {
"enabled": false,
"colors": {
"ring": null,
"background": null
},
"effects": 1,
"subject": {
"scale": 1,
"texture": null
}
},
"turnMarker": {
"mode": 1,
"animation": null,
"src": null,
"disposition": false
},
"movementAction": null
},
"items": [
{
"name": "Priest",
"type": "background",
"system": {
"description": {
"value": "<ul><li><strong>Skill Proficiencies:</strong> Insight, Religion</li><li><strong>Languages:</strong> Two of your choice</li><li><strong>Equipment:</strong> A holy symbol, 5 sticks of incense, prayer book, vestments, a set of common clothes, and a pouch containing 15 gp.</li></ul>",
"chat": ""
},
"source": {
"custom": "",
"book": "",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"advancement": [],
"startingEquipment": [],
"identifier": "priest"
},
"img": "icons/sundries/documents/document-torn-diagram-tan.webp",
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.0.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "q4tr1vTU8RxtU1UZ"
},
{
"_id": "O3ZjSw0GtAOPScHI",
"name": "Lightfoot Halfling",
"type": "race",
"img": "icons/equipment/feet/shoes-leather-simple-brown.webp",
"system": {
"description": {
"value": "<p>Your halfling character has a number of traits in common with all other halflings.</p><p><em><strong>Ability Score Increase.</strong></em> Your Dexterity score increases by 2.</p><p><em><strong>Age.</strong></em> A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.</p><p><em><strong>Alignment.</strong></em> Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.</p><p><em><strong>Size.</strong></em> Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.</p><p><em><strong>Speed.</strong></em> Your base walking speed is 25 feet.</p><p><em><strong>Lucky.</strong></em> When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.</p><p><em><strong>Brave.</strong></em> You have advantage on saving throws against being frightened.</p><p><em><strong>Halfling Nimbleness.</strong></em> You can move through the space of any creature that is of a size larger than yours.</p><p><em><strong>Languages.</strong></em> You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.</p><h5>Lightfoot</h5><p>As a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others.</p><p>Lightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life.</p><p><em><strong>Ability Score Increase.</strong></em> Your Charisma score increases by 1.</p><p><em><strong>Naturally Stealthy.</strong></em> You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"identifier": "lightfoot-halfling",
"advancement": [
{
"_id": "nInhIgkbzzJTdm8F",
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.races.LOMdcNAGWh5xpfm4",
"optional": false
},
{
"uuid": "Compendium.dnd5e.races.7Yoo9hG0hfPSmBoC",
"optional": false
},
{
"uuid": "Compendium.dnd5e.races.PqxZgcJzp1VVgP8t",
"optional": false
},
{
"uuid": "Compendium.dnd5e.races.GWPjKFeIthBBeCFJ",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {
"added": {
"FtOM4QiOW5MwgcS3": "Compendium.dnd5e.races.Item.LOMdcNAGWh5xpfm4",
"nmmihiqphHjoE8dl": "Compendium.dnd5e.races.Item.7Yoo9hG0hfPSmBoC",
"cWrETHzCRs1Ueqd3": "Compendium.dnd5e.races.Item.PqxZgcJzp1VVgP8t",
"AArhiOrSkaQUnCZS": "Compendium.dnd5e.races.Item.GWPjKFeIthBBeCFJ"
}
},
"level": 0,
"title": ""
},
{
"_id": "Z9hvZFkWUNvowbQX",
"type": "AbilityScoreImprovement",
"configuration": {
"points": 0,
"fixed": {
"str": 0,
"dex": 2,
"con": 0,
"int": 0,
"wis": 0,
"cha": 1
},
"cap": 2,
"locked": []
},
"value": {
"type": "asi",
"assignments": {
"dex": 2,
"cha": 1
}
},
"level": 0,
"title": ""
},
{
"_id": "hv2bcANK5jEJZaAb",
"type": "Size",
"configuration": {
"sizes": [
"sm"
]
},
"value": {
"size": "sm"
},
"level": 1,
"title": "",
"hint": "Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small."
},
{
"_id": "nGwMjsfNU6CXHk3A",
"type": "Trait",
"configuration": {
"mode": "default",
"allowReplacements": false,
"grants": [
"languages:standard:common",
"languages:standard:halfling"
],
"choices": []
},
"level": 0,
"title": "",
"value": {
"chosen": [
"languages:standard:common",
"languages:standard:halfling"
]
}
}
],
"movement": {
"walk": 25,
"burrow": null,
"climb": null,
"fly": null,
"swim": null,
"units": "ft",
"hover": false
},
"type": {
"subtype": "halfling",
"value": "humanoid",
"custom": ""
},
"senses": {
"darkvision": null,
"blindsight": null,
"tremorsense": null,
"truesight": null,
"units": "ft",
"special": ""
}
},
"effects": [],
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.races.Item.ZgYBjYYfiUstQD6f",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": 1738093997274,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": null
},
"sort": 0,
"folder": "uQNrdSpcXeoB5EnX"
},
{
"_id": "FtOM4QiOW5MwgcS3",
"name": "Lucky",
"ownership": {
"default": 0
},
"type": "feat",
"system": {
"description": {
"value": "<p>When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.</p><section class=\"secret foundry-note\" id=\"secret-S04TPyvUh05Dz0Ng\"><p><strong>Foundry Note</strong></p><p>This property can be enabled on your character sheet in the Special Traits configuration on the Attributes tab.</p></section>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"uses": {
"max": "",
"spent": 0,
"recovery": []
},
"type": {
"value": "race",
"subtype": ""
},
"requirements": "Halfling",
"properties": [],
"activities": {},
"enchant": {},
"prerequisites": {
"level": null,
"repeatable": false
},
"identifier": "lucky",
"advancement": [],
"crewed": false
},
"flags": {
"dnd5e": {
"sourceId": "Compendium.dnd5e.races.Item.LOMdcNAGWh5xpfm4",
"advancementOrigin": "O3ZjSw0GtAOPScHI.nInhIgkbzzJTdm8F",
"riders": {
"activity": [],
"effect": []
}
}
},
"img": "icons/sundries/gaming/dice-runed-brown.webp",
"effects": [],
"folder": "kbtbKofcv13crhke",
"sort": 0,
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.races.Item.LOMdcNAGWh5xpfm4",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": 1738093813616,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": null
}
},
{
"_id": "nmmihiqphHjoE8dl",
"name": "Brave",
"ownership": {
"default": 0
},
"type": "feat",
"system": {
"description": {
"value": "<p>You have advantage on saving throws against being frightened.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"uses": {
"max": "",
"spent": 0,
"recovery": []
},
"type": {
"value": "race",
"subtype": ""
},
"requirements": "Halfling",
"properties": [],
"activities": {},
"enchant": {},
"prerequisites": {
"level": null,
"repeatable": false
},
"identifier": "brave",
"advancement": [],
"crewed": false
},
"flags": {
"dnd5e": {
"sourceId": "Compendium.dnd5e.races.Item.7Yoo9hG0hfPSmBoC",
"advancementOrigin": "O3ZjSw0GtAOPScHI.nInhIgkbzzJTdm8F",
"riders": {
"activity": [],
"effect": []
}
}
},
"img": "icons/skills/melee/unarmed-punch-fist.webp",
"effects": [],
"folder": "kbtbKofcv13crhke",
"sort": 0,
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.races.Item.7Yoo9hG0hfPSmBoC",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": 1738093813671,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": null
}
},
{
"_id": "cWrETHzCRs1Ueqd3",
"name": "Halfling Nimbleness",
"ownership": {
"default": 0
},
"type": "feat",
"system": {
"description": {
"value": "<p>You can move through the space of any creature that is of a size larger than yours.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"uses": {
"max": "",
"spent": 0,
"recovery": []
},
"type": {
"value": "race",
"subtype": ""
},
"requirements": "Halfling",
"properties": [],
"activities": {},
"enchant": {},
"prerequisites": {
"level": null,
"repeatable": false
},
"identifier": "halfling-nimbleness",
"advancement": [],
"crewed": false
},
"flags": {
"dnd5e": {
"sourceId": "Compendium.dnd5e.races.Item.PqxZgcJzp1VVgP8t",
"advancementOrigin": "O3ZjSw0GtAOPScHI.nInhIgkbzzJTdm8F",
"riders": {
"activity": [],
"effect": []
}
}
},
"img": "icons/skills/movement/feet-winged-boots-brown.webp",
"effects": [],
"folder": "kbtbKofcv13crhke",
"sort": 0,
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.races.Item.PqxZgcJzp1VVgP8t",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": 1738093813706,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": null
}
},
{
"_id": "AArhiOrSkaQUnCZS",
"name": "Naturally Stealthy",
"ownership": {
"default": 0
},
"type": "feat",
"system": {
"description": {
"value": "<p>You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"uses": {
"max": "",
"spent": 0,
"recovery": []
},
"type": {
"value": "race",
"subtype": ""
},
"requirements": "Lightfoot Halfling",
"properties": [],
"activities": {},
"enchant": {},
"prerequisites": {
"level": null,
"repeatable": false
},
"identifier": "naturally-stealthy",
"advancement": [],
"crewed": false
},
"flags": {
"dnd5e": {
"sourceId": "Compendium.dnd5e.races.Item.GWPjKFeIthBBeCFJ",
"advancementOrigin": "O3ZjSw0GtAOPScHI.nInhIgkbzzJTdm8F",
"riders": {
"activity": [],
"effect": []
}
}
},
"img": "icons/magic/perception/silhouette-stealth-shadow.webp",
"effects": [],
"folder": "kbtbKofcv13crhke",
"sort": 0,
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.races.Item.GWPjKFeIthBBeCFJ",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": 1738093813743,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": null
}
},
{
"_id": "8Grf7ga6JcZF0X6x",
"name": "Monk",
"type": "class",
"img": "icons/skills/melee/hand-grip-staff-blue.webp",
"system": {
"description": {
"value": "<p>As a monk, you gain the following class features.</p><h3>Hit Points</h3><p><strong>Hit Dice:</strong> 1d8 per monk level<br /><strong>Hit Points at 1st Level:</strong> 8 + your Constitution modifier<br /><strong>Hit Points at Higher Levels:</strong> 1d8 (or 5) + your Constitution modifier per monk level after 1st</p><h3>Proficiencies</h3><p><strong>Armor:</strong> None<br /><strong>Weapons:</strong> Simple weapons, shortswords<br /><strong>Tools:</strong> Choose one type of artisan's tools or one musical instrument<br /><strong>Saving Throws:</strong> Strength, Dexterity<br /><strong>Skills:</strong> Choose two from Acrobatics, Athletics, History, Insight, Religion, and Stealth</p><h1>Monk Advancement</h1><table><thead><tr><td>Level</td><td>Proficiency Bonus</td><td>Martial Arts</td><td>Ki Points</td><td>Unarmored Movement</td><td>Features</td></tr></thead><tbody><tr><td>1st</td><td>+2</td><td>1d4</td><td>—</td><td>—</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.UAvV7N7T4zJhxdfI]{Unarmored Defense}, @UUID[Compendium.dnd5e.classfeatures.Item.l50hjTxO2r0iecKw]{Martial Arts}</td></tr><tr><td>2nd</td><td>+2</td><td>1d4</td><td>2</td><td>+10 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.10b6z2W1txNkrGP7]{Ki}, @UUID[Compendium.dnd5e.classfeatures.Item.zCeqyQ8uIPNdYJSW]{Unarmored Movement}</td></tr><tr><td>3rd</td><td>+2</td><td>1d4</td><td>3</td><td>+10 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.rtpQdX77dYWbDIOH]{Monastic Tradition}, @UUID[Compendium.dnd5e.classfeatures.Item.mzweVbnsJPQiVkAe]{Deflect Missiles}</td></tr><tr><td>4th</td><td>+2</td><td>1d4</td><td>4</td><td>+10 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, @UUID[Compendium.dnd5e.classfeatures.Item.KQz9bqxVkXjDl8gK]{Slow Fall}</td></tr><tr><td>5th</td><td>+3</td><td>1d6</td><td>5</td><td>+10 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.XogoBnFWmCAHXppo]{Extra Attack}, @UUID[Compendium.dnd5e.classfeatures.Item.pvRc6GAu1ok6zihC]{Stunning Strike}</td></tr><tr><td>6th</td><td>+3</td><td>1d6</td><td>6</td><td>+15 ft.</td><td><p>@UUID[Compendium.dnd5e.classfeatures.Item.7flZKruSSu6dHg6D]{Ki-Empowered Strikes},</p><p>Monastic Tradition feature</p></td></tr><tr><td>7th</td><td>+3</td><td>1d6</td><td>7</td><td>+15 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.a4P4DNMmH8CqSNkC]{Evasion}, @UUID[Compendium.dnd5e.classfeatures.Item.ZmC31XKS4YNENnoc]{Stillness of Mind}</td></tr><tr><td>8th</td><td>+3</td><td>1d6</td><td>8</td><td>+15 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}</td></tr><tr><td>9th</td><td>+4</td><td>1d6</td><td>9</td><td>+15 ft.</td><td>Unarmored Movement improvement</td></tr><tr><td>10th</td><td>+4</td><td>1d6</td><td>10</td><td>+20 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.bqWA7t9pDELbNRkp]{Purity of Body}</td></tr><tr><td>11th</td><td>+4</td><td>1d8</td><td>11</td><td>+20 ft.</td><td>Monastic Tradition feature</td></tr><tr><td>12th</td><td>+4</td><td>1d8</td><td>12</td><td>+20 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}</td></tr><tr><td>13th</td><td>+5</td><td>1d8</td><td>13</td><td>+20 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.XjuGBeB8Y0C3A5D4]{Tongue of the Sun and Moon}</td></tr><tr><td>14th</td><td>+5</td><td>1d8</td><td>14</td><td>+25 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.7D2EkLdISwShEDlN]{Diamond Soul}</td></tr><tr><td>15th</td><td>+5</td><td>1d8</td><td>15</td><td>+25 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.gDH8PMrKvLHaNmEI]{Timeless Body}</td></tr><tr><td>16th</td><td>+5</td><td>1d8</td><td>16</td><td>+25 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}</td></tr><tr><td>17th</td><td>+6</td><td>1d10</td><td>17</td><td>+25 ft.</td><td>Monastic Tradition feature</td></tr><tr><td>18th</td><td>+6</td><td>1d10</td><td>18</td><td>+30 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.3jwFt3hSqDswBlOH]{Empty Body}</td></tr><tr><td>19th</td><td>+6</td><td>1d10</td><td>19</td><td>+30 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}</td></tr><tr><td>20th</td><td>+6</td><td>1d10</td><td>20</td><td>+30 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.mQNPg89YIs7g5tG4]{Perfect Self}</td></tr></tbody></table><h1>Monastic Traditions</h1><p>Three traditions of monastic pursuit are common in the monasteries scattered across the multiverse. Most monasteries practice one tradition exclusively, but a few honor the three traditions and instruct each monk according to his or her aptitude and interest. All three traditions rely on the same basic techniques, diverging as the student grows more adept. Thus, a monk need choose a tradition only upon reaching 3rd level.</p><p>@UUID[Compendium.dnd5e.subclasses.Item.IvlpKMXX3PmW1NY2]{Way of the Open Hand}</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"identifier": "monk",
"levels": 1,
"advancement": [
{
"type": "HitPoints",
"configuration": {},
"value": {
"1": "max"
},
"title": "Hit Points",
"icon": "systems/dnd5e/icons/svg/hit-points.svg",
"_id": "ocxNtDFJ7YDaYaK7"
},
{
"_id": "mmAxx3U7FvXNAcKc",
"type": "Trait",
"configuration": {
"mode": "default",
"allowReplacements": false,
"grants": [
"weapon:sim",
"weapon:mar:shortsword"
],
"choices": []
},
"level": 1,
"title": "",
"value": {
"chosen": [
"weapon:sim",
"weapon:mar:shortsword"
]
}
},
{
"_id": "QPXy59CQGY9HB0c3",
"type": "Trait",
"configuration": {
"mode": "default",
"allowReplacements": false,
"grants": [],
"choices": [
{
"count": 1,
"pool": [
"tool:art:*",
"tool:music:*"
]
}
]
},
"level": 1,
"title": "",
"classRestriction": "primary",
"value": {
"chosen": [
"tool:art:brewer"
]
}
},
{
"_id": "4M8MQ1E64zbcRg6B",
"type": "Trait",
"configuration": {
"mode": "default",
"allowReplacements": false,
"grants": [
"saves:str",
"saves:dex"
],
"choices": []
},
"level": 1,
"title": "",
"classRestriction": "primary",
"value": {
"chosen": [
"saves:str",
"saves:dex"
]
}
},
{
"_id": "7HRRCPk80Ng2Evdx",
"type": "Trait",
"configuration": {
"mode": "default",
"allowReplacements": false,
"grants": [],
"choices": [
{
"count": 2,
"pool": [
"skills:acr",
"skills:ath",
"skills:his",
"skills:ins",
"skills:rel",
"skills:ste"
]
}
]
},
"level": 1,
"title": "",
"classRestriction": "primary",
"value": {
"chosen": [
"skills:acr",
"skills:ath"
]
}
},
{
"_id": "BQWHr3mt5flvkfIj",
"type": "Trait",
"configuration": {
"mode": "default",
"allowReplacements": false,
"grants": [
"di:poison",
"ci:diseased",
"ci:poisoned"
],
"choices": []
},
"level": 10,
"title": "Purity of Body",
"value": {
"chosen": []
},
"hint": "Your mastery of the ki flowing through you makes you immune to disease and poison."
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.UAvV7N7T4zJhxdfI",
"optional": false
},
{
"uuid": "Compendium.dnd5e.classfeatures.l50hjTxO2r0iecKw",
"optional": false
},
{
"uuid": "Compendium.dnd5e.classfeatures.eGxoNmSMWKNzChCO",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {
"added": {
"CwgoTDXWCD7PknIN": "Compendium.dnd5e.classfeatures.Item.UAvV7N7T4zJhxdfI",
"pchnXqd5C79fVlxy": "Compendium.dnd5e.classfeatures.Item.l50hjTxO2r0iecKw",
"RiURabP4FDYMeuWx": "Compendium.dnd5e.classfeatures.Item.eGxoNmSMWKNzChCO"
}
},
"level": 1,
"title": "Features",
"_id": "n0q8XyiGA3vLPgpK"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.10b6z2W1txNkrGP7",
"optional": false
},
{
"uuid": "Compendium.dnd5e.classfeatures.5MwNlVZK7m6VolOH",
"optional": false
},
{
"uuid": "Compendium.dnd5e.classfeatures.TDglPcxIVEzvVSgK",
"optional": false
},
{
"uuid": "Compendium.dnd5e.classfeatures.yrSFIGTaQOH2PFRI",
"optional": false
},
{
"uuid": "Compendium.dnd5e.classfeatures.zCeqyQ8uIPNdYJSW",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 2,
"title": "Features",
"_id": "7TyDqpGGi3r3nsp0"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.rtpQdX77dYWbDIOH",
"optional": false
},
{
"uuid": "Compendium.dnd5e.classfeatures.mzweVbnsJPQiVkAe",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 3,
"title": "Features",
"_id": "2sLHTw6k15DSW8WB"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.KQz9bqxVkXjDl8gK",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 4,
"title": "Features",
"_id": "Zc1jOZK1b9mIKekq"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo",
"optional": false
},
{
"uuid": "Compendium.dnd5e.classfeatures.pvRc6GAu1ok6zihC",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 5,
"title": "Features",
"_id": "j9LeWmxlsENKaMLo"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.7flZKruSSu6dHg6D",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 6,
"title": "Features",
"_id": "psobDjMqtA2216Db"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.a4P4DNMmH8CqSNkC",
"optional": false
},
{
"uuid": "Compendium.dnd5e.classfeatures.ZmC31XKS4YNENnoc",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 7,
"title": "Features",
"_id": "K38aFaEMxMqRB0BC"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.bqWA7t9pDELbNRkp",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 10,
"title": "Features",
"_id": "eLqmJotmwzlGNrxG"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.XjuGBeB8Y0C3A5D4",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 13,
"title": "Features",
"_id": "N0geIQiuofqYgswj"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.7D2EkLdISwShEDlN",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 14,
"title": "Features",
"_id": "N1hjizyI82UPp8UI"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.gDH8PMrKvLHaNmEI",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 15,
"title": "Features",
"_id": "TcLZS9WzC7bPETSd"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.3jwFt3hSqDswBlOH",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 18,
"title": "Features",
"_id": "tRb3a0tA5IpehPs8"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.mQNPg89YIs7g5tG4",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 20,
"title": "Features",
"_id": "sEQz9c9XhWYjS9x5"
},
{
"type": "ScaleValue",
"configuration": {
"identifier": "die",
"type": "dice",
"distance": {
"units": ""
},
"scale": {
"1": {
"number": null,
"faces": 4,
"modifiers": []
},
"5": {
"number": null,
"faces": 6,
"modifiers": []
},
"11": {
"number": null,
"faces": 8,
"modifiers": []
},
"17": {
"number": null,
"faces": 10,
"modifiers": []
}
}
},
"value": {},
"title": "Martial Arts Die",
"_id": "MXFbf0nxMiyLdPbX"
},
{
"type": "ScaleValue",
"configuration": {
"identifier": "unarmored-movement",
"type": "distance",
"distance": {
"units": "ft"
},
"scale": {
"2": {
"value": 10
},
"6": {
"value": 15
},
"10": {
"value": 20
},
"14": {
"value": 25
},
"18": {
"value": 30
}
}
},
"value": {},
"title": "Unarmored Movement",
"_id": "1OzfWDWCquoHMeX5"
},
{
"type": "AbilityScoreImprovement",
"configuration": {
"points": 2,
"fixed": {
"str": 0,
"dex": 0,
"con": 0,
"int": 0,
"wis": 0,
"cha": 0
},
"cap": 2,
"locked": []
},
"value": {
"type": "asi"
},
"level": 4,
"title": "Ability Score Improvement",
"_id": "ofNSUhSHKhhDuPSR"
},
{
"type": "AbilityScoreImprovement",
"configuration": {
"points": 2,
"fixed": {
"str": 0,
"dex": 0,
"con": 0,
"int": 0,
"wis": 0,
"cha": 0
},
"cap": 2,
"locked": []
},
"value": {
"type": "asi"
},
"level": 8,
"title": "Ability Score Improvement",
"_id": "s3t9o57hP6iUHirr"
},
{
"type": "AbilityScoreImprovement",
"configuration": {
"points": 2,
"fixed": {
"str": 0,
"dex": 0,
"con": 0,
"int": 0,
"wis": 0,
"cha": 0
},
"cap": 2,
"locked": []
},
"value": {
"type": "asi"
},
"level": 12,
"title": "Ability Score Improvement",
"_id": "O24MWOKc1ImsKaml"
},
{
"type": "AbilityScoreImprovement",
"configuration": {
"points": 2,
"fixed": {
"str": 0,
"dex": 0,
"con": 0,
"int": 0,
"wis": 0,
"cha": 0
},
"cap": 2,
"locked": []
},
"value": {
"type": "asi"
},
"level": 16,
"title": "Ability Score Improvement",
"_id": "xdqWoLtgO3uyl3nJ"
},
{
"_id": "puDaUsYrlks0z5gm",
"type": "AbilityScoreImprovement",
"configuration": {
"points": 2,
"fixed": {
"str": 0,
"dex": 0,
"con": 0,
"int": 0,
"wis": 0,
"cha": 0
},
"cap": 2,
"locked": []
},
"value": {
"type": "asi"
},
"level": 19,
"title": ""
},
{
"_id": "0awj2yq115ev9u9o",
"type": "Subclass",
"configuration": {},
"value": {
"document": null,
"uuid": null
},
"level": 3,
"title": "Monastic Tradition"
}
],
"spellcasting": {
"progression": "none",
"ability": "",
"preparation": {
"formula": ""
}
},
"startingEquipment": [
{
"type": "OR",
"_id": "5yj0P4r9teJDnDtd",
"group": "",
"sort": 100000,
"requiresProficiency": false
},
{
"type": "linked",
"count": null,
"key": "Compendium.dnd5e.items.Item.osLzOwQdPtrK3rQH",
"_id": "R5tuRtaPonfjQCVU",
"group": "5yj0P4r9teJDnDtd",
"sort": 200000,
"requiresProficiency": false
},
{
"type": "weapon",
"count": null,
"key": "simpleM",
"_id": "Mlf6kel8ws6xgDER",
"group": "5yj0P4r9teJDnDtd",
"sort": 300000,
"requiresProficiency": false
},
{
"type": "OR",
"_id": "3TbVLmLPtjVaSh5O",
"group": "",
"sort": 400000,
"requiresProficiency": false
},
{
"type": "linked",
"count": null,
"key": "Compendium.dnd5e.items.Item.XY8b594Dn7plACLL",
"_id": "AvDYtl0uvQsDuhnb",
"group": "3TbVLmLPtjVaSh5O",
"sort": 500000,
"requiresProficiency": false
},
{
"type": "linked",
"count": null,
"key": "Compendium.dnd5e.items.Item.8KWz5DJbWUpNWniP",
"_id": "4QKQURCmIurbTAzp",
"group": "3TbVLmLPtjVaSh5O",
"sort": 600000,
"requiresProficiency": false
},
{
"type": "linked",
"count": 10,
"key": "Compendium.dnd5e.items.Item.3rCO8MTIdPGSW6IJ",
"_id": "AOYuulsULvsHbSLO",
"group": "",
"sort": 700000,
"requiresProficiency": false
}
],
"wealth": "5d4",
"primaryAbility": {
"value": [],
"all": true
},
"hd": {
"denomination": "d8",
"spent": 0,
"additional": ""
}
},
"effects": [],
"folder": "HQ1Oy7HkbnxnE63o",
"sort": 0,
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.classes.Item.6VoZrWxhOEKGYhnq",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": 1738093997309,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": null
}
},
{
"_id": "CwgoTDXWCD7PknIN",
"name": "Unarmored Defense",
"ownership": {
"default": 0
},
"type": "feat",
"system": {
"description": {
"value": "<p>Beginning at 1st Level, while you are wearing no armor and not wielding a Shield, your AC equals 10 + your Dexterity modifier + your Wisdom modifier.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"uses": {
"max": "",
"spent": 0,
"recovery": []
},
"type": {
"value": "class",
"subtype": ""
},
"requirements": "Monk 1",
"properties": [],
"activities": {},
"enchant": {},
"prerequisites": {
"level": null,
"repeatable": false
},
"identifier": "unarmored-defense",
"advancement": [],
"crewed": false
},
"flags": {
"dnd5e": {
"sourceId": "Compendium.dnd5e.classfeatures.Item.UAvV7N7T4zJhxdfI",
"advancementOrigin": "8Grf7ga6JcZF0X6x.n0q8XyiGA3vLPgpK"
}
},
"img": "icons/magic/control/silhouette-hold-change-blue.webp",
"effects": [
{
"_id": "R5ro4AuNjcdWD56O",
"changes": [
{
"key": "system.attributes.ac.calc",
"mode": 5,
"value": "unarmoredMonk",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": 0,
"seconds": null,
"combat": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"origin": "Item.cOdcNWy4hII029DT",
"transfer": true,
"flags": {},
"tint": "#ffffff",
"name": "Unarmored Defense",
"description": "",
"statuses": [],
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"img": "icons/magic/control/silhouette-hold-change-blue.webp",
"type": "base",
"system": {},
"sort": 0
}
],
"folder": "TMmNG8ujFDBEWXRe",
"sort": 0,
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.classfeatures.Item.UAvV7N7T4zJhxdfI",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": 1738093813778,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": null
}
},
{
"_id": "pchnXqd5C79fVlxy",
"name": "Martial Arts",
"ownership": {
"default": 0
},
"type": "feat",
"system": {
"description": {
"value": "<p>At 1st level, your practice of martial arts gives you mastery of combat styles that use and monk weapons, which are shortswords and any simple melee weapons that don't have the two-handed or heavy property. You gain the following benefits while you are unarmed or wielding only monk weapons and you aren't wearing armor or wielding a shield:</p>\n<ul>\n<li>\n<p>You can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes and monk weapons.</p>\n</li>\n<li>\n<p>You can roll a d4 in place of the normal damage of your unarmed strike or monk weapon. This die changes as you gain monk levels, as shown in the Martial Arts column of the Monk table.</p>\n</li>\n<li>\n<p>When you use the Attack action with an unarmed strike or a monk weapon on your turn, you can make one unarmed strike as a bonus action. For example, if you take the Attack action and attack with a quarterstaff, you can also make an unarmed strike as a bonus action, assuming you haven't already taken a bonus action this turn.</p>\n</li>\n</ul>\n<p>Certain monasteries use specialized forms of the monk weapons. For example, you might use a club that is two lengths of wood connected by a short chain (called a nunchaku) or a sickle with a shorter, straighter blade (called a kama). Whatever name you use for a monk weapon, you can use the game statistics provided for the weapon.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"uses": {
"max": "",
"spent": 0,
"recovery": []
},
"type": {
"value": "class",
"subtype": ""
},
"requirements": "Monk 1",
"properties": [],
"activities": {},
"enchant": {},
"prerequisites": {
"level": null,
"repeatable": false
},
"identifier": "martial-arts",
"advancement": [],
"crewed": false
},
"flags": {
"dnd5e": {
"sourceId": "Compendium.dnd5e.classfeatures.Item.l50hjTxO2r0iecKw",
"advancementOrigin": "8Grf7ga6JcZF0X6x.n0q8XyiGA3vLPgpK"
}
},
"img": "icons/skills/melee/unarmed-punch-fist.webp",
"effects": [],
"folder": "TMmNG8ujFDBEWXRe",
"sort": 0,
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.classfeatures.Item.l50hjTxO2r0iecKw",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": 1738093813816,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": null
}
},
{
"name": "Hammer",
"type": "loot",
"img": "icons/tools/hand/hammer-cobbler-steel.webp",
"system": {
"description": {
"value": "<p>A tool with a heavy metal head mounted at the end of its handle, used for jobs such as breaking things and driving in nails. </p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 3,
"units": "lb"
},
"price": {
"value": 1,
"denomination": "gp"
},
"rarity": "",
"identified": true,
"type": {
"value": "",
"subtype": ""
},
"unidentified": {
"description": ""
},
"container": null,
"properties": [],
"identifier": "hammer"
},
"effects": [],
"folder": "dlru9Hy74nSMv6fr",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.14pNRT4sZy9rgvhb",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "YJ1P3PnFKHOdQpaP",
"sort": 0
},
{
"name": "Tinderbox",
"type": "loot",
"img": "icons/sundries/lights/torch-black.webp",
"system": {
"description": {
"value": "<p>This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.</p>\n<p> </p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 1,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "sp"
},
"rarity": "",
"identified": true,
"container": "8KWz5DJbWUpNWniP",
"type": {
"value": "",
"subtype": ""
},
"unidentified": {
"description": ""
},
"properties": [],
"identifier": "tinderbox"
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.1FSubnBpSTDmVaYV",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"ownership": {
"default": 0
},
"_id": "DDnxRCeYUhXstWU8",
"sort": 0
},
{
"name": "Waterskin",
"type": "consumable",
"img": "icons/sundries/survival/wetskin-leather-purple.webp",
"system": {
"description": {
"value": "<p>A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 5,
"units": "lb"
},
"price": {
"value": 2,
"denomination": "sp"
},
"attunement": "",
"equipped": false,
"rarity": "",
"identified": true,
"uses": {
"max": "4",
"recovery": [],
"autoDestroy": false,
"spent": 0
},
"damage": {
"base": {
"number": null,
"denomination": null,
"types": [],
"custom": {
"enabled": false
},
"scaling": {
"number": 1
}
},
"replace": false
},
"container": "6OYR11aJX2dEVtOj",
"properties": [],
"type": {
"value": "food",
"subtype": ""
},
"unidentified": {
"description": ""
},
"magicalBonus": null,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "utility",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": false
},
"consumption": {
"targets": [
{
"type": "itemUses",
"target": "",
"value": "1",
"scaling": {
"mode": "",
"formula": ""
}
}
],
"scaling": {
"allowed": false,
"max": ""
},
"spellSlot": true
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": false,
"value": "",
"units": "inst",
"special": "",
"override": false
},
"effects": [],
"range": {
"units": "touch",
"special": "",
"override": false
},
"target": {
"template": {
"count": "",
"contiguous": false,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": false,
"special": ""
},
"prompt": true,
"override": false
},
"roll": {
"formula": "",
"name": "",
"prompt": false,
"visible": false
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": false,
"identifier": "waterskin"
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.1L5wkmbw0fmNAr38",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"ownership": {
"default": 0
},
"_id": "5skKSSB4ShHbKoc8",
"sort": 0
},
{
"name": "Torch",
"type": "consumable",
"img": "icons/sundries/lights/torch-black.webp",
"system": {
"description": {
"value": "<p>A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 10,
"weight": {
"value": 1,
"units": "lb"
},
"price": {
"value": 1,
"denomination": "cp"
},
"attunement": "",
"equipped": false,
"rarity": "",
"identified": true,
"uses": {
"max": "1",
"recovery": [],
"autoDestroy": false,
"spent": 0
},
"damage": {
"base": {
"number": null,
"denomination": null,
"bonus": "",
"types": [
"fire"
],
"custom": {
"enabled": true,
"formula": "1"
},
"scaling": {
"mode": "",
"number": null,
"formula": ""
}
},
"replace": false
},
"container": "8KWz5DJbWUpNWniP",
"properties": [],
"type": {
"value": "trinket",
"subtype": ""
},
"unidentified": {
"description": ""
},
"magicalBonus": null,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "attack",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": false
},
"consumption": {
"targets": [
{
"type": "itemUses",
"target": "",
"value": "1",
"scaling": {
"mode": "",
"formula": ""
}
}
],
"scaling": {
"allowed": false,
"max": ""
},
"spellSlot": true
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": false,
"value": "1",
"units": "hour",
"special": "",
"override": false
},
"effects": [],
"range": {
"units": "self",
"special": "",
"override": false
},
"target": {
"template": {
"count": "",
"contiguous": false,
"type": "radius",
"size": "40",
"width": "",
"height": "",
"units": "ft"
},
"affects": {
"count": "",
"type": "",
"choice": false,
"special": ""
},
"prompt": true,
"override": false
},
"attack": {
"ability": "str",
"bonus": "",
"critical": {
"threshold": null
},
"flat": false,
"type": {
"value": "melee",
"classification": "weapon"
}
},
"damage": {
"critical": {
"bonus": ""
},
"includeBase": true,
"parts": [
{
"number": null,
"denomination": null,
"bonus": "",
"types": [
"fire"
],
"custom": {
"enabled": true,
"formula": "1"
},
"scaling": {
"mode": "whole",
"number": null,
"formula": ""
}
}
]
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": false,
"identifier": "torch"
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.29ZLE8PERtFVD3QU",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"ownership": {
"default": 0
},
"_id": "dDuMscUuMI2bTdkj",
"sort": 0
},
{
"name": "Stick of Incense",
"type": "loot",
"img": "icons/consumables/grains/breadsticks-crackers-wrapped-ration-brown.webp",
"system": {
"description": {
"value": "<p>When blocks of incense cannot be used or a cheaper alternative is required, people often use these to perfume the air, whether for pleasurable or religious purposes.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 5,
"weight": {
"value": 0,
"units": "lb"
},
"price": {
"value": 2,
"denomination": "sp"
},
"rarity": "",
"identified": true,
"type": {
"value": "",
"subtype": ""
},
"unidentified": {
"description": ""
},
"container": null,
"properties": [],
"identifier": "stick-of-incense"
},
"effects": [],
"folder": "dlru9Hy74nSMv6fr",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.3b0RvGi0TnTYpIxn",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "nC6VcR5JAIbR4err",
"sort": 0
},
{
"name": "Dart",
"type": "weapon",
"img": "icons/weapons/thrown/dart-feathered.webp",
"system": {
"description": {
"value": "<p>A small thrown implement crafted with a short wooden shaft and crossed feathres with a sharp wooden or metal tip. Darts can be thrown with sufficient force to puncture the skin.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 10,
"weight": {
"value": 0.25,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "cp"
},
"attunement": "",
"equipped": true,
"rarity": "",
"identified": true,
"cover": null,
"range": {
"value": 20,
"long": 60,
"units": "ft",
"reach": null
},
"uses": {
"max": "",
"recovery": [],
"spent": 0
},
"damage": {
"versatile": {
"number": null,
"denomination": null,
"bonus": "",
"types": [],
"custom": {
"enabled": false,
"formula": ""
},
"scaling": {
"mode": "",
"number": null,
"formula": ""
}
},
"base": {
"number": 1,
"denomination": 4,
"bonus": "",
"types": [
"piercing"
],
"custom": {
"enabled": false,
"formula": ""
},
"scaling": {
"mode": "",
"number": null,
"formula": ""
}
}
},
"armor": {
"value": 10
},
"hp": {
"value": 0,
"max": 0,
"dt": null,
"conditions": ""
},
"properties": [
"fin",
"thr"
],
"proficient": null,
"type": {
"value": "simpleR",
"baseItem": "dart"
},
"unidentified": {
"description": ""
},
"container": null,
"crewed": false,
"magicalBonus": null,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "attack",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": false
},
"consumption": {
"targets": [],
"scaling": {
"allowed": false,
"max": ""
},
"spellSlot": true
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": false,
"value": "",
"units": "inst",
"special": "",
"override": false
},
"effects": [],
"range": {
"value": "20",
"units": "ft",
"special": "",
"override": false
},
"target": {
"template": {
"count": "",
"contiguous": false,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": false,
"special": ""
},
"prompt": true,
"override": false
},
"attack": {
"ability": "",
"bonus": "",
"critical": {
"threshold": null
},
"flat": false,
"type": {
"value": "ranged",
"classification": "weapon"
}
},
"damage": {
"critical": {
"bonus": ""
},
"includeBase": true,
"parts": []
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": false,
"ammunition": {},
"mastery": "",
"identifier": "dart"
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.3rCO8MTIdPGSW6IJ",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "WeKJI3gPUAU52WAX",
"sort": 0
},
{
"name": "Common Clothes",
"type": "equipment",
"img": "icons/equipment/chest/shirt-collared-brown.webp",
"system": {
"description": {
"value": "<p>Clothes worn by most commoners.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 3,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "sp"
},
"attunement": "",
"equipped": false,
"rarity": "",
"identified": true,
"cover": null,
"uses": {
"max": "",
"recovery": [],
"spent": 0
},
"armor": {
"value": null,
"dex": null,
"magicalBonus": null
},
"hp": {
"value": 0,
"max": 0,
"dt": null,
"conditions": ""
},
"speed": {
"value": null,
"conditions": ""
},
"strength": null,
"proficient": null,
"type": {
"value": "clothing",
"baseItem": ""
},
"unidentified": {
"description": ""
},
"container": null,
"crewed": false,
"properties": [],
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "utility",
"activation": {
"type": "",
"value": null,
"condition": "",
"override": false
},
"consumption": {
"targets": [],
"scaling": {
"allowed": false,
"max": ""
},
"spellSlot": true
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": false,
"value": "",
"units": "inst",
"special": "",
"override": false
},
"effects": [],
"range": {
"units": "self",
"special": "",
"override": false
},
"target": {
"template": {
"count": "",
"contiguous": false,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": false,
"special": ""
},
"prompt": true,
"override": false
},
"roll": {
"formula": "",
"name": "",
"prompt": false,
"visible": false
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": false,
"identifier": "common-clothes"
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.8RXjiddJ6VGyE7vB",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "1F73YcUHbZMgePAD",
"sort": 0
},
{
"name": "Rations",
"type": "consumable",
"img": "icons/consumables/grains/bread-loaf-boule-rustic-brown.webp",
"system": {
"description": {
"value": "<p>Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 10,
"weight": {
"value": 2,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "sp"
},
"attunement": "",
"equipped": false,
"rarity": "",
"identified": true,
"uses": {
"max": "1",
"recovery": [],
"autoDestroy": true,
"spent": 0
},
"damage": {
"base": {
"number": null,
"denomination": null,
"types": [],
"custom": {
"enabled": false
},
"scaling": {
"number": 1
}
},
"replace": false
},
"container": "XY8b594Dn7plACLL",
"properties": [],
"type": {
"value": "food",
"subtype": ""
},
"unidentified": {
"description": ""
},
"magicalBonus": null,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "utility",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": false
},
"consumption": {
"targets": [
{
"type": "itemUses",
"target": "",
"value": "1",
"scaling": {
"mode": "",
"formula": ""
}
}
],
"scaling": {
"allowed": false,
"max": ""
},
"spellSlot": true
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": false,
"value": "",
"units": "inst",
"special": "",
"override": false
},
"effects": [],
"range": {
"units": "touch",
"special": "",
"override": false
},
"target": {
"template": {
"count": "",
"contiguous": false,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "1",
"type": "creature",
"choice": false,
"special": ""
},
"prompt": true,
"override": false
},
"roll": {
"formula": "",
"name": "",
"prompt": false,
"visible": false
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": false,
"identifier": "rations"
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.8d95YV1jHcxPygJ9",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"ownership": {
"default": 0
},
"_id": "LQhGSEatJ3VK7oqW",
"sort": 0
},
{
"name": "Pouch",
"type": "container",
"img": "icons/containers/bags/pouch-rounded-leather-gold-tan.webp",
"system": {
"description": {
"value": "<p>A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 1,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "sp"
},
"attunement": "",
"equipped": false,
"rarity": "",
"identified": true,
"capacity": {
"weight": {
"value": 6,
"units": "lb"
},
"volume": {
"units": "cubicFoot"
}
},
"currency": {
"cp": 0,
"sp": 0,
"ep": 0,
"gp": 0,
"pp": 0
},
"unidentified": {
"description": ""
},
"container": null,
"properties": [],
"attuned": false,
"identifier": "pouch"
},
"effects": [],
"folder": "PgtyWdfkDTDbc0ov",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.9bWTRRDym06PzSAf",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "1kqMwSwjfErSFNvl",
"sort": 0
},
{
"name": "Crowbar",
"type": "loot",
"img": "icons/tools/hand/pickaxe-steel-white.webp",
"system": {
"description": {
"value": "<p>Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 5,
"units": "lb"
},
"price": {
"value": 2,
"denomination": "gp"
},
"rarity": "",
"identified": true,
"container": "XY8b594Dn7plACLL",
"type": {
"value": "",
"subtype": ""
},
"unidentified": {
"description": ""
},
"properties": [],
"identifier": "crowbar"
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.AkyQyonZMVcvOrXU",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"ownership": {
"default": 0
},
"_id": "zF5L4xHnJBC7b2iM",
"sort": 0
},
{
"name": "Unarmed Strike",
"type": "weapon",
"img": "icons/skills/melee/unarmed-punch-fist.webp",
"system": {
"description": {
"value": "<p>A punch, kick, head-butt, or similar forceful blow (none of which count as weapons). On a hit, an unarmed strike deals bludgeoning damage equal to 1 + your Strength modifier. You are proficient with your unarmed strikes.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 0,
"units": "lb"
},
"price": {
"value": 0,
"denomination": "gp"
},
"attunement": "",
"equipped": true,
"rarity": "",
"identified": true,
"cover": null,
"range": {
"value": null,
"long": null,
"units": "ft",
"reach": null
},
"uses": {
"max": "",
"recovery": [],
"spent": 0
},
"damage": {
"versatile": {
"number": null,
"denomination": null,
"bonus": "",
"types": [],
"custom": {
"enabled": false,
"formula": ""
},
"scaling": {
"mode": "",
"number": null,
"formula": ""
}
},
"base": {
"number": null,
"denomination": null,
"bonus": "",
"types": [
"bludgeoning"
],
"custom": {
"enabled": true,
"formula": "@scale.monk.die"
},
"scaling": {
"mode": "",
"number": null,
"formula": ""
}
}
},
"armor": {
"value": 10
},
"hp": {
"value": 0,
"max": 0,
"dt": null,
"conditions": ""
},
"properties": [
"fin"
],
"proficient": null,
"type": {
"value": "simpleM",
"baseItem": ""
},
"unidentified": {
"description": ""
},
"container": null,
"crewed": false,
"magicalBonus": null,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "attack",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": false
},
"consumption": {
"targets": [],
"scaling": {
"allowed": false,
"max": ""
},
"spellSlot": true
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": false,
"value": "",
"units": "inst",
"special": "",
"override": false
},
"effects": [],
"range": {
"value": "5",
"units": "ft",
"special": "",
"override": false
},
"target": {
"template": {
"count": "",
"contiguous": false,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": false,
"special": ""
},
"prompt": true,
"override": false
},
"attack": {
"ability": "",
"bonus": "",
"critical": {
"threshold": null
},
"flat": false,
"type": {
"value": "melee",
"classification": "unarmed"
}
},
"damage": {
"critical": {
"bonus": ""
},
"includeBase": true,
"parts": []
},
"uses": {
"spent": 0,
"recovery": [],
"max": ""
},
"sort": 0,
"name": ""
}
},
"attuned": false,
"ammunition": {},
"identifier": "unarmed-strike",
"mastery": ""
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
"ownership": {
"default": 0
},
"flags": {
"dnd5e": {
"last": {
"dnd5eactivity000": {
"attackMode": "oneHanded",
"damageType": {
"0": "bludgeoning"
}
}
},
"riders": {
"activity": [],
"effect": []
}
}
},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.GsuvwoekKZatfKwF",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "g7U3OAXVcoI4lwzf",
"sort": 0
},
{
"name": "Backpack",
"type": "container",
"img": "icons/containers/bags/pack-leather-white-tan.webp",
"system": {
"description": {
"value": "<p>A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 5,
"units": "lb"
},
"price": {
"value": 2,
"denomination": "gp"
},
"attunement": "",
"equipped": false,
"rarity": "",
"identified": true,
"capacity": {
"weight": {
"value": 30,
"units": "lb"
},
"volume": {
"units": "cubicFoot"
}
},
"currency": {
"cp": 0,
"sp": 0,
"ep": 0,
"gp": 0,
"pp": 0
},
"unidentified": {
"description": ""
},
"container": null,
"properties": [],
"attuned": false,
"identifier": "backpack"
},
"effects": [],
"folder": "PgtyWdfkDTDbc0ov",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.H8YCd689ezlD26aT",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "WcROGD590imVj9qp",
"sort": 0
},
{
"name": "Piton",
"type": "consumable",
"img": "icons/tools/fasteners/nail-steel.webp",
"system": {
"description": {
"value": "<p>A metal spike that is drive into a seam in a climbing surface with a climbing hammer. It can also be used like iron spikes to block doors in a pinch.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 10,
"weight": {
"value": 0.25,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "cp"
},
"attunement": "",
"equipped": false,
"rarity": "",
"identified": true,
"uses": {
"max": "1",
"recovery": [],
"autoDestroy": false,
"spent": 0
},
"damage": {
"base": {
"number": null,
"denomination": null,
"types": [],
"custom": {
"enabled": false
},
"scaling": {
"number": 1
}
},
"replace": false
},
"container": "xsB7Y2WI476kvOt4",
"properties": [],
"type": {
"value": "trinket",
"subtype": ""
},
"unidentified": {
"description": ""
},
"magicalBonus": null,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "utility",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": false
},
"consumption": {
"targets": [
{
"type": "itemUses",
"target": "",
"value": "1",
"scaling": {
"mode": "",
"formula": ""
}
}
],
"scaling": {
"allowed": false,
"max": ""
},
"spellSlot": true
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": false,
"value": "",
"units": "inst",
"special": "",
"override": false
},
"effects": [],
"range": {
"value": "5",
"units": "ft",
"special": "",
"override": false
},
"target": {
"template": {
"count": "",
"contiguous": false,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": false,
"special": ""
},
"prompt": true,
"override": false
},
"roll": {
"formula": "",
"name": "",
"prompt": false,
"visible": false
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": false,
"identifier": "piton"
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.P31t6tGgt9aLAdYt",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"ownership": {
"default": 0
},
"_id": "8UQanAvHUIHZXp0O",
"sort": 0
},
{
"name": "Hempen Rope (50 ft.)",
"type": "consumable",
"img": "icons/sundries/survival/rope-wrapped-brown.webp",
"system": {
"description": {
"value": "<p>Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 10,
"units": "lb"
},
"price": {
"value": 1,
"denomination": "gp"
},
"attunement": "",
"equipped": false,
"rarity": "",
"identified": true,
"uses": {
"max": "1",
"recovery": [],
"autoDestroy": false,
"spent": 0
},
"damage": {
"base": {
"number": null,
"denomination": null,
"types": [],
"custom": {
"enabled": false
},
"scaling": {
"number": 1
}
},
"replace": false
},
"type": {
"value": "trinket",
"subtype": ""
},
"unidentified": {
"description": ""
},
"container": null,
"properties": [],
"magicalBonus": null,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "check",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": false
},
"consumption": {
"targets": [
{
"type": "itemUses",
"target": "",
"scaling": {},
"value": "1"
}
],
"scaling": {
"allowed": false,
"max": ""
},
"spellSlot": true
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": false,
"value": "",
"units": "inst",
"special": "",
"override": false
},
"effects": [],
"range": {
"units": "self",
"special": "",
"override": false
},
"target": {
"template": {
"count": "",
"contiguous": false,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": false,
"special": ""
},
"prompt": true,
"override": false
},
"check": {
"ability": "str",
"dc": {
"calculation": "",
"formula": "17"
},
"associated": []
},
"uses": {
"spent": 0,
"recovery": [],
"max": ""
},
"sort": 0,
"name": "Burst"
}
},
"attuned": false,
"identifier": "hempen-rope-50-ft"
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
"ownership": {
"default": 0
},
"flags": {
"dnd5e": {
"riders": {
"activity": [],
"effect": []
}
}
},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.QXmaarJ4X8P0C1HV",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "irCoxLHje0eA6Qmu",
"sort": 0
},
{
"name": "Reliquary",
"type": "equipment",
"img": "icons/containers/chest/chest-reinforced-steel-red.webp",
"system": {
"description": {
"value": "<p>A tiny box or other container holding a fragment of a precious relic, saint, or other historical figure that dedicated their life to walk the path of a true believer. A deity imbues the bearer of this artifact with the ability to call forth their power and in doing so spread the faith once more.</p>\n<p><strong>Spellcasting Focus</strong>. A cleric or paladin can use a holy symbol as a spellcasting focus. To use the symbol in this way, the caster must hold it in hand, wear it visibly, or bear it on a shield.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 2,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "gp"
},
"attunement": "",
"equipped": false,
"rarity": "",
"identified": true,
"cover": null,
"uses": {
"max": "",
"recovery": [],
"spent": 0
},
"armor": {
"value": null,
"dex": null,
"magicalBonus": null
},
"hp": {
"value": 0,
"max": 0,
"dt": null,
"conditions": ""
},
"speed": {
"value": null,
"conditions": ""
},
"strength": null,
"proficient": null,
"type": {
"value": "trinket",
"baseItem": ""
},
"unidentified": {
"description": ""
},
"container": null,
"crewed": false,
"properties": [
"foc"
],
"activities": {},
"attuned": false,
"identifier": "reliquary"
},
"effects": [],
"folder": "xedn1r43VWuEBcli",
"ownership": {
"default": 0
},
"flags": {
"dnd5e": {
"riders": {
"activity": [],
"effect": []
}
}
},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.gP1URGq3kVIIFHJ7",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "GfKuJYLFfw00oW9R",
"sort": 0
},
{
"name": "Vestments",
"type": "equipment",
"img": "icons/equipment/back/mantle-collared-black.webp",
"system": {
"description": {
"value": "<p>Simple or ostentacious wear, often used by priests and other religious figures for use in rituals and ceremonies.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 4,
"units": "lb"
},
"price": {
"value": 1,
"denomination": "gp"
},
"attunement": "",
"equipped": true,
"rarity": "",
"identified": true,
"cover": null,
"uses": {
"max": "",
"recovery": [],
"spent": 0
},
"armor": {
"value": null,
"dex": null,
"magicalBonus": null
},
"hp": {
"value": 0,
"max": 0,
"dt": null,
"conditions": ""
},
"speed": {
"value": null,
"conditions": ""
},
"strength": null,
"proficient": null,
"type": {
"value": "clothing",
"baseItem": ""
},
"unidentified": {
"description": ""
},
"container": null,
"crewed": false,
"properties": [],
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "utility",
"activation": {
"type": "",
"value": null,
"condition": "",
"override": false
},
"consumption": {
"targets": [],
"scaling": {
"allowed": false,
"max": ""
},
"spellSlot": true
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": false,
"value": "",
"units": "inst",
"special": "",
"override": false
},
"effects": [],
"range": {
"units": "self",
"special": "",
"override": false
},
"target": {
"template": {
"count": "",
"contiguous": false,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": false,
"special": ""
},
"prompt": true,
"override": false
},
"roll": {
"formula": "",
"name": "",
"prompt": false,
"visible": false
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": false,
"identifier": "vestments"
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.irtqrzaUCeshmTZp",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "NsNcJBUG5ajbk7sG",
"sort": 0
},
{
"name": "Prayer Book",
"type": "loot",
"img": "icons/sundries/books/book-purple-cross.webp",
"system": {
"description": {
"value": "<p>A book containing prayers and incantations dedicated to a specific power for the faithful to follow.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 5,
"units": "lb"
},
"price": {
"value": 25,
"denomination": "gp"
},
"rarity": "",
"identified": true,
"type": {
"value": "",
"subtype": ""
},
"unidentified": {
"description": ""
},
"container": null,
"properties": [],
"identifier": "prayer-book"
},
"effects": [],
"folder": "dlru9Hy74nSMv6fr",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.odV5cq2HSLSCH69k",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "XbF0CTipyqbMKHsB",
"sort": 0
},
{
"name": "Shortsword",
"type": "weapon",
"img": "icons/weapons/swords/sword-guard-worn-purple.webp",
"system": {
"description": {
"value": "<p>A medium sized blade with a firm crossguard and a leather-wrapped handle. A versatile weapon which makes up in versatility what it lacks in reach.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 2,
"units": "lb"
},
"price": {
"value": 10,
"denomination": "gp"
},
"attunement": "",
"equipped": true,
"rarity": "",
"identified": true,
"cover": null,
"range": {
"value": null,
"long": null,
"units": "ft",
"reach": null
},
"uses": {
"max": "",
"recovery": [],
"spent": 0
},
"damage": {
"versatile": {
"number": null,
"denomination": null,
"bonus": "",
"types": [],
"custom": {
"enabled": false,
"formula": ""
},
"scaling": {
"mode": "",
"number": null,
"formula": ""
}
},
"base": {
"number": 1,
"denomination": 6,
"bonus": "",
"types": [
"piercing"
],
"custom": {
"enabled": false,
"formula": ""
},
"scaling": {
"mode": "",
"number": null,
"formula": ""
}
}
},
"armor": {
"value": 10
},
"hp": {
"value": 0,
"max": 0,
"dt": null,
"conditions": ""
},
"properties": [
"fin",
"lgt"
],
"proficient": null,
"type": {
"value": "martialM",
"baseItem": "shortsword"
},
"unidentified": {
"description": ""
},
"container": null,
"crewed": false,
"magicalBonus": null,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "attack",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": false
},
"consumption": {
"targets": [],
"scaling": {
"allowed": false,
"max": ""
},
"spellSlot": true
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": false,
"value": "",
"units": "inst",
"special": "",
"override": false
},
"effects": [],
"range": {
"value": "5",
"units": "ft",
"special": "",
"override": false
},
"target": {
"template": {
"count": "",
"contiguous": false,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": false,
"special": ""
},
"prompt": true,
"override": false
},
"attack": {
"ability": "",
"bonus": "",
"critical": {
"threshold": null
},
"flat": false,
"type": {
"value": "melee",
"classification": "weapon"
}
},
"damage": {
"critical": {
"bonus": ""
},
"includeBase": true,
"parts": []
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": false,
"ammunition": {},
"identifier": "shortsword"
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.osLzOwQdPtrK3rQH",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "GYyovoNdU66nxOlX",
"sort": 0
}
],
"effects": []
}
})
});
const data = await response.json();
console.log(data);
curl -X POST 'http://localhost:3010/create?clientId=fvtt_099ad17ea199e7e3' \
-H "x-api-key: your-api-key-here" \
-H "Content-Type: application/json" \
-d '{"entityType":"Actor","data":{"name":"test-perrin (halfling monk)","type":"character","img":"systems/dnd5e/tokens/heroes/MonkStaff.webp","system":{"abilities":{"str":{"value":8,"proficient":1,"max":20,"bonuses":{"check":"","save":""},"check":{"roll":{"min":null,"max":null,"mode":0}},"save":{"roll":{"min":null,"max":null,"mode":0}}},"dex":{"value":16,"proficient":1,"max":20,"bonuses":{"check":"","save":""},"check":{"roll":{"min":null,"max":null,"mode":0}},"save":{"roll":{"min":null,"max":null,"mode":0}}},"con":{"value":13,"proficient":0,"max":20,"bonuses":{"check":"","save":""},"check":{"roll":{"min":null,"max":null,"mode":0}},"save":{"roll":{"min":null,"max":null,"mode":0}}},"int":{"value":12,"proficient":0,"max":20,"bonuses":{"check":"","save":""},"check":{"roll":{"min":null,"max":null,"mode":0}},"save":{"roll":{"min":null,"max":null,"mode":0}}},"wis":{"value":15,"proficient":0,"max":20,"bonuses":{"check":"","save":""},"check":{"roll":{"min":null,"max":null,"mode":0}},"save":{"roll":{"min":null,"max":null,"mode":0}}},"cha":{"value":11,"proficient":0,"max":20,"bonuses":{"check":"","save":""},"check":{"roll":{"min":null,"max":null,"mode":0}},"save":{"roll":{"min":null,"max":null,"mode":0}}}},"attributes":{"ac":{"flat":null,"calc":"unarmoredMonk","formula":""},"hp":{"value":9,"max":9,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""}},"init":{"ability":"","bonus":"0","roll":{"min":null,"max":null,"mode":0}},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":25,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int","death":{"success":0,"failure":0,"roll":{"min":null,"max":null,"mode":0},"bonuses":{"save":""}},"exhaustion":0,"inspiration":false,"concentration":{"ability":"","roll":{"min":null,"max":null,"mode":0},"bonuses":{"save":""},"limit":1},"loyalty":{}},"details":{"biography":{"value":"<p>A devoted student of his local monastery, Perrin has been tasked with bringing balance to the surrounding lands.</p><p><em>Token artwork by <a href=\"https://www.forgotten-adventures.net/\" target=\"_blank\" rel=\"noopener\">Forgotten Adventures</a>.</em></p>","public":""},"alignment":"True Neutral","race":"O3ZjSw0GtAOPScHI","background":"q4tr1vTU8RxtU1UZ","originalClass":"8Grf7ga6JcZF0X6x","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":"","eyes":"","height":"","faith":"","hair":"","weight":"","gender":"","skin":"","age":""},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":"Advantage against being frightenned"},"languages":{"value":["celestial","draconic","common","halfling"],"custom":"","communication":{}},"weaponProf":{"value":["sim","shortsword"],"custom":"","mastery":{"value":[],"bonus":[]}},"armorProf":{"value":[],"custom":""},"dm":{"amount":{},"bypasses":[]}},"currency":{"pp":0,"gp":15,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}}},"tools":{"art":{"value":1,"ability":"int","bonuses":{"check":""},"roll":{"min":null,"max":null,"mode":0}},"brewer":{"value":1,"ability":"int","bonuses":{"check":""},"roll":{"min":null,"max":null,"mode":0}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":true,"lr":true,"label":"Ki"},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}},"favorites":[{"type":"item","id":".Item.FtOM4QiOW5MwgcS3","sort":500000},{"type":"item","id":".Item.WeKJI3gPUAU52WAX","sort":600000},{"type":"item","id":".Item.g7U3OAXVcoI4lwzf","sort":550000},{"type":"item","id":".Item.GYyovoNdU66nxOlX","sort":700000}],"bastion":{"name":"","description":""}},"prototypeToken":{"flags":{},"name":"Perrin","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5,"negative":false,"priority":0},"texture":{"src":"systems/dnd5e/tokens/heroes/MonkStaff.webp","tint":"#ffffff","scaleX":0.8,"scaleY":0.8,"offsetX":0,"offsetY":0,"rotation":0,"anchorX":0.5,"anchorY":0.5,"fit":"contain","alphaThreshold":0.75},"sight":{"angle":360,"enabled":true,"range":5,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[],"appendNumber":false,"prependAdjective":false,"occludable":{"radius":0},"ring":{"enabled":false,"colors":{"ring":null,"background":null},"effects":1,"subject":{"scale":1,"texture":null}},"turnMarker":{"mode":1,"animation":null,"src":null,"disposition":false},"movementAction":null},"items":[{"name":"Priest","type":"background","system":{"description":{"value":"<ul><li><strong>Skill Proficiencies:</strong> Insight, Religion</li><li><strong>Languages:</strong> Two of your choice</li><li><strong>Equipment:</strong> A holy symbol, 5 sticks of incense, prayer book, vestments, a set of common clothes, and a pouch containing 15 gp.</li></ul>","chat":""},"source":{"custom":"","book":"","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"advancement":[],"startingEquipment":[],"identifier":"priest"},"img":"icons/sundries/documents/document-torn-diagram-tan.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"compendiumSource":null,"duplicateSource":null,"coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.0.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"q4tr1vTU8RxtU1UZ"},{"_id":"O3ZjSw0GtAOPScHI","name":"Lightfoot Halfling","type":"race","img":"icons/equipment/feet/shoes-leather-simple-brown.webp","system":{"description":{"value":"<p>Your halfling character has a number of traits in common with all other halflings.</p><p><em><strong>Ability Score Increase.</strong></em> Your Dexterity score increases by 2.</p><p><em><strong>Age.</strong></em> A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.</p><p><em><strong>Alignment.</strong></em> Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.</p><p><em><strong>Size.</strong></em> Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.</p><p><em><strong>Speed.</strong></em> Your base walking speed is 25 feet.</p><p><em><strong>Lucky.</strong></em> When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.</p><p><em><strong>Brave.</strong></em> You have advantage on saving throws against being frightened.</p><p><em><strong>Halfling Nimbleness.</strong></em> You can move through the space of any creature that is of a size larger than yours.</p><p><em><strong>Languages.</strong></em> You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.</p><h5>Lightfoot</h5><p>As a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others.</p><p>Lightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life.</p><p><em><strong>Ability Score Increase.</strong></em> Your Charisma score increases by 1.</p><p><em><strong>Naturally Stealthy.</strong></em> You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"identifier":"lightfoot-halfling","advancement":[{"_id":"nInhIgkbzzJTdm8F","type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.races.LOMdcNAGWh5xpfm4","optional":false},{"uuid":"Compendium.dnd5e.races.7Yoo9hG0hfPSmBoC","optional":false},{"uuid":"Compendium.dnd5e.races.PqxZgcJzp1VVgP8t","optional":false},{"uuid":"Compendium.dnd5e.races.GWPjKFeIthBBeCFJ","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{"added":{"FtOM4QiOW5MwgcS3":"Compendium.dnd5e.races.Item.LOMdcNAGWh5xpfm4","nmmihiqphHjoE8dl":"Compendium.dnd5e.races.Item.7Yoo9hG0hfPSmBoC","cWrETHzCRs1Ueqd3":"Compendium.dnd5e.races.Item.PqxZgcJzp1VVgP8t","AArhiOrSkaQUnCZS":"Compendium.dnd5e.races.Item.GWPjKFeIthBBeCFJ"}},"level":0,"title":""},{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":0,"fixed":{"str":0,"dex":2,"con":0,"int":0,"wis":0,"cha":1},"cap":2,"locked":[]},"value":{"type":"asi","assignments":{"dex":2,"cha":1}},"level":0,"title":""},{"_id":"hv2bcANK5jEJZaAb","type":"Size","configuration":{"sizes":["sm"]},"value":{"size":"sm"},"level":1,"title":"","hint":"Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small."},{"_id":"nGwMjsfNU6CXHk3A","type":"Trait","configuration":{"mode":"default","allowReplacements":false,"grants":["languages:standard:common","languages:standard:halfling"],"choices":[]},"level":0,"title":"","value":{"chosen":["languages:standard:common","languages:standard:halfling"]}}],"movement":{"walk":25,"burrow":null,"climb":null,"fly":null,"swim":null,"units":"ft","hover":false},"type":{"subtype":"halfling","value":"humanoid","custom":""},"senses":{"darkvision":null,"blindsight":null,"tremorsense":null,"truesight":null,"units":"ft","special":""}},"effects":[],"ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.races.Item.ZgYBjYYfiUstQD6f","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":1738093997274,"lastModifiedBy":"dnd5ebuilder0000","exportSource":null},"sort":0,"folder":"uQNrdSpcXeoB5EnX"},{"_id":"FtOM4QiOW5MwgcS3","name":"Lucky","ownership":{"default":0},"type":"feat","system":{"description":{"value":"<p>When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.</p><section class=\"secret foundry-note\" id=\"secret-S04TPyvUh05Dz0Ng\"><p><strong>Foundry Note</strong></p><p>This property can be enabled on your character sheet in the Special Traits configuration on the Attributes tab.</p></section>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"uses":{"max":"","spent":0,"recovery":[]},"type":{"value":"race","subtype":""},"requirements":"Halfling","properties":[],"activities":{},"enchant":{},"prerequisites":{"level":null,"repeatable":false},"identifier":"lucky","advancement":[],"crewed":false},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.Item.LOMdcNAGWh5xpfm4","advancementOrigin":"O3ZjSw0GtAOPScHI.nInhIgkbzzJTdm8F","riders":{"activity":[],"effect":[]}}},"img":"icons/sundries/gaming/dice-runed-brown.webp","effects":[],"folder":"kbtbKofcv13crhke","sort":0,"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.races.Item.LOMdcNAGWh5xpfm4","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":1738093813616,"lastModifiedBy":"dnd5ebuilder0000","exportSource":null}},{"_id":"nmmihiqphHjoE8dl","name":"Brave","ownership":{"default":0},"type":"feat","system":{"description":{"value":"<p>You have advantage on saving throws against being frightened.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"uses":{"max":"","spent":0,"recovery":[]},"type":{"value":"race","subtype":""},"requirements":"Halfling","properties":[],"activities":{},"enchant":{},"prerequisites":{"level":null,"repeatable":false},"identifier":"brave","advancement":[],"crewed":false},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.Item.7Yoo9hG0hfPSmBoC","advancementOrigin":"O3ZjSw0GtAOPScHI.nInhIgkbzzJTdm8F","riders":{"activity":[],"effect":[]}}},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":"kbtbKofcv13crhke","sort":0,"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.races.Item.7Yoo9hG0hfPSmBoC","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":1738093813671,"lastModifiedBy":"dnd5ebuilder0000","exportSource":null}},{"_id":"cWrETHzCRs1Ueqd3","name":"Halfling Nimbleness","ownership":{"default":0},"type":"feat","system":{"description":{"value":"<p>You can move through the space of any creature that is of a size larger than yours.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"uses":{"max":"","spent":0,"recovery":[]},"type":{"value":"race","subtype":""},"requirements":"Halfling","properties":[],"activities":{},"enchant":{},"prerequisites":{"level":null,"repeatable":false},"identifier":"halfling-nimbleness","advancement":[],"crewed":false},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.Item.PqxZgcJzp1VVgP8t","advancementOrigin":"O3ZjSw0GtAOPScHI.nInhIgkbzzJTdm8F","riders":{"activity":[],"effect":[]}}},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":"kbtbKofcv13crhke","sort":0,"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.races.Item.PqxZgcJzp1VVgP8t","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":1738093813706,"lastModifiedBy":"dnd5ebuilder0000","exportSource":null}},{"_id":"AArhiOrSkaQUnCZS","name":"Naturally Stealthy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"<p>You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"uses":{"max":"","spent":0,"recovery":[]},"type":{"value":"race","subtype":""},"requirements":"Lightfoot Halfling","properties":[],"activities":{},"enchant":{},"prerequisites":{"level":null,"repeatable":false},"identifier":"naturally-stealthy","advancement":[],"crewed":false},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.Item.GWPjKFeIthBBeCFJ","advancementOrigin":"O3ZjSw0GtAOPScHI.nInhIgkbzzJTdm8F","riders":{"activity":[],"effect":[]}}},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[],"folder":"kbtbKofcv13crhke","sort":0,"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.races.Item.GWPjKFeIthBBeCFJ","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":1738093813743,"lastModifiedBy":"dnd5ebuilder0000","exportSource":null}},{"_id":"8Grf7ga6JcZF0X6x","name":"Monk","type":"class","img":"icons/skills/melee/hand-grip-staff-blue.webp","system":{"description":{"value":"<p>As a monk, you gain the following class features.</p><h3>Hit Points</h3><p><strong>Hit Dice:</strong> 1d8 per monk level<br /><strong>Hit Points at 1st Level:</strong> 8 + your Constitution modifier<br /><strong>Hit Points at Higher Levels:</strong> 1d8 (or 5) + your Constitution modifier per monk level after 1st</p><h3>Proficiencies</h3><p><strong>Armor:</strong> None<br /><strong>Weapons:</strong> Simple weapons, shortswords<br /><strong>Tools:</strong> Choose one type of artisan's tools or one musical instrument<br /><strong>Saving Throws:</strong> Strength, Dexterity<br /><strong>Skills:</strong> Choose two from Acrobatics, Athletics, History, Insight, Religion, and Stealth</p><h1>Monk Advancement</h1><table><thead><tr><td>Level</td><td>Proficiency Bonus</td><td>Martial Arts</td><td>Ki Points</td><td>Unarmored Movement</td><td>Features</td></tr></thead><tbody><tr><td>1st</td><td>+2</td><td>1d4</td><td>—</td><td>—</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.UAvV7N7T4zJhxdfI]{Unarmored Defense}, @UUID[Compendium.dnd5e.classfeatures.Item.l50hjTxO2r0iecKw]{Martial Arts}</td></tr><tr><td>2nd</td><td>+2</td><td>1d4</td><td>2</td><td>+10 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.10b6z2W1txNkrGP7]{Ki}, @UUID[Compendium.dnd5e.classfeatures.Item.zCeqyQ8uIPNdYJSW]{Unarmored Movement}</td></tr><tr><td>3rd</td><td>+2</td><td>1d4</td><td>3</td><td>+10 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.rtpQdX77dYWbDIOH]{Monastic Tradition}, @UUID[Compendium.dnd5e.classfeatures.Item.mzweVbnsJPQiVkAe]{Deflect Missiles}</td></tr><tr><td>4th</td><td>+2</td><td>1d4</td><td>4</td><td>+10 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, @UUID[Compendium.dnd5e.classfeatures.Item.KQz9bqxVkXjDl8gK]{Slow Fall}</td></tr><tr><td>5th</td><td>+3</td><td>1d6</td><td>5</td><td>+10 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.XogoBnFWmCAHXppo]{Extra Attack}, @UUID[Compendium.dnd5e.classfeatures.Item.pvRc6GAu1ok6zihC]{Stunning Strike}</td></tr><tr><td>6th</td><td>+3</td><td>1d6</td><td>6</td><td>+15 ft.</td><td><p>@UUID[Compendium.dnd5e.classfeatures.Item.7flZKruSSu6dHg6D]{Ki-Empowered Strikes},</p><p>Monastic Tradition feature</p></td></tr><tr><td>7th</td><td>+3</td><td>1d6</td><td>7</td><td>+15 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.a4P4DNMmH8CqSNkC]{Evasion}, @UUID[Compendium.dnd5e.classfeatures.Item.ZmC31XKS4YNENnoc]{Stillness of Mind}</td></tr><tr><td>8th</td><td>+3</td><td>1d6</td><td>8</td><td>+15 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}</td></tr><tr><td>9th</td><td>+4</td><td>1d6</td><td>9</td><td>+15 ft.</td><td>Unarmored Movement improvement</td></tr><tr><td>10th</td><td>+4</td><td>1d6</td><td>10</td><td>+20 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.bqWA7t9pDELbNRkp]{Purity of Body}</td></tr><tr><td>11th</td><td>+4</td><td>1d8</td><td>11</td><td>+20 ft.</td><td>Monastic Tradition feature</td></tr><tr><td>12th</td><td>+4</td><td>1d8</td><td>12</td><td>+20 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}</td></tr><tr><td>13th</td><td>+5</td><td>1d8</td><td>13</td><td>+20 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.XjuGBeB8Y0C3A5D4]{Tongue of the Sun and Moon}</td></tr><tr><td>14th</td><td>+5</td><td>1d8</td><td>14</td><td>+25 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.7D2EkLdISwShEDlN]{Diamond Soul}</td></tr><tr><td>15th</td><td>+5</td><td>1d8</td><td>15</td><td>+25 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.gDH8PMrKvLHaNmEI]{Timeless Body}</td></tr><tr><td>16th</td><td>+5</td><td>1d8</td><td>16</td><td>+25 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}</td></tr><tr><td>17th</td><td>+6</td><td>1d10</td><td>17</td><td>+25 ft.</td><td>Monastic Tradition feature</td></tr><tr><td>18th</td><td>+6</td><td>1d10</td><td>18</td><td>+30 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.3jwFt3hSqDswBlOH]{Empty Body}</td></tr><tr><td>19th</td><td>+6</td><td>1d10</td><td>19</td><td>+30 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}</td></tr><tr><td>20th</td><td>+6</td><td>1d10</td><td>20</td><td>+30 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.mQNPg89YIs7g5tG4]{Perfect Self}</td></tr></tbody></table><h1>Monastic Traditions</h1><p>Three traditions of monastic pursuit are common in the monasteries scattered across the multiverse. Most monasteries practice one tradition exclusively, but a few honor the three traditions and instruct each monk according to his or her aptitude and interest. All three traditions rely on the same basic techniques, diverging as the student grows more adept. Thus, a monk need choose a tradition only upon reaching 3rd level.</p><p>@UUID[Compendium.dnd5e.subclasses.Item.IvlpKMXX3PmW1NY2]{Way of the Open Hand}</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"identifier":"monk","levels":1,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"ocxNtDFJ7YDaYaK7"},{"_id":"mmAxx3U7FvXNAcKc","type":"Trait","configuration":{"mode":"default","allowReplacements":false,"grants":["weapon:sim","weapon:mar:shortsword"],"choices":[]},"level":1,"title":"","value":{"chosen":["weapon:sim","weapon:mar:shortsword"]}},{"_id":"QPXy59CQGY9HB0c3","type":"Trait","configuration":{"mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":1,"pool":["tool:art:*","tool:music:*"]}]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["tool:art:brewer"]}},{"_id":"4M8MQ1E64zbcRg6B","type":"Trait","configuration":{"mode":"default","allowReplacements":false,"grants":["saves:str","saves:dex"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["saves:str","saves:dex"]}},{"_id":"7HRRCPk80Ng2Evdx","type":"Trait","configuration":{"mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:acr","skills:ath","skills:his","skills:ins","skills:rel","skills:ste"]}]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["skills:acr","skills:ath"]}},{"_id":"BQWHr3mt5flvkfIj","type":"Trait","configuration":{"mode":"default","allowReplacements":false,"grants":["di:poison","ci:diseased","ci:poisoned"],"choices":[]},"level":10,"title":"Purity of Body","value":{"chosen":[]},"hint":"Your mastery of the ki flowing through you makes you immune to disease and poison."},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.UAvV7N7T4zJhxdfI","optional":false},{"uuid":"Compendium.dnd5e.classfeatures.l50hjTxO2r0iecKw","optional":false},{"uuid":"Compendium.dnd5e.classfeatures.eGxoNmSMWKNzChCO","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{"added":{"CwgoTDXWCD7PknIN":"Compendium.dnd5e.classfeatures.Item.UAvV7N7T4zJhxdfI","pchnXqd5C79fVlxy":"Compendium.dnd5e.classfeatures.Item.l50hjTxO2r0iecKw","RiURabP4FDYMeuWx":"Compendium.dnd5e.classfeatures.Item.eGxoNmSMWKNzChCO"}},"level":1,"title":"Features","_id":"n0q8XyiGA3vLPgpK"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.10b6z2W1txNkrGP7","optional":false},{"uuid":"Compendium.dnd5e.classfeatures.5MwNlVZK7m6VolOH","optional":false},{"uuid":"Compendium.dnd5e.classfeatures.TDglPcxIVEzvVSgK","optional":false},{"uuid":"Compendium.dnd5e.classfeatures.yrSFIGTaQOH2PFRI","optional":false},{"uuid":"Compendium.dnd5e.classfeatures.zCeqyQ8uIPNdYJSW","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":2,"title":"Features","_id":"7TyDqpGGi3r3nsp0"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.rtpQdX77dYWbDIOH","optional":false},{"uuid":"Compendium.dnd5e.classfeatures.mzweVbnsJPQiVkAe","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":3,"title":"Features","_id":"2sLHTw6k15DSW8WB"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.KQz9bqxVkXjDl8gK","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":4,"title":"Features","_id":"Zc1jOZK1b9mIKekq"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo","optional":false},{"uuid":"Compendium.dnd5e.classfeatures.pvRc6GAu1ok6zihC","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":5,"title":"Features","_id":"j9LeWmxlsENKaMLo"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.7flZKruSSu6dHg6D","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":6,"title":"Features","_id":"psobDjMqtA2216Db"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.a4P4DNMmH8CqSNkC","optional":false},{"uuid":"Compendium.dnd5e.classfeatures.ZmC31XKS4YNENnoc","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":7,"title":"Features","_id":"K38aFaEMxMqRB0BC"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.bqWA7t9pDELbNRkp","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":10,"title":"Features","_id":"eLqmJotmwzlGNrxG"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.XjuGBeB8Y0C3A5D4","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":13,"title":"Features","_id":"N0geIQiuofqYgswj"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.7D2EkLdISwShEDlN","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":14,"title":"Features","_id":"N1hjizyI82UPp8UI"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.gDH8PMrKvLHaNmEI","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":15,"title":"Features","_id":"TcLZS9WzC7bPETSd"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.3jwFt3hSqDswBlOH","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":18,"title":"Features","_id":"tRb3a0tA5IpehPs8"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.mQNPg89YIs7g5tG4","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":20,"title":"Features","_id":"sEQz9c9XhWYjS9x5"},{"type":"ScaleValue","configuration":{"identifier":"die","type":"dice","distance":{"units":""},"scale":{"1":{"number":null,"faces":4,"modifiers":[]},"5":{"number":null,"faces":6,"modifiers":[]},"11":{"number":null,"faces":8,"modifiers":[]},"17":{"number":null,"faces":10,"modifiers":[]}}},"value":{},"title":"Martial Arts Die","_id":"MXFbf0nxMiyLdPbX"},{"type":"ScaleValue","configuration":{"identifier":"unarmored-movement","type":"distance","distance":{"units":"ft"},"scale":{"2":{"value":10},"6":{"value":15},"10":{"value":20},"14":{"value":25},"18":{"value":30}}},"value":{},"title":"Unarmored Movement","_id":"1OzfWDWCquoHMeX5"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2,"locked":[]},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","_id":"ofNSUhSHKhhDuPSR"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2,"locked":[]},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","_id":"s3t9o57hP6iUHirr"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2,"locked":[]},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","_id":"O24MWOKc1ImsKaml"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2,"locked":[]},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","_id":"xdqWoLtgO3uyl3nJ"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2,"locked":[]},"value":{"type":"asi"},"level":19,"title":""},{"_id":"0awj2yq115ev9u9o","type":"Subclass","configuration":{},"value":{"document":null,"uuid":null},"level":3,"title":"Monastic Tradition"}],"spellcasting":{"progression":"none","ability":"","preparation":{"formula":""}},"startingEquipment":[{"type":"OR","_id":"5yj0P4r9teJDnDtd","group":"","sort":100000,"requiresProficiency":false},{"type":"linked","count":null,"key":"Compendium.dnd5e.items.Item.osLzOwQdPtrK3rQH","_id":"R5tuRtaPonfjQCVU","group":"5yj0P4r9teJDnDtd","sort":200000,"requiresProficiency":false},{"type":"weapon","count":null,"key":"simpleM","_id":"Mlf6kel8ws6xgDER","group":"5yj0P4r9teJDnDtd","sort":300000,"requiresProficiency":false},{"type":"OR","_id":"3TbVLmLPtjVaSh5O","group":"","sort":400000,"requiresProficiency":false},{"type":"linked","count":null,"key":"Compendium.dnd5e.items.Item.XY8b594Dn7plACLL","_id":"AvDYtl0uvQsDuhnb","group":"3TbVLmLPtjVaSh5O","sort":500000,"requiresProficiency":false},{"type":"linked","count":null,"key":"Compendium.dnd5e.items.Item.8KWz5DJbWUpNWniP","_id":"4QKQURCmIurbTAzp","group":"3TbVLmLPtjVaSh5O","sort":600000,"requiresProficiency":false},{"type":"linked","count":10,"key":"Compendium.dnd5e.items.Item.3rCO8MTIdPGSW6IJ","_id":"AOYuulsULvsHbSLO","group":"","sort":700000,"requiresProficiency":false}],"wealth":"5d4","primaryAbility":{"value":[],"all":true},"hd":{"denomination":"d8","spent":0,"additional":""}},"effects":[],"folder":"HQ1Oy7HkbnxnE63o","sort":0,"ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.classes.Item.6VoZrWxhOEKGYhnq","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":1738093997309,"lastModifiedBy":"dnd5ebuilder0000","exportSource":null}},{"_id":"CwgoTDXWCD7PknIN","name":"Unarmored Defense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"<p>Beginning at 1st Level, while you are wearing no armor and not wielding a Shield, your AC equals 10 + your Dexterity modifier + your Wisdom modifier.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"uses":{"max":"","spent":0,"recovery":[]},"type":{"value":"class","subtype":""},"requirements":"Monk 1","properties":[],"activities":{},"enchant":{},"prerequisites":{"level":null,"repeatable":false},"identifier":"unarmored-defense","advancement":[],"crewed":false},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.Item.UAvV7N7T4zJhxdfI","advancementOrigin":"8Grf7ga6JcZF0X6x.n0q8XyiGA3vLPgpK"}},"img":"icons/magic/control/silhouette-hold-change-blue.webp","effects":[{"_id":"R5ro4AuNjcdWD56O","changes":[{"key":"system.attributes.ac.calc","mode":5,"value":"unarmoredMonk","priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"origin":"Item.cOdcNWy4hII029DT","transfer":true,"flags":{},"tint":"#ffffff","name":"Unarmored Defense","description":"","statuses":[],"_stats":{"compendiumSource":null,"duplicateSource":null,"coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"img":"icons/magic/control/silhouette-hold-change-blue.webp","type":"base","system":{},"sort":0}],"folder":"TMmNG8ujFDBEWXRe","sort":0,"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.classfeatures.Item.UAvV7N7T4zJhxdfI","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":1738093813778,"lastModifiedBy":"dnd5ebuilder0000","exportSource":null}},{"_id":"pchnXqd5C79fVlxy","name":"Martial Arts","ownership":{"default":0},"type":"feat","system":{"description":{"value":"<p>At 1st level, your practice of martial arts gives you mastery of combat styles that use and monk weapons, which are shortswords and any simple melee weapons that don't have the two-handed or heavy property. You gain the following benefits while you are unarmed or wielding only monk weapons and you aren't wearing armor or wielding a shield:</p>\n<ul>\n<li>\n<p>You can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes and monk weapons.</p>\n</li>\n<li>\n<p>You can roll a d4 in place of the normal damage of your unarmed strike or monk weapon. This die changes as you gain monk levels, as shown in the Martial Arts column of the Monk table.</p>\n</li>\n<li>\n<p>When you use the Attack action with an unarmed strike or a monk weapon on your turn, you can make one unarmed strike as a bonus action. For example, if you take the Attack action and attack with a quarterstaff, you can also make an unarmed strike as a bonus action, assuming you haven't already taken a bonus action this turn.</p>\n</li>\n</ul>\n<p>Certain monasteries use specialized forms of the monk weapons. For example, you might use a club that is two lengths of wood connected by a short chain (called a nunchaku) or a sickle with a shorter, straighter blade (called a kama). Whatever name you use for a monk weapon, you can use the game statistics provided for the weapon.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"uses":{"max":"","spent":0,"recovery":[]},"type":{"value":"class","subtype":""},"requirements":"Monk 1","properties":[],"activities":{},"enchant":{},"prerequisites":{"level":null,"repeatable":false},"identifier":"martial-arts","advancement":[],"crewed":false},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.Item.l50hjTxO2r0iecKw","advancementOrigin":"8Grf7ga6JcZF0X6x.n0q8XyiGA3vLPgpK"}},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":"TMmNG8ujFDBEWXRe","sort":0,"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.classfeatures.Item.l50hjTxO2r0iecKw","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":1738093813816,"lastModifiedBy":"dnd5ebuilder0000","exportSource":null}},{"name":"Hammer","type":"loot","img":"icons/tools/hand/hammer-cobbler-steel.webp","system":{"description":{"value":"<p>A tool with a heavy metal head mounted at the end of its handle, used for jobs such as breaking things and driving in nails. </p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":3,"units":"lb"},"price":{"value":1,"denomination":"gp"},"rarity":"","identified":true,"type":{"value":"","subtype":""},"unidentified":{"description":""},"container":null,"properties":[],"identifier":"hammer"},"effects":[],"folder":"dlru9Hy74nSMv6fr","ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.14pNRT4sZy9rgvhb","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"YJ1P3PnFKHOdQpaP","sort":0},{"name":"Tinderbox","type":"loot","img":"icons/sundries/lights/torch-black.webp","system":{"description":{"value":"<p>This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.</p>\n<p> </p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":1,"units":"lb"},"price":{"value":5,"denomination":"sp"},"rarity":"","identified":true,"container":"8KWz5DJbWUpNWniP","type":{"value":"","subtype":""},"unidentified":{"description":""},"properties":[],"identifier":"tinderbox"},"effects":[],"folder":"Dx3K2y0J1wJUPP9m","flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.1FSubnBpSTDmVaYV","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"ownership":{"default":0},"_id":"DDnxRCeYUhXstWU8","sort":0},{"name":"Waterskin","type":"consumable","img":"icons/sundries/survival/wetskin-leather-purple.webp","system":{"description":{"value":"<p>A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":5,"units":"lb"},"price":{"value":2,"denomination":"sp"},"attunement":"","equipped":false,"rarity":"","identified":true,"uses":{"max":"4","recovery":[],"autoDestroy":false,"spent":0},"damage":{"base":{"number":null,"denomination":null,"types":[],"custom":{"enabled":false},"scaling":{"number":1}},"replace":false},"container":"6OYR11aJX2dEVtOj","properties":[],"type":{"value":"food","subtype":""},"unidentified":{"description":""},"magicalBonus":null,"activities":{"dnd5eactivity000":{"_id":"dnd5eactivity000","type":"utility","activation":{"type":"action","value":1,"condition":"","override":false},"consumption":{"targets":[{"type":"itemUses","target":"","value":"1","scaling":{"mode":"","formula":""}}],"scaling":{"allowed":false,"max":""},"spellSlot":true},"description":{"chatFlavor":""},"duration":{"concentration":false,"value":"","units":"inst","special":"","override":false},"effects":[],"range":{"units":"touch","special":"","override":false},"target":{"template":{"count":"","contiguous":false,"type":"","size":"","width":"","height":"","units":""},"affects":{"count":"","type":"","choice":false,"special":""},"prompt":true,"override":false},"roll":{"formula":"","name":"","prompt":false,"visible":false},"uses":{"spent":0,"recovery":[]},"sort":0}},"attuned":false,"identifier":"waterskin"},"effects":[],"folder":"Dx3K2y0J1wJUPP9m","flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.1L5wkmbw0fmNAr38","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"ownership":{"default":0},"_id":"5skKSSB4ShHbKoc8","sort":0},{"name":"Torch","type":"consumable","img":"icons/sundries/lights/torch-black.webp","system":{"description":{"value":"<p>A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":10,"weight":{"value":1,"units":"lb"},"price":{"value":1,"denomination":"cp"},"attunement":"","equipped":false,"rarity":"","identified":true,"uses":{"max":"1","recovery":[],"autoDestroy":false,"spent":0},"damage":{"base":{"number":null,"denomination":null,"bonus":"","types":["fire"],"custom":{"enabled":true,"formula":"1"},"scaling":{"mode":"","number":null,"formula":""}},"replace":false},"container":"8KWz5DJbWUpNWniP","properties":[],"type":{"value":"trinket","subtype":""},"unidentified":{"description":""},"magicalBonus":null,"activities":{"dnd5eactivity000":{"_id":"dnd5eactivity000","type":"attack","activation":{"type":"action","value":1,"condition":"","override":false},"consumption":{"targets":[{"type":"itemUses","target":"","value":"1","scaling":{"mode":"","formula":""}}],"scaling":{"allowed":false,"max":""},"spellSlot":true},"description":{"chatFlavor":""},"duration":{"concentration":false,"value":"1","units":"hour","special":"","override":false},"effects":[],"range":{"units":"self","special":"","override":false},"target":{"template":{"count":"","contiguous":false,"type":"radius","size":"40","width":"","height":"","units":"ft"},"affects":{"count":"","type":"","choice":false,"special":""},"prompt":true,"override":false},"attack":{"ability":"str","bonus":"","critical":{"threshold":null},"flat":false,"type":{"value":"melee","classification":"weapon"}},"damage":{"critical":{"bonus":""},"includeBase":true,"parts":[{"number":null,"denomination":null,"bonus":"","types":["fire"],"custom":{"enabled":true,"formula":"1"},"scaling":{"mode":"whole","number":null,"formula":""}}]},"uses":{"spent":0,"recovery":[]},"sort":0}},"attuned":false,"identifier":"torch"},"effects":[],"folder":"Dx3K2y0J1wJUPP9m","flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.29ZLE8PERtFVD3QU","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"ownership":{"default":0},"_id":"dDuMscUuMI2bTdkj","sort":0},{"name":"Stick of Incense","type":"loot","img":"icons/consumables/grains/breadsticks-crackers-wrapped-ration-brown.webp","system":{"description":{"value":"<p>When blocks of incense cannot be used or a cheaper alternative is required, people often use these to perfume the air, whether for pleasurable or religious purposes.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":5,"weight":{"value":0,"units":"lb"},"price":{"value":2,"denomination":"sp"},"rarity":"","identified":true,"type":{"value":"","subtype":""},"unidentified":{"description":""},"container":null,"properties":[],"identifier":"stick-of-incense"},"effects":[],"folder":"dlru9Hy74nSMv6fr","ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.3b0RvGi0TnTYpIxn","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"nC6VcR5JAIbR4err","sort":0},{"name":"Dart","type":"weapon","img":"icons/weapons/thrown/dart-feathered.webp","system":{"description":{"value":"<p>A small thrown implement crafted with a short wooden shaft and crossed feathres with a sharp wooden or metal tip. Darts can be thrown with sufficient force to puncture the skin.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":10,"weight":{"value":0.25,"units":"lb"},"price":{"value":5,"denomination":"cp"},"attunement":"","equipped":true,"rarity":"","identified":true,"cover":null,"range":{"value":20,"long":60,"units":"ft","reach":null},"uses":{"max":"","recovery":[],"spent":0},"damage":{"versatile":{"number":null,"denomination":null,"bonus":"","types":[],"custom":{"enabled":false,"formula":""},"scaling":{"mode":"","number":null,"formula":""}},"base":{"number":1,"denomination":4,"bonus":"","types":["piercing"],"custom":{"enabled":false,"formula":""},"scaling":{"mode":"","number":null,"formula":""}}},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"properties":["fin","thr"],"proficient":null,"type":{"value":"simpleR","baseItem":"dart"},"unidentified":{"description":""},"container":null,"crewed":false,"magicalBonus":null,"activities":{"dnd5eactivity000":{"_id":"dnd5eactivity000","type":"attack","activation":{"type":"action","value":1,"condition":"","override":false},"consumption":{"targets":[],"scaling":{"allowed":false,"max":""},"spellSlot":true},"description":{"chatFlavor":""},"duration":{"concentration":false,"value":"","units":"inst","special":"","override":false},"effects":[],"range":{"value":"20","units":"ft","special":"","override":false},"target":{"template":{"count":"","contiguous":false,"type":"","size":"","width":"","height":"","units":""},"affects":{"count":"","type":"","choice":false,"special":""},"prompt":true,"override":false},"attack":{"ability":"","bonus":"","critical":{"threshold":null},"flat":false,"type":{"value":"ranged","classification":"weapon"}},"damage":{"critical":{"bonus":""},"includeBase":true,"parts":[]},"uses":{"spent":0,"recovery":[]},"sort":0}},"attuned":false,"ammunition":{},"mastery":"","identifier":"dart"},"effects":[],"folder":"MLMTCAvKsuFE3vYA","ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.3rCO8MTIdPGSW6IJ","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"WeKJI3gPUAU52WAX","sort":0},{"name":"Common Clothes","type":"equipment","img":"icons/equipment/chest/shirt-collared-brown.webp","system":{"description":{"value":"<p>Clothes worn by most commoners.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":3,"units":"lb"},"price":{"value":5,"denomination":"sp"},"attunement":"","equipped":false,"rarity":"","identified":true,"cover":null,"uses":{"max":"","recovery":[],"spent":0},"armor":{"value":null,"dex":null,"magicalBonus":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"speed":{"value":null,"conditions":""},"strength":null,"proficient":null,"type":{"value":"clothing","baseItem":""},"unidentified":{"description":""},"container":null,"crewed":false,"properties":[],"activities":{"dnd5eactivity000":{"_id":"dnd5eactivity000","type":"utility","activation":{"type":"","value":null,"condition":"","override":false},"consumption":{"targets":[],"scaling":{"allowed":false,"max":""},"spellSlot":true},"description":{"chatFlavor":""},"duration":{"concentration":false,"value":"","units":"inst","special":"","override":false},"effects":[],"range":{"units":"self","special":"","override":false},"target":{"template":{"count":"","contiguous":false,"type":"","size":"","width":"","height":"","units":""},"affects":{"count":"","type":"","choice":false,"special":""},"prompt":true,"override":false},"roll":{"formula":"","name":"","prompt":false,"visible":false},"uses":{"spent":0,"recovery":[]},"sort":0}},"attuned":false,"identifier":"common-clothes"},"effects":[],"folder":"aJgMxnZED9XdoN2W","ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.8RXjiddJ6VGyE7vB","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"1F73YcUHbZMgePAD","sort":0},{"name":"Rations","type":"consumable","img":"icons/consumables/grains/bread-loaf-boule-rustic-brown.webp","system":{"description":{"value":"<p>Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":10,"weight":{"value":2,"units":"lb"},"price":{"value":5,"denomination":"sp"},"attunement":"","equipped":false,"rarity":"","identified":true,"uses":{"max":"1","recovery":[],"autoDestroy":true,"spent":0},"damage":{"base":{"number":null,"denomination":null,"types":[],"custom":{"enabled":false},"scaling":{"number":1}},"replace":false},"container":"XY8b594Dn7plACLL","properties":[],"type":{"value":"food","subtype":""},"unidentified":{"description":""},"magicalBonus":null,"activities":{"dnd5eactivity000":{"_id":"dnd5eactivity000","type":"utility","activation":{"type":"action","value":1,"condition":"","override":false},"consumption":{"targets":[{"type":"itemUses","target":"","value":"1","scaling":{"mode":"","formula":""}}],"scaling":{"allowed":false,"max":""},"spellSlot":true},"description":{"chatFlavor":""},"duration":{"concentration":false,"value":"","units":"inst","special":"","override":false},"effects":[],"range":{"units":"touch","special":"","override":false},"target":{"template":{"count":"","contiguous":false,"type":"","size":"","width":"","height":"","units":""},"affects":{"count":"1","type":"creature","choice":false,"special":""},"prompt":true,"override":false},"roll":{"formula":"","name":"","prompt":false,"visible":false},"uses":{"spent":0,"recovery":[]},"sort":0}},"attuned":false,"identifier":"rations"},"effects":[],"folder":"Dx3K2y0J1wJUPP9m","flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.8d95YV1jHcxPygJ9","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"ownership":{"default":0},"_id":"LQhGSEatJ3VK7oqW","sort":0},{"name":"Pouch","type":"container","img":"icons/containers/bags/pouch-rounded-leather-gold-tan.webp","system":{"description":{"value":"<p>A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":1,"units":"lb"},"price":{"value":5,"denomination":"sp"},"attunement":"","equipped":false,"rarity":"","identified":true,"capacity":{"weight":{"value":6,"units":"lb"},"volume":{"units":"cubicFoot"}},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0},"unidentified":{"description":""},"container":null,"properties":[],"attuned":false,"identifier":"pouch"},"effects":[],"folder":"PgtyWdfkDTDbc0ov","ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.9bWTRRDym06PzSAf","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"1kqMwSwjfErSFNvl","sort":0},{"name":"Crowbar","type":"loot","img":"icons/tools/hand/pickaxe-steel-white.webp","system":{"description":{"value":"<p>Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":5,"units":"lb"},"price":{"value":2,"denomination":"gp"},"rarity":"","identified":true,"container":"XY8b594Dn7plACLL","type":{"value":"","subtype":""},"unidentified":{"description":""},"properties":[],"identifier":"crowbar"},"effects":[],"folder":"Dx3K2y0J1wJUPP9m","flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.AkyQyonZMVcvOrXU","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"ownership":{"default":0},"_id":"zF5L4xHnJBC7b2iM","sort":0},{"name":"Unarmed Strike","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist.webp","system":{"description":{"value":"<p>A punch, kick, head-butt, or similar forceful blow (none of which count as weapons). On a hit, an unarmed strike deals bludgeoning damage equal to 1 + your Strength modifier. You are proficient with your unarmed strikes.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":0,"units":"lb"},"price":{"value":0,"denomination":"gp"},"attunement":"","equipped":true,"rarity":"","identified":true,"cover":null,"range":{"value":null,"long":null,"units":"ft","reach":null},"uses":{"max":"","recovery":[],"spent":0},"damage":{"versatile":{"number":null,"denomination":null,"bonus":"","types":[],"custom":{"enabled":false,"formula":""},"scaling":{"mode":"","number":null,"formula":""}},"base":{"number":null,"denomination":null,"bonus":"","types":["bludgeoning"],"custom":{"enabled":true,"formula":"@scale.monk.die"},"scaling":{"mode":"","number":null,"formula":""}}},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"properties":["fin"],"proficient":null,"type":{"value":"simpleM","baseItem":""},"unidentified":{"description":""},"container":null,"crewed":false,"magicalBonus":null,"activities":{"dnd5eactivity000":{"_id":"dnd5eactivity000","type":"attack","activation":{"type":"action","value":1,"condition":"","override":false},"consumption":{"targets":[],"scaling":{"allowed":false,"max":""},"spellSlot":true},"description":{"chatFlavor":""},"duration":{"concentration":false,"value":"","units":"inst","special":"","override":false},"effects":[],"range":{"value":"5","units":"ft","special":"","override":false},"target":{"template":{"count":"","contiguous":false,"type":"","size":"","width":"","height":"","units":""},"affects":{"count":"","type":"","choice":false,"special":""},"prompt":true,"override":false},"attack":{"ability":"","bonus":"","critical":{"threshold":null},"flat":false,"type":{"value":"melee","classification":"unarmed"}},"damage":{"critical":{"bonus":""},"includeBase":true,"parts":[]},"uses":{"spent":0,"recovery":[],"max":""},"sort":0,"name":""}},"attuned":false,"ammunition":{},"identifier":"unarmed-strike","mastery":""},"effects":[],"folder":"MLMTCAvKsuFE3vYA","ownership":{"default":0},"flags":{"dnd5e":{"last":{"dnd5eactivity000":{"attackMode":"oneHanded","damageType":{"0":"bludgeoning"}}},"riders":{"activity":[],"effect":[]}}},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.GsuvwoekKZatfKwF","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"g7U3OAXVcoI4lwzf","sort":0},{"name":"Backpack","type":"container","img":"icons/containers/bags/pack-leather-white-tan.webp","system":{"description":{"value":"<p>A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":5,"units":"lb"},"price":{"value":2,"denomination":"gp"},"attunement":"","equipped":false,"rarity":"","identified":true,"capacity":{"weight":{"value":30,"units":"lb"},"volume":{"units":"cubicFoot"}},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0},"unidentified":{"description":""},"container":null,"properties":[],"attuned":false,"identifier":"backpack"},"effects":[],"folder":"PgtyWdfkDTDbc0ov","ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.H8YCd689ezlD26aT","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"WcROGD590imVj9qp","sort":0},{"name":"Piton","type":"consumable","img":"icons/tools/fasteners/nail-steel.webp","system":{"description":{"value":"<p>A metal spike that is drive into a seam in a climbing surface with a climbing hammer. It can also be used like iron spikes to block doors in a pinch.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":10,"weight":{"value":0.25,"units":"lb"},"price":{"value":5,"denomination":"cp"},"attunement":"","equipped":false,"rarity":"","identified":true,"uses":{"max":"1","recovery":[],"autoDestroy":false,"spent":0},"damage":{"base":{"number":null,"denomination":null,"types":[],"custom":{"enabled":false},"scaling":{"number":1}},"replace":false},"container":"xsB7Y2WI476kvOt4","properties":[],"type":{"value":"trinket","subtype":""},"unidentified":{"description":""},"magicalBonus":null,"activities":{"dnd5eactivity000":{"_id":"dnd5eactivity000","type":"utility","activation":{"type":"action","value":1,"condition":"","override":false},"consumption":{"targets":[{"type":"itemUses","target":"","value":"1","scaling":{"mode":"","formula":""}}],"scaling":{"allowed":false,"max":""},"spellSlot":true},"description":{"chatFlavor":""},"duration":{"concentration":false,"value":"","units":"inst","special":"","override":false},"effects":[],"range":{"value":"5","units":"ft","special":"","override":false},"target":{"template":{"count":"","contiguous":false,"type":"","size":"","width":"","height":"","units":""},"affects":{"count":"","type":"","choice":false,"special":""},"prompt":true,"override":false},"roll":{"formula":"","name":"","prompt":false,"visible":false},"uses":{"spent":0,"recovery":[]},"sort":0}},"attuned":false,"identifier":"piton"},"effects":[],"folder":"Dx3K2y0J1wJUPP9m","flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.P31t6tGgt9aLAdYt","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"ownership":{"default":0},"_id":"8UQanAvHUIHZXp0O","sort":0},{"name":"Hempen Rope (50 ft.)","type":"consumable","img":"icons/sundries/survival/rope-wrapped-brown.webp","system":{"description":{"value":"<p>Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":10,"units":"lb"},"price":{"value":1,"denomination":"gp"},"attunement":"","equipped":false,"rarity":"","identified":true,"uses":{"max":"1","recovery":[],"autoDestroy":false,"spent":0},"damage":{"base":{"number":null,"denomination":null,"types":[],"custom":{"enabled":false},"scaling":{"number":1}},"replace":false},"type":{"value":"trinket","subtype":""},"unidentified":{"description":""},"container":null,"properties":[],"magicalBonus":null,"activities":{"dnd5eactivity000":{"_id":"dnd5eactivity000","type":"check","activation":{"type":"action","value":1,"condition":"","override":false},"consumption":{"targets":[{"type":"itemUses","target":"","scaling":{},"value":"1"}],"scaling":{"allowed":false,"max":""},"spellSlot":true},"description":{"chatFlavor":""},"duration":{"concentration":false,"value":"","units":"inst","special":"","override":false},"effects":[],"range":{"units":"self","special":"","override":false},"target":{"template":{"count":"","contiguous":false,"type":"","size":"","width":"","height":"","units":""},"affects":{"count":"","type":"","choice":false,"special":""},"prompt":true,"override":false},"check":{"ability":"str","dc":{"calculation":"","formula":"17"},"associated":[]},"uses":{"spent":0,"recovery":[],"max":""},"sort":0,"name":"Burst"}},"attuned":false,"identifier":"hempen-rope-50-ft"},"effects":[],"folder":"UnUwTG4YIgd0kaUJ","ownership":{"default":0},"flags":{"dnd5e":{"riders":{"activity":[],"effect":[]}}},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.QXmaarJ4X8P0C1HV","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"irCoxLHje0eA6Qmu","sort":0},{"name":"Reliquary","type":"equipment","img":"icons/containers/chest/chest-reinforced-steel-red.webp","system":{"description":{"value":"<p>A tiny box or other container holding a fragment of a precious relic, saint, or other historical figure that dedicated their life to walk the path of a true believer. A deity imbues the bearer of this artifact with the ability to call forth their power and in doing so spread the faith once more.</p>\n<p><strong>Spellcasting Focus</strong>. A cleric or paladin can use a holy symbol as a spellcasting focus. To use the symbol in this way, the caster must hold it in hand, wear it visibly, or bear it on a shield.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":2,"units":"lb"},"price":{"value":5,"denomination":"gp"},"attunement":"","equipped":false,"rarity":"","identified":true,"cover":null,"uses":{"max":"","recovery":[],"spent":0},"armor":{"value":null,"dex":null,"magicalBonus":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"speed":{"value":null,"conditions":""},"strength":null,"proficient":null,"type":{"value":"trinket","baseItem":""},"unidentified":{"description":""},"container":null,"crewed":false,"properties":["foc"],"activities":{},"attuned":false,"identifier":"reliquary"},"effects":[],"folder":"xedn1r43VWuEBcli","ownership":{"default":0},"flags":{"dnd5e":{"riders":{"activity":[],"effect":[]}}},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.gP1URGq3kVIIFHJ7","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"GfKuJYLFfw00oW9R","sort":0},{"name":"Vestments","type":"equipment","img":"icons/equipment/back/mantle-collared-black.webp","system":{"description":{"value":"<p>Simple or ostentacious wear, often used by priests and other religious figures for use in rituals and ceremonies.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":4,"units":"lb"},"price":{"value":1,"denomination":"gp"},"attunement":"","equipped":true,"rarity":"","identified":true,"cover":null,"uses":{"max":"","recovery":[],"spent":0},"armor":{"value":null,"dex":null,"magicalBonus":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"speed":{"value":null,"conditions":""},"strength":null,"proficient":null,"type":{"value":"clothing","baseItem":""},"unidentified":{"description":""},"container":null,"crewed":false,"properties":[],"activities":{"dnd5eactivity000":{"_id":"dnd5eactivity000","type":"utility","activation":{"type":"","value":null,"condition":"","override":false},"consumption":{"targets":[],"scaling":{"allowed":false,"max":""},"spellSlot":true},"description":{"chatFlavor":""},"duration":{"concentration":false,"value":"","units":"inst","special":"","override":false},"effects":[],"range":{"units":"self","special":"","override":false},"target":{"template":{"count":"","contiguous":false,"type":"","size":"","width":"","height":"","units":""},"affects":{"count":"","type":"","choice":false,"special":""},"prompt":true,"override":false},"roll":{"formula":"","name":"","prompt":false,"visible":false},"uses":{"spent":0,"recovery":[]},"sort":0}},"attuned":false,"identifier":"vestments"},"effects":[],"folder":"aJgMxnZED9XdoN2W","ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.irtqrzaUCeshmTZp","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"NsNcJBUG5ajbk7sG","sort":0},{"name":"Prayer Book","type":"loot","img":"icons/sundries/books/book-purple-cross.webp","system":{"description":{"value":"<p>A book containing prayers and incantations dedicated to a specific power for the faithful to follow.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":5,"units":"lb"},"price":{"value":25,"denomination":"gp"},"rarity":"","identified":true,"type":{"value":"","subtype":""},"unidentified":{"description":""},"container":null,"properties":[],"identifier":"prayer-book"},"effects":[],"folder":"dlru9Hy74nSMv6fr","ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.odV5cq2HSLSCH69k","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"XbF0CTipyqbMKHsB","sort":0},{"name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-worn-purple.webp","system":{"description":{"value":"<p>A medium sized blade with a firm crossguard and a leather-wrapped handle. A versatile weapon which makes up in versatility what it lacks in reach.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":2,"units":"lb"},"price":{"value":10,"denomination":"gp"},"attunement":"","equipped":true,"rarity":"","identified":true,"cover":null,"range":{"value":null,"long":null,"units":"ft","reach":null},"uses":{"max":"","recovery":[],"spent":0},"damage":{"versatile":{"number":null,"denomination":null,"bonus":"","types":[],"custom":{"enabled":false,"formula":""},"scaling":{"mode":"","number":null,"formula":""}},"base":{"number":1,"denomination":6,"bonus":"","types":["piercing"],"custom":{"enabled":false,"formula":""},"scaling":{"mode":"","number":null,"formula":""}}},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"properties":["fin","lgt"],"proficient":null,"type":{"value":"martialM","baseItem":"shortsword"},"unidentified":{"description":""},"container":null,"crewed":false,"magicalBonus":null,"activities":{"dnd5eactivity000":{"_id":"dnd5eactivity000","type":"attack","activation":{"type":"action","value":1,"condition":"","override":false},"consumption":{"targets":[],"scaling":{"allowed":false,"max":""},"spellSlot":true},"description":{"chatFlavor":""},"duration":{"concentration":false,"value":"","units":"inst","special":"","override":false},"effects":[],"range":{"value":"5","units":"ft","special":"","override":false},"target":{"template":{"count":"","contiguous":false,"type":"","size":"","width":"","height":"","units":""},"affects":{"count":"","type":"","choice":false,"special":""},"prompt":true,"override":false},"attack":{"ability":"","bonus":"","critical":{"threshold":null},"flat":false,"type":{"value":"melee","classification":"weapon"}},"damage":{"critical":{"bonus":""},"includeBase":true,"parts":[]},"uses":{"spent":0,"recovery":[]},"sort":0}},"attuned":false,"ammunition":{},"identifier":"shortsword"},"effects":[],"folder":"MLMTCAvKsuFE3vYA","ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.osLzOwQdPtrK3rQH","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"GYyovoNdU66nxOlX","sort":0}],"effects":[]}}'
import requests
base_url = 'http://localhost:3010'
path = '/create'
params = {
'clientId': 'fvtt_099ad17ea199e7e3'
}
url = f'{base_url}{path}'
response = requests.post(
url,
params=params,
headers={
'x-api-key': 'your-api-key-here',
'Content-Type': 'application/json'
},
json={
"entityType": "Actor",
"data": {
"name": "test-perrin (halfling monk)",
"type": "character",
"img": "systems/dnd5e/tokens/heroes/MonkStaff.webp",
"system": {
"abilities": {
"str": {
"value": 8,
"proficient": 1,
"max": 20,
"bonuses": {
"check": "",
"save": ""
},
"check": {
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"save": {
"roll": {
"min": None,
"max": None,
"mode": 0
}
}
},
"dex": {
"value": 16,
"proficient": 1,
"max": 20,
"bonuses": {
"check": "",
"save": ""
},
"check": {
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"save": {
"roll": {
"min": None,
"max": None,
"mode": 0
}
}
},
"con": {
"value": 13,
"proficient": 0,
"max": 20,
"bonuses": {
"check": "",
"save": ""
},
"check": {
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"save": {
"roll": {
"min": None,
"max": None,
"mode": 0
}
}
},
"int": {
"value": 12,
"proficient": 0,
"max": 20,
"bonuses": {
"check": "",
"save": ""
},
"check": {
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"save": {
"roll": {
"min": None,
"max": None,
"mode": 0
}
}
},
"wis": {
"value": 15,
"proficient": 0,
"max": 20,
"bonuses": {
"check": "",
"save": ""
},
"check": {
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"save": {
"roll": {
"min": None,
"max": None,
"mode": 0
}
}
},
"cha": {
"value": 11,
"proficient": 0,
"max": 20,
"bonuses": {
"check": "",
"save": ""
},
"check": {
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"save": {
"roll": {
"min": None,
"max": None,
"mode": 0
}
}
}
},
"attributes": {
"ac": {
"flat": None,
"calc": "unarmoredMonk",
"formula": ""
},
"hp": {
"value": 9,
"max": 9,
"temp": None,
"tempmax": None,
"bonuses": {
"level": "",
"overall": ""
}
},
"init": {
"ability": "",
"bonus": "0",
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"movement": {
"burrow": 0,
"climb": 0,
"fly": 0,
"swim": 0,
"walk": 25,
"units": "ft",
"hover": False
},
"attunement": {
"max": 3
},
"senses": {
"darkvision": 0,
"blindsight": 0,
"tremorsense": 0,
"truesight": 0,
"units": "ft",
"special": ""
},
"spellcasting": "int",
"death": {
"success": 0,
"failure": 0,
"roll": {
"min": None,
"max": None,
"mode": 0
},
"bonuses": {
"save": ""
}
},
"exhaustion": 0,
"inspiration": False,
"concentration": {
"ability": "",
"roll": {
"min": None,
"max": None,
"mode": 0
},
"bonuses": {
"save": ""
},
"limit": 1
},
"loyalty": {}
},
"details": {
"biography": {
"value": "<p>A devoted student of his local monastery, Perrin has been tasked with bringing balance to the surrounding lands.</p><p><em>Token artwork by <a href=\"https://www.forgotten-adventures.net/\" target=\"_blank\" rel=\"noopener\">Forgotten Adventures</a>.</em></p>",
"public": ""
},
"alignment": "True Neutral",
"race": "O3ZjSw0GtAOPScHI",
"background": "q4tr1vTU8RxtU1UZ",
"originalClass": "8Grf7ga6JcZF0X6x",
"xp": {
"value": 0
},
"appearance": "",
"trait": "",
"ideal": "",
"bond": "",
"flaw": "",
"eyes": "",
"height": "",
"faith": "",
"hair": "",
"weight": "",
"gender": "",
"skin": "",
"age": ""
},
"traits": {
"size": "sm",
"di": {
"value": [],
"bypasses": [],
"custom": ""
},
"dr": {
"value": [],
"bypasses": [],
"custom": ""
},
"dv": {
"value": [],
"bypasses": [],
"custom": ""
},
"ci": {
"value": [],
"custom": "Advantage against being frightenned"
},
"languages": {
"value": [
"celestial",
"draconic",
"common",
"halfling"
],
"custom": "",
"communication": {}
},
"weaponProf": {
"value": [
"sim",
"shortsword"
],
"custom": "",
"mastery": {
"value": [],
"bonus": []
}
},
"armorProf": {
"value": [],
"custom": ""
},
"dm": {
"amount": {},
"bypasses": []
}
},
"currency": {
"pp": 0,
"gp": 15,
"ep": 0,
"sp": 0,
"cp": 0
},
"skills": {
"acr": {
"value": 1,
"ability": "dex",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"ani": {
"value": 0,
"ability": "wis",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"arc": {
"value": 0,
"ability": "int",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"ath": {
"value": 1,
"ability": "str",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"dec": {
"value": 0,
"ability": "cha",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"his": {
"value": 0,
"ability": "int",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"ins": {
"value": 1,
"ability": "wis",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"itm": {
"value": 0,
"ability": "cha",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"inv": {
"value": 0,
"ability": "int",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"med": {
"value": 0,
"ability": "wis",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"nat": {
"value": 0,
"ability": "int",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"prc": {
"value": 0,
"ability": "wis",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"prf": {
"value": 0,
"ability": "cha",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"per": {
"value": 0,
"ability": "cha",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"rel": {
"value": 1,
"ability": "int",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"slt": {
"value": 0,
"ability": "dex",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"ste": {
"value": 0,
"ability": "dex",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"sur": {
"value": 0,
"ability": "wis",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": None,
"max": None,
"mode": 0
}
}
},
"tools": {
"art": {
"value": 1,
"ability": "int",
"bonuses": {
"check": ""
},
"roll": {
"min": None,
"max": None,
"mode": 0
}
},
"brewer": {
"value": 1,
"ability": "int",
"bonuses": {
"check": ""
},
"roll": {
"min": None,
"max": None,
"mode": 0
}
}
},
"spells": {
"spell1": {
"value": 0,
"override": None
},
"spell2": {
"value": 0,
"override": None
},
"spell3": {
"value": 0,
"override": None
},
"spell4": {
"value": 0,
"override": None
},
"spell5": {
"value": 0,
"override": None
},
"spell6": {
"value": 0,
"override": None
},
"spell7": {
"value": 0,
"override": None
},
"spell8": {
"value": 0,
"override": None
},
"spell9": {
"value": 0,
"override": None
},
"pact": {
"value": 0,
"override": None
},
"spell0": {
"value": 0,
"override": None
}
},
"bonuses": {
"mwak": {
"attack": "",
"damage": ""
},
"rwak": {
"attack": "",
"damage": ""
},
"msak": {
"attack": "",
"damage": ""
},
"rsak": {
"attack": "",
"damage": ""
},
"abilities": {
"check": "",
"save": "",
"skill": ""
},
"spell": {
"dc": ""
}
},
"resources": {
"primary": {
"value": None,
"max": None,
"sr": True,
"lr": True,
"label": "Ki"
},
"secondary": {
"value": None,
"max": None,
"sr": False,
"lr": False,
"label": ""
},
"tertiary": {
"value": None,
"max": None,
"sr": False,
"lr": False,
"label": ""
}
},
"favorites": [
{
"type": "item",
"id": ".Item.FtOM4QiOW5MwgcS3",
"sort": 500000
},
{
"type": "item",
"id": ".Item.WeKJI3gPUAU52WAX",
"sort": 600000
},
{
"type": "item",
"id": ".Item.g7U3OAXVcoI4lwzf",
"sort": 550000
},
{
"type": "item",
"id": ".Item.GYyovoNdU66nxOlX",
"sort": 700000
}
],
"bastion": {
"name": "",
"description": ""
}
},
"prototypeToken": {
"flags": {},
"name": "Perrin",
"displayName": 30,
"width": 1,
"height": 1,
"lockRotation": False,
"rotation": 0,
"actorLink": True,
"disposition": 1,
"displayBars": 40,
"bar1": {
"attribute": "attributes.hp"
},
"bar2": {
"attribute": "attributes.ac.value"
},
"randomImg": False,
"alpha": 1,
"light": {
"alpha": 1,
"angle": 360,
"bright": 0,
"coloration": 1,
"dim": 0,
"luminosity": 0.5,
"saturation": 0,
"contrast": 0,
"shadows": 0,
"animation": {
"speed": 5,
"intensity": 5,
"type": None,
"reverse": False
},
"darkness": {
"min": 0,
"max": 1
},
"color": None,
"attenuation": 0.5,
"negative": False,
"priority": 0
},
"texture": {
"src": "systems/dnd5e/tokens/heroes/MonkStaff.webp",
"tint": "#ffffff",
"scaleX": 0.8,
"scaleY": 0.8,
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
},
"sight": {
"angle": 360,
"enabled": True,
"range": 5,
"brightness": 0,
"visionMode": "basic",
"color": None,
"attenuation": 0.1,
"saturation": 0,
"contrast": 0
},
"detectionModes": [],
"appendNumber": False,
"prependAdjective": False,
"occludable": {
"radius": 0
},
"ring": {
"enabled": False,
"colors": {
"ring": None,
"background": None
},
"effects": 1,
"subject": {
"scale": 1,
"texture": None
}
},
"turnMarker": {
"mode": 1,
"animation": None,
"src": None,
"disposition": False
},
"movementAction": None
},
"items": [
{
"name": "Priest",
"type": "background",
"system": {
"description": {
"value": "<ul><li><strong>Skill Proficiencies:</strong> Insight, Religion</li><li><strong>Languages:</strong> Two of your choice</li><li><strong>Equipment:</strong> A holy symbol, 5 sticks of incense, prayer book, vestments, a set of common clothes, and a pouch containing 15 gp.</li></ul>",
"chat": ""
},
"source": {
"custom": "",
"book": "",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"advancement": [],
"startingEquipment": [],
"identifier": "priest"
},
"img": "icons/sundries/documents/document-torn-diagram-tan.webp",
"effects": [],
"folder": None,
"sort": 0,
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"compendiumSource": None,
"duplicateSource": None,
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.0.0",
"createdTime": None,
"modifiedTime": None,
"lastModifiedBy": None,
"exportSource": None
},
"_id": "q4tr1vTU8RxtU1UZ"
},
{
"_id": "O3ZjSw0GtAOPScHI",
"name": "Lightfoot Halfling",
"type": "race",
"img": "icons/equipment/feet/shoes-leather-simple-brown.webp",
"system": {
"description": {
"value": "<p>Your halfling character has a number of traits in common with all other halflings.</p><p><em><strong>Ability Score Increase.</strong></em> Your Dexterity score increases by 2.</p><p><em><strong>Age.</strong></em> A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.</p><p><em><strong>Alignment.</strong></em> Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.</p><p><em><strong>Size.</strong></em> Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.</p><p><em><strong>Speed.</strong></em> Your base walking speed is 25 feet.</p><p><em><strong>Lucky.</strong></em> When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.</p><p><em><strong>Brave.</strong></em> You have advantage on saving throws against being frightened.</p><p><em><strong>Halfling Nimbleness.</strong></em> You can move through the space of any creature that is of a size larger than yours.</p><p><em><strong>Languages.</strong></em> You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.</p><h5>Lightfoot</h5><p>As a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others.</p><p>Lightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life.</p><p><em><strong>Ability Score Increase.</strong></em> Your Charisma score increases by 1.</p><p><em><strong>Naturally Stealthy.</strong></em> You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"identifier": "lightfoot-halfling",
"advancement": [
{
"_id": "nInhIgkbzzJTdm8F",
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.races.LOMdcNAGWh5xpfm4",
"optional": False
},
{
"uuid": "Compendium.dnd5e.races.7Yoo9hG0hfPSmBoC",
"optional": False
},
{
"uuid": "Compendium.dnd5e.races.PqxZgcJzp1VVgP8t",
"optional": False
},
{
"uuid": "Compendium.dnd5e.races.GWPjKFeIthBBeCFJ",
"optional": False
}
],
"optional": False,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": False
}
}
},
"value": {
"added": {
"FtOM4QiOW5MwgcS3": "Compendium.dnd5e.races.Item.LOMdcNAGWh5xpfm4",
"nmmihiqphHjoE8dl": "Compendium.dnd5e.races.Item.7Yoo9hG0hfPSmBoC",
"cWrETHzCRs1Ueqd3": "Compendium.dnd5e.races.Item.PqxZgcJzp1VVgP8t",
"AArhiOrSkaQUnCZS": "Compendium.dnd5e.races.Item.GWPjKFeIthBBeCFJ"
}
},
"level": 0,
"title": ""
},
{
"_id": "Z9hvZFkWUNvowbQX",
"type": "AbilityScoreImprovement",
"configuration": {
"points": 0,
"fixed": {
"str": 0,
"dex": 2,
"con": 0,
"int": 0,
"wis": 0,
"cha": 1
},
"cap": 2,
"locked": []
},
"value": {
"type": "asi",
"assignments": {
"dex": 2,
"cha": 1
}
},
"level": 0,
"title": ""
},
{
"_id": "hv2bcANK5jEJZaAb",
"type": "Size",
"configuration": {
"sizes": [
"sm"
]
},
"value": {
"size": "sm"
},
"level": 1,
"title": "",
"hint": "Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small."
},
{
"_id": "nGwMjsfNU6CXHk3A",
"type": "Trait",
"configuration": {
"mode": "default",
"allowReplacements": False,
"grants": [
"languages:standard:common",
"languages:standard:halfling"
],
"choices": []
},
"level": 0,
"title": "",
"value": {
"chosen": [
"languages:standard:common",
"languages:standard:halfling"
]
}
}
],
"movement": {
"walk": 25,
"burrow": None,
"climb": None,
"fly": None,
"swim": None,
"units": "ft",
"hover": False
},
"type": {
"subtype": "halfling",
"value": "humanoid",
"custom": ""
},
"senses": {
"darkvision": None,
"blindsight": None,
"tremorsense": None,
"truesight": None,
"units": "ft",
"special": ""
}
},
"effects": [],
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.races.Item.ZgYBjYYfiUstQD6f",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": 1738093997274,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": None
},
"sort": 0,
"folder": "uQNrdSpcXeoB5EnX"
},
{
"_id": "FtOM4QiOW5MwgcS3",
"name": "Lucky",
"ownership": {
"default": 0
},
"type": "feat",
"system": {
"description": {
"value": "<p>When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.</p><section class=\"secret foundry-note\" id=\"secret-S04TPyvUh05Dz0Ng\"><p><strong>Foundry Note</strong></p><p>This property can be enabled on your character sheet in the Special Traits configuration on the Attributes tab.</p></section>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"uses": {
"max": "",
"spent": 0,
"recovery": []
},
"type": {
"value": "race",
"subtype": ""
},
"requirements": "Halfling",
"properties": [],
"activities": {},
"enchant": {},
"prerequisites": {
"level": None,
"repeatable": False
},
"identifier": "lucky",
"advancement": [],
"crewed": False
},
"flags": {
"dnd5e": {
"sourceId": "Compendium.dnd5e.races.Item.LOMdcNAGWh5xpfm4",
"advancementOrigin": "O3ZjSw0GtAOPScHI.nInhIgkbzzJTdm8F",
"riders": {
"activity": [],
"effect": []
}
}
},
"img": "icons/sundries/gaming/dice-runed-brown.webp",
"effects": [],
"folder": "kbtbKofcv13crhke",
"sort": 0,
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.races.Item.LOMdcNAGWh5xpfm4",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": 1738093813616,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": None
}
},
{
"_id": "nmmihiqphHjoE8dl",
"name": "Brave",
"ownership": {
"default": 0
},
"type": "feat",
"system": {
"description": {
"value": "<p>You have advantage on saving throws against being frightened.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"uses": {
"max": "",
"spent": 0,
"recovery": []
},
"type": {
"value": "race",
"subtype": ""
},
"requirements": "Halfling",
"properties": [],
"activities": {},
"enchant": {},
"prerequisites": {
"level": None,
"repeatable": False
},
"identifier": "brave",
"advancement": [],
"crewed": False
},
"flags": {
"dnd5e": {
"sourceId": "Compendium.dnd5e.races.Item.7Yoo9hG0hfPSmBoC",
"advancementOrigin": "O3ZjSw0GtAOPScHI.nInhIgkbzzJTdm8F",
"riders": {
"activity": [],
"effect": []
}
}
},
"img": "icons/skills/melee/unarmed-punch-fist.webp",
"effects": [],
"folder": "kbtbKofcv13crhke",
"sort": 0,
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.races.Item.7Yoo9hG0hfPSmBoC",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": 1738093813671,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": None
}
},
{
"_id": "cWrETHzCRs1Ueqd3",
"name": "Halfling Nimbleness",
"ownership": {
"default": 0
},
"type": "feat",
"system": {
"description": {
"value": "<p>You can move through the space of any creature that is of a size larger than yours.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"uses": {
"max": "",
"spent": 0,
"recovery": []
},
"type": {
"value": "race",
"subtype": ""
},
"requirements": "Halfling",
"properties": [],
"activities": {},
"enchant": {},
"prerequisites": {
"level": None,
"repeatable": False
},
"identifier": "halfling-nimbleness",
"advancement": [],
"crewed": False
},
"flags": {
"dnd5e": {
"sourceId": "Compendium.dnd5e.races.Item.PqxZgcJzp1VVgP8t",
"advancementOrigin": "O3ZjSw0GtAOPScHI.nInhIgkbzzJTdm8F",
"riders": {
"activity": [],
"effect": []
}
}
},
"img": "icons/skills/movement/feet-winged-boots-brown.webp",
"effects": [],
"folder": "kbtbKofcv13crhke",
"sort": 0,
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.races.Item.PqxZgcJzp1VVgP8t",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": 1738093813706,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": None
}
},
{
"_id": "AArhiOrSkaQUnCZS",
"name": "Naturally Stealthy",
"ownership": {
"default": 0
},
"type": "feat",
"system": {
"description": {
"value": "<p>You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"uses": {
"max": "",
"spent": 0,
"recovery": []
},
"type": {
"value": "race",
"subtype": ""
},
"requirements": "Lightfoot Halfling",
"properties": [],
"activities": {},
"enchant": {},
"prerequisites": {
"level": None,
"repeatable": False
},
"identifier": "naturally-stealthy",
"advancement": [],
"crewed": False
},
"flags": {
"dnd5e": {
"sourceId": "Compendium.dnd5e.races.Item.GWPjKFeIthBBeCFJ",
"advancementOrigin": "O3ZjSw0GtAOPScHI.nInhIgkbzzJTdm8F",
"riders": {
"activity": [],
"effect": []
}
}
},
"img": "icons/magic/perception/silhouette-stealth-shadow.webp",
"effects": [],
"folder": "kbtbKofcv13crhke",
"sort": 0,
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.races.Item.GWPjKFeIthBBeCFJ",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": 1738093813743,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": None
}
},
{
"_id": "8Grf7ga6JcZF0X6x",
"name": "Monk",
"type": "class",
"img": "icons/skills/melee/hand-grip-staff-blue.webp",
"system": {
"description": {
"value": "<p>As a monk, you gain the following class features.</p><h3>Hit Points</h3><p><strong>Hit Dice:</strong> 1d8 per monk level<br /><strong>Hit Points at 1st Level:</strong> 8 + your Constitution modifier<br /><strong>Hit Points at Higher Levels:</strong> 1d8 (or 5) + your Constitution modifier per monk level after 1st</p><h3>Proficiencies</h3><p><strong>Armor:</strong> None<br /><strong>Weapons:</strong> Simple weapons, shortswords<br /><strong>Tools:</strong> Choose one type of artisan's tools or one musical instrument<br /><strong>Saving Throws:</strong> Strength, Dexterity<br /><strong>Skills:</strong> Choose two from Acrobatics, Athletics, History, Insight, Religion, and Stealth</p><h1>Monk Advancement</h1><table><thead><tr><td>Level</td><td>Proficiency Bonus</td><td>Martial Arts</td><td>Ki Points</td><td>Unarmored Movement</td><td>Features</td></tr></thead><tbody><tr><td>1st</td><td>+2</td><td>1d4</td><td>—</td><td>—</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.UAvV7N7T4zJhxdfI]{Unarmored Defense}, @UUID[Compendium.dnd5e.classfeatures.Item.l50hjTxO2r0iecKw]{Martial Arts}</td></tr><tr><td>2nd</td><td>+2</td><td>1d4</td><td>2</td><td>+10 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.10b6z2W1txNkrGP7]{Ki}, @UUID[Compendium.dnd5e.classfeatures.Item.zCeqyQ8uIPNdYJSW]{Unarmored Movement}</td></tr><tr><td>3rd</td><td>+2</td><td>1d4</td><td>3</td><td>+10 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.rtpQdX77dYWbDIOH]{Monastic Tradition}, @UUID[Compendium.dnd5e.classfeatures.Item.mzweVbnsJPQiVkAe]{Deflect Missiles}</td></tr><tr><td>4th</td><td>+2</td><td>1d4</td><td>4</td><td>+10 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, @UUID[Compendium.dnd5e.classfeatures.Item.KQz9bqxVkXjDl8gK]{Slow Fall}</td></tr><tr><td>5th</td><td>+3</td><td>1d6</td><td>5</td><td>+10 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.XogoBnFWmCAHXppo]{Extra Attack}, @UUID[Compendium.dnd5e.classfeatures.Item.pvRc6GAu1ok6zihC]{Stunning Strike}</td></tr><tr><td>6th</td><td>+3</td><td>1d6</td><td>6</td><td>+15 ft.</td><td><p>@UUID[Compendium.dnd5e.classfeatures.Item.7flZKruSSu6dHg6D]{Ki-Empowered Strikes},</p><p>Monastic Tradition feature</p></td></tr><tr><td>7th</td><td>+3</td><td>1d6</td><td>7</td><td>+15 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.a4P4DNMmH8CqSNkC]{Evasion}, @UUID[Compendium.dnd5e.classfeatures.Item.ZmC31XKS4YNENnoc]{Stillness of Mind}</td></tr><tr><td>8th</td><td>+3</td><td>1d6</td><td>8</td><td>+15 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}</td></tr><tr><td>9th</td><td>+4</td><td>1d6</td><td>9</td><td>+15 ft.</td><td>Unarmored Movement improvement</td></tr><tr><td>10th</td><td>+4</td><td>1d6</td><td>10</td><td>+20 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.bqWA7t9pDELbNRkp]{Purity of Body}</td></tr><tr><td>11th</td><td>+4</td><td>1d8</td><td>11</td><td>+20 ft.</td><td>Monastic Tradition feature</td></tr><tr><td>12th</td><td>+4</td><td>1d8</td><td>12</td><td>+20 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}</td></tr><tr><td>13th</td><td>+5</td><td>1d8</td><td>13</td><td>+20 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.XjuGBeB8Y0C3A5D4]{Tongue of the Sun and Moon}</td></tr><tr><td>14th</td><td>+5</td><td>1d8</td><td>14</td><td>+25 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.7D2EkLdISwShEDlN]{Diamond Soul}</td></tr><tr><td>15th</td><td>+5</td><td>1d8</td><td>15</td><td>+25 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.gDH8PMrKvLHaNmEI]{Timeless Body}</td></tr><tr><td>16th</td><td>+5</td><td>1d8</td><td>16</td><td>+25 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}</td></tr><tr><td>17th</td><td>+6</td><td>1d10</td><td>17</td><td>+25 ft.</td><td>Monastic Tradition feature</td></tr><tr><td>18th</td><td>+6</td><td>1d10</td><td>18</td><td>+30 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.3jwFt3hSqDswBlOH]{Empty Body}</td></tr><tr><td>19th</td><td>+6</td><td>1d10</td><td>19</td><td>+30 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}</td></tr><tr><td>20th</td><td>+6</td><td>1d10</td><td>20</td><td>+30 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.mQNPg89YIs7g5tG4]{Perfect Self}</td></tr></tbody></table><h1>Monastic Traditions</h1><p>Three traditions of monastic pursuit are common in the monasteries scattered across the multiverse. Most monasteries practice one tradition exclusively, but a few honor the three traditions and instruct each monk according to his or her aptitude and interest. All three traditions rely on the same basic techniques, diverging as the student grows more adept. Thus, a monk need choose a tradition only upon reaching 3rd level.</p><p>@UUID[Compendium.dnd5e.subclasses.Item.IvlpKMXX3PmW1NY2]{Way of the Open Hand}</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"identifier": "monk",
"levels": 1,
"advancement": [
{
"type": "HitPoints",
"configuration": {},
"value": {
"1": "max"
},
"title": "Hit Points",
"icon": "systems/dnd5e/icons/svg/hit-points.svg",
"_id": "ocxNtDFJ7YDaYaK7"
},
{
"_id": "mmAxx3U7FvXNAcKc",
"type": "Trait",
"configuration": {
"mode": "default",
"allowReplacements": False,
"grants": [
"weapon:sim",
"weapon:mar:shortsword"
],
"choices": []
},
"level": 1,
"title": "",
"value": {
"chosen": [
"weapon:sim",
"weapon:mar:shortsword"
]
}
},
{
"_id": "QPXy59CQGY9HB0c3",
"type": "Trait",
"configuration": {
"mode": "default",
"allowReplacements": False,
"grants": [],
"choices": [
{
"count": 1,
"pool": [
"tool:art:*",
"tool:music:*"
]
}
]
},
"level": 1,
"title": "",
"classRestriction": "primary",
"value": {
"chosen": [
"tool:art:brewer"
]
}
},
{
"_id": "4M8MQ1E64zbcRg6B",
"type": "Trait",
"configuration": {
"mode": "default",
"allowReplacements": False,
"grants": [
"saves:str",
"saves:dex"
],
"choices": []
},
"level": 1,
"title": "",
"classRestriction": "primary",
"value": {
"chosen": [
"saves:str",
"saves:dex"
]
}
},
{
"_id": "7HRRCPk80Ng2Evdx",
"type": "Trait",
"configuration": {
"mode": "default",
"allowReplacements": False,
"grants": [],
"choices": [
{
"count": 2,
"pool": [
"skills:acr",
"skills:ath",
"skills:his",
"skills:ins",
"skills:rel",
"skills:ste"
]
}
]
},
"level": 1,
"title": "",
"classRestriction": "primary",
"value": {
"chosen": [
"skills:acr",
"skills:ath"
]
}
},
{
"_id": "BQWHr3mt5flvkfIj",
"type": "Trait",
"configuration": {
"mode": "default",
"allowReplacements": False,
"grants": [
"di:poison",
"ci:diseased",
"ci:poisoned"
],
"choices": []
},
"level": 10,
"title": "Purity of Body",
"value": {
"chosen": []
},
"hint": "Your mastery of the ki flowing through you makes you immune to disease and poison."
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.UAvV7N7T4zJhxdfI",
"optional": False
},
{
"uuid": "Compendium.dnd5e.classfeatures.l50hjTxO2r0iecKw",
"optional": False
},
{
"uuid": "Compendium.dnd5e.classfeatures.eGxoNmSMWKNzChCO",
"optional": False
}
],
"optional": False,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": False
}
}
},
"value": {
"added": {
"CwgoTDXWCD7PknIN": "Compendium.dnd5e.classfeatures.Item.UAvV7N7T4zJhxdfI",
"pchnXqd5C79fVlxy": "Compendium.dnd5e.classfeatures.Item.l50hjTxO2r0iecKw",
"RiURabP4FDYMeuWx": "Compendium.dnd5e.classfeatures.Item.eGxoNmSMWKNzChCO"
}
},
"level": 1,
"title": "Features",
"_id": "n0q8XyiGA3vLPgpK"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.10b6z2W1txNkrGP7",
"optional": False
},
{
"uuid": "Compendium.dnd5e.classfeatures.5MwNlVZK7m6VolOH",
"optional": False
},
{
"uuid": "Compendium.dnd5e.classfeatures.TDglPcxIVEzvVSgK",
"optional": False
},
{
"uuid": "Compendium.dnd5e.classfeatures.yrSFIGTaQOH2PFRI",
"optional": False
},
{
"uuid": "Compendium.dnd5e.classfeatures.zCeqyQ8uIPNdYJSW",
"optional": False
}
],
"optional": False,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": False
}
}
},
"value": {},
"level": 2,
"title": "Features",
"_id": "7TyDqpGGi3r3nsp0"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.rtpQdX77dYWbDIOH",
"optional": False
},
{
"uuid": "Compendium.dnd5e.classfeatures.mzweVbnsJPQiVkAe",
"optional": False
}
],
"optional": False,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": False
}
}
},
"value": {},
"level": 3,
"title": "Features",
"_id": "2sLHTw6k15DSW8WB"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.KQz9bqxVkXjDl8gK",
"optional": False
}
],
"optional": False,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": False
}
}
},
"value": {},
"level": 4,
"title": "Features",
"_id": "Zc1jOZK1b9mIKekq"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo",
"optional": False
},
{
"uuid": "Compendium.dnd5e.classfeatures.pvRc6GAu1ok6zihC",
"optional": False
}
],
"optional": False,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": False
}
}
},
"value": {},
"level": 5,
"title": "Features",
"_id": "j9LeWmxlsENKaMLo"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.7flZKruSSu6dHg6D",
"optional": False
}
],
"optional": False,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": False
}
}
},
"value": {},
"level": 6,
"title": "Features",
"_id": "psobDjMqtA2216Db"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.a4P4DNMmH8CqSNkC",
"optional": False
},
{
"uuid": "Compendium.dnd5e.classfeatures.ZmC31XKS4YNENnoc",
"optional": False
}
],
"optional": False,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": False
}
}
},
"value": {},
"level": 7,
"title": "Features",
"_id": "K38aFaEMxMqRB0BC"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.bqWA7t9pDELbNRkp",
"optional": False
}
],
"optional": False,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": False
}
}
},
"value": {},
"level": 10,
"title": "Features",
"_id": "eLqmJotmwzlGNrxG"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.XjuGBeB8Y0C3A5D4",
"optional": False
}
],
"optional": False,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": False
}
}
},
"value": {},
"level": 13,
"title": "Features",
"_id": "N0geIQiuofqYgswj"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.7D2EkLdISwShEDlN",
"optional": False
}
],
"optional": False,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": False
}
}
},
"value": {},
"level": 14,
"title": "Features",
"_id": "N1hjizyI82UPp8UI"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.gDH8PMrKvLHaNmEI",
"optional": False
}
],
"optional": False,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": False
}
}
},
"value": {},
"level": 15,
"title": "Features",
"_id": "TcLZS9WzC7bPETSd"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.3jwFt3hSqDswBlOH",
"optional": False
}
],
"optional": False,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": False
}
}
},
"value": {},
"level": 18,
"title": "Features",
"_id": "tRb3a0tA5IpehPs8"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.mQNPg89YIs7g5tG4",
"optional": False
}
],
"optional": False,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": False
}
}
},
"value": {},
"level": 20,
"title": "Features",
"_id": "sEQz9c9XhWYjS9x5"
},
{
"type": "ScaleValue",
"configuration": {
"identifier": "die",
"type": "dice",
"distance": {
"units": ""
},
"scale": {
"1": {
"number": None,
"faces": 4,
"modifiers": []
},
"5": {
"number": None,
"faces": 6,
"modifiers": []
},
"11": {
"number": None,
"faces": 8,
"modifiers": []
},
"17": {
"number": None,
"faces": 10,
"modifiers": []
}
}
},
"value": {},
"title": "Martial Arts Die",
"_id": "MXFbf0nxMiyLdPbX"
},
{
"type": "ScaleValue",
"configuration": {
"identifier": "unarmored-movement",
"type": "distance",
"distance": {
"units": "ft"
},
"scale": {
"2": {
"value": 10
},
"6": {
"value": 15
},
"10": {
"value": 20
},
"14": {
"value": 25
},
"18": {
"value": 30
}
}
},
"value": {},
"title": "Unarmored Movement",
"_id": "1OzfWDWCquoHMeX5"
},
{
"type": "AbilityScoreImprovement",
"configuration": {
"points": 2,
"fixed": {
"str": 0,
"dex": 0,
"con": 0,
"int": 0,
"wis": 0,
"cha": 0
},
"cap": 2,
"locked": []
},
"value": {
"type": "asi"
},
"level": 4,
"title": "Ability Score Improvement",
"_id": "ofNSUhSHKhhDuPSR"
},
{
"type": "AbilityScoreImprovement",
"configuration": {
"points": 2,
"fixed": {
"str": 0,
"dex": 0,
"con": 0,
"int": 0,
"wis": 0,
"cha": 0
},
"cap": 2,
"locked": []
},
"value": {
"type": "asi"
},
"level": 8,
"title": "Ability Score Improvement",
"_id": "s3t9o57hP6iUHirr"
},
{
"type": "AbilityScoreImprovement",
"configuration": {
"points": 2,
"fixed": {
"str": 0,
"dex": 0,
"con": 0,
"int": 0,
"wis": 0,
"cha": 0
},
"cap": 2,
"locked": []
},
"value": {
"type": "asi"
},
"level": 12,
"title": "Ability Score Improvement",
"_id": "O24MWOKc1ImsKaml"
},
{
"type": "AbilityScoreImprovement",
"configuration": {
"points": 2,
"fixed": {
"str": 0,
"dex": 0,
"con": 0,
"int": 0,
"wis": 0,
"cha": 0
},
"cap": 2,
"locked": []
},
"value": {
"type": "asi"
},
"level": 16,
"title": "Ability Score Improvement",
"_id": "xdqWoLtgO3uyl3nJ"
},
{
"_id": "puDaUsYrlks0z5gm",
"type": "AbilityScoreImprovement",
"configuration": {
"points": 2,
"fixed": {
"str": 0,
"dex": 0,
"con": 0,
"int": 0,
"wis": 0,
"cha": 0
},
"cap": 2,
"locked": []
},
"value": {
"type": "asi"
},
"level": 19,
"title": ""
},
{
"_id": "0awj2yq115ev9u9o",
"type": "Subclass",
"configuration": {},
"value": {
"document": None,
"uuid": None
},
"level": 3,
"title": "Monastic Tradition"
}
],
"spellcasting": {
"progression": "none",
"ability": "",
"preparation": {
"formula": ""
}
},
"startingEquipment": [
{
"type": "OR",
"_id": "5yj0P4r9teJDnDtd",
"group": "",
"sort": 100000,
"requiresProficiency": False
},
{
"type": "linked",
"count": None,
"key": "Compendium.dnd5e.items.Item.osLzOwQdPtrK3rQH",
"_id": "R5tuRtaPonfjQCVU",
"group": "5yj0P4r9teJDnDtd",
"sort": 200000,
"requiresProficiency": False
},
{
"type": "weapon",
"count": None,
"key": "simpleM",
"_id": "Mlf6kel8ws6xgDER",
"group": "5yj0P4r9teJDnDtd",
"sort": 300000,
"requiresProficiency": False
},
{
"type": "OR",
"_id": "3TbVLmLPtjVaSh5O",
"group": "",
"sort": 400000,
"requiresProficiency": False
},
{
"type": "linked",
"count": None,
"key": "Compendium.dnd5e.items.Item.XY8b594Dn7plACLL",
"_id": "AvDYtl0uvQsDuhnb",
"group": "3TbVLmLPtjVaSh5O",
"sort": 500000,
"requiresProficiency": False
},
{
"type": "linked",
"count": None,
"key": "Compendium.dnd5e.items.Item.8KWz5DJbWUpNWniP",
"_id": "4QKQURCmIurbTAzp",
"group": "3TbVLmLPtjVaSh5O",
"sort": 600000,
"requiresProficiency": False
},
{
"type": "linked",
"count": 10,
"key": "Compendium.dnd5e.items.Item.3rCO8MTIdPGSW6IJ",
"_id": "AOYuulsULvsHbSLO",
"group": "",
"sort": 700000,
"requiresProficiency": False
}
],
"wealth": "5d4",
"primaryAbility": {
"value": [],
"all": True
},
"hd": {
"denomination": "d8",
"spent": 0,
"additional": ""
}
},
"effects": [],
"folder": "HQ1Oy7HkbnxnE63o",
"sort": 0,
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.classes.Item.6VoZrWxhOEKGYhnq",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": 1738093997309,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": None
}
},
{
"_id": "CwgoTDXWCD7PknIN",
"name": "Unarmored Defense",
"ownership": {
"default": 0
},
"type": "feat",
"system": {
"description": {
"value": "<p>Beginning at 1st Level, while you are wearing no armor and not wielding a Shield, your AC equals 10 + your Dexterity modifier + your Wisdom modifier.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"uses": {
"max": "",
"spent": 0,
"recovery": []
},
"type": {
"value": "class",
"subtype": ""
},
"requirements": "Monk 1",
"properties": [],
"activities": {},
"enchant": {},
"prerequisites": {
"level": None,
"repeatable": False
},
"identifier": "unarmored-defense",
"advancement": [],
"crewed": False
},
"flags": {
"dnd5e": {
"sourceId": "Compendium.dnd5e.classfeatures.Item.UAvV7N7T4zJhxdfI",
"advancementOrigin": "8Grf7ga6JcZF0X6x.n0q8XyiGA3vLPgpK"
}
},
"img": "icons/magic/control/silhouette-hold-change-blue.webp",
"effects": [
{
"_id": "R5ro4AuNjcdWD56O",
"changes": [
{
"key": "system.attributes.ac.calc",
"mode": 5,
"value": "unarmoredMonk",
"priority": None
}
],
"disabled": False,
"duration": {
"startTime": 0,
"seconds": None,
"combat": None,
"rounds": None,
"turns": None,
"startRound": None,
"startTurn": None
},
"origin": "Item.cOdcNWy4hII029DT",
"transfer": True,
"flags": {},
"tint": "#ffffff",
"name": "Unarmored Defense",
"description": "",
"statuses": [],
"_stats": {
"compendiumSource": None,
"duplicateSource": None,
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": None,
"lastModifiedBy": None,
"exportSource": None
},
"img": "icons/magic/control/silhouette-hold-change-blue.webp",
"type": "base",
"system": {},
"sort": 0
}
],
"folder": "TMmNG8ujFDBEWXRe",
"sort": 0,
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.classfeatures.Item.UAvV7N7T4zJhxdfI",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": 1738093813778,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": None
}
},
{
"_id": "pchnXqd5C79fVlxy",
"name": "Martial Arts",
"ownership": {
"default": 0
},
"type": "feat",
"system": {
"description": {
"value": "<p>At 1st level, your practice of martial arts gives you mastery of combat styles that use and monk weapons, which are shortswords and any simple melee weapons that don't have the two-handed or heavy property. You gain the following benefits while you are unarmed or wielding only monk weapons and you aren't wearing armor or wielding a shield:</p>\n<ul>\n<li>\n<p>You can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes and monk weapons.</p>\n</li>\n<li>\n<p>You can roll a d4 in place of the normal damage of your unarmed strike or monk weapon. This die changes as you gain monk levels, as shown in the Martial Arts column of the Monk table.</p>\n</li>\n<li>\n<p>When you use the Attack action with an unarmed strike or a monk weapon on your turn, you can make one unarmed strike as a bonus action. For example, if you take the Attack action and attack with a quarterstaff, you can also make an unarmed strike as a bonus action, assuming you haven't already taken a bonus action this turn.</p>\n</li>\n</ul>\n<p>Certain monasteries use specialized forms of the monk weapons. For example, you might use a club that is two lengths of wood connected by a short chain (called a nunchaku) or a sickle with a shorter, straighter blade (called a kama). Whatever name you use for a monk weapon, you can use the game statistics provided for the weapon.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"uses": {
"max": "",
"spent": 0,
"recovery": []
},
"type": {
"value": "class",
"subtype": ""
},
"requirements": "Monk 1",
"properties": [],
"activities": {},
"enchant": {},
"prerequisites": {
"level": None,
"repeatable": False
},
"identifier": "martial-arts",
"advancement": [],
"crewed": False
},
"flags": {
"dnd5e": {
"sourceId": "Compendium.dnd5e.classfeatures.Item.l50hjTxO2r0iecKw",
"advancementOrigin": "8Grf7ga6JcZF0X6x.n0q8XyiGA3vLPgpK"
}
},
"img": "icons/skills/melee/unarmed-punch-fist.webp",
"effects": [],
"folder": "TMmNG8ujFDBEWXRe",
"sort": 0,
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.classfeatures.Item.l50hjTxO2r0iecKw",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": 1738093813816,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": None
}
},
{
"name": "Hammer",
"type": "loot",
"img": "icons/tools/hand/hammer-cobbler-steel.webp",
"system": {
"description": {
"value": "<p>A tool with a heavy metal head mounted at the end of its handle, used for jobs such as breaking things and driving in nails. </p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 3,
"units": "lb"
},
"price": {
"value": 1,
"denomination": "gp"
},
"rarity": "",
"identified": True,
"type": {
"value": "",
"subtype": ""
},
"unidentified": {
"description": ""
},
"container": None,
"properties": [],
"identifier": "hammer"
},
"effects": [],
"folder": "dlru9Hy74nSMv6fr",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.items.Item.14pNRT4sZy9rgvhb",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": None,
"lastModifiedBy": None,
"exportSource": None
},
"_id": "YJ1P3PnFKHOdQpaP",
"sort": 0
},
{
"name": "Tinderbox",
"type": "loot",
"img": "icons/sundries/lights/torch-black.webp",
"system": {
"description": {
"value": "<p>This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.</p>\n<p> </p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 1,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "sp"
},
"rarity": "",
"identified": True,
"container": "8KWz5DJbWUpNWniP",
"type": {
"value": "",
"subtype": ""
},
"unidentified": {
"description": ""
},
"properties": [],
"identifier": "tinderbox"
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.items.Item.1FSubnBpSTDmVaYV",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": None,
"lastModifiedBy": None,
"exportSource": None
},
"ownership": {
"default": 0
},
"_id": "DDnxRCeYUhXstWU8",
"sort": 0
},
{
"name": "Waterskin",
"type": "consumable",
"img": "icons/sundries/survival/wetskin-leather-purple.webp",
"system": {
"description": {
"value": "<p>A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 5,
"units": "lb"
},
"price": {
"value": 2,
"denomination": "sp"
},
"attunement": "",
"equipped": False,
"rarity": "",
"identified": True,
"uses": {
"max": "4",
"recovery": [],
"autoDestroy": False,
"spent": 0
},
"damage": {
"base": {
"number": None,
"denomination": None,
"types": [],
"custom": {
"enabled": False
},
"scaling": {
"number": 1
}
},
"replace": False
},
"container": "6OYR11aJX2dEVtOj",
"properties": [],
"type": {
"value": "food",
"subtype": ""
},
"unidentified": {
"description": ""
},
"magicalBonus": None,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "utility",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": False
},
"consumption": {
"targets": [
{
"type": "itemUses",
"target": "",
"value": "1",
"scaling": {
"mode": "",
"formula": ""
}
}
],
"scaling": {
"allowed": False,
"max": ""
},
"spellSlot": True
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": False,
"value": "",
"units": "inst",
"special": "",
"override": False
},
"effects": [],
"range": {
"units": "touch",
"special": "",
"override": False
},
"target": {
"template": {
"count": "",
"contiguous": False,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": False,
"special": ""
},
"prompt": True,
"override": False
},
"roll": {
"formula": "",
"name": "",
"prompt": False,
"visible": False
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": False,
"identifier": "waterskin"
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.items.Item.1L5wkmbw0fmNAr38",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": None,
"lastModifiedBy": None,
"exportSource": None
},
"ownership": {
"default": 0
},
"_id": "5skKSSB4ShHbKoc8",
"sort": 0
},
{
"name": "Torch",
"type": "consumable",
"img": "icons/sundries/lights/torch-black.webp",
"system": {
"description": {
"value": "<p>A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 10,
"weight": {
"value": 1,
"units": "lb"
},
"price": {
"value": 1,
"denomination": "cp"
},
"attunement": "",
"equipped": False,
"rarity": "",
"identified": True,
"uses": {
"max": "1",
"recovery": [],
"autoDestroy": False,
"spent": 0
},
"damage": {
"base": {
"number": None,
"denomination": None,
"bonus": "",
"types": [
"fire"
],
"custom": {
"enabled": True,
"formula": "1"
},
"scaling": {
"mode": "",
"number": None,
"formula": ""
}
},
"replace": False
},
"container": "8KWz5DJbWUpNWniP",
"properties": [],
"type": {
"value": "trinket",
"subtype": ""
},
"unidentified": {
"description": ""
},
"magicalBonus": None,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "attack",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": False
},
"consumption": {
"targets": [
{
"type": "itemUses",
"target": "",
"value": "1",
"scaling": {
"mode": "",
"formula": ""
}
}
],
"scaling": {
"allowed": False,
"max": ""
},
"spellSlot": True
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": False,
"value": "1",
"units": "hour",
"special": "",
"override": False
},
"effects": [],
"range": {
"units": "self",
"special": "",
"override": False
},
"target": {
"template": {
"count": "",
"contiguous": False,
"type": "radius",
"size": "40",
"width": "",
"height": "",
"units": "ft"
},
"affects": {
"count": "",
"type": "",
"choice": False,
"special": ""
},
"prompt": True,
"override": False
},
"attack": {
"ability": "str",
"bonus": "",
"critical": {
"threshold": None
},
"flat": False,
"type": {
"value": "melee",
"classification": "weapon"
}
},
"damage": {
"critical": {
"bonus": ""
},
"includeBase": True,
"parts": [
{
"number": None,
"denomination": None,
"bonus": "",
"types": [
"fire"
],
"custom": {
"enabled": True,
"formula": "1"
},
"scaling": {
"mode": "whole",
"number": None,
"formula": ""
}
}
]
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": False,
"identifier": "torch"
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.items.Item.29ZLE8PERtFVD3QU",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": None,
"lastModifiedBy": None,
"exportSource": None
},
"ownership": {
"default": 0
},
"_id": "dDuMscUuMI2bTdkj",
"sort": 0
},
{
"name": "Stick of Incense",
"type": "loot",
"img": "icons/consumables/grains/breadsticks-crackers-wrapped-ration-brown.webp",
"system": {
"description": {
"value": "<p>When blocks of incense cannot be used or a cheaper alternative is required, people often use these to perfume the air, whether for pleasurable or religious purposes.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 5,
"weight": {
"value": 0,
"units": "lb"
},
"price": {
"value": 2,
"denomination": "sp"
},
"rarity": "",
"identified": True,
"type": {
"value": "",
"subtype": ""
},
"unidentified": {
"description": ""
},
"container": None,
"properties": [],
"identifier": "stick-of-incense"
},
"effects": [],
"folder": "dlru9Hy74nSMv6fr",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.items.Item.3b0RvGi0TnTYpIxn",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": None,
"lastModifiedBy": None,
"exportSource": None
},
"_id": "nC6VcR5JAIbR4err",
"sort": 0
},
{
"name": "Dart",
"type": "weapon",
"img": "icons/weapons/thrown/dart-feathered.webp",
"system": {
"description": {
"value": "<p>A small thrown implement crafted with a short wooden shaft and crossed feathres with a sharp wooden or metal tip. Darts can be thrown with sufficient force to puncture the skin.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 10,
"weight": {
"value": 0.25,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "cp"
},
"attunement": "",
"equipped": True,
"rarity": "",
"identified": True,
"cover": None,
"range": {
"value": 20,
"long": 60,
"units": "ft",
"reach": None
},
"uses": {
"max": "",
"recovery": [],
"spent": 0
},
"damage": {
"versatile": {
"number": None,
"denomination": None,
"bonus": "",
"types": [],
"custom": {
"enabled": False,
"formula": ""
},
"scaling": {
"mode": "",
"number": None,
"formula": ""
}
},
"base": {
"number": 1,
"denomination": 4,
"bonus": "",
"types": [
"piercing"
],
"custom": {
"enabled": False,
"formula": ""
},
"scaling": {
"mode": "",
"number": None,
"formula": ""
}
}
},
"armor": {
"value": 10
},
"hp": {
"value": 0,
"max": 0,
"dt": None,
"conditions": ""
},
"properties": [
"fin",
"thr"
],
"proficient": None,
"type": {
"value": "simpleR",
"baseItem": "dart"
},
"unidentified": {
"description": ""
},
"container": None,
"crewed": False,
"magicalBonus": None,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "attack",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": False
},
"consumption": {
"targets": [],
"scaling": {
"allowed": False,
"max": ""
},
"spellSlot": True
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": False,
"value": "",
"units": "inst",
"special": "",
"override": False
},
"effects": [],
"range": {
"value": "20",
"units": "ft",
"special": "",
"override": False
},
"target": {
"template": {
"count": "",
"contiguous": False,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": False,
"special": ""
},
"prompt": True,
"override": False
},
"attack": {
"ability": "",
"bonus": "",
"critical": {
"threshold": None
},
"flat": False,
"type": {
"value": "ranged",
"classification": "weapon"
}
},
"damage": {
"critical": {
"bonus": ""
},
"includeBase": True,
"parts": []
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": False,
"ammunition": {},
"mastery": "",
"identifier": "dart"
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.items.Item.3rCO8MTIdPGSW6IJ",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": None,
"lastModifiedBy": None,
"exportSource": None
},
"_id": "WeKJI3gPUAU52WAX",
"sort": 0
},
{
"name": "Common Clothes",
"type": "equipment",
"img": "icons/equipment/chest/shirt-collared-brown.webp",
"system": {
"description": {
"value": "<p>Clothes worn by most commoners.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 3,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "sp"
},
"attunement": "",
"equipped": False,
"rarity": "",
"identified": True,
"cover": None,
"uses": {
"max": "",
"recovery": [],
"spent": 0
},
"armor": {
"value": None,
"dex": None,
"magicalBonus": None
},
"hp": {
"value": 0,
"max": 0,
"dt": None,
"conditions": ""
},
"speed": {
"value": None,
"conditions": ""
},
"strength": None,
"proficient": None,
"type": {
"value": "clothing",
"baseItem": ""
},
"unidentified": {
"description": ""
},
"container": None,
"crewed": False,
"properties": [],
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "utility",
"activation": {
"type": "",
"value": None,
"condition": "",
"override": False
},
"consumption": {
"targets": [],
"scaling": {
"allowed": False,
"max": ""
},
"spellSlot": True
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": False,
"value": "",
"units": "inst",
"special": "",
"override": False
},
"effects": [],
"range": {
"units": "self",
"special": "",
"override": False
},
"target": {
"template": {
"count": "",
"contiguous": False,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": False,
"special": ""
},
"prompt": True,
"override": False
},
"roll": {
"formula": "",
"name": "",
"prompt": False,
"visible": False
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": False,
"identifier": "common-clothes"
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.items.Item.8RXjiddJ6VGyE7vB",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": None,
"lastModifiedBy": None,
"exportSource": None
},
"_id": "1F73YcUHbZMgePAD",
"sort": 0
},
{
"name": "Rations",
"type": "consumable",
"img": "icons/consumables/grains/bread-loaf-boule-rustic-brown.webp",
"system": {
"description": {
"value": "<p>Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 10,
"weight": {
"value": 2,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "sp"
},
"attunement": "",
"equipped": False,
"rarity": "",
"identified": True,
"uses": {
"max": "1",
"recovery": [],
"autoDestroy": True,
"spent": 0
},
"damage": {
"base": {
"number": None,
"denomination": None,
"types": [],
"custom": {
"enabled": False
},
"scaling": {
"number": 1
}
},
"replace": False
},
"container": "XY8b594Dn7plACLL",
"properties": [],
"type": {
"value": "food",
"subtype": ""
},
"unidentified": {
"description": ""
},
"magicalBonus": None,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "utility",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": False
},
"consumption": {
"targets": [
{
"type": "itemUses",
"target": "",
"value": "1",
"scaling": {
"mode": "",
"formula": ""
}
}
],
"scaling": {
"allowed": False,
"max": ""
},
"spellSlot": True
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": False,
"value": "",
"units": "inst",
"special": "",
"override": False
},
"effects": [],
"range": {
"units": "touch",
"special": "",
"override": False
},
"target": {
"template": {
"count": "",
"contiguous": False,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "1",
"type": "creature",
"choice": False,
"special": ""
},
"prompt": True,
"override": False
},
"roll": {
"formula": "",
"name": "",
"prompt": False,
"visible": False
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": False,
"identifier": "rations"
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.items.Item.8d95YV1jHcxPygJ9",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": None,
"lastModifiedBy": None,
"exportSource": None
},
"ownership": {
"default": 0
},
"_id": "LQhGSEatJ3VK7oqW",
"sort": 0
},
{
"name": "Pouch",
"type": "container",
"img": "icons/containers/bags/pouch-rounded-leather-gold-tan.webp",
"system": {
"description": {
"value": "<p>A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 1,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "sp"
},
"attunement": "",
"equipped": False,
"rarity": "",
"identified": True,
"capacity": {
"weight": {
"value": 6,
"units": "lb"
},
"volume": {
"units": "cubicFoot"
}
},
"currency": {
"cp": 0,
"sp": 0,
"ep": 0,
"gp": 0,
"pp": 0
},
"unidentified": {
"description": ""
},
"container": None,
"properties": [],
"attuned": False,
"identifier": "pouch"
},
"effects": [],
"folder": "PgtyWdfkDTDbc0ov",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.items.Item.9bWTRRDym06PzSAf",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": None,
"lastModifiedBy": None,
"exportSource": None
},
"_id": "1kqMwSwjfErSFNvl",
"sort": 0
},
{
"name": "Crowbar",
"type": "loot",
"img": "icons/tools/hand/pickaxe-steel-white.webp",
"system": {
"description": {
"value": "<p>Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 5,
"units": "lb"
},
"price": {
"value": 2,
"denomination": "gp"
},
"rarity": "",
"identified": True,
"container": "XY8b594Dn7plACLL",
"type": {
"value": "",
"subtype": ""
},
"unidentified": {
"description": ""
},
"properties": [],
"identifier": "crowbar"
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.items.Item.AkyQyonZMVcvOrXU",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": None,
"lastModifiedBy": None,
"exportSource": None
},
"ownership": {
"default": 0
},
"_id": "zF5L4xHnJBC7b2iM",
"sort": 0
},
{
"name": "Unarmed Strike",
"type": "weapon",
"img": "icons/skills/melee/unarmed-punch-fist.webp",
"system": {
"description": {
"value": "<p>A punch, kick, head-butt, or similar forceful blow (none of which count as weapons). On a hit, an unarmed strike deals bludgeoning damage equal to 1 + your Strength modifier. You are proficient with your unarmed strikes.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 0,
"units": "lb"
},
"price": {
"value": 0,
"denomination": "gp"
},
"attunement": "",
"equipped": True,
"rarity": "",
"identified": True,
"cover": None,
"range": {
"value": None,
"long": None,
"units": "ft",
"reach": None
},
"uses": {
"max": "",
"recovery": [],
"spent": 0
},
"damage": {
"versatile": {
"number": None,
"denomination": None,
"bonus": "",
"types": [],
"custom": {
"enabled": False,
"formula": ""
},
"scaling": {
"mode": "",
"number": None,
"formula": ""
}
},
"base": {
"number": None,
"denomination": None,
"bonus": "",
"types": [
"bludgeoning"
],
"custom": {
"enabled": True,
"formula": "@scale.monk.die"
},
"scaling": {
"mode": "",
"number": None,
"formula": ""
}
}
},
"armor": {
"value": 10
},
"hp": {
"value": 0,
"max": 0,
"dt": None,
"conditions": ""
},
"properties": [
"fin"
],
"proficient": None,
"type": {
"value": "simpleM",
"baseItem": ""
},
"unidentified": {
"description": ""
},
"container": None,
"crewed": False,
"magicalBonus": None,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "attack",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": False
},
"consumption": {
"targets": [],
"scaling": {
"allowed": False,
"max": ""
},
"spellSlot": True
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": False,
"value": "",
"units": "inst",
"special": "",
"override": False
},
"effects": [],
"range": {
"value": "5",
"units": "ft",
"special": "",
"override": False
},
"target": {
"template": {
"count": "",
"contiguous": False,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": False,
"special": ""
},
"prompt": True,
"override": False
},
"attack": {
"ability": "",
"bonus": "",
"critical": {
"threshold": None
},
"flat": False,
"type": {
"value": "melee",
"classification": "unarmed"
}
},
"damage": {
"critical": {
"bonus": ""
},
"includeBase": True,
"parts": []
},
"uses": {
"spent": 0,
"recovery": [],
"max": ""
},
"sort": 0,
"name": ""
}
},
"attuned": False,
"ammunition": {},
"identifier": "unarmed-strike",
"mastery": ""
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
"ownership": {
"default": 0
},
"flags": {
"dnd5e": {
"last": {
"dnd5eactivity000": {
"attackMode": "oneHanded",
"damageType": {
"0": "bludgeoning"
}
}
},
"riders": {
"activity": [],
"effect": []
}
}
},
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.items.Item.GsuvwoekKZatfKwF",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": None,
"lastModifiedBy": None,
"exportSource": None
},
"_id": "g7U3OAXVcoI4lwzf",
"sort": 0
},
{
"name": "Backpack",
"type": "container",
"img": "icons/containers/bags/pack-leather-white-tan.webp",
"system": {
"description": {
"value": "<p>A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 5,
"units": "lb"
},
"price": {
"value": 2,
"denomination": "gp"
},
"attunement": "",
"equipped": False,
"rarity": "",
"identified": True,
"capacity": {
"weight": {
"value": 30,
"units": "lb"
},
"volume": {
"units": "cubicFoot"
}
},
"currency": {
"cp": 0,
"sp": 0,
"ep": 0,
"gp": 0,
"pp": 0
},
"unidentified": {
"description": ""
},
"container": None,
"properties": [],
"attuned": False,
"identifier": "backpack"
},
"effects": [],
"folder": "PgtyWdfkDTDbc0ov",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.items.Item.H8YCd689ezlD26aT",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": None,
"lastModifiedBy": None,
"exportSource": None
},
"_id": "WcROGD590imVj9qp",
"sort": 0
},
{
"name": "Piton",
"type": "consumable",
"img": "icons/tools/fasteners/nail-steel.webp",
"system": {
"description": {
"value": "<p>A metal spike that is drive into a seam in a climbing surface with a climbing hammer. It can also be used like iron spikes to block doors in a pinch.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 10,
"weight": {
"value": 0.25,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "cp"
},
"attunement": "",
"equipped": False,
"rarity": "",
"identified": True,
"uses": {
"max": "1",
"recovery": [],
"autoDestroy": False,
"spent": 0
},
"damage": {
"base": {
"number": None,
"denomination": None,
"types": [],
"custom": {
"enabled": False
},
"scaling": {
"number": 1
}
},
"replace": False
},
"container": "xsB7Y2WI476kvOt4",
"properties": [],
"type": {
"value": "trinket",
"subtype": ""
},
"unidentified": {
"description": ""
},
"magicalBonus": None,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "utility",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": False
},
"consumption": {
"targets": [
{
"type": "itemUses",
"target": "",
"value": "1",
"scaling": {
"mode": "",
"formula": ""
}
}
],
"scaling": {
"allowed": False,
"max": ""
},
"spellSlot": True
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": False,
"value": "",
"units": "inst",
"special": "",
"override": False
},
"effects": [],
"range": {
"value": "5",
"units": "ft",
"special": "",
"override": False
},
"target": {
"template": {
"count": "",
"contiguous": False,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": False,
"special": ""
},
"prompt": True,
"override": False
},
"roll": {
"formula": "",
"name": "",
"prompt": False,
"visible": False
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": False,
"identifier": "piton"
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.items.Item.P31t6tGgt9aLAdYt",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": None,
"lastModifiedBy": None,
"exportSource": None
},
"ownership": {
"default": 0
},
"_id": "8UQanAvHUIHZXp0O",
"sort": 0
},
{
"name": "Hempen Rope (50 ft.)",
"type": "consumable",
"img": "icons/sundries/survival/rope-wrapped-brown.webp",
"system": {
"description": {
"value": "<p>Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 10,
"units": "lb"
},
"price": {
"value": 1,
"denomination": "gp"
},
"attunement": "",
"equipped": False,
"rarity": "",
"identified": True,
"uses": {
"max": "1",
"recovery": [],
"autoDestroy": False,
"spent": 0
},
"damage": {
"base": {
"number": None,
"denomination": None,
"types": [],
"custom": {
"enabled": False
},
"scaling": {
"number": 1
}
},
"replace": False
},
"type": {
"value": "trinket",
"subtype": ""
},
"unidentified": {
"description": ""
},
"container": None,
"properties": [],
"magicalBonus": None,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "check",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": False
},
"consumption": {
"targets": [
{
"type": "itemUses",
"target": "",
"scaling": {},
"value": "1"
}
],
"scaling": {
"allowed": False,
"max": ""
},
"spellSlot": True
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": False,
"value": "",
"units": "inst",
"special": "",
"override": False
},
"effects": [],
"range": {
"units": "self",
"special": "",
"override": False
},
"target": {
"template": {
"count": "",
"contiguous": False,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": False,
"special": ""
},
"prompt": True,
"override": False
},
"check": {
"ability": "str",
"dc": {
"calculation": "",
"formula": "17"
},
"associated": []
},
"uses": {
"spent": 0,
"recovery": [],
"max": ""
},
"sort": 0,
"name": "Burst"
}
},
"attuned": False,
"identifier": "hempen-rope-50-ft"
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
"ownership": {
"default": 0
},
"flags": {
"dnd5e": {
"riders": {
"activity": [],
"effect": []
}
}
},
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.items.Item.QXmaarJ4X8P0C1HV",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": None,
"lastModifiedBy": None,
"exportSource": None
},
"_id": "irCoxLHje0eA6Qmu",
"sort": 0
},
{
"name": "Reliquary",
"type": "equipment",
"img": "icons/containers/chest/chest-reinforced-steel-red.webp",
"system": {
"description": {
"value": "<p>A tiny box or other container holding a fragment of a precious relic, saint, or other historical figure that dedicated their life to walk the path of a True believer. A deity imbues the bearer of this artifact with the ability to call forth their power and in doing so spread the faith once more.</p>\n<p><strong>Spellcasting Focus</strong>. A cleric or paladin can use a holy symbol as a spellcasting focus. To use the symbol in this way, the caster must hold it in hand, wear it visibly, or bear it on a shield.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 2,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "gp"
},
"attunement": "",
"equipped": False,
"rarity": "",
"identified": True,
"cover": None,
"uses": {
"max": "",
"recovery": [],
"spent": 0
},
"armor": {
"value": None,
"dex": None,
"magicalBonus": None
},
"hp": {
"value": 0,
"max": 0,
"dt": None,
"conditions": ""
},
"speed": {
"value": None,
"conditions": ""
},
"strength": None,
"proficient": None,
"type": {
"value": "trinket",
"baseItem": ""
},
"unidentified": {
"description": ""
},
"container": None,
"crewed": False,
"properties": [
"foc"
],
"activities": {},
"attuned": False,
"identifier": "reliquary"
},
"effects": [],
"folder": "xedn1r43VWuEBcli",
"ownership": {
"default": 0
},
"flags": {
"dnd5e": {
"riders": {
"activity": [],
"effect": []
}
}
},
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.items.Item.gP1URGq3kVIIFHJ7",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": None,
"lastModifiedBy": None,
"exportSource": None
},
"_id": "GfKuJYLFfw00oW9R",
"sort": 0
},
{
"name": "Vestments",
"type": "equipment",
"img": "icons/equipment/back/mantle-collared-black.webp",
"system": {
"description": {
"value": "<p>Simple or ostentacious wear, often used by priests and other religious figures for use in rituals and ceremonies.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 4,
"units": "lb"
},
"price": {
"value": 1,
"denomination": "gp"
},
"attunement": "",
"equipped": True,
"rarity": "",
"identified": True,
"cover": None,
"uses": {
"max": "",
"recovery": [],
"spent": 0
},
"armor": {
"value": None,
"dex": None,
"magicalBonus": None
},
"hp": {
"value": 0,
"max": 0,
"dt": None,
"conditions": ""
},
"speed": {
"value": None,
"conditions": ""
},
"strength": None,
"proficient": None,
"type": {
"value": "clothing",
"baseItem": ""
},
"unidentified": {
"description": ""
},
"container": None,
"crewed": False,
"properties": [],
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "utility",
"activation": {
"type": "",
"value": None,
"condition": "",
"override": False
},
"consumption": {
"targets": [],
"scaling": {
"allowed": False,
"max": ""
},
"spellSlot": True
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": False,
"value": "",
"units": "inst",
"special": "",
"override": False
},
"effects": [],
"range": {
"units": "self",
"special": "",
"override": False
},
"target": {
"template": {
"count": "",
"contiguous": False,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": False,
"special": ""
},
"prompt": True,
"override": False
},
"roll": {
"formula": "",
"name": "",
"prompt": False,
"visible": False
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": False,
"identifier": "vestments"
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.items.Item.irtqrzaUCeshmTZp",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": None,
"lastModifiedBy": None,
"exportSource": None
},
"_id": "NsNcJBUG5ajbk7sG",
"sort": 0
},
{
"name": "Prayer Book",
"type": "loot",
"img": "icons/sundries/books/book-purple-cross.webp",
"system": {
"description": {
"value": "<p>A book containing prayers and incantations dedicated to a specific power for the faithful to follow.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 5,
"units": "lb"
},
"price": {
"value": 25,
"denomination": "gp"
},
"rarity": "",
"identified": True,
"type": {
"value": "",
"subtype": ""
},
"unidentified": {
"description": ""
},
"container": None,
"properties": [],
"identifier": "prayer-book"
},
"effects": [],
"folder": "dlru9Hy74nSMv6fr",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.items.Item.odV5cq2HSLSCH69k",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": None,
"lastModifiedBy": None,
"exportSource": None
},
"_id": "XbF0CTipyqbMKHsB",
"sort": 0
},
{
"name": "Shortsword",
"type": "weapon",
"img": "icons/weapons/swords/sword-guard-worn-purple.webp",
"system": {
"description": {
"value": "<p>A medium sized blade with a firm crossguard and a leather-wrapped handle. A versatile weapon which makes up in versatility what it lacks in reach.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 2,
"units": "lb"
},
"price": {
"value": 10,
"denomination": "gp"
},
"attunement": "",
"equipped": True,
"rarity": "",
"identified": True,
"cover": None,
"range": {
"value": None,
"long": None,
"units": "ft",
"reach": None
},
"uses": {
"max": "",
"recovery": [],
"spent": 0
},
"damage": {
"versatile": {
"number": None,
"denomination": None,
"bonus": "",
"types": [],
"custom": {
"enabled": False,
"formula": ""
},
"scaling": {
"mode": "",
"number": None,
"formula": ""
}
},
"base": {
"number": 1,
"denomination": 6,
"bonus": "",
"types": [
"piercing"
],
"custom": {
"enabled": False,
"formula": ""
},
"scaling": {
"mode": "",
"number": None,
"formula": ""
}
}
},
"armor": {
"value": 10
},
"hp": {
"value": 0,
"max": 0,
"dt": None,
"conditions": ""
},
"properties": [
"fin",
"lgt"
],
"proficient": None,
"type": {
"value": "martialM",
"baseItem": "shortsword"
},
"unidentified": {
"description": ""
},
"container": None,
"crewed": False,
"magicalBonus": None,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "attack",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": False
},
"consumption": {
"targets": [],
"scaling": {
"allowed": False,
"max": ""
},
"spellSlot": True
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": False,
"value": "",
"units": "inst",
"special": "",
"override": False
},
"effects": [],
"range": {
"value": "5",
"units": "ft",
"special": "",
"override": False
},
"target": {
"template": {
"count": "",
"contiguous": False,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": False,
"special": ""
},
"prompt": True,
"override": False
},
"attack": {
"ability": "",
"bonus": "",
"critical": {
"threshold": None
},
"flat": False,
"type": {
"value": "melee",
"classification": "weapon"
}
},
"damage": {
"critical": {
"bonus": ""
},
"includeBase": True,
"parts": []
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": False,
"ammunition": {},
"identifier": "shortsword"
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": None,
"compendiumSource": "Compendium.dnd5e.items.Item.osLzOwQdPtrK3rQH",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": None,
"modifiedTime": None,
"lastModifiedBy": None,
"exportSource": None
},
"_id": "GYyovoNdU66nxOlX",
"sort": 0
}
],
"effects": []
}
}
)
data = response.json()
print(data)
import axios from 'axios';
(async () => {
const baseUrl = 'http://localhost:3010';
const path = '/create';
const params = {
clientId: 'fvtt_099ad17ea199e7e3'
};
const queryString = new URLSearchParams(params).toString();
const url = `${baseUrl}${path}?${queryString}`;
const response = await axios({
method: 'post',
headers: {
'x-api-key': 'your-api-key-here',
'Content-Type': 'application/json'
},
url,
data: {
"entityType": "Actor",
"data": {
"name": "test-perrin (halfling monk)",
"type": "character",
"img": "systems/dnd5e/tokens/heroes/MonkStaff.webp",
"system": {
"abilities": {
"str": {
"value": 8,
"proficient": 1,
"max": 20,
"bonuses": {
"check": "",
"save": ""
},
"check": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"save": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
}
},
"dex": {
"value": 16,
"proficient": 1,
"max": 20,
"bonuses": {
"check": "",
"save": ""
},
"check": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"save": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
}
},
"con": {
"value": 13,
"proficient": 0,
"max": 20,
"bonuses": {
"check": "",
"save": ""
},
"check": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"save": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
}
},
"int": {
"value": 12,
"proficient": 0,
"max": 20,
"bonuses": {
"check": "",
"save": ""
},
"check": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"save": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
}
},
"wis": {
"value": 15,
"proficient": 0,
"max": 20,
"bonuses": {
"check": "",
"save": ""
},
"check": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"save": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
}
},
"cha": {
"value": 11,
"proficient": 0,
"max": 20,
"bonuses": {
"check": "",
"save": ""
},
"check": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"save": {
"roll": {
"min": null,
"max": null,
"mode": 0
}
}
}
},
"attributes": {
"ac": {
"flat": null,
"calc": "unarmoredMonk",
"formula": ""
},
"hp": {
"value": 9,
"max": 9,
"temp": null,
"tempmax": null,
"bonuses": {
"level": "",
"overall": ""
}
},
"init": {
"ability": "",
"bonus": "0",
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"movement": {
"burrow": 0,
"climb": 0,
"fly": 0,
"swim": 0,
"walk": 25,
"units": "ft",
"hover": false
},
"attunement": {
"max": 3
},
"senses": {
"darkvision": 0,
"blindsight": 0,
"tremorsense": 0,
"truesight": 0,
"units": "ft",
"special": ""
},
"spellcasting": "int",
"death": {
"success": 0,
"failure": 0,
"roll": {
"min": null,
"max": null,
"mode": 0
},
"bonuses": {
"save": ""
}
},
"exhaustion": 0,
"inspiration": false,
"concentration": {
"ability": "",
"roll": {
"min": null,
"max": null,
"mode": 0
},
"bonuses": {
"save": ""
},
"limit": 1
},
"loyalty": {}
},
"details": {
"biography": {
"value": "<p>A devoted student of his local monastery, Perrin has been tasked with bringing balance to the surrounding lands.</p><p><em>Token artwork by <a href=\"https://www.forgotten-adventures.net/\" target=\"_blank\" rel=\"noopener\">Forgotten Adventures</a>.</em></p>",
"public": ""
},
"alignment": "True Neutral",
"race": "O3ZjSw0GtAOPScHI",
"background": "q4tr1vTU8RxtU1UZ",
"originalClass": "8Grf7ga6JcZF0X6x",
"xp": {
"value": 0
},
"appearance": "",
"trait": "",
"ideal": "",
"bond": "",
"flaw": "",
"eyes": "",
"height": "",
"faith": "",
"hair": "",
"weight": "",
"gender": "",
"skin": "",
"age": ""
},
"traits": {
"size": "sm",
"di": {
"value": [],
"bypasses": [],
"custom": ""
},
"dr": {
"value": [],
"bypasses": [],
"custom": ""
},
"dv": {
"value": [],
"bypasses": [],
"custom": ""
},
"ci": {
"value": [],
"custom": "Advantage against being frightenned"
},
"languages": {
"value": [
"celestial",
"draconic",
"common",
"halfling"
],
"custom": "",
"communication": {}
},
"weaponProf": {
"value": [
"sim",
"shortsword"
],
"custom": "",
"mastery": {
"value": [],
"bonus": []
}
},
"armorProf": {
"value": [],
"custom": ""
},
"dm": {
"amount": {},
"bypasses": []
}
},
"currency": {
"pp": 0,
"gp": 15,
"ep": 0,
"sp": 0,
"cp": 0
},
"skills": {
"acr": {
"value": 1,
"ability": "dex",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"ani": {
"value": 0,
"ability": "wis",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"arc": {
"value": 0,
"ability": "int",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"ath": {
"value": 1,
"ability": "str",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"dec": {
"value": 0,
"ability": "cha",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"his": {
"value": 0,
"ability": "int",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"ins": {
"value": 1,
"ability": "wis",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"itm": {
"value": 0,
"ability": "cha",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"inv": {
"value": 0,
"ability": "int",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"med": {
"value": 0,
"ability": "wis",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"nat": {
"value": 0,
"ability": "int",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"prc": {
"value": 0,
"ability": "wis",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"prf": {
"value": 0,
"ability": "cha",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"per": {
"value": 0,
"ability": "cha",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"rel": {
"value": 1,
"ability": "int",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"slt": {
"value": 0,
"ability": "dex",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"ste": {
"value": 0,
"ability": "dex",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"sur": {
"value": 0,
"ability": "wis",
"bonuses": {
"check": "",
"passive": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
}
},
"tools": {
"art": {
"value": 1,
"ability": "int",
"bonuses": {
"check": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
},
"brewer": {
"value": 1,
"ability": "int",
"bonuses": {
"check": ""
},
"roll": {
"min": null,
"max": null,
"mode": 0
}
}
},
"spells": {
"spell1": {
"value": 0,
"override": null
},
"spell2": {
"value": 0,
"override": null
},
"spell3": {
"value": 0,
"override": null
},
"spell4": {
"value": 0,
"override": null
},
"spell5": {
"value": 0,
"override": null
},
"spell6": {
"value": 0,
"override": null
},
"spell7": {
"value": 0,
"override": null
},
"spell8": {
"value": 0,
"override": null
},
"spell9": {
"value": 0,
"override": null
},
"pact": {
"value": 0,
"override": null
},
"spell0": {
"value": 0,
"override": null
}
},
"bonuses": {
"mwak": {
"attack": "",
"damage": ""
},
"rwak": {
"attack": "",
"damage": ""
},
"msak": {
"attack": "",
"damage": ""
},
"rsak": {
"attack": "",
"damage": ""
},
"abilities": {
"check": "",
"save": "",
"skill": ""
},
"spell": {
"dc": ""
}
},
"resources": {
"primary": {
"value": null,
"max": null,
"sr": true,
"lr": true,
"label": "Ki"
},
"secondary": {
"value": null,
"max": null,
"sr": false,
"lr": false,
"label": ""
},
"tertiary": {
"value": null,
"max": null,
"sr": false,
"lr": false,
"label": ""
}
},
"favorites": [
{
"type": "item",
"id": ".Item.FtOM4QiOW5MwgcS3",
"sort": 500000
},
{
"type": "item",
"id": ".Item.WeKJI3gPUAU52WAX",
"sort": 600000
},
{
"type": "item",
"id": ".Item.g7U3OAXVcoI4lwzf",
"sort": 550000
},
{
"type": "item",
"id": ".Item.GYyovoNdU66nxOlX",
"sort": 700000
}
],
"bastion": {
"name": "",
"description": ""
}
},
"prototypeToken": {
"flags": {},
"name": "Perrin",
"displayName": 30,
"width": 1,
"height": 1,
"lockRotation": false,
"rotation": 0,
"actorLink": true,
"disposition": 1,
"displayBars": 40,
"bar1": {
"attribute": "attributes.hp"
},
"bar2": {
"attribute": "attributes.ac.value"
},
"randomImg": false,
"alpha": 1,
"light": {
"alpha": 1,
"angle": 360,
"bright": 0,
"coloration": 1,
"dim": 0,
"luminosity": 0.5,
"saturation": 0,
"contrast": 0,
"shadows": 0,
"animation": {
"speed": 5,
"intensity": 5,
"type": null,
"reverse": false
},
"darkness": {
"min": 0,
"max": 1
},
"color": null,
"attenuation": 0.5,
"negative": false,
"priority": 0
},
"texture": {
"src": "systems/dnd5e/tokens/heroes/MonkStaff.webp",
"tint": "#ffffff",
"scaleX": 0.8,
"scaleY": 0.8,
"offsetX": 0,
"offsetY": 0,
"rotation": 0,
"anchorX": 0.5,
"anchorY": 0.5,
"fit": "contain",
"alphaThreshold": 0.75
},
"sight": {
"angle": 360,
"enabled": true,
"range": 5,
"brightness": 0,
"visionMode": "basic",
"color": null,
"attenuation": 0.1,
"saturation": 0,
"contrast": 0
},
"detectionModes": [],
"appendNumber": false,
"prependAdjective": false,
"occludable": {
"radius": 0
},
"ring": {
"enabled": false,
"colors": {
"ring": null,
"background": null
},
"effects": 1,
"subject": {
"scale": 1,
"texture": null
}
},
"turnMarker": {
"mode": 1,
"animation": null,
"src": null,
"disposition": false
},
"movementAction": null
},
"items": [
{
"name": "Priest",
"type": "background",
"system": {
"description": {
"value": "<ul><li><strong>Skill Proficiencies:</strong> Insight, Religion</li><li><strong>Languages:</strong> Two of your choice</li><li><strong>Equipment:</strong> A holy symbol, 5 sticks of incense, prayer book, vestments, a set of common clothes, and a pouch containing 15 gp.</li></ul>",
"chat": ""
},
"source": {
"custom": "",
"book": "",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"advancement": [],
"startingEquipment": [],
"identifier": "priest"
},
"img": "icons/sundries/documents/document-torn-diagram-tan.webp",
"effects": [],
"folder": null,
"sort": 0,
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.0.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "q4tr1vTU8RxtU1UZ"
},
{
"_id": "O3ZjSw0GtAOPScHI",
"name": "Lightfoot Halfling",
"type": "race",
"img": "icons/equipment/feet/shoes-leather-simple-brown.webp",
"system": {
"description": {
"value": "<p>Your halfling character has a number of traits in common with all other halflings.</p><p><em><strong>Ability Score Increase.</strong></em> Your Dexterity score increases by 2.</p><p><em><strong>Age.</strong></em> A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.</p><p><em><strong>Alignment.</strong></em> Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.</p><p><em><strong>Size.</strong></em> Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.</p><p><em><strong>Speed.</strong></em> Your base walking speed is 25 feet.</p><p><em><strong>Lucky.</strong></em> When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.</p><p><em><strong>Brave.</strong></em> You have advantage on saving throws against being frightened.</p><p><em><strong>Halfling Nimbleness.</strong></em> You can move through the space of any creature that is of a size larger than yours.</p><p><em><strong>Languages.</strong></em> You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.</p><h5>Lightfoot</h5><p>As a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others.</p><p>Lightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life.</p><p><em><strong>Ability Score Increase.</strong></em> Your Charisma score increases by 1.</p><p><em><strong>Naturally Stealthy.</strong></em> You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"identifier": "lightfoot-halfling",
"advancement": [
{
"_id": "nInhIgkbzzJTdm8F",
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.races.LOMdcNAGWh5xpfm4",
"optional": false
},
{
"uuid": "Compendium.dnd5e.races.7Yoo9hG0hfPSmBoC",
"optional": false
},
{
"uuid": "Compendium.dnd5e.races.PqxZgcJzp1VVgP8t",
"optional": false
},
{
"uuid": "Compendium.dnd5e.races.GWPjKFeIthBBeCFJ",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {
"added": {
"FtOM4QiOW5MwgcS3": "Compendium.dnd5e.races.Item.LOMdcNAGWh5xpfm4",
"nmmihiqphHjoE8dl": "Compendium.dnd5e.races.Item.7Yoo9hG0hfPSmBoC",
"cWrETHzCRs1Ueqd3": "Compendium.dnd5e.races.Item.PqxZgcJzp1VVgP8t",
"AArhiOrSkaQUnCZS": "Compendium.dnd5e.races.Item.GWPjKFeIthBBeCFJ"
}
},
"level": 0,
"title": ""
},
{
"_id": "Z9hvZFkWUNvowbQX",
"type": "AbilityScoreImprovement",
"configuration": {
"points": 0,
"fixed": {
"str": 0,
"dex": 2,
"con": 0,
"int": 0,
"wis": 0,
"cha": 1
},
"cap": 2,
"locked": []
},
"value": {
"type": "asi",
"assignments": {
"dex": 2,
"cha": 1
}
},
"level": 0,
"title": ""
},
{
"_id": "hv2bcANK5jEJZaAb",
"type": "Size",
"configuration": {
"sizes": [
"sm"
]
},
"value": {
"size": "sm"
},
"level": 1,
"title": "",
"hint": "Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small."
},
{
"_id": "nGwMjsfNU6CXHk3A",
"type": "Trait",
"configuration": {
"mode": "default",
"allowReplacements": false,
"grants": [
"languages:standard:common",
"languages:standard:halfling"
],
"choices": []
},
"level": 0,
"title": "",
"value": {
"chosen": [
"languages:standard:common",
"languages:standard:halfling"
]
}
}
],
"movement": {
"walk": 25,
"burrow": null,
"climb": null,
"fly": null,
"swim": null,
"units": "ft",
"hover": false
},
"type": {
"subtype": "halfling",
"value": "humanoid",
"custom": ""
},
"senses": {
"darkvision": null,
"blindsight": null,
"tremorsense": null,
"truesight": null,
"units": "ft",
"special": ""
}
},
"effects": [],
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.races.Item.ZgYBjYYfiUstQD6f",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": 1738093997274,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": null
},
"sort": 0,
"folder": "uQNrdSpcXeoB5EnX"
},
{
"_id": "FtOM4QiOW5MwgcS3",
"name": "Lucky",
"ownership": {
"default": 0
},
"type": "feat",
"system": {
"description": {
"value": "<p>When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.</p><section class=\"secret foundry-note\" id=\"secret-S04TPyvUh05Dz0Ng\"><p><strong>Foundry Note</strong></p><p>This property can be enabled on your character sheet in the Special Traits configuration on the Attributes tab.</p></section>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"uses": {
"max": "",
"spent": 0,
"recovery": []
},
"type": {
"value": "race",
"subtype": ""
},
"requirements": "Halfling",
"properties": [],
"activities": {},
"enchant": {},
"prerequisites": {
"level": null,
"repeatable": false
},
"identifier": "lucky",
"advancement": [],
"crewed": false
},
"flags": {
"dnd5e": {
"sourceId": "Compendium.dnd5e.races.Item.LOMdcNAGWh5xpfm4",
"advancementOrigin": "O3ZjSw0GtAOPScHI.nInhIgkbzzJTdm8F",
"riders": {
"activity": [],
"effect": []
}
}
},
"img": "icons/sundries/gaming/dice-runed-brown.webp",
"effects": [],
"folder": "kbtbKofcv13crhke",
"sort": 0,
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.races.Item.LOMdcNAGWh5xpfm4",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": 1738093813616,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": null
}
},
{
"_id": "nmmihiqphHjoE8dl",
"name": "Brave",
"ownership": {
"default": 0
},
"type": "feat",
"system": {
"description": {
"value": "<p>You have advantage on saving throws against being frightened.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"uses": {
"max": "",
"spent": 0,
"recovery": []
},
"type": {
"value": "race",
"subtype": ""
},
"requirements": "Halfling",
"properties": [],
"activities": {},
"enchant": {},
"prerequisites": {
"level": null,
"repeatable": false
},
"identifier": "brave",
"advancement": [],
"crewed": false
},
"flags": {
"dnd5e": {
"sourceId": "Compendium.dnd5e.races.Item.7Yoo9hG0hfPSmBoC",
"advancementOrigin": "O3ZjSw0GtAOPScHI.nInhIgkbzzJTdm8F",
"riders": {
"activity": [],
"effect": []
}
}
},
"img": "icons/skills/melee/unarmed-punch-fist.webp",
"effects": [],
"folder": "kbtbKofcv13crhke",
"sort": 0,
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.races.Item.7Yoo9hG0hfPSmBoC",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": 1738093813671,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": null
}
},
{
"_id": "cWrETHzCRs1Ueqd3",
"name": "Halfling Nimbleness",
"ownership": {
"default": 0
},
"type": "feat",
"system": {
"description": {
"value": "<p>You can move through the space of any creature that is of a size larger than yours.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"uses": {
"max": "",
"spent": 0,
"recovery": []
},
"type": {
"value": "race",
"subtype": ""
},
"requirements": "Halfling",
"properties": [],
"activities": {},
"enchant": {},
"prerequisites": {
"level": null,
"repeatable": false
},
"identifier": "halfling-nimbleness",
"advancement": [],
"crewed": false
},
"flags": {
"dnd5e": {
"sourceId": "Compendium.dnd5e.races.Item.PqxZgcJzp1VVgP8t",
"advancementOrigin": "O3ZjSw0GtAOPScHI.nInhIgkbzzJTdm8F",
"riders": {
"activity": [],
"effect": []
}
}
},
"img": "icons/skills/movement/feet-winged-boots-brown.webp",
"effects": [],
"folder": "kbtbKofcv13crhke",
"sort": 0,
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.races.Item.PqxZgcJzp1VVgP8t",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": 1738093813706,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": null
}
},
{
"_id": "AArhiOrSkaQUnCZS",
"name": "Naturally Stealthy",
"ownership": {
"default": 0
},
"type": "feat",
"system": {
"description": {
"value": "<p>You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"uses": {
"max": "",
"spent": 0,
"recovery": []
},
"type": {
"value": "race",
"subtype": ""
},
"requirements": "Lightfoot Halfling",
"properties": [],
"activities": {},
"enchant": {},
"prerequisites": {
"level": null,
"repeatable": false
},
"identifier": "naturally-stealthy",
"advancement": [],
"crewed": false
},
"flags": {
"dnd5e": {
"sourceId": "Compendium.dnd5e.races.Item.GWPjKFeIthBBeCFJ",
"advancementOrigin": "O3ZjSw0GtAOPScHI.nInhIgkbzzJTdm8F",
"riders": {
"activity": [],
"effect": []
}
}
},
"img": "icons/magic/perception/silhouette-stealth-shadow.webp",
"effects": [],
"folder": "kbtbKofcv13crhke",
"sort": 0,
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.races.Item.GWPjKFeIthBBeCFJ",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": 1738093813743,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": null
}
},
{
"_id": "8Grf7ga6JcZF0X6x",
"name": "Monk",
"type": "class",
"img": "icons/skills/melee/hand-grip-staff-blue.webp",
"system": {
"description": {
"value": "<p>As a monk, you gain the following class features.</p><h3>Hit Points</h3><p><strong>Hit Dice:</strong> 1d8 per monk level<br /><strong>Hit Points at 1st Level:</strong> 8 + your Constitution modifier<br /><strong>Hit Points at Higher Levels:</strong> 1d8 (or 5) + your Constitution modifier per monk level after 1st</p><h3>Proficiencies</h3><p><strong>Armor:</strong> None<br /><strong>Weapons:</strong> Simple weapons, shortswords<br /><strong>Tools:</strong> Choose one type of artisan's tools or one musical instrument<br /><strong>Saving Throws:</strong> Strength, Dexterity<br /><strong>Skills:</strong> Choose two from Acrobatics, Athletics, History, Insight, Religion, and Stealth</p><h1>Monk Advancement</h1><table><thead><tr><td>Level</td><td>Proficiency Bonus</td><td>Martial Arts</td><td>Ki Points</td><td>Unarmored Movement</td><td>Features</td></tr></thead><tbody><tr><td>1st</td><td>+2</td><td>1d4</td><td>—</td><td>—</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.UAvV7N7T4zJhxdfI]{Unarmored Defense}, @UUID[Compendium.dnd5e.classfeatures.Item.l50hjTxO2r0iecKw]{Martial Arts}</td></tr><tr><td>2nd</td><td>+2</td><td>1d4</td><td>2</td><td>+10 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.10b6z2W1txNkrGP7]{Ki}, @UUID[Compendium.dnd5e.classfeatures.Item.zCeqyQ8uIPNdYJSW]{Unarmored Movement}</td></tr><tr><td>3rd</td><td>+2</td><td>1d4</td><td>3</td><td>+10 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.rtpQdX77dYWbDIOH]{Monastic Tradition}, @UUID[Compendium.dnd5e.classfeatures.Item.mzweVbnsJPQiVkAe]{Deflect Missiles}</td></tr><tr><td>4th</td><td>+2</td><td>1d4</td><td>4</td><td>+10 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, @UUID[Compendium.dnd5e.classfeatures.Item.KQz9bqxVkXjDl8gK]{Slow Fall}</td></tr><tr><td>5th</td><td>+3</td><td>1d6</td><td>5</td><td>+10 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.XogoBnFWmCAHXppo]{Extra Attack}, @UUID[Compendium.dnd5e.classfeatures.Item.pvRc6GAu1ok6zihC]{Stunning Strike}</td></tr><tr><td>6th</td><td>+3</td><td>1d6</td><td>6</td><td>+15 ft.</td><td><p>@UUID[Compendium.dnd5e.classfeatures.Item.7flZKruSSu6dHg6D]{Ki-Empowered Strikes},</p><p>Monastic Tradition feature</p></td></tr><tr><td>7th</td><td>+3</td><td>1d6</td><td>7</td><td>+15 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.a4P4DNMmH8CqSNkC]{Evasion}, @UUID[Compendium.dnd5e.classfeatures.Item.ZmC31XKS4YNENnoc]{Stillness of Mind}</td></tr><tr><td>8th</td><td>+3</td><td>1d6</td><td>8</td><td>+15 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}</td></tr><tr><td>9th</td><td>+4</td><td>1d6</td><td>9</td><td>+15 ft.</td><td>Unarmored Movement improvement</td></tr><tr><td>10th</td><td>+4</td><td>1d6</td><td>10</td><td>+20 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.bqWA7t9pDELbNRkp]{Purity of Body}</td></tr><tr><td>11th</td><td>+4</td><td>1d8</td><td>11</td><td>+20 ft.</td><td>Monastic Tradition feature</td></tr><tr><td>12th</td><td>+4</td><td>1d8</td><td>12</td><td>+20 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}</td></tr><tr><td>13th</td><td>+5</td><td>1d8</td><td>13</td><td>+20 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.XjuGBeB8Y0C3A5D4]{Tongue of the Sun and Moon}</td></tr><tr><td>14th</td><td>+5</td><td>1d8</td><td>14</td><td>+25 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.7D2EkLdISwShEDlN]{Diamond Soul}</td></tr><tr><td>15th</td><td>+5</td><td>1d8</td><td>15</td><td>+25 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.gDH8PMrKvLHaNmEI]{Timeless Body}</td></tr><tr><td>16th</td><td>+5</td><td>1d8</td><td>16</td><td>+25 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}</td></tr><tr><td>17th</td><td>+6</td><td>1d10</td><td>17</td><td>+25 ft.</td><td>Monastic Tradition feature</td></tr><tr><td>18th</td><td>+6</td><td>1d10</td><td>18</td><td>+30 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.3jwFt3hSqDswBlOH]{Empty Body}</td></tr><tr><td>19th</td><td>+6</td><td>1d10</td><td>19</td><td>+30 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}</td></tr><tr><td>20th</td><td>+6</td><td>1d10</td><td>20</td><td>+30 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.mQNPg89YIs7g5tG4]{Perfect Self}</td></tr></tbody></table><h1>Monastic Traditions</h1><p>Three traditions of monastic pursuit are common in the monasteries scattered across the multiverse. Most monasteries practice one tradition exclusively, but a few honor the three traditions and instruct each monk according to his or her aptitude and interest. All three traditions rely on the same basic techniques, diverging as the student grows more adept. Thus, a monk need choose a tradition only upon reaching 3rd level.</p><p>@UUID[Compendium.dnd5e.subclasses.Item.IvlpKMXX3PmW1NY2]{Way of the Open Hand}</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"identifier": "monk",
"levels": 1,
"advancement": [
{
"type": "HitPoints",
"configuration": {},
"value": {
"1": "max"
},
"title": "Hit Points",
"icon": "systems/dnd5e/icons/svg/hit-points.svg",
"_id": "ocxNtDFJ7YDaYaK7"
},
{
"_id": "mmAxx3U7FvXNAcKc",
"type": "Trait",
"configuration": {
"mode": "default",
"allowReplacements": false,
"grants": [
"weapon:sim",
"weapon:mar:shortsword"
],
"choices": []
},
"level": 1,
"title": "",
"value": {
"chosen": [
"weapon:sim",
"weapon:mar:shortsword"
]
}
},
{
"_id": "QPXy59CQGY9HB0c3",
"type": "Trait",
"configuration": {
"mode": "default",
"allowReplacements": false,
"grants": [],
"choices": [
{
"count": 1,
"pool": [
"tool:art:*",
"tool:music:*"
]
}
]
},
"level": 1,
"title": "",
"classRestriction": "primary",
"value": {
"chosen": [
"tool:art:brewer"
]
}
},
{
"_id": "4M8MQ1E64zbcRg6B",
"type": "Trait",
"configuration": {
"mode": "default",
"allowReplacements": false,
"grants": [
"saves:str",
"saves:dex"
],
"choices": []
},
"level": 1,
"title": "",
"classRestriction": "primary",
"value": {
"chosen": [
"saves:str",
"saves:dex"
]
}
},
{
"_id": "7HRRCPk80Ng2Evdx",
"type": "Trait",
"configuration": {
"mode": "default",
"allowReplacements": false,
"grants": [],
"choices": [
{
"count": 2,
"pool": [
"skills:acr",
"skills:ath",
"skills:his",
"skills:ins",
"skills:rel",
"skills:ste"
]
}
]
},
"level": 1,
"title": "",
"classRestriction": "primary",
"value": {
"chosen": [
"skills:acr",
"skills:ath"
]
}
},
{
"_id": "BQWHr3mt5flvkfIj",
"type": "Trait",
"configuration": {
"mode": "default",
"allowReplacements": false,
"grants": [
"di:poison",
"ci:diseased",
"ci:poisoned"
],
"choices": []
},
"level": 10,
"title": "Purity of Body",
"value": {
"chosen": []
},
"hint": "Your mastery of the ki flowing through you makes you immune to disease and poison."
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.UAvV7N7T4zJhxdfI",
"optional": false
},
{
"uuid": "Compendium.dnd5e.classfeatures.l50hjTxO2r0iecKw",
"optional": false
},
{
"uuid": "Compendium.dnd5e.classfeatures.eGxoNmSMWKNzChCO",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {
"added": {
"CwgoTDXWCD7PknIN": "Compendium.dnd5e.classfeatures.Item.UAvV7N7T4zJhxdfI",
"pchnXqd5C79fVlxy": "Compendium.dnd5e.classfeatures.Item.l50hjTxO2r0iecKw",
"RiURabP4FDYMeuWx": "Compendium.dnd5e.classfeatures.Item.eGxoNmSMWKNzChCO"
}
},
"level": 1,
"title": "Features",
"_id": "n0q8XyiGA3vLPgpK"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.10b6z2W1txNkrGP7",
"optional": false
},
{
"uuid": "Compendium.dnd5e.classfeatures.5MwNlVZK7m6VolOH",
"optional": false
},
{
"uuid": "Compendium.dnd5e.classfeatures.TDglPcxIVEzvVSgK",
"optional": false
},
{
"uuid": "Compendium.dnd5e.classfeatures.yrSFIGTaQOH2PFRI",
"optional": false
},
{
"uuid": "Compendium.dnd5e.classfeatures.zCeqyQ8uIPNdYJSW",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 2,
"title": "Features",
"_id": "7TyDqpGGi3r3nsp0"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.rtpQdX77dYWbDIOH",
"optional": false
},
{
"uuid": "Compendium.dnd5e.classfeatures.mzweVbnsJPQiVkAe",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 3,
"title": "Features",
"_id": "2sLHTw6k15DSW8WB"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.KQz9bqxVkXjDl8gK",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 4,
"title": "Features",
"_id": "Zc1jOZK1b9mIKekq"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo",
"optional": false
},
{
"uuid": "Compendium.dnd5e.classfeatures.pvRc6GAu1ok6zihC",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 5,
"title": "Features",
"_id": "j9LeWmxlsENKaMLo"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.7flZKruSSu6dHg6D",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 6,
"title": "Features",
"_id": "psobDjMqtA2216Db"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.a4P4DNMmH8CqSNkC",
"optional": false
},
{
"uuid": "Compendium.dnd5e.classfeatures.ZmC31XKS4YNENnoc",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 7,
"title": "Features",
"_id": "K38aFaEMxMqRB0BC"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.bqWA7t9pDELbNRkp",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 10,
"title": "Features",
"_id": "eLqmJotmwzlGNrxG"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.XjuGBeB8Y0C3A5D4",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 13,
"title": "Features",
"_id": "N0geIQiuofqYgswj"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.7D2EkLdISwShEDlN",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 14,
"title": "Features",
"_id": "N1hjizyI82UPp8UI"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.gDH8PMrKvLHaNmEI",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 15,
"title": "Features",
"_id": "TcLZS9WzC7bPETSd"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.3jwFt3hSqDswBlOH",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 18,
"title": "Features",
"_id": "tRb3a0tA5IpehPs8"
},
{
"type": "ItemGrant",
"configuration": {
"items": [
{
"uuid": "Compendium.dnd5e.classfeatures.mQNPg89YIs7g5tG4",
"optional": false
}
],
"optional": false,
"spell": {
"ability": [],
"preparation": "",
"uses": {
"max": "",
"per": "",
"requireSlot": false
}
}
},
"value": {},
"level": 20,
"title": "Features",
"_id": "sEQz9c9XhWYjS9x5"
},
{
"type": "ScaleValue",
"configuration": {
"identifier": "die",
"type": "dice",
"distance": {
"units": ""
},
"scale": {
"1": {
"number": null,
"faces": 4,
"modifiers": []
},
"5": {
"number": null,
"faces": 6,
"modifiers": []
},
"11": {
"number": null,
"faces": 8,
"modifiers": []
},
"17": {
"number": null,
"faces": 10,
"modifiers": []
}
}
},
"value": {},
"title": "Martial Arts Die",
"_id": "MXFbf0nxMiyLdPbX"
},
{
"type": "ScaleValue",
"configuration": {
"identifier": "unarmored-movement",
"type": "distance",
"distance": {
"units": "ft"
},
"scale": {
"2": {
"value": 10
},
"6": {
"value": 15
},
"10": {
"value": 20
},
"14": {
"value": 25
},
"18": {
"value": 30
}
}
},
"value": {},
"title": "Unarmored Movement",
"_id": "1OzfWDWCquoHMeX5"
},
{
"type": "AbilityScoreImprovement",
"configuration": {
"points": 2,
"fixed": {
"str": 0,
"dex": 0,
"con": 0,
"int": 0,
"wis": 0,
"cha": 0
},
"cap": 2,
"locked": []
},
"value": {
"type": "asi"
},
"level": 4,
"title": "Ability Score Improvement",
"_id": "ofNSUhSHKhhDuPSR"
},
{
"type": "AbilityScoreImprovement",
"configuration": {
"points": 2,
"fixed": {
"str": 0,
"dex": 0,
"con": 0,
"int": 0,
"wis": 0,
"cha": 0
},
"cap": 2,
"locked": []
},
"value": {
"type": "asi"
},
"level": 8,
"title": "Ability Score Improvement",
"_id": "s3t9o57hP6iUHirr"
},
{
"type": "AbilityScoreImprovement",
"configuration": {
"points": 2,
"fixed": {
"str": 0,
"dex": 0,
"con": 0,
"int": 0,
"wis": 0,
"cha": 0
},
"cap": 2,
"locked": []
},
"value": {
"type": "asi"
},
"level": 12,
"title": "Ability Score Improvement",
"_id": "O24MWOKc1ImsKaml"
},
{
"type": "AbilityScoreImprovement",
"configuration": {
"points": 2,
"fixed": {
"str": 0,
"dex": 0,
"con": 0,
"int": 0,
"wis": 0,
"cha": 0
},
"cap": 2,
"locked": []
},
"value": {
"type": "asi"
},
"level": 16,
"title": "Ability Score Improvement",
"_id": "xdqWoLtgO3uyl3nJ"
},
{
"_id": "puDaUsYrlks0z5gm",
"type": "AbilityScoreImprovement",
"configuration": {
"points": 2,
"fixed": {
"str": 0,
"dex": 0,
"con": 0,
"int": 0,
"wis": 0,
"cha": 0
},
"cap": 2,
"locked": []
},
"value": {
"type": "asi"
},
"level": 19,
"title": ""
},
{
"_id": "0awj2yq115ev9u9o",
"type": "Subclass",
"configuration": {},
"value": {
"document": null,
"uuid": null
},
"level": 3,
"title": "Monastic Tradition"
}
],
"spellcasting": {
"progression": "none",
"ability": "",
"preparation": {
"formula": ""
}
},
"startingEquipment": [
{
"type": "OR",
"_id": "5yj0P4r9teJDnDtd",
"group": "",
"sort": 100000,
"requiresProficiency": false
},
{
"type": "linked",
"count": null,
"key": "Compendium.dnd5e.items.Item.osLzOwQdPtrK3rQH",
"_id": "R5tuRtaPonfjQCVU",
"group": "5yj0P4r9teJDnDtd",
"sort": 200000,
"requiresProficiency": false
},
{
"type": "weapon",
"count": null,
"key": "simpleM",
"_id": "Mlf6kel8ws6xgDER",
"group": "5yj0P4r9teJDnDtd",
"sort": 300000,
"requiresProficiency": false
},
{
"type": "OR",
"_id": "3TbVLmLPtjVaSh5O",
"group": "",
"sort": 400000,
"requiresProficiency": false
},
{
"type": "linked",
"count": null,
"key": "Compendium.dnd5e.items.Item.XY8b594Dn7plACLL",
"_id": "AvDYtl0uvQsDuhnb",
"group": "3TbVLmLPtjVaSh5O",
"sort": 500000,
"requiresProficiency": false
},
{
"type": "linked",
"count": null,
"key": "Compendium.dnd5e.items.Item.8KWz5DJbWUpNWniP",
"_id": "4QKQURCmIurbTAzp",
"group": "3TbVLmLPtjVaSh5O",
"sort": 600000,
"requiresProficiency": false
},
{
"type": "linked",
"count": 10,
"key": "Compendium.dnd5e.items.Item.3rCO8MTIdPGSW6IJ",
"_id": "AOYuulsULvsHbSLO",
"group": "",
"sort": 700000,
"requiresProficiency": false
}
],
"wealth": "5d4",
"primaryAbility": {
"value": [],
"all": true
},
"hd": {
"denomination": "d8",
"spent": 0,
"additional": ""
}
},
"effects": [],
"folder": "HQ1Oy7HkbnxnE63o",
"sort": 0,
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.classes.Item.6VoZrWxhOEKGYhnq",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": 1738093997309,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": null
}
},
{
"_id": "CwgoTDXWCD7PknIN",
"name": "Unarmored Defense",
"ownership": {
"default": 0
},
"type": "feat",
"system": {
"description": {
"value": "<p>Beginning at 1st Level, while you are wearing no armor and not wielding a Shield, your AC equals 10 + your Dexterity modifier + your Wisdom modifier.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"uses": {
"max": "",
"spent": 0,
"recovery": []
},
"type": {
"value": "class",
"subtype": ""
},
"requirements": "Monk 1",
"properties": [],
"activities": {},
"enchant": {},
"prerequisites": {
"level": null,
"repeatable": false
},
"identifier": "unarmored-defense",
"advancement": [],
"crewed": false
},
"flags": {
"dnd5e": {
"sourceId": "Compendium.dnd5e.classfeatures.Item.UAvV7N7T4zJhxdfI",
"advancementOrigin": "8Grf7ga6JcZF0X6x.n0q8XyiGA3vLPgpK"
}
},
"img": "icons/magic/control/silhouette-hold-change-blue.webp",
"effects": [
{
"_id": "R5ro4AuNjcdWD56O",
"changes": [
{
"key": "system.attributes.ac.calc",
"mode": 5,
"value": "unarmoredMonk",
"priority": null
}
],
"disabled": false,
"duration": {
"startTime": 0,
"seconds": null,
"combat": null,
"rounds": null,
"turns": null,
"startRound": null,
"startTurn": null
},
"origin": "Item.cOdcNWy4hII029DT",
"transfer": true,
"flags": {},
"tint": "#ffffff",
"name": "Unarmored Defense",
"description": "",
"statuses": [],
"_stats": {
"compendiumSource": null,
"duplicateSource": null,
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"img": "icons/magic/control/silhouette-hold-change-blue.webp",
"type": "base",
"system": {},
"sort": 0
}
],
"folder": "TMmNG8ujFDBEWXRe",
"sort": 0,
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.classfeatures.Item.UAvV7N7T4zJhxdfI",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": 1738093813778,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": null
}
},
{
"_id": "pchnXqd5C79fVlxy",
"name": "Martial Arts",
"ownership": {
"default": 0
},
"type": "feat",
"system": {
"description": {
"value": "<p>At 1st level, your practice of martial arts gives you mastery of combat styles that use and monk weapons, which are shortswords and any simple melee weapons that don't have the two-handed or heavy property. You gain the following benefits while you are unarmed or wielding only monk weapons and you aren't wearing armor or wielding a shield:</p>\n<ul>\n<li>\n<p>You can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes and monk weapons.</p>\n</li>\n<li>\n<p>You can roll a d4 in place of the normal damage of your unarmed strike or monk weapon. This die changes as you gain monk levels, as shown in the Martial Arts column of the Monk table.</p>\n</li>\n<li>\n<p>When you use the Attack action with an unarmed strike or a monk weapon on your turn, you can make one unarmed strike as a bonus action. For example, if you take the Attack action and attack with a quarterstaff, you can also make an unarmed strike as a bonus action, assuming you haven't already taken a bonus action this turn.</p>\n</li>\n</ul>\n<p>Certain monasteries use specialized forms of the monk weapons. For example, you might use a club that is two lengths of wood connected by a short chain (called a nunchaku) or a sickle with a shorter, straighter blade (called a kama). Whatever name you use for a monk weapon, you can use the game statistics provided for the weapon.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"uses": {
"max": "",
"spent": 0,
"recovery": []
},
"type": {
"value": "class",
"subtype": ""
},
"requirements": "Monk 1",
"properties": [],
"activities": {},
"enchant": {},
"prerequisites": {
"level": null,
"repeatable": false
},
"identifier": "martial-arts",
"advancement": [],
"crewed": false
},
"flags": {
"dnd5e": {
"sourceId": "Compendium.dnd5e.classfeatures.Item.l50hjTxO2r0iecKw",
"advancementOrigin": "8Grf7ga6JcZF0X6x.n0q8XyiGA3vLPgpK"
}
},
"img": "icons/skills/melee/unarmed-punch-fist.webp",
"effects": [],
"folder": "TMmNG8ujFDBEWXRe",
"sort": 0,
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.classfeatures.Item.l50hjTxO2r0iecKw",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": 1738093813816,
"lastModifiedBy": "dnd5ebuilder0000",
"exportSource": null
}
},
{
"name": "Hammer",
"type": "loot",
"img": "icons/tools/hand/hammer-cobbler-steel.webp",
"system": {
"description": {
"value": "<p>A tool with a heavy metal head mounted at the end of its handle, used for jobs such as breaking things and driving in nails. </p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 3,
"units": "lb"
},
"price": {
"value": 1,
"denomination": "gp"
},
"rarity": "",
"identified": true,
"type": {
"value": "",
"subtype": ""
},
"unidentified": {
"description": ""
},
"container": null,
"properties": [],
"identifier": "hammer"
},
"effects": [],
"folder": "dlru9Hy74nSMv6fr",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.14pNRT4sZy9rgvhb",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "YJ1P3PnFKHOdQpaP",
"sort": 0
},
{
"name": "Tinderbox",
"type": "loot",
"img": "icons/sundries/lights/torch-black.webp",
"system": {
"description": {
"value": "<p>This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.</p>\n<p> </p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 1,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "sp"
},
"rarity": "",
"identified": true,
"container": "8KWz5DJbWUpNWniP",
"type": {
"value": "",
"subtype": ""
},
"unidentified": {
"description": ""
},
"properties": [],
"identifier": "tinderbox"
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.1FSubnBpSTDmVaYV",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"ownership": {
"default": 0
},
"_id": "DDnxRCeYUhXstWU8",
"sort": 0
},
{
"name": "Waterskin",
"type": "consumable",
"img": "icons/sundries/survival/wetskin-leather-purple.webp",
"system": {
"description": {
"value": "<p>A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 5,
"units": "lb"
},
"price": {
"value": 2,
"denomination": "sp"
},
"attunement": "",
"equipped": false,
"rarity": "",
"identified": true,
"uses": {
"max": "4",
"recovery": [],
"autoDestroy": false,
"spent": 0
},
"damage": {
"base": {
"number": null,
"denomination": null,
"types": [],
"custom": {
"enabled": false
},
"scaling": {
"number": 1
}
},
"replace": false
},
"container": "6OYR11aJX2dEVtOj",
"properties": [],
"type": {
"value": "food",
"subtype": ""
},
"unidentified": {
"description": ""
},
"magicalBonus": null,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "utility",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": false
},
"consumption": {
"targets": [
{
"type": "itemUses",
"target": "",
"value": "1",
"scaling": {
"mode": "",
"formula": ""
}
}
],
"scaling": {
"allowed": false,
"max": ""
},
"spellSlot": true
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": false,
"value": "",
"units": "inst",
"special": "",
"override": false
},
"effects": [],
"range": {
"units": "touch",
"special": "",
"override": false
},
"target": {
"template": {
"count": "",
"contiguous": false,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": false,
"special": ""
},
"prompt": true,
"override": false
},
"roll": {
"formula": "",
"name": "",
"prompt": false,
"visible": false
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": false,
"identifier": "waterskin"
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.1L5wkmbw0fmNAr38",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"ownership": {
"default": 0
},
"_id": "5skKSSB4ShHbKoc8",
"sort": 0
},
{
"name": "Torch",
"type": "consumable",
"img": "icons/sundries/lights/torch-black.webp",
"system": {
"description": {
"value": "<p>A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 10,
"weight": {
"value": 1,
"units": "lb"
},
"price": {
"value": 1,
"denomination": "cp"
},
"attunement": "",
"equipped": false,
"rarity": "",
"identified": true,
"uses": {
"max": "1",
"recovery": [],
"autoDestroy": false,
"spent": 0
},
"damage": {
"base": {
"number": null,
"denomination": null,
"bonus": "",
"types": [
"fire"
],
"custom": {
"enabled": true,
"formula": "1"
},
"scaling": {
"mode": "",
"number": null,
"formula": ""
}
},
"replace": false
},
"container": "8KWz5DJbWUpNWniP",
"properties": [],
"type": {
"value": "trinket",
"subtype": ""
},
"unidentified": {
"description": ""
},
"magicalBonus": null,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "attack",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": false
},
"consumption": {
"targets": [
{
"type": "itemUses",
"target": "",
"value": "1",
"scaling": {
"mode": "",
"formula": ""
}
}
],
"scaling": {
"allowed": false,
"max": ""
},
"spellSlot": true
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": false,
"value": "1",
"units": "hour",
"special": "",
"override": false
},
"effects": [],
"range": {
"units": "self",
"special": "",
"override": false
},
"target": {
"template": {
"count": "",
"contiguous": false,
"type": "radius",
"size": "40",
"width": "",
"height": "",
"units": "ft"
},
"affects": {
"count": "",
"type": "",
"choice": false,
"special": ""
},
"prompt": true,
"override": false
},
"attack": {
"ability": "str",
"bonus": "",
"critical": {
"threshold": null
},
"flat": false,
"type": {
"value": "melee",
"classification": "weapon"
}
},
"damage": {
"critical": {
"bonus": ""
},
"includeBase": true,
"parts": [
{
"number": null,
"denomination": null,
"bonus": "",
"types": [
"fire"
],
"custom": {
"enabled": true,
"formula": "1"
},
"scaling": {
"mode": "whole",
"number": null,
"formula": ""
}
}
]
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": false,
"identifier": "torch"
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.29ZLE8PERtFVD3QU",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"ownership": {
"default": 0
},
"_id": "dDuMscUuMI2bTdkj",
"sort": 0
},
{
"name": "Stick of Incense",
"type": "loot",
"img": "icons/consumables/grains/breadsticks-crackers-wrapped-ration-brown.webp",
"system": {
"description": {
"value": "<p>When blocks of incense cannot be used or a cheaper alternative is required, people often use these to perfume the air, whether for pleasurable or religious purposes.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 5,
"weight": {
"value": 0,
"units": "lb"
},
"price": {
"value": 2,
"denomination": "sp"
},
"rarity": "",
"identified": true,
"type": {
"value": "",
"subtype": ""
},
"unidentified": {
"description": ""
},
"container": null,
"properties": [],
"identifier": "stick-of-incense"
},
"effects": [],
"folder": "dlru9Hy74nSMv6fr",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.3b0RvGi0TnTYpIxn",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "nC6VcR5JAIbR4err",
"sort": 0
},
{
"name": "Dart",
"type": "weapon",
"img": "icons/weapons/thrown/dart-feathered.webp",
"system": {
"description": {
"value": "<p>A small thrown implement crafted with a short wooden shaft and crossed feathres with a sharp wooden or metal tip. Darts can be thrown with sufficient force to puncture the skin.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 10,
"weight": {
"value": 0.25,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "cp"
},
"attunement": "",
"equipped": true,
"rarity": "",
"identified": true,
"cover": null,
"range": {
"value": 20,
"long": 60,
"units": "ft",
"reach": null
},
"uses": {
"max": "",
"recovery": [],
"spent": 0
},
"damage": {
"versatile": {
"number": null,
"denomination": null,
"bonus": "",
"types": [],
"custom": {
"enabled": false,
"formula": ""
},
"scaling": {
"mode": "",
"number": null,
"formula": ""
}
},
"base": {
"number": 1,
"denomination": 4,
"bonus": "",
"types": [
"piercing"
],
"custom": {
"enabled": false,
"formula": ""
},
"scaling": {
"mode": "",
"number": null,
"formula": ""
}
}
},
"armor": {
"value": 10
},
"hp": {
"value": 0,
"max": 0,
"dt": null,
"conditions": ""
},
"properties": [
"fin",
"thr"
],
"proficient": null,
"type": {
"value": "simpleR",
"baseItem": "dart"
},
"unidentified": {
"description": ""
},
"container": null,
"crewed": false,
"magicalBonus": null,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "attack",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": false
},
"consumption": {
"targets": [],
"scaling": {
"allowed": false,
"max": ""
},
"spellSlot": true
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": false,
"value": "",
"units": "inst",
"special": "",
"override": false
},
"effects": [],
"range": {
"value": "20",
"units": "ft",
"special": "",
"override": false
},
"target": {
"template": {
"count": "",
"contiguous": false,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": false,
"special": ""
},
"prompt": true,
"override": false
},
"attack": {
"ability": "",
"bonus": "",
"critical": {
"threshold": null
},
"flat": false,
"type": {
"value": "ranged",
"classification": "weapon"
}
},
"damage": {
"critical": {
"bonus": ""
},
"includeBase": true,
"parts": []
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": false,
"ammunition": {},
"mastery": "",
"identifier": "dart"
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.3rCO8MTIdPGSW6IJ",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "WeKJI3gPUAU52WAX",
"sort": 0
},
{
"name": "Common Clothes",
"type": "equipment",
"img": "icons/equipment/chest/shirt-collared-brown.webp",
"system": {
"description": {
"value": "<p>Clothes worn by most commoners.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 3,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "sp"
},
"attunement": "",
"equipped": false,
"rarity": "",
"identified": true,
"cover": null,
"uses": {
"max": "",
"recovery": [],
"spent": 0
},
"armor": {
"value": null,
"dex": null,
"magicalBonus": null
},
"hp": {
"value": 0,
"max": 0,
"dt": null,
"conditions": ""
},
"speed": {
"value": null,
"conditions": ""
},
"strength": null,
"proficient": null,
"type": {
"value": "clothing",
"baseItem": ""
},
"unidentified": {
"description": ""
},
"container": null,
"crewed": false,
"properties": [],
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "utility",
"activation": {
"type": "",
"value": null,
"condition": "",
"override": false
},
"consumption": {
"targets": [],
"scaling": {
"allowed": false,
"max": ""
},
"spellSlot": true
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": false,
"value": "",
"units": "inst",
"special": "",
"override": false
},
"effects": [],
"range": {
"units": "self",
"special": "",
"override": false
},
"target": {
"template": {
"count": "",
"contiguous": false,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": false,
"special": ""
},
"prompt": true,
"override": false
},
"roll": {
"formula": "",
"name": "",
"prompt": false,
"visible": false
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": false,
"identifier": "common-clothes"
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.8RXjiddJ6VGyE7vB",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "1F73YcUHbZMgePAD",
"sort": 0
},
{
"name": "Rations",
"type": "consumable",
"img": "icons/consumables/grains/bread-loaf-boule-rustic-brown.webp",
"system": {
"description": {
"value": "<p>Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 10,
"weight": {
"value": 2,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "sp"
},
"attunement": "",
"equipped": false,
"rarity": "",
"identified": true,
"uses": {
"max": "1",
"recovery": [],
"autoDestroy": true,
"spent": 0
},
"damage": {
"base": {
"number": null,
"denomination": null,
"types": [],
"custom": {
"enabled": false
},
"scaling": {
"number": 1
}
},
"replace": false
},
"container": "XY8b594Dn7plACLL",
"properties": [],
"type": {
"value": "food",
"subtype": ""
},
"unidentified": {
"description": ""
},
"magicalBonus": null,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "utility",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": false
},
"consumption": {
"targets": [
{
"type": "itemUses",
"target": "",
"value": "1",
"scaling": {
"mode": "",
"formula": ""
}
}
],
"scaling": {
"allowed": false,
"max": ""
},
"spellSlot": true
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": false,
"value": "",
"units": "inst",
"special": "",
"override": false
},
"effects": [],
"range": {
"units": "touch",
"special": "",
"override": false
},
"target": {
"template": {
"count": "",
"contiguous": false,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "1",
"type": "creature",
"choice": false,
"special": ""
},
"prompt": true,
"override": false
},
"roll": {
"formula": "",
"name": "",
"prompt": false,
"visible": false
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": false,
"identifier": "rations"
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.8d95YV1jHcxPygJ9",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"ownership": {
"default": 0
},
"_id": "LQhGSEatJ3VK7oqW",
"sort": 0
},
{
"name": "Pouch",
"type": "container",
"img": "icons/containers/bags/pouch-rounded-leather-gold-tan.webp",
"system": {
"description": {
"value": "<p>A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 1,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "sp"
},
"attunement": "",
"equipped": false,
"rarity": "",
"identified": true,
"capacity": {
"weight": {
"value": 6,
"units": "lb"
},
"volume": {
"units": "cubicFoot"
}
},
"currency": {
"cp": 0,
"sp": 0,
"ep": 0,
"gp": 0,
"pp": 0
},
"unidentified": {
"description": ""
},
"container": null,
"properties": [],
"attuned": false,
"identifier": "pouch"
},
"effects": [],
"folder": "PgtyWdfkDTDbc0ov",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.9bWTRRDym06PzSAf",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "1kqMwSwjfErSFNvl",
"sort": 0
},
{
"name": "Crowbar",
"type": "loot",
"img": "icons/tools/hand/pickaxe-steel-white.webp",
"system": {
"description": {
"value": "<p>Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 5,
"units": "lb"
},
"price": {
"value": 2,
"denomination": "gp"
},
"rarity": "",
"identified": true,
"container": "XY8b594Dn7plACLL",
"type": {
"value": "",
"subtype": ""
},
"unidentified": {
"description": ""
},
"properties": [],
"identifier": "crowbar"
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.AkyQyonZMVcvOrXU",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"ownership": {
"default": 0
},
"_id": "zF5L4xHnJBC7b2iM",
"sort": 0
},
{
"name": "Unarmed Strike",
"type": "weapon",
"img": "icons/skills/melee/unarmed-punch-fist.webp",
"system": {
"description": {
"value": "<p>A punch, kick, head-butt, or similar forceful blow (none of which count as weapons). On a hit, an unarmed strike deals bludgeoning damage equal to 1 + your Strength modifier. You are proficient with your unarmed strikes.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 0,
"units": "lb"
},
"price": {
"value": 0,
"denomination": "gp"
},
"attunement": "",
"equipped": true,
"rarity": "",
"identified": true,
"cover": null,
"range": {
"value": null,
"long": null,
"units": "ft",
"reach": null
},
"uses": {
"max": "",
"recovery": [],
"spent": 0
},
"damage": {
"versatile": {
"number": null,
"denomination": null,
"bonus": "",
"types": [],
"custom": {
"enabled": false,
"formula": ""
},
"scaling": {
"mode": "",
"number": null,
"formula": ""
}
},
"base": {
"number": null,
"denomination": null,
"bonus": "",
"types": [
"bludgeoning"
],
"custom": {
"enabled": true,
"formula": "@scale.monk.die"
},
"scaling": {
"mode": "",
"number": null,
"formula": ""
}
}
},
"armor": {
"value": 10
},
"hp": {
"value": 0,
"max": 0,
"dt": null,
"conditions": ""
},
"properties": [
"fin"
],
"proficient": null,
"type": {
"value": "simpleM",
"baseItem": ""
},
"unidentified": {
"description": ""
},
"container": null,
"crewed": false,
"magicalBonus": null,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "attack",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": false
},
"consumption": {
"targets": [],
"scaling": {
"allowed": false,
"max": ""
},
"spellSlot": true
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": false,
"value": "",
"units": "inst",
"special": "",
"override": false
},
"effects": [],
"range": {
"value": "5",
"units": "ft",
"special": "",
"override": false
},
"target": {
"template": {
"count": "",
"contiguous": false,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": false,
"special": ""
},
"prompt": true,
"override": false
},
"attack": {
"ability": "",
"bonus": "",
"critical": {
"threshold": null
},
"flat": false,
"type": {
"value": "melee",
"classification": "unarmed"
}
},
"damage": {
"critical": {
"bonus": ""
},
"includeBase": true,
"parts": []
},
"uses": {
"spent": 0,
"recovery": [],
"max": ""
},
"sort": 0,
"name": ""
}
},
"attuned": false,
"ammunition": {},
"identifier": "unarmed-strike",
"mastery": ""
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
"ownership": {
"default": 0
},
"flags": {
"dnd5e": {
"last": {
"dnd5eactivity000": {
"attackMode": "oneHanded",
"damageType": {
"0": "bludgeoning"
}
}
},
"riders": {
"activity": [],
"effect": []
}
}
},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.GsuvwoekKZatfKwF",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "g7U3OAXVcoI4lwzf",
"sort": 0
},
{
"name": "Backpack",
"type": "container",
"img": "icons/containers/bags/pack-leather-white-tan.webp",
"system": {
"description": {
"value": "<p>A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 5,
"units": "lb"
},
"price": {
"value": 2,
"denomination": "gp"
},
"attunement": "",
"equipped": false,
"rarity": "",
"identified": true,
"capacity": {
"weight": {
"value": 30,
"units": "lb"
},
"volume": {
"units": "cubicFoot"
}
},
"currency": {
"cp": 0,
"sp": 0,
"ep": 0,
"gp": 0,
"pp": 0
},
"unidentified": {
"description": ""
},
"container": null,
"properties": [],
"attuned": false,
"identifier": "backpack"
},
"effects": [],
"folder": "PgtyWdfkDTDbc0ov",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.H8YCd689ezlD26aT",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "WcROGD590imVj9qp",
"sort": 0
},
{
"name": "Piton",
"type": "consumable",
"img": "icons/tools/fasteners/nail-steel.webp",
"system": {
"description": {
"value": "<p>A metal spike that is drive into a seam in a climbing surface with a climbing hammer. It can also be used like iron spikes to block doors in a pinch.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 10,
"weight": {
"value": 0.25,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "cp"
},
"attunement": "",
"equipped": false,
"rarity": "",
"identified": true,
"uses": {
"max": "1",
"recovery": [],
"autoDestroy": false,
"spent": 0
},
"damage": {
"base": {
"number": null,
"denomination": null,
"types": [],
"custom": {
"enabled": false
},
"scaling": {
"number": 1
}
},
"replace": false
},
"container": "xsB7Y2WI476kvOt4",
"properties": [],
"type": {
"value": "trinket",
"subtype": ""
},
"unidentified": {
"description": ""
},
"magicalBonus": null,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "utility",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": false
},
"consumption": {
"targets": [
{
"type": "itemUses",
"target": "",
"value": "1",
"scaling": {
"mode": "",
"formula": ""
}
}
],
"scaling": {
"allowed": false,
"max": ""
},
"spellSlot": true
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": false,
"value": "",
"units": "inst",
"special": "",
"override": false
},
"effects": [],
"range": {
"value": "5",
"units": "ft",
"special": "",
"override": false
},
"target": {
"template": {
"count": "",
"contiguous": false,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": false,
"special": ""
},
"prompt": true,
"override": false
},
"roll": {
"formula": "",
"name": "",
"prompt": false,
"visible": false
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": false,
"identifier": "piton"
},
"effects": [],
"folder": "Dx3K2y0J1wJUPP9m",
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.P31t6tGgt9aLAdYt",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"ownership": {
"default": 0
},
"_id": "8UQanAvHUIHZXp0O",
"sort": 0
},
{
"name": "Hempen Rope (50 ft.)",
"type": "consumable",
"img": "icons/sundries/survival/rope-wrapped-brown.webp",
"system": {
"description": {
"value": "<p>Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 10,
"units": "lb"
},
"price": {
"value": 1,
"denomination": "gp"
},
"attunement": "",
"equipped": false,
"rarity": "",
"identified": true,
"uses": {
"max": "1",
"recovery": [],
"autoDestroy": false,
"spent": 0
},
"damage": {
"base": {
"number": null,
"denomination": null,
"types": [],
"custom": {
"enabled": false
},
"scaling": {
"number": 1
}
},
"replace": false
},
"type": {
"value": "trinket",
"subtype": ""
},
"unidentified": {
"description": ""
},
"container": null,
"properties": [],
"magicalBonus": null,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "check",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": false
},
"consumption": {
"targets": [
{
"type": "itemUses",
"target": "",
"scaling": {},
"value": "1"
}
],
"scaling": {
"allowed": false,
"max": ""
},
"spellSlot": true
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": false,
"value": "",
"units": "inst",
"special": "",
"override": false
},
"effects": [],
"range": {
"units": "self",
"special": "",
"override": false
},
"target": {
"template": {
"count": "",
"contiguous": false,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": false,
"special": ""
},
"prompt": true,
"override": false
},
"check": {
"ability": "str",
"dc": {
"calculation": "",
"formula": "17"
},
"associated": []
},
"uses": {
"spent": 0,
"recovery": [],
"max": ""
},
"sort": 0,
"name": "Burst"
}
},
"attuned": false,
"identifier": "hempen-rope-50-ft"
},
"effects": [],
"folder": "UnUwTG4YIgd0kaUJ",
"ownership": {
"default": 0
},
"flags": {
"dnd5e": {
"riders": {
"activity": [],
"effect": []
}
}
},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.QXmaarJ4X8P0C1HV",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "irCoxLHje0eA6Qmu",
"sort": 0
},
{
"name": "Reliquary",
"type": "equipment",
"img": "icons/containers/chest/chest-reinforced-steel-red.webp",
"system": {
"description": {
"value": "<p>A tiny box or other container holding a fragment of a precious relic, saint, or other historical figure that dedicated their life to walk the path of a true believer. A deity imbues the bearer of this artifact with the ability to call forth their power and in doing so spread the faith once more.</p>\n<p><strong>Spellcasting Focus</strong>. A cleric or paladin can use a holy symbol as a spellcasting focus. To use the symbol in this way, the caster must hold it in hand, wear it visibly, or bear it on a shield.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 2,
"units": "lb"
},
"price": {
"value": 5,
"denomination": "gp"
},
"attunement": "",
"equipped": false,
"rarity": "",
"identified": true,
"cover": null,
"uses": {
"max": "",
"recovery": [],
"spent": 0
},
"armor": {
"value": null,
"dex": null,
"magicalBonus": null
},
"hp": {
"value": 0,
"max": 0,
"dt": null,
"conditions": ""
},
"speed": {
"value": null,
"conditions": ""
},
"strength": null,
"proficient": null,
"type": {
"value": "trinket",
"baseItem": ""
},
"unidentified": {
"description": ""
},
"container": null,
"crewed": false,
"properties": [
"foc"
],
"activities": {},
"attuned": false,
"identifier": "reliquary"
},
"effects": [],
"folder": "xedn1r43VWuEBcli",
"ownership": {
"default": 0
},
"flags": {
"dnd5e": {
"riders": {
"activity": [],
"effect": []
}
}
},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.gP1URGq3kVIIFHJ7",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "GfKuJYLFfw00oW9R",
"sort": 0
},
{
"name": "Vestments",
"type": "equipment",
"img": "icons/equipment/back/mantle-collared-black.webp",
"system": {
"description": {
"value": "<p>Simple or ostentacious wear, often used by priests and other religious figures for use in rituals and ceremonies.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 4,
"units": "lb"
},
"price": {
"value": 1,
"denomination": "gp"
},
"attunement": "",
"equipped": true,
"rarity": "",
"identified": true,
"cover": null,
"uses": {
"max": "",
"recovery": [],
"spent": 0
},
"armor": {
"value": null,
"dex": null,
"magicalBonus": null
},
"hp": {
"value": 0,
"max": 0,
"dt": null,
"conditions": ""
},
"speed": {
"value": null,
"conditions": ""
},
"strength": null,
"proficient": null,
"type": {
"value": "clothing",
"baseItem": ""
},
"unidentified": {
"description": ""
},
"container": null,
"crewed": false,
"properties": [],
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "utility",
"activation": {
"type": "",
"value": null,
"condition": "",
"override": false
},
"consumption": {
"targets": [],
"scaling": {
"allowed": false,
"max": ""
},
"spellSlot": true
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": false,
"value": "",
"units": "inst",
"special": "",
"override": false
},
"effects": [],
"range": {
"units": "self",
"special": "",
"override": false
},
"target": {
"template": {
"count": "",
"contiguous": false,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": false,
"special": ""
},
"prompt": true,
"override": false
},
"roll": {
"formula": "",
"name": "",
"prompt": false,
"visible": false
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": false,
"identifier": "vestments"
},
"effects": [],
"folder": "aJgMxnZED9XdoN2W",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.irtqrzaUCeshmTZp",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "NsNcJBUG5ajbk7sG",
"sort": 0
},
{
"name": "Prayer Book",
"type": "loot",
"img": "icons/sundries/books/book-purple-cross.webp",
"system": {
"description": {
"value": "<p>A book containing prayers and incantations dedicated to a specific power for the faithful to follow.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 5,
"units": "lb"
},
"price": {
"value": 25,
"denomination": "gp"
},
"rarity": "",
"identified": true,
"type": {
"value": "",
"subtype": ""
},
"unidentified": {
"description": ""
},
"container": null,
"properties": [],
"identifier": "prayer-book"
},
"effects": [],
"folder": "dlru9Hy74nSMv6fr",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.odV5cq2HSLSCH69k",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "XbF0CTipyqbMKHsB",
"sort": 0
},
{
"name": "Shortsword",
"type": "weapon",
"img": "icons/weapons/swords/sword-guard-worn-purple.webp",
"system": {
"description": {
"value": "<p>A medium sized blade with a firm crossguard and a leather-wrapped handle. A versatile weapon which makes up in versatility what it lacks in reach.</p>",
"chat": ""
},
"source": {
"custom": "",
"book": "SRD 5.1",
"page": "",
"license": "CC-BY-4.0",
"rules": "2014",
"revision": 1
},
"quantity": 1,
"weight": {
"value": 2,
"units": "lb"
},
"price": {
"value": 10,
"denomination": "gp"
},
"attunement": "",
"equipped": true,
"rarity": "",
"identified": true,
"cover": null,
"range": {
"value": null,
"long": null,
"units": "ft",
"reach": null
},
"uses": {
"max": "",
"recovery": [],
"spent": 0
},
"damage": {
"versatile": {
"number": null,
"denomination": null,
"bonus": "",
"types": [],
"custom": {
"enabled": false,
"formula": ""
},
"scaling": {
"mode": "",
"number": null,
"formula": ""
}
},
"base": {
"number": 1,
"denomination": 6,
"bonus": "",
"types": [
"piercing"
],
"custom": {
"enabled": false,
"formula": ""
},
"scaling": {
"mode": "",
"number": null,
"formula": ""
}
}
},
"armor": {
"value": 10
},
"hp": {
"value": 0,
"max": 0,
"dt": null,
"conditions": ""
},
"properties": [
"fin",
"lgt"
],
"proficient": null,
"type": {
"value": "martialM",
"baseItem": "shortsword"
},
"unidentified": {
"description": ""
},
"container": null,
"crewed": false,
"magicalBonus": null,
"activities": {
"dnd5eactivity000": {
"_id": "dnd5eactivity000",
"type": "attack",
"activation": {
"type": "action",
"value": 1,
"condition": "",
"override": false
},
"consumption": {
"targets": [],
"scaling": {
"allowed": false,
"max": ""
},
"spellSlot": true
},
"description": {
"chatFlavor": ""
},
"duration": {
"concentration": false,
"value": "",
"units": "inst",
"special": "",
"override": false
},
"effects": [],
"range": {
"value": "5",
"units": "ft",
"special": "",
"override": false
},
"target": {
"template": {
"count": "",
"contiguous": false,
"type": "",
"size": "",
"width": "",
"height": "",
"units": ""
},
"affects": {
"count": "",
"type": "",
"choice": false,
"special": ""
},
"prompt": true,
"override": false
},
"attack": {
"ability": "",
"bonus": "",
"critical": {
"threshold": null
},
"flat": false,
"type": {
"value": "melee",
"classification": "weapon"
}
},
"damage": {
"critical": {
"bonus": ""
},
"includeBase": true,
"parts": []
},
"uses": {
"spent": 0,
"recovery": []
},
"sort": 0
}
},
"attuned": false,
"ammunition": {},
"identifier": "shortsword"
},
"effects": [],
"folder": "MLMTCAvKsuFE3vYA",
"ownership": {
"default": 0
},
"flags": {},
"_stats": {
"duplicateSource": null,
"compendiumSource": "Compendium.dnd5e.items.Item.osLzOwQdPtrK3rQH",
"coreVersion": "13.344",
"systemId": "dnd5e",
"systemVersion": "4.1.0",
"createdTime": null,
"modifiedTime": null,
"lastModifiedBy": null,
"exportSource": null
},
"_id": "GYyovoNdU66nxOlX",
"sort": 0
}
],
"effects": []
}
}
});
const data = response.data;
console.log(data);
})();
📦 sockets 🏠
💭 Emojicode HTTP Client
💭 Compile: emojicodec example.🍇 -o example
💭 Run: ./example
🏁 🍇
💭 Connection settings
🔤localhost🔤 ➡️ host
3010 ➡️ port
🔤/create🔤 ➡️ path
💭 Query parameters
🔤clientId=fvtt_099ad17ea199e7e3🔤 ➡️ clientId
🔤?🧲clientId🧲🔤 ➡️ queryString
💭 Request body
🔤{"entityType":"Actor","data":{"name":"test-perrin (halfling monk)","type":"character","img":"systems/dnd5e/tokens/heroes/MonkStaff.webp","system":{"abilities":{"str":{"value":8,"proficient":1,"max":20,"bonuses":{"check":"","save":""},"check":{"roll":{"min":null,"max":null,"mode":0}},"save":{"roll":{"min":null,"max":null,"mode":0}}},"dex":{"value":16,"proficient":1,"max":20,"bonuses":{"check":"","save":""},"check":{"roll":{"min":null,"max":null,"mode":0}},"save":{"roll":{"min":null,"max":null,"mode":0}}},"con":{"value":13,"proficient":0,"max":20,"bonuses":{"check":"","save":""},"check":{"roll":{"min":null,"max":null,"mode":0}},"save":{"roll":{"min":null,"max":null,"mode":0}}},"int":{"value":12,"proficient":0,"max":20,"bonuses":{"check":"","save":""},"check":{"roll":{"min":null,"max":null,"mode":0}},"save":{"roll":{"min":null,"max":null,"mode":0}}},"wis":{"value":15,"proficient":0,"max":20,"bonuses":{"check":"","save":""},"check":{"roll":{"min":null,"max":null,"mode":0}},"save":{"roll":{"min":null,"max":null,"mode":0}}},"cha":{"value":11,"proficient":0,"max":20,"bonuses":{"check":"","save":""},"check":{"roll":{"min":null,"max":null,"mode":0}},"save":{"roll":{"min":null,"max":null,"mode":0}}}},"attributes":{"ac":{"flat":null,"calc":"unarmoredMonk","formula":""},"hp":{"value":9,"max":9,"temp":null,"tempmax":null,"bonuses":{"level":"","overall":""}},"init":{"ability":"","bonus":"0","roll":{"min":null,"max":null,"mode":0}},"movement":{"burrow":0,"climb":0,"fly":0,"swim":0,"walk":25,"units":"ft","hover":false},"attunement":{"max":3},"senses":{"darkvision":0,"blindsight":0,"tremorsense":0,"truesight":0,"units":"ft","special":""},"spellcasting":"int","death":{"success":0,"failure":0,"roll":{"min":null,"max":null,"mode":0},"bonuses":{"save":""}},"exhaustion":0,"inspiration":false,"concentration":{"ability":"","roll":{"min":null,"max":null,"mode":0},"bonuses":{"save":""},"limit":1},"loyalty":{}},"details":{"biography":{"value":"<p>A devoted student of his local monastery, Perrin has been tasked with bringing balance to the surrounding lands.</p><p><em>Token artwork by <a href=\"https://www.forgotten-adventures.net/\" target=\"_blank\" rel=\"noopener\">Forgotten Adventures</a>.</em></p>","public":""},"alignment":"True Neutral","race":"O3ZjSw0GtAOPScHI","background":"q4tr1vTU8RxtU1UZ","originalClass":"8Grf7ga6JcZF0X6x","xp":{"value":0},"appearance":"","trait":"","ideal":"","bond":"","flaw":"","eyes":"","height":"","faith":"","hair":"","weight":"","gender":"","skin":"","age":""},"traits":{"size":"sm","di":{"value":[],"bypasses":[],"custom":""},"dr":{"value":[],"bypasses":[],"custom":""},"dv":{"value":[],"bypasses":[],"custom":""},"ci":{"value":[],"custom":"Advantage against being frightenned"},"languages":{"value":["celestial","draconic","common","halfling"],"custom":"","communication":{}},"weaponProf":{"value":["sim","shortsword"],"custom":"","mastery":{"value":[],"bonus":[]}},"armorProf":{"value":[],"custom":""},"dm":{"amount":{},"bypasses":[]}},"currency":{"pp":0,"gp":15,"ep":0,"sp":0,"cp":0},"skills":{"acr":{"value":1,"ability":"dex","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"ani":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"arc":{"value":0,"ability":"int","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"ath":{"value":1,"ability":"str","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"dec":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"his":{"value":0,"ability":"int","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"ins":{"value":1,"ability":"wis","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"itm":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"inv":{"value":0,"ability":"int","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"med":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"nat":{"value":0,"ability":"int","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"prc":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"prf":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"per":{"value":0,"ability":"cha","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"rel":{"value":1,"ability":"int","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"slt":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"ste":{"value":0,"ability":"dex","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}},"sur":{"value":0,"ability":"wis","bonuses":{"check":"","passive":""},"roll":{"min":null,"max":null,"mode":0}}},"tools":{"art":{"value":1,"ability":"int","bonuses":{"check":""},"roll":{"min":null,"max":null,"mode":0}},"brewer":{"value":1,"ability":"int","bonuses":{"check":""},"roll":{"min":null,"max":null,"mode":0}}},"spells":{"spell1":{"value":0,"override":null},"spell2":{"value":0,"override":null},"spell3":{"value":0,"override":null},"spell4":{"value":0,"override":null},"spell5":{"value":0,"override":null},"spell6":{"value":0,"override":null},"spell7":{"value":0,"override":null},"spell8":{"value":0,"override":null},"spell9":{"value":0,"override":null},"pact":{"value":0,"override":null},"spell0":{"value":0,"override":null}},"bonuses":{"mwak":{"attack":"","damage":""},"rwak":{"attack":"","damage":""},"msak":{"attack":"","damage":""},"rsak":{"attack":"","damage":""},"abilities":{"check":"","save":"","skill":""},"spell":{"dc":""}},"resources":{"primary":{"value":null,"max":null,"sr":true,"lr":true,"label":"Ki"},"secondary":{"value":null,"max":null,"sr":false,"lr":false,"label":""},"tertiary":{"value":null,"max":null,"sr":false,"lr":false,"label":""}},"favorites":[{"type":"item","id":".Item.FtOM4QiOW5MwgcS3","sort":500000},{"type":"item","id":".Item.WeKJI3gPUAU52WAX","sort":600000},{"type":"item","id":".Item.g7U3OAXVcoI4lwzf","sort":550000},{"type":"item","id":".Item.GYyovoNdU66nxOlX","sort":700000}],"bastion":{"name":"","description":""}},"prototypeToken":{"flags":{},"name":"Perrin","displayName":30,"width":1,"height":1,"lockRotation":false,"rotation":0,"actorLink":true,"disposition":1,"displayBars":40,"bar1":{"attribute":"attributes.hp"},"bar2":{"attribute":"attributes.ac.value"},"randomImg":false,"alpha":1,"light":{"alpha":1,"angle":360,"bright":0,"coloration":1,"dim":0,"luminosity":0.5,"saturation":0,"contrast":0,"shadows":0,"animation":{"speed":5,"intensity":5,"type":null,"reverse":false},"darkness":{"min":0,"max":1},"color":null,"attenuation":0.5,"negative":false,"priority":0},"texture":{"src":"systems/dnd5e/tokens/heroes/MonkStaff.webp","tint":"#ffffff","scaleX":0.8,"scaleY":0.8,"offsetX":0,"offsetY":0,"rotation":0,"anchorX":0.5,"anchorY":0.5,"fit":"contain","alphaThreshold":0.75},"sight":{"angle":360,"enabled":true,"range":5,"brightness":0,"visionMode":"basic","color":null,"attenuation":0.1,"saturation":0,"contrast":0},"detectionModes":[],"appendNumber":false,"prependAdjective":false,"occludable":{"radius":0},"ring":{"enabled":false,"colors":{"ring":null,"background":null},"effects":1,"subject":{"scale":1,"texture":null}},"turnMarker":{"mode":1,"animation":null,"src":null,"disposition":false},"movementAction":null},"items":[{"name":"Priest","type":"background","system":{"description":{"value":"<ul><li><strong>Skill Proficiencies:</strong> Insight, Religion</li><li><strong>Languages:</strong> Two of your choice</li><li><strong>Equipment:</strong> A holy symbol, 5 sticks of incense, prayer book, vestments, a set of common clothes, and a pouch containing 15 gp.</li></ul>","chat":""},"source":{"custom":"","book":"","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"advancement":[],"startingEquipment":[],"identifier":"priest"},"img":"icons/sundries/documents/document-torn-diagram-tan.webp","effects":[],"folder":null,"sort":0,"ownership":{"default":0},"flags":{},"_stats":{"compendiumSource":null,"duplicateSource":null,"coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.0.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"q4tr1vTU8RxtU1UZ"},{"_id":"O3ZjSw0GtAOPScHI","name":"Lightfoot Halfling","type":"race","img":"icons/equipment/feet/shoes-leather-simple-brown.webp","system":{"description":{"value":"<p>Your halfling character has a number of traits in common with all other halflings.</p><p><em><strong>Ability Score Increase.</strong></em> Your Dexterity score increases by 2.</p><p><em><strong>Age.</strong></em> A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.</p><p><em><strong>Alignment.</strong></em> Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.</p><p><em><strong>Size.</strong></em> Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.</p><p><em><strong>Speed.</strong></em> Your base walking speed is 25 feet.</p><p><em><strong>Lucky.</strong></em> When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.</p><p><em><strong>Brave.</strong></em> You have advantage on saving throws against being frightened.</p><p><em><strong>Halfling Nimbleness.</strong></em> You can move through the space of any creature that is of a size larger than yours.</p><p><em><strong>Languages.</strong></em> You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.</p><h5>Lightfoot</h5><p>As a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others.</p><p>Lightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life.</p><p><em><strong>Ability Score Increase.</strong></em> Your Charisma score increases by 1.</p><p><em><strong>Naturally Stealthy.</strong></em> You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"identifier":"lightfoot-halfling","advancement":[{"_id":"nInhIgkbzzJTdm8F","type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.races.LOMdcNAGWh5xpfm4","optional":false},{"uuid":"Compendium.dnd5e.races.7Yoo9hG0hfPSmBoC","optional":false},{"uuid":"Compendium.dnd5e.races.PqxZgcJzp1VVgP8t","optional":false},{"uuid":"Compendium.dnd5e.races.GWPjKFeIthBBeCFJ","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{"added":{"FtOM4QiOW5MwgcS3":"Compendium.dnd5e.races.Item.LOMdcNAGWh5xpfm4","nmmihiqphHjoE8dl":"Compendium.dnd5e.races.Item.7Yoo9hG0hfPSmBoC","cWrETHzCRs1Ueqd3":"Compendium.dnd5e.races.Item.PqxZgcJzp1VVgP8t","AArhiOrSkaQUnCZS":"Compendium.dnd5e.races.Item.GWPjKFeIthBBeCFJ"}},"level":0,"title":""},{"_id":"Z9hvZFkWUNvowbQX","type":"AbilityScoreImprovement","configuration":{"points":0,"fixed":{"str":0,"dex":2,"con":0,"int":0,"wis":0,"cha":1},"cap":2,"locked":[]},"value":{"type":"asi","assignments":{"dex":2,"cha":1}},"level":0,"title":""},{"_id":"hv2bcANK5jEJZaAb","type":"Size","configuration":{"sizes":["sm"]},"value":{"size":"sm"},"level":1,"title":"","hint":"Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small."},{"_id":"nGwMjsfNU6CXHk3A","type":"Trait","configuration":{"mode":"default","allowReplacements":false,"grants":["languages:standard:common","languages:standard:halfling"],"choices":[]},"level":0,"title":"","value":{"chosen":["languages:standard:common","languages:standard:halfling"]}}],"movement":{"walk":25,"burrow":null,"climb":null,"fly":null,"swim":null,"units":"ft","hover":false},"type":{"subtype":"halfling","value":"humanoid","custom":""},"senses":{"darkvision":null,"blindsight":null,"tremorsense":null,"truesight":null,"units":"ft","special":""}},"effects":[],"ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.races.Item.ZgYBjYYfiUstQD6f","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":1738093997274,"lastModifiedBy":"dnd5ebuilder0000","exportSource":null},"sort":0,"folder":"uQNrdSpcXeoB5EnX"},{"_id":"FtOM4QiOW5MwgcS3","name":"Lucky","ownership":{"default":0},"type":"feat","system":{"description":{"value":"<p>When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.</p><section class=\"secret foundry-note\" id=\"secret-S04TPyvUh05Dz0Ng\"><p><strong>Foundry Note</strong></p><p>This property can be enabled on your character sheet in the Special Traits configuration on the Attributes tab.</p></section>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"uses":{"max":"","spent":0,"recovery":[]},"type":{"value":"race","subtype":""},"requirements":"Halfling","properties":[],"activities":{},"enchant":{},"prerequisites":{"level":null,"repeatable":false},"identifier":"lucky","advancement":[],"crewed":false},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.Item.LOMdcNAGWh5xpfm4","advancementOrigin":"O3ZjSw0GtAOPScHI.nInhIgkbzzJTdm8F","riders":{"activity":[],"effect":[]}}},"img":"icons/sundries/gaming/dice-runed-brown.webp","effects":[],"folder":"kbtbKofcv13crhke","sort":0,"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.races.Item.LOMdcNAGWh5xpfm4","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":1738093813616,"lastModifiedBy":"dnd5ebuilder0000","exportSource":null}},{"_id":"nmmihiqphHjoE8dl","name":"Brave","ownership":{"default":0},"type":"feat","system":{"description":{"value":"<p>You have advantage on saving throws against being frightened.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"uses":{"max":"","spent":0,"recovery":[]},"type":{"value":"race","subtype":""},"requirements":"Halfling","properties":[],"activities":{},"enchant":{},"prerequisites":{"level":null,"repeatable":false},"identifier":"brave","advancement":[],"crewed":false},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.Item.7Yoo9hG0hfPSmBoC","advancementOrigin":"O3ZjSw0GtAOPScHI.nInhIgkbzzJTdm8F","riders":{"activity":[],"effect":[]}}},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":"kbtbKofcv13crhke","sort":0,"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.races.Item.7Yoo9hG0hfPSmBoC","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":1738093813671,"lastModifiedBy":"dnd5ebuilder0000","exportSource":null}},{"_id":"cWrETHzCRs1Ueqd3","name":"Halfling Nimbleness","ownership":{"default":0},"type":"feat","system":{"description":{"value":"<p>You can move through the space of any creature that is of a size larger than yours.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"uses":{"max":"","spent":0,"recovery":[]},"type":{"value":"race","subtype":""},"requirements":"Halfling","properties":[],"activities":{},"enchant":{},"prerequisites":{"level":null,"repeatable":false},"identifier":"halfling-nimbleness","advancement":[],"crewed":false},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.Item.PqxZgcJzp1VVgP8t","advancementOrigin":"O3ZjSw0GtAOPScHI.nInhIgkbzzJTdm8F","riders":{"activity":[],"effect":[]}}},"img":"icons/skills/movement/feet-winged-boots-brown.webp","effects":[],"folder":"kbtbKofcv13crhke","sort":0,"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.races.Item.PqxZgcJzp1VVgP8t","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":1738093813706,"lastModifiedBy":"dnd5ebuilder0000","exportSource":null}},{"_id":"AArhiOrSkaQUnCZS","name":"Naturally Stealthy","ownership":{"default":0},"type":"feat","system":{"description":{"value":"<p>You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"uses":{"max":"","spent":0,"recovery":[]},"type":{"value":"race","subtype":""},"requirements":"Lightfoot Halfling","properties":[],"activities":{},"enchant":{},"prerequisites":{"level":null,"repeatable":false},"identifier":"naturally-stealthy","advancement":[],"crewed":false},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.races.Item.GWPjKFeIthBBeCFJ","advancementOrigin":"O3ZjSw0GtAOPScHI.nInhIgkbzzJTdm8F","riders":{"activity":[],"effect":[]}}},"img":"icons/magic/perception/silhouette-stealth-shadow.webp","effects":[],"folder":"kbtbKofcv13crhke","sort":0,"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.races.Item.GWPjKFeIthBBeCFJ","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":1738093813743,"lastModifiedBy":"dnd5ebuilder0000","exportSource":null}},{"_id":"8Grf7ga6JcZF0X6x","name":"Monk","type":"class","img":"icons/skills/melee/hand-grip-staff-blue.webp","system":{"description":{"value":"<p>As a monk, you gain the following class features.</p><h3>Hit Points</h3><p><strong>Hit Dice:</strong> 1d8 per monk level<br /><strong>Hit Points at 1st Level:</strong> 8 + your Constitution modifier<br /><strong>Hit Points at Higher Levels:</strong> 1d8 (or 5) + your Constitution modifier per monk level after 1st</p><h3>Proficiencies</h3><p><strong>Armor:</strong> None<br /><strong>Weapons:</strong> Simple weapons, shortswords<br /><strong>Tools:</strong> Choose one type of artisan's tools or one musical instrument<br /><strong>Saving Throws:</strong> Strength, Dexterity<br /><strong>Skills:</strong> Choose two from Acrobatics, Athletics, History, Insight, Religion, and Stealth</p><h1>Monk Advancement</h1><table><thead><tr><td>Level</td><td>Proficiency Bonus</td><td>Martial Arts</td><td>Ki Points</td><td>Unarmored Movement</td><td>Features</td></tr></thead><tbody><tr><td>1st</td><td>+2</td><td>1d4</td><td>—</td><td>—</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.UAvV7N7T4zJhxdfI]{Unarmored Defense}, @UUID[Compendium.dnd5e.classfeatures.Item.l50hjTxO2r0iecKw]{Martial Arts}</td></tr><tr><td>2nd</td><td>+2</td><td>1d4</td><td>2</td><td>+10 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.10b6z2W1txNkrGP7]{Ki}, @UUID[Compendium.dnd5e.classfeatures.Item.zCeqyQ8uIPNdYJSW]{Unarmored Movement}</td></tr><tr><td>3rd</td><td>+2</td><td>1d4</td><td>3</td><td>+10 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.rtpQdX77dYWbDIOH]{Monastic Tradition}, @UUID[Compendium.dnd5e.classfeatures.Item.mzweVbnsJPQiVkAe]{Deflect Missiles}</td></tr><tr><td>4th</td><td>+2</td><td>1d4</td><td>4</td><td>+10 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}, @UUID[Compendium.dnd5e.classfeatures.Item.KQz9bqxVkXjDl8gK]{Slow Fall}</td></tr><tr><td>5th</td><td>+3</td><td>1d6</td><td>5</td><td>+10 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.XogoBnFWmCAHXppo]{Extra Attack}, @UUID[Compendium.dnd5e.classfeatures.Item.pvRc6GAu1ok6zihC]{Stunning Strike}</td></tr><tr><td>6th</td><td>+3</td><td>1d6</td><td>6</td><td>+15 ft.</td><td><p>@UUID[Compendium.dnd5e.classfeatures.Item.7flZKruSSu6dHg6D]{Ki-Empowered Strikes},</p><p>Monastic Tradition feature</p></td></tr><tr><td>7th</td><td>+3</td><td>1d6</td><td>7</td><td>+15 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.a4P4DNMmH8CqSNkC]{Evasion}, @UUID[Compendium.dnd5e.classfeatures.Item.ZmC31XKS4YNENnoc]{Stillness of Mind}</td></tr><tr><td>8th</td><td>+3</td><td>1d6</td><td>8</td><td>+15 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}</td></tr><tr><td>9th</td><td>+4</td><td>1d6</td><td>9</td><td>+15 ft.</td><td>Unarmored Movement improvement</td></tr><tr><td>10th</td><td>+4</td><td>1d6</td><td>10</td><td>+20 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.bqWA7t9pDELbNRkp]{Purity of Body}</td></tr><tr><td>11th</td><td>+4</td><td>1d8</td><td>11</td><td>+20 ft.</td><td>Monastic Tradition feature</td></tr><tr><td>12th</td><td>+4</td><td>1d8</td><td>12</td><td>+20 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}</td></tr><tr><td>13th</td><td>+5</td><td>1d8</td><td>13</td><td>+20 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.XjuGBeB8Y0C3A5D4]{Tongue of the Sun and Moon}</td></tr><tr><td>14th</td><td>+5</td><td>1d8</td><td>14</td><td>+25 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.7D2EkLdISwShEDlN]{Diamond Soul}</td></tr><tr><td>15th</td><td>+5</td><td>1d8</td><td>15</td><td>+25 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.gDH8PMrKvLHaNmEI]{Timeless Body}</td></tr><tr><td>16th</td><td>+5</td><td>1d8</td><td>16</td><td>+25 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}</td></tr><tr><td>17th</td><td>+6</td><td>1d10</td><td>17</td><td>+25 ft.</td><td>Monastic Tradition feature</td></tr><tr><td>18th</td><td>+6</td><td>1d10</td><td>18</td><td>+30 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.3jwFt3hSqDswBlOH]{Empty Body}</td></tr><tr><td>19th</td><td>+6</td><td>1d10</td><td>19</td><td>+30 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.s0Cc2zcX0JzIgam5]{Ability Score Improvement}</td></tr><tr><td>20th</td><td>+6</td><td>1d10</td><td>20</td><td>+30 ft.</td><td>@UUID[Compendium.dnd5e.classfeatures.Item.mQNPg89YIs7g5tG4]{Perfect Self}</td></tr></tbody></table><h1>Monastic Traditions</h1><p>Three traditions of monastic pursuit are common in the monasteries scattered across the multiverse. Most monasteries practice one tradition exclusively, but a few honor the three traditions and instruct each monk according to his or her aptitude and interest. All three traditions rely on the same basic techniques, diverging as the student grows more adept. Thus, a monk need choose a tradition only upon reaching 3rd level.</p><p>@UUID[Compendium.dnd5e.subclasses.Item.IvlpKMXX3PmW1NY2]{Way of the Open Hand}</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"identifier":"monk","levels":1,"advancement":[{"type":"HitPoints","configuration":{},"value":{"1":"max"},"title":"Hit Points","icon":"systems/dnd5e/icons/svg/hit-points.svg","_id":"ocxNtDFJ7YDaYaK7"},{"_id":"mmAxx3U7FvXNAcKc","type":"Trait","configuration":{"mode":"default","allowReplacements":false,"grants":["weapon:sim","weapon:mar:shortsword"],"choices":[]},"level":1,"title":"","value":{"chosen":["weapon:sim","weapon:mar:shortsword"]}},{"_id":"QPXy59CQGY9HB0c3","type":"Trait","configuration":{"mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":1,"pool":["tool:art:*","tool:music:*"]}]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["tool:art:brewer"]}},{"_id":"4M8MQ1E64zbcRg6B","type":"Trait","configuration":{"mode":"default","allowReplacements":false,"grants":["saves:str","saves:dex"],"choices":[]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["saves:str","saves:dex"]}},{"_id":"7HRRCPk80Ng2Evdx","type":"Trait","configuration":{"mode":"default","allowReplacements":false,"grants":[],"choices":[{"count":2,"pool":["skills:acr","skills:ath","skills:his","skills:ins","skills:rel","skills:ste"]}]},"level":1,"title":"","classRestriction":"primary","value":{"chosen":["skills:acr","skills:ath"]}},{"_id":"BQWHr3mt5flvkfIj","type":"Trait","configuration":{"mode":"default","allowReplacements":false,"grants":["di:poison","ci:diseased","ci:poisoned"],"choices":[]},"level":10,"title":"Purity of Body","value":{"chosen":[]},"hint":"Your mastery of the ki flowing through you makes you immune to disease and poison."},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.UAvV7N7T4zJhxdfI","optional":false},{"uuid":"Compendium.dnd5e.classfeatures.l50hjTxO2r0iecKw","optional":false},{"uuid":"Compendium.dnd5e.classfeatures.eGxoNmSMWKNzChCO","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{"added":{"CwgoTDXWCD7PknIN":"Compendium.dnd5e.classfeatures.Item.UAvV7N7T4zJhxdfI","pchnXqd5C79fVlxy":"Compendium.dnd5e.classfeatures.Item.l50hjTxO2r0iecKw","RiURabP4FDYMeuWx":"Compendium.dnd5e.classfeatures.Item.eGxoNmSMWKNzChCO"}},"level":1,"title":"Features","_id":"n0q8XyiGA3vLPgpK"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.10b6z2W1txNkrGP7","optional":false},{"uuid":"Compendium.dnd5e.classfeatures.5MwNlVZK7m6VolOH","optional":false},{"uuid":"Compendium.dnd5e.classfeatures.TDglPcxIVEzvVSgK","optional":false},{"uuid":"Compendium.dnd5e.classfeatures.yrSFIGTaQOH2PFRI","optional":false},{"uuid":"Compendium.dnd5e.classfeatures.zCeqyQ8uIPNdYJSW","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":2,"title":"Features","_id":"7TyDqpGGi3r3nsp0"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.rtpQdX77dYWbDIOH","optional":false},{"uuid":"Compendium.dnd5e.classfeatures.mzweVbnsJPQiVkAe","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":3,"title":"Features","_id":"2sLHTw6k15DSW8WB"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.KQz9bqxVkXjDl8gK","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":4,"title":"Features","_id":"Zc1jOZK1b9mIKekq"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.XogoBnFWmCAHXppo","optional":false},{"uuid":"Compendium.dnd5e.classfeatures.pvRc6GAu1ok6zihC","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":5,"title":"Features","_id":"j9LeWmxlsENKaMLo"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.7flZKruSSu6dHg6D","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":6,"title":"Features","_id":"psobDjMqtA2216Db"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.a4P4DNMmH8CqSNkC","optional":false},{"uuid":"Compendium.dnd5e.classfeatures.ZmC31XKS4YNENnoc","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":7,"title":"Features","_id":"K38aFaEMxMqRB0BC"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.bqWA7t9pDELbNRkp","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":10,"title":"Features","_id":"eLqmJotmwzlGNrxG"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.XjuGBeB8Y0C3A5D4","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":13,"title":"Features","_id":"N0geIQiuofqYgswj"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.7D2EkLdISwShEDlN","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":14,"title":"Features","_id":"N1hjizyI82UPp8UI"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.gDH8PMrKvLHaNmEI","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":15,"title":"Features","_id":"TcLZS9WzC7bPETSd"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.3jwFt3hSqDswBlOH","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":18,"title":"Features","_id":"tRb3a0tA5IpehPs8"},{"type":"ItemGrant","configuration":{"items":[{"uuid":"Compendium.dnd5e.classfeatures.mQNPg89YIs7g5tG4","optional":false}],"optional":false,"spell":{"ability":[],"preparation":"","uses":{"max":"","per":"","requireSlot":false}}},"value":{},"level":20,"title":"Features","_id":"sEQz9c9XhWYjS9x5"},{"type":"ScaleValue","configuration":{"identifier":"die","type":"dice","distance":{"units":""},"scale":{"1":{"number":null,"faces":4,"modifiers":[]},"5":{"number":null,"faces":6,"modifiers":[]},"11":{"number":null,"faces":8,"modifiers":[]},"17":{"number":null,"faces":10,"modifiers":[]}}},"value":{},"title":"Martial Arts Die","_id":"MXFbf0nxMiyLdPbX"},{"type":"ScaleValue","configuration":{"identifier":"unarmored-movement","type":"distance","distance":{"units":"ft"},"scale":{"2":{"value":10},"6":{"value":15},"10":{"value":20},"14":{"value":25},"18":{"value":30}}},"value":{},"title":"Unarmored Movement","_id":"1OzfWDWCquoHMeX5"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2,"locked":[]},"value":{"type":"asi"},"level":4,"title":"Ability Score Improvement","_id":"ofNSUhSHKhhDuPSR"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2,"locked":[]},"value":{"type":"asi"},"level":8,"title":"Ability Score Improvement","_id":"s3t9o57hP6iUHirr"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2,"locked":[]},"value":{"type":"asi"},"level":12,"title":"Ability Score Improvement","_id":"O24MWOKc1ImsKaml"},{"type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2,"locked":[]},"value":{"type":"asi"},"level":16,"title":"Ability Score Improvement","_id":"xdqWoLtgO3uyl3nJ"},{"_id":"puDaUsYrlks0z5gm","type":"AbilityScoreImprovement","configuration":{"points":2,"fixed":{"str":0,"dex":0,"con":0,"int":0,"wis":0,"cha":0},"cap":2,"locked":[]},"value":{"type":"asi"},"level":19,"title":""},{"_id":"0awj2yq115ev9u9o","type":"Subclass","configuration":{},"value":{"document":null,"uuid":null},"level":3,"title":"Monastic Tradition"}],"spellcasting":{"progression":"none","ability":"","preparation":{"formula":""}},"startingEquipment":[{"type":"OR","_id":"5yj0P4r9teJDnDtd","group":"","sort":100000,"requiresProficiency":false},{"type":"linked","count":null,"key":"Compendium.dnd5e.items.Item.osLzOwQdPtrK3rQH","_id":"R5tuRtaPonfjQCVU","group":"5yj0P4r9teJDnDtd","sort":200000,"requiresProficiency":false},{"type":"weapon","count":null,"key":"simpleM","_id":"Mlf6kel8ws6xgDER","group":"5yj0P4r9teJDnDtd","sort":300000,"requiresProficiency":false},{"type":"OR","_id":"3TbVLmLPtjVaSh5O","group":"","sort":400000,"requiresProficiency":false},{"type":"linked","count":null,"key":"Compendium.dnd5e.items.Item.XY8b594Dn7plACLL","_id":"AvDYtl0uvQsDuhnb","group":"3TbVLmLPtjVaSh5O","sort":500000,"requiresProficiency":false},{"type":"linked","count":null,"key":"Compendium.dnd5e.items.Item.8KWz5DJbWUpNWniP","_id":"4QKQURCmIurbTAzp","group":"3TbVLmLPtjVaSh5O","sort":600000,"requiresProficiency":false},{"type":"linked","count":10,"key":"Compendium.dnd5e.items.Item.3rCO8MTIdPGSW6IJ","_id":"AOYuulsULvsHbSLO","group":"","sort":700000,"requiresProficiency":false}],"wealth":"5d4","primaryAbility":{"value":[],"all":true},"hd":{"denomination":"d8","spent":0,"additional":""}},"effects":[],"folder":"HQ1Oy7HkbnxnE63o","sort":0,"ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.classes.Item.6VoZrWxhOEKGYhnq","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":1738093997309,"lastModifiedBy":"dnd5ebuilder0000","exportSource":null}},{"_id":"CwgoTDXWCD7PknIN","name":"Unarmored Defense","ownership":{"default":0},"type":"feat","system":{"description":{"value":"<p>Beginning at 1st Level, while you are wearing no armor and not wielding a Shield, your AC equals 10 + your Dexterity modifier + your Wisdom modifier.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"uses":{"max":"","spent":0,"recovery":[]},"type":{"value":"class","subtype":""},"requirements":"Monk 1","properties":[],"activities":{},"enchant":{},"prerequisites":{"level":null,"repeatable":false},"identifier":"unarmored-defense","advancement":[],"crewed":false},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.Item.UAvV7N7T4zJhxdfI","advancementOrigin":"8Grf7ga6JcZF0X6x.n0q8XyiGA3vLPgpK"}},"img":"icons/magic/control/silhouette-hold-change-blue.webp","effects":[{"_id":"R5ro4AuNjcdWD56O","changes":[{"key":"system.attributes.ac.calc","mode":5,"value":"unarmoredMonk","priority":null}],"disabled":false,"duration":{"startTime":0,"seconds":null,"combat":null,"rounds":null,"turns":null,"startRound":null,"startTurn":null},"origin":"Item.cOdcNWy4hII029DT","transfer":true,"flags":{},"tint":"#ffffff","name":"Unarmored Defense","description":"","statuses":[],"_stats":{"compendiumSource":null,"duplicateSource":null,"coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"img":"icons/magic/control/silhouette-hold-change-blue.webp","type":"base","system":{},"sort":0}],"folder":"TMmNG8ujFDBEWXRe","sort":0,"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.classfeatures.Item.UAvV7N7T4zJhxdfI","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":1738093813778,"lastModifiedBy":"dnd5ebuilder0000","exportSource":null}},{"_id":"pchnXqd5C79fVlxy","name":"Martial Arts","ownership":{"default":0},"type":"feat","system":{"description":{"value":"<p>At 1st level, your practice of martial arts gives you mastery of combat styles that use and monk weapons, which are shortswords and any simple melee weapons that don't have the two-handed or heavy property. You gain the following benefits while you are unarmed or wielding only monk weapons and you aren't wearing armor or wielding a shield:</p>\n<ul>\n<li>\n<p>You can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes and monk weapons.</p>\n</li>\n<li>\n<p>You can roll a d4 in place of the normal damage of your unarmed strike or monk weapon. This die changes as you gain monk levels, as shown in the Martial Arts column of the Monk table.</p>\n</li>\n<li>\n<p>When you use the Attack action with an unarmed strike or a monk weapon on your turn, you can make one unarmed strike as a bonus action. For example, if you take the Attack action and attack with a quarterstaff, you can also make an unarmed strike as a bonus action, assuming you haven't already taken a bonus action this turn.</p>\n</li>\n</ul>\n<p>Certain monasteries use specialized forms of the monk weapons. For example, you might use a club that is two lengths of wood connected by a short chain (called a nunchaku) or a sickle with a shorter, straighter blade (called a kama). Whatever name you use for a monk weapon, you can use the game statistics provided for the weapon.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"uses":{"max":"","spent":0,"recovery":[]},"type":{"value":"class","subtype":""},"requirements":"Monk 1","properties":[],"activities":{},"enchant":{},"prerequisites":{"level":null,"repeatable":false},"identifier":"martial-arts","advancement":[],"crewed":false},"flags":{"dnd5e":{"sourceId":"Compendium.dnd5e.classfeatures.Item.l50hjTxO2r0iecKw","advancementOrigin":"8Grf7ga6JcZF0X6x.n0q8XyiGA3vLPgpK"}},"img":"icons/skills/melee/unarmed-punch-fist.webp","effects":[],"folder":"TMmNG8ujFDBEWXRe","sort":0,"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.classfeatures.Item.l50hjTxO2r0iecKw","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":1738093813816,"lastModifiedBy":"dnd5ebuilder0000","exportSource":null}},{"name":"Hammer","type":"loot","img":"icons/tools/hand/hammer-cobbler-steel.webp","system":{"description":{"value":"<p>A tool with a heavy metal head mounted at the end of its handle, used for jobs such as breaking things and driving in nails. </p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":3,"units":"lb"},"price":{"value":1,"denomination":"gp"},"rarity":"","identified":true,"type":{"value":"","subtype":""},"unidentified":{"description":""},"container":null,"properties":[],"identifier":"hammer"},"effects":[],"folder":"dlru9Hy74nSMv6fr","ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.14pNRT4sZy9rgvhb","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"YJ1P3PnFKHOdQpaP","sort":0},{"name":"Tinderbox","type":"loot","img":"icons/sundries/lights/torch-black.webp","system":{"description":{"value":"<p>This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch - or anything else with abundant, exposed fuel - takes an action. Lighting any other fire takes 1 minute.</p>\n<p> </p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":1,"units":"lb"},"price":{"value":5,"denomination":"sp"},"rarity":"","identified":true,"container":"8KWz5DJbWUpNWniP","type":{"value":"","subtype":""},"unidentified":{"description":""},"properties":[],"identifier":"tinderbox"},"effects":[],"folder":"Dx3K2y0J1wJUPP9m","flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.1FSubnBpSTDmVaYV","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"ownership":{"default":0},"_id":"DDnxRCeYUhXstWU8","sort":0},{"name":"Waterskin","type":"consumable","img":"icons/sundries/survival/wetskin-leather-purple.webp","system":{"description":{"value":"<p>A leather hide sewn into an enclosed skin which can contain up to 4 pints of liquid. It weighs 5 pounds when full; a pint of water is approximately 1 pound.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":5,"units":"lb"},"price":{"value":2,"denomination":"sp"},"attunement":"","equipped":false,"rarity":"","identified":true,"uses":{"max":"4","recovery":[],"autoDestroy":false,"spent":0},"damage":{"base":{"number":null,"denomination":null,"types":[],"custom":{"enabled":false},"scaling":{"number":1}},"replace":false},"container":"6OYR11aJX2dEVtOj","properties":[],"type":{"value":"food","subtype":""},"unidentified":{"description":""},"magicalBonus":null,"activities":{"dnd5eactivity000":{"_id":"dnd5eactivity000","type":"utility","activation":{"type":"action","value":1,"condition":"","override":false},"consumption":{"targets":[{"type":"itemUses","target":"","value":"1","scaling":{"mode":"","formula":""}}],"scaling":{"allowed":false,"max":""},"spellSlot":true},"description":{"chatFlavor":""},"duration":{"concentration":false,"value":"","units":"inst","special":"","override":false},"effects":[],"range":{"units":"touch","special":"","override":false},"target":{"template":{"count":"","contiguous":false,"type":"","size":"","width":"","height":"","units":""},"affects":{"count":"","type":"","choice":false,"special":""},"prompt":true,"override":false},"roll":{"formula":"","name":"","prompt":false,"visible":false},"uses":{"spent":0,"recovery":[]},"sort":0}},"attuned":false,"identifier":"waterskin"},"effects":[],"folder":"Dx3K2y0J1wJUPP9m","flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.1L5wkmbw0fmNAr38","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"ownership":{"default":0},"_id":"5skKSSB4ShHbKoc8","sort":0},{"name":"Torch","type":"consumable","img":"icons/sundries/lights/torch-black.webp","system":{"description":{"value":"<p>A torch burns for 1 hour, providing bright light in a 20-foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":10,"weight":{"value":1,"units":"lb"},"price":{"value":1,"denomination":"cp"},"attunement":"","equipped":false,"rarity":"","identified":true,"uses":{"max":"1","recovery":[],"autoDestroy":false,"spent":0},"damage":{"base":{"number":null,"denomination":null,"bonus":"","types":["fire"],"custom":{"enabled":true,"formula":"1"},"scaling":{"mode":"","number":null,"formula":""}},"replace":false},"container":"8KWz5DJbWUpNWniP","properties":[],"type":{"value":"trinket","subtype":""},"unidentified":{"description":""},"magicalBonus":null,"activities":{"dnd5eactivity000":{"_id":"dnd5eactivity000","type":"attack","activation":{"type":"action","value":1,"condition":"","override":false},"consumption":{"targets":[{"type":"itemUses","target":"","value":"1","scaling":{"mode":"","formula":""}}],"scaling":{"allowed":false,"max":""},"spellSlot":true},"description":{"chatFlavor":""},"duration":{"concentration":false,"value":"1","units":"hour","special":"","override":false},"effects":[],"range":{"units":"self","special":"","override":false},"target":{"template":{"count":"","contiguous":false,"type":"radius","size":"40","width":"","height":"","units":"ft"},"affects":{"count":"","type":"","choice":false,"special":""},"prompt":true,"override":false},"attack":{"ability":"str","bonus":"","critical":{"threshold":null},"flat":false,"type":{"value":"melee","classification":"weapon"}},"damage":{"critical":{"bonus":""},"includeBase":true,"parts":[{"number":null,"denomination":null,"bonus":"","types":["fire"],"custom":{"enabled":true,"formula":"1"},"scaling":{"mode":"whole","number":null,"formula":""}}]},"uses":{"spent":0,"recovery":[]},"sort":0}},"attuned":false,"identifier":"torch"},"effects":[],"folder":"Dx3K2y0J1wJUPP9m","flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.29ZLE8PERtFVD3QU","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"ownership":{"default":0},"_id":"dDuMscUuMI2bTdkj","sort":0},{"name":"Stick of Incense","type":"loot","img":"icons/consumables/grains/breadsticks-crackers-wrapped-ration-brown.webp","system":{"description":{"value":"<p>When blocks of incense cannot be used or a cheaper alternative is required, people often use these to perfume the air, whether for pleasurable or religious purposes.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":5,"weight":{"value":0,"units":"lb"},"price":{"value":2,"denomination":"sp"},"rarity":"","identified":true,"type":{"value":"","subtype":""},"unidentified":{"description":""},"container":null,"properties":[],"identifier":"stick-of-incense"},"effects":[],"folder":"dlru9Hy74nSMv6fr","ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.3b0RvGi0TnTYpIxn","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"nC6VcR5JAIbR4err","sort":0},{"name":"Dart","type":"weapon","img":"icons/weapons/thrown/dart-feathered.webp","system":{"description":{"value":"<p>A small thrown implement crafted with a short wooden shaft and crossed feathres with a sharp wooden or metal tip. Darts can be thrown with sufficient force to puncture the skin.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":10,"weight":{"value":0.25,"units":"lb"},"price":{"value":5,"denomination":"cp"},"attunement":"","equipped":true,"rarity":"","identified":true,"cover":null,"range":{"value":20,"long":60,"units":"ft","reach":null},"uses":{"max":"","recovery":[],"spent":0},"damage":{"versatile":{"number":null,"denomination":null,"bonus":"","types":[],"custom":{"enabled":false,"formula":""},"scaling":{"mode":"","number":null,"formula":""}},"base":{"number":1,"denomination":4,"bonus":"","types":["piercing"],"custom":{"enabled":false,"formula":""},"scaling":{"mode":"","number":null,"formula":""}}},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"properties":["fin","thr"],"proficient":null,"type":{"value":"simpleR","baseItem":"dart"},"unidentified":{"description":""},"container":null,"crewed":false,"magicalBonus":null,"activities":{"dnd5eactivity000":{"_id":"dnd5eactivity000","type":"attack","activation":{"type":"action","value":1,"condition":"","override":false},"consumption":{"targets":[],"scaling":{"allowed":false,"max":""},"spellSlot":true},"description":{"chatFlavor":""},"duration":{"concentration":false,"value":"","units":"inst","special":"","override":false},"effects":[],"range":{"value":"20","units":"ft","special":"","override":false},"target":{"template":{"count":"","contiguous":false,"type":"","size":"","width":"","height":"","units":""},"affects":{"count":"","type":"","choice":false,"special":""},"prompt":true,"override":false},"attack":{"ability":"","bonus":"","critical":{"threshold":null},"flat":false,"type":{"value":"ranged","classification":"weapon"}},"damage":{"critical":{"bonus":""},"includeBase":true,"parts":[]},"uses":{"spent":0,"recovery":[]},"sort":0}},"attuned":false,"ammunition":{},"mastery":"","identifier":"dart"},"effects":[],"folder":"MLMTCAvKsuFE3vYA","ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.3rCO8MTIdPGSW6IJ","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"WeKJI3gPUAU52WAX","sort":0},{"name":"Common Clothes","type":"equipment","img":"icons/equipment/chest/shirt-collared-brown.webp","system":{"description":{"value":"<p>Clothes worn by most commoners.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":3,"units":"lb"},"price":{"value":5,"denomination":"sp"},"attunement":"","equipped":false,"rarity":"","identified":true,"cover":null,"uses":{"max":"","recovery":[],"spent":0},"armor":{"value":null,"dex":null,"magicalBonus":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"speed":{"value":null,"conditions":""},"strength":null,"proficient":null,"type":{"value":"clothing","baseItem":""},"unidentified":{"description":""},"container":null,"crewed":false,"properties":[],"activities":{"dnd5eactivity000":{"_id":"dnd5eactivity000","type":"utility","activation":{"type":"","value":null,"condition":"","override":false},"consumption":{"targets":[],"scaling":{"allowed":false,"max":""},"spellSlot":true},"description":{"chatFlavor":""},"duration":{"concentration":false,"value":"","units":"inst","special":"","override":false},"effects":[],"range":{"units":"self","special":"","override":false},"target":{"template":{"count":"","contiguous":false,"type":"","size":"","width":"","height":"","units":""},"affects":{"count":"","type":"","choice":false,"special":""},"prompt":true,"override":false},"roll":{"formula":"","name":"","prompt":false,"visible":false},"uses":{"spent":0,"recovery":[]},"sort":0}},"attuned":false,"identifier":"common-clothes"},"effects":[],"folder":"aJgMxnZED9XdoN2W","ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.8RXjiddJ6VGyE7vB","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"1F73YcUHbZMgePAD","sort":0},{"name":"Rations","type":"consumable","img":"icons/consumables/grains/bread-loaf-boule-rustic-brown.webp","system":{"description":{"value":"<p>Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":10,"weight":{"value":2,"units":"lb"},"price":{"value":5,"denomination":"sp"},"attunement":"","equipped":false,"rarity":"","identified":true,"uses":{"max":"1","recovery":[],"autoDestroy":true,"spent":0},"damage":{"base":{"number":null,"denomination":null,"types":[],"custom":{"enabled":false},"scaling":{"number":1}},"replace":false},"container":"XY8b594Dn7plACLL","properties":[],"type":{"value":"food","subtype":""},"unidentified":{"description":""},"magicalBonus":null,"activities":{"dnd5eactivity000":{"_id":"dnd5eactivity000","type":"utility","activation":{"type":"action","value":1,"condition":"","override":false},"consumption":{"targets":[{"type":"itemUses","target":"","value":"1","scaling":{"mode":"","formula":""}}],"scaling":{"allowed":false,"max":""},"spellSlot":true},"description":{"chatFlavor":""},"duration":{"concentration":false,"value":"","units":"inst","special":"","override":false},"effects":[],"range":{"units":"touch","special":"","override":false},"target":{"template":{"count":"","contiguous":false,"type":"","size":"","width":"","height":"","units":""},"affects":{"count":"1","type":"creature","choice":false,"special":""},"prompt":true,"override":false},"roll":{"formula":"","name":"","prompt":false,"visible":false},"uses":{"spent":0,"recovery":[]},"sort":0}},"attuned":false,"identifier":"rations"},"effects":[],"folder":"Dx3K2y0J1wJUPP9m","flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.8d95YV1jHcxPygJ9","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"ownership":{"default":0},"_id":"LQhGSEatJ3VK7oqW","sort":0},{"name":"Pouch","type":"container","img":"icons/containers/bags/pouch-rounded-leather-gold-tan.webp","system":{"description":{"value":"<p>A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch. A pouch can hold up to ⅕ cubic foot or 6 pounds of gear.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":1,"units":"lb"},"price":{"value":5,"denomination":"sp"},"attunement":"","equipped":false,"rarity":"","identified":true,"capacity":{"weight":{"value":6,"units":"lb"},"volume":{"units":"cubicFoot"}},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0},"unidentified":{"description":""},"container":null,"properties":[],"attuned":false,"identifier":"pouch"},"effects":[],"folder":"PgtyWdfkDTDbc0ov","ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.9bWTRRDym06PzSAf","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"1kqMwSwjfErSFNvl","sort":0},{"name":"Crowbar","type":"loot","img":"icons/tools/hand/pickaxe-steel-white.webp","system":{"description":{"value":"<p>Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":5,"units":"lb"},"price":{"value":2,"denomination":"gp"},"rarity":"","identified":true,"container":"XY8b594Dn7plACLL","type":{"value":"","subtype":""},"unidentified":{"description":""},"properties":[],"identifier":"crowbar"},"effects":[],"folder":"Dx3K2y0J1wJUPP9m","flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.AkyQyonZMVcvOrXU","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"ownership":{"default":0},"_id":"zF5L4xHnJBC7b2iM","sort":0},{"name":"Unarmed Strike","type":"weapon","img":"icons/skills/melee/unarmed-punch-fist.webp","system":{"description":{"value":"<p>A punch, kick, head-butt, or similar forceful blow (none of which count as weapons). On a hit, an unarmed strike deals bludgeoning damage equal to 1 + your Strength modifier. You are proficient with your unarmed strikes.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":0,"units":"lb"},"price":{"value":0,"denomination":"gp"},"attunement":"","equipped":true,"rarity":"","identified":true,"cover":null,"range":{"value":null,"long":null,"units":"ft","reach":null},"uses":{"max":"","recovery":[],"spent":0},"damage":{"versatile":{"number":null,"denomination":null,"bonus":"","types":[],"custom":{"enabled":false,"formula":""},"scaling":{"mode":"","number":null,"formula":""}},"base":{"number":null,"denomination":null,"bonus":"","types":["bludgeoning"],"custom":{"enabled":true,"formula":"@scale.monk.die"},"scaling":{"mode":"","number":null,"formula":""}}},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"properties":["fin"],"proficient":null,"type":{"value":"simpleM","baseItem":""},"unidentified":{"description":""},"container":null,"crewed":false,"magicalBonus":null,"activities":{"dnd5eactivity000":{"_id":"dnd5eactivity000","type":"attack","activation":{"type":"action","value":1,"condition":"","override":false},"consumption":{"targets":[],"scaling":{"allowed":false,"max":""},"spellSlot":true},"description":{"chatFlavor":""},"duration":{"concentration":false,"value":"","units":"inst","special":"","override":false},"effects":[],"range":{"value":"5","units":"ft","special":"","override":false},"target":{"template":{"count":"","contiguous":false,"type":"","size":"","width":"","height":"","units":""},"affects":{"count":"","type":"","choice":false,"special":""},"prompt":true,"override":false},"attack":{"ability":"","bonus":"","critical":{"threshold":null},"flat":false,"type":{"value":"melee","classification":"unarmed"}},"damage":{"critical":{"bonus":""},"includeBase":true,"parts":[]},"uses":{"spent":0,"recovery":[],"max":""},"sort":0,"name":""}},"attuned":false,"ammunition":{},"identifier":"unarmed-strike","mastery":""},"effects":[],"folder":"MLMTCAvKsuFE3vYA","ownership":{"default":0},"flags":{"dnd5e":{"last":{"dnd5eactivity000":{"attackMode":"oneHanded","damageType":{"0":"bludgeoning"}}},"riders":{"activity":[],"effect":[]}}},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.GsuvwoekKZatfKwF","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"g7U3OAXVcoI4lwzf","sort":0},{"name":"Backpack","type":"container","img":"icons/containers/bags/pack-leather-white-tan.webp","system":{"description":{"value":"<p>A backpack can hold one cubic foot or 30 pounds of gear. You can also strap items, such as a bedroll or a coil of rope, to the outside of a backpack.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":5,"units":"lb"},"price":{"value":2,"denomination":"gp"},"attunement":"","equipped":false,"rarity":"","identified":true,"capacity":{"weight":{"value":30,"units":"lb"},"volume":{"units":"cubicFoot"}},"currency":{"cp":0,"sp":0,"ep":0,"gp":0,"pp":0},"unidentified":{"description":""},"container":null,"properties":[],"attuned":false,"identifier":"backpack"},"effects":[],"folder":"PgtyWdfkDTDbc0ov","ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.H8YCd689ezlD26aT","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"WcROGD590imVj9qp","sort":0},{"name":"Piton","type":"consumable","img":"icons/tools/fasteners/nail-steel.webp","system":{"description":{"value":"<p>A metal spike that is drive into a seam in a climbing surface with a climbing hammer. It can also be used like iron spikes to block doors in a pinch.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":10,"weight":{"value":0.25,"units":"lb"},"price":{"value":5,"denomination":"cp"},"attunement":"","equipped":false,"rarity":"","identified":true,"uses":{"max":"1","recovery":[],"autoDestroy":false,"spent":0},"damage":{"base":{"number":null,"denomination":null,"types":[],"custom":{"enabled":false},"scaling":{"number":1}},"replace":false},"container":"xsB7Y2WI476kvOt4","properties":[],"type":{"value":"trinket","subtype":""},"unidentified":{"description":""},"magicalBonus":null,"activities":{"dnd5eactivity000":{"_id":"dnd5eactivity000","type":"utility","activation":{"type":"action","value":1,"condition":"","override":false},"consumption":{"targets":[{"type":"itemUses","target":"","value":"1","scaling":{"mode":"","formula":""}}],"scaling":{"allowed":false,"max":""},"spellSlot":true},"description":{"chatFlavor":""},"duration":{"concentration":false,"value":"","units":"inst","special":"","override":false},"effects":[],"range":{"value":"5","units":"ft","special":"","override":false},"target":{"template":{"count":"","contiguous":false,"type":"","size":"","width":"","height":"","units":""},"affects":{"count":"","type":"","choice":false,"special":""},"prompt":true,"override":false},"roll":{"formula":"","name":"","prompt":false,"visible":false},"uses":{"spent":0,"recovery":[]},"sort":0}},"attuned":false,"identifier":"piton"},"effects":[],"folder":"Dx3K2y0J1wJUPP9m","flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.P31t6tGgt9aLAdYt","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"ownership":{"default":0},"_id":"8UQanAvHUIHZXp0O","sort":0},{"name":"Hempen Rope (50 ft.)","type":"consumable","img":"icons/sundries/survival/rope-wrapped-brown.webp","system":{"description":{"value":"<p>Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":10,"units":"lb"},"price":{"value":1,"denomination":"gp"},"attunement":"","equipped":false,"rarity":"","identified":true,"uses":{"max":"1","recovery":[],"autoDestroy":false,"spent":0},"damage":{"base":{"number":null,"denomination":null,"types":[],"custom":{"enabled":false},"scaling":{"number":1}},"replace":false},"type":{"value":"trinket","subtype":""},"unidentified":{"description":""},"container":null,"properties":[],"magicalBonus":null,"activities":{"dnd5eactivity000":{"_id":"dnd5eactivity000","type":"check","activation":{"type":"action","value":1,"condition":"","override":false},"consumption":{"targets":[{"type":"itemUses","target":"","scaling":{},"value":"1"}],"scaling":{"allowed":false,"max":""},"spellSlot":true},"description":{"chatFlavor":""},"duration":{"concentration":false,"value":"","units":"inst","special":"","override":false},"effects":[],"range":{"units":"self","special":"","override":false},"target":{"template":{"count":"","contiguous":false,"type":"","size":"","width":"","height":"","units":""},"affects":{"count":"","type":"","choice":false,"special":""},"prompt":true,"override":false},"check":{"ability":"str","dc":{"calculation":"","formula":"17"},"associated":[]},"uses":{"spent":0,"recovery":[],"max":""},"sort":0,"name":"Burst"}},"attuned":false,"identifier":"hempen-rope-50-ft"},"effects":[],"folder":"UnUwTG4YIgd0kaUJ","ownership":{"default":0},"flags":{"dnd5e":{"riders":{"activity":[],"effect":[]}}},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.QXmaarJ4X8P0C1HV","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"irCoxLHje0eA6Qmu","sort":0},{"name":"Reliquary","type":"equipment","img":"icons/containers/chest/chest-reinforced-steel-red.webp","system":{"description":{"value":"<p>A tiny box or other container holding a fragment of a precious relic, saint, or other historical figure that dedicated their life to walk the path of a true believer. A deity imbues the bearer of this artifact with the ability to call forth their power and in doing so spread the faith once more.</p>\n<p><strong>Spellcasting Focus</strong>. A cleric or paladin can use a holy symbol as a spellcasting focus. To use the symbol in this way, the caster must hold it in hand, wear it visibly, or bear it on a shield.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":2,"units":"lb"},"price":{"value":5,"denomination":"gp"},"attunement":"","equipped":false,"rarity":"","identified":true,"cover":null,"uses":{"max":"","recovery":[],"spent":0},"armor":{"value":null,"dex":null,"magicalBonus":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"speed":{"value":null,"conditions":""},"strength":null,"proficient":null,"type":{"value":"trinket","baseItem":""},"unidentified":{"description":""},"container":null,"crewed":false,"properties":["foc"],"activities":{},"attuned":false,"identifier":"reliquary"},"effects":[],"folder":"xedn1r43VWuEBcli","ownership":{"default":0},"flags":{"dnd5e":{"riders":{"activity":[],"effect":[]}}},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.gP1URGq3kVIIFHJ7","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"GfKuJYLFfw00oW9R","sort":0},{"name":"Vestments","type":"equipment","img":"icons/equipment/back/mantle-collared-black.webp","system":{"description":{"value":"<p>Simple or ostentacious wear, often used by priests and other religious figures for use in rituals and ceremonies.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":4,"units":"lb"},"price":{"value":1,"denomination":"gp"},"attunement":"","equipped":true,"rarity":"","identified":true,"cover":null,"uses":{"max":"","recovery":[],"spent":0},"armor":{"value":null,"dex":null,"magicalBonus":null},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"speed":{"value":null,"conditions":""},"strength":null,"proficient":null,"type":{"value":"clothing","baseItem":""},"unidentified":{"description":""},"container":null,"crewed":false,"properties":[],"activities":{"dnd5eactivity000":{"_id":"dnd5eactivity000","type":"utility","activation":{"type":"","value":null,"condition":"","override":false},"consumption":{"targets":[],"scaling":{"allowed":false,"max":""},"spellSlot":true},"description":{"chatFlavor":""},"duration":{"concentration":false,"value":"","units":"inst","special":"","override":false},"effects":[],"range":{"units":"self","special":"","override":false},"target":{"template":{"count":"","contiguous":false,"type":"","size":"","width":"","height":"","units":""},"affects":{"count":"","type":"","choice":false,"special":""},"prompt":true,"override":false},"roll":{"formula":"","name":"","prompt":false,"visible":false},"uses":{"spent":0,"recovery":[]},"sort":0}},"attuned":false,"identifier":"vestments"},"effects":[],"folder":"aJgMxnZED9XdoN2W","ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.irtqrzaUCeshmTZp","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"NsNcJBUG5ajbk7sG","sort":0},{"name":"Prayer Book","type":"loot","img":"icons/sundries/books/book-purple-cross.webp","system":{"description":{"value":"<p>A book containing prayers and incantations dedicated to a specific power for the faithful to follow.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":5,"units":"lb"},"price":{"value":25,"denomination":"gp"},"rarity":"","identified":true,"type":{"value":"","subtype":""},"unidentified":{"description":""},"container":null,"properties":[],"identifier":"prayer-book"},"effects":[],"folder":"dlru9Hy74nSMv6fr","ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.odV5cq2HSLSCH69k","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"XbF0CTipyqbMKHsB","sort":0},{"name":"Shortsword","type":"weapon","img":"icons/weapons/swords/sword-guard-worn-purple.webp","system":{"description":{"value":"<p>A medium sized blade with a firm crossguard and a leather-wrapped handle. A versatile weapon which makes up in versatility what it lacks in reach.</p>","chat":""},"source":{"custom":"","book":"SRD 5.1","page":"","license":"CC-BY-4.0","rules":"2014","revision":1},"quantity":1,"weight":{"value":2,"units":"lb"},"price":{"value":10,"denomination":"gp"},"attunement":"","equipped":true,"rarity":"","identified":true,"cover":null,"range":{"value":null,"long":null,"units":"ft","reach":null},"uses":{"max":"","recovery":[],"spent":0},"damage":{"versatile":{"number":null,"denomination":null,"bonus":"","types":[],"custom":{"enabled":false,"formula":""},"scaling":{"mode":"","number":null,"formula":""}},"base":{"number":1,"denomination":6,"bonus":"","types":["piercing"],"custom":{"enabled":false,"formula":""},"scaling":{"mode":"","number":null,"formula":""}}},"armor":{"value":10},"hp":{"value":0,"max":0,"dt":null,"conditions":""},"properties":["fin","lgt"],"proficient":null,"type":{"value":"martialM","baseItem":"shortsword"},"unidentified":{"description":""},"container":null,"crewed":false,"magicalBonus":null,"activities":{"dnd5eactivity000":{"_id":"dnd5eactivity000","type":"attack","activation":{"type":"action","value":1,"condition":"","override":false},"consumption":{"targets":[],"scaling":{"allowed":false,"max":""},"spellSlot":true},"description":{"chatFlavor":""},"duration":{"concentration":false,"value":"","units":"inst","special":"","override":false},"effects":[],"range":{"value":"5","units":"ft","special":"","override":false},"target":{"template":{"count":"","contiguous":false,"type":"","size":"","width":"","height":"","units":""},"affects":{"count":"","type":"","choice":false,"special":""},"prompt":true,"override":false},"attack":{"ability":"","bonus":"","critical":{"threshold":null},"flat":false,"type":{"value":"melee","classification":"weapon"}},"damage":{"critical":{"bonus":""},"includeBase":true,"parts":[]},"uses":{"spent":0,"recovery":[]},"sort":0}},"attuned":false,"ammunition":{},"identifier":"shortsword"},"effects":[],"folder":"MLMTCAvKsuFE3vYA","ownership":{"default":0},"flags":{},"_stats":{"duplicateSource":null,"compendiumSource":"Compendium.dnd5e.items.Item.osLzOwQdPtrK3rQH","coreVersion":"13.344","systemId":"dnd5e","systemVersion":"4.1.0","createdTime":null,"modifiedTime":null,"lastModifiedBy":null,"exportSource":null},"_id":"GYyovoNdU66nxOlX","sort":0}],"effects":[]}}🔤 ➡️ body
💭 Build HTTP request
🔤POST /create🧲queryString🧲 HTTP/1.1❌r❌nHost: localhost:3010❌r❌nx-api-key: your-api-key-here❌r❌nContent-Type: application/json❌r❌nContent-Length: 69163❌r❌n❌r❌n🧲body🧲🔤 ➡️ request
💭 Connect and send
🍺 🆕📞 host port❗ ➡️ socket
🍺 💬 socket 📇 request❗❗
💭 Read and print response
🍺 👂 socket 4096❗ ➡️ data
😀 🍺 🔡 data❗❗
💭 Close socket
🚪 socket❗
🍉
Response
Status: 200
{ "type": "create-result", "requestId": "create_1778896411997", "uuid": "Actor.S6Nh5SfYPcyyUhRg", "entity": { "effects": [], "img": "systems/dnd5e/tokens/heroes/MonkStaff.webp", "items": [ 0: { 11 keys }, 1: { 11 keys }, 2: { 11 keys }, 3: { 11 keys }, 4: { 11 keys }, 5: { 11 keys }, 6: { 11 keys }, 7: { 11 keys }, 8: { 11 keys }, 9: { 11 keys }, 10: { 11 keys }, 11: { 11 keys }, 12: { 11 keys }, 13: { 11 keys }, 14: { 11 keys }, 15: { 11 keys }, 16: { 11 keys }, 17: { 11 keys }, 18: { 11 keys }, 19: { 11 keys }, 20: { 11 keys }, 21: { 11 keys }, 22: { 11 keys }, 23: { 11 keys }, 24: { 11 keys }, 25: { 11 keys }, 26: { 11 keys } ], "name": "test-perrin (halfling monk)", "prototypeToken": { "actorLink": true, "alpha": 1, "appendNumber": false, "bar1": { 1 key }, "bar2": { 1 key }, "detectionModes": [], "displayBars": 40, "displayName": 30, "disposition": 1, "flags": {}, "height": 1, "light": { 15 keys }, "lockRotation": false, "movementAction": null, "name": "Perrin", "occludable": { 1 key }, "prependAdjective": false, "randomImg": false, "ring": { 4 keys }, "rotation": 0, "sight": { 9 keys }, "texture": { 11 keys }, "turnMarker": { 4 keys }, "width": 1 }, "system": { "abilities": { 6 keys }, "attributes": { 12 keys }, "bastion": { 2 keys }, "bonuses": { 6 keys }, "currency": { 5 keys }, "details": { 19 keys }, "favorites": [ 4 items ], "resources": { 3 keys }, "skills": { 18 keys }, "spells": { 11 keys }, "tools": { 2 keys }, "traits": { 9 keys } }, "type": "character", "folder": null, "_id": "S6Nh5SfYPcyyUhRg", "sort": 0, "ownership": { "default": 0, "r6bXhB7k9cXa3cif": 3 }, "flags": {}, "_stats": { "compendiumSource": null, "duplicateSource": null, "exportSource": null, "coreVersion": "13.348", "systemId": "dnd5e", "systemVersion": "5.0.4", "createdTime": 1778896412043, "modifiedTime": 1778896412043, "lastModifiedBy": "r6bXhB7k9cXa3cif" } }}
PUT /update
Update an entity
This endpoint updates an existing entity in the Foundry world.
Required scope: entity:write
Parameters
| Name | Type | Required | Source | Description |
|---|---|---|---|---|
| data | object | ✓ | body | Object containing the fields to update |
| clientId | string | query | Client ID for the Foundry world | |
| uuid | string | query | UUID of the entity to retrieve (optional if selected=true) | |
| selected | boolean | query, body | Whether to get the selected entity | |
| actor | boolean | query | Whether to update the actor of specified entity | |
| userId | string | query, body | Foundry user ID or username to scope permissions (omit for GM-level access) |
Returns
object - Result of the entity update operation
Try It Out
Code Examples
- JavaScript
- cURL
- Python
- TypeScript
- Emojicode
const baseUrl = 'http://localhost:3010';
const path = '/update';
const params = {
clientId: 'fvtt_099ad17ea199e7e3',
uuid: 'Actor.S6Nh5SfYPcyyUhRg'
};
const queryString = new URLSearchParams(params).toString();
const url = `${baseUrl}${path}?${queryString}`;
const response = await fetch(url, {
method: 'PUT',
headers: {
'x-api-key': 'your-api-key-here',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"data": {
"name": "Updated Test Actor"
}
})
});
const data = await response.json();
console.log(data);
curl -X PUT 'http://localhost:3010/update?clientId=fvtt_099ad17ea199e7e3&uuid=Actor.S6Nh5SfYPcyyUhRg' \
-H "x-api-key: your-api-key-here" \
-H "Content-Type: application/json" \
-d '{"data":{"name":"Updated Test Actor"}}'
import requests
base_url = 'http://localhost:3010'
path = '/update'
params = {
'clientId': 'fvtt_099ad17ea199e7e3',
'uuid': 'Actor.S6Nh5SfYPcyyUhRg'
}
url = f'{base_url}{path}'
response = requests.put(
url,
params=params,
headers={
'x-api-key': 'your-api-key-here'
},
json={
"data": {
"name": "Updated Test Actor"
}
}
)
data = response.json()
print(data)
import axios from 'axios';
(async () => {
const baseUrl = 'http://localhost:3010';
const path = '/update';
const params = {
clientId: 'fvtt_099ad17ea199e7e3',
uuid: 'Actor.S6Nh5SfYPcyyUhRg'
};
const queryString = new URLSearchParams(params).toString();
const url = `${baseUrl}${path}?${queryString}`;
const response = await axios({
method: 'put',
headers: {
'x-api-key': 'your-api-key-here',
'Content-Type': 'application/json'
},
url,
data: {
"data": {
"name": "Updated Test Actor"
}
}
});
const data = response.data;
console.log(data);
})();
📦 sockets 🏠
💭 Emojicode HTTP Client
💭 Compile: emojicodec example.🍇 -o example
💭 Run: ./example
🏁 🍇
💭 Connection settings
🔤localhost🔤 ➡️ host
3010 ➡️ port
🔤/update🔤 ➡️ path
💭 Query parameters
🔤clientId=fvtt_099ad17ea199e7e3🔤 ➡️ clientId
🔤uuid=Actor.S6Nh5SfYPcyyUhRg🔤 ➡️ uuid
🔤?🧲clientId🧲&🧲uuid🧲🔤 ➡️ queryString
💭 Request body
🔤{"data":{"name":"Updated Test Actor"}}🔤 ➡️ body
💭 Build HTTP request
🔤PUT /update🧲queryString🧲 HTTP/1.1❌r❌nHost: localhost:3010❌r❌nx-api-key: your-api-key-here❌r❌nContent-Type: application/json❌r❌nContent-Length: 38❌r❌n❌r❌n🧲body🧲🔤 ➡️ request
💭 Connect and send
🍺 🆕📞 host port❗ ➡️ socket
🍺 💬 socket 📇 request❗❗
💭 Read and print response
🍺 👂 socket 4096❗ ➡️ data
😀 🍺 🔡 data❗❗
💭 Close socket
🚪 socket❗
🍉
Response
Status: 200
{ "type": "update-result", "requestId": "update_1778896412503", "uuid": "Actor.S6Nh5SfYPcyyUhRg", "entity": [ 0: { "effects": [], "img": "systems/dnd5e/tokens/heroes/MonkStaff.webp", "items": [ 27 items ], "name": "Updated Test Actor", "prototypeToken": { 24 keys }, "system": { 12 keys }, "type": "character", "folder": null, "_id": "S6Nh5SfYPcyyUhRg", "sort": 0, "ownership": { 2 keys }, "flags": {}, "_stats": { 9 keys } } ]}
DELETE /delete
Delete an entity
This endpoint deletes an entity from the Foundry world.
Required scope: entity:write
Parameters
| Name | Type | Required | Source | Description |
|---|---|---|---|---|
| clientId | string | query | Client ID for the Foundry world | |
| uuid | string | query | UUID of the entity to retrieve (optional if selected=true) | |
| selected | boolean | query, body | Whether to get the selected entity | |
| userId | string | query, body | Foundry user ID or username to scope permissions (omit for GM-level access) |
Returns
object - Result of the entity deletion operation
Try It Out
Code Examples
- JavaScript
- cURL
- Python
- TypeScript
- Emojicode
const baseUrl = 'http://localhost:3010';
const path = '/delete';
const params = {
clientId: 'fvtt_099ad17ea199e7e3',
uuid: 'Actor.Avvd0LZLXpkrgx5e'
};
const queryString = new URLSearchParams(params).toString();
const url = `${baseUrl}${path}?${queryString}`;
const response = await fetch(url, {
method: 'DELETE',
headers: {
'x-api-key': 'your-api-key-here'
}
});
const data = await response.json();
console.log(data);
curl -X DELETE 'http://localhost:3010/delete?clientId=fvtt_099ad17ea199e7e3&uuid=Actor.Avvd0LZLXpkrgx5e' \
-H "x-api-key: your-api-key-here"
import requests
base_url = 'http://localhost:3010'
path = '/delete'
params = {
'clientId': 'fvtt_099ad17ea199e7e3',
'uuid': 'Actor.Avvd0LZLXpkrgx5e'
}
url = f'{base_url}{path}'
response = requests.delete(
url,
params=params,
headers={
'x-api-key': 'your-api-key-here'
}
)
data = response.json()
print(data)
import axios from 'axios';
(async () => {
const baseUrl = 'http://localhost:3010';
const path = '/delete';
const params = {
clientId: 'fvtt_099ad17ea199e7e3',
uuid: 'Actor.Avvd0LZLXpkrgx5e'
};
const queryString = new URLSearchParams(params).toString();
const url = `${baseUrl}${path}?${queryString}`;
const response = await axios({
method: 'delete',
headers: {
'x-api-key': 'your-api-key-here'
},
url
});
const data = response.data;
console.log(data);
})();
📦 sockets 🏠
💭 Emojicode HTTP Client
💭 Compile: emojicodec example.🍇 -o example
💭 Run: ./example
🏁 🍇
💭 Connection settings
🔤localhost🔤 ➡️ host
3010 ➡️ port
🔤/delete🔤 ➡️ path
💭 Query parameters
🔤clientId=fvtt_099ad17ea199e7e3🔤 ➡️ clientId
🔤uuid=Actor.Avvd0LZLXpkrgx5e🔤 ➡️ uuid
🔤?🧲clientId🧲&🧲uuid🧲🔤 ➡️ queryString
💭 Build HTTP request
🔤DELETE /delete🧲queryString🧲 HTTP/1.1❌r❌nHost: localhost:3010❌r❌nx-api-key: your-api-key-here❌r❌n❌r❌n🔤 ➡️ request
💭 Connect and send
🍺 🆕📞 host port❗ ➡️ socket
🍺 💬 socket 📇 request❗❗
💭 Read and print response
🍺 👂 socket 4096❗ ➡️ data
😀 🍺 🔡 data❗❗
💭 Close socket
🚪 socket❗
🍉
Response
Status: 200
{ "type": "delete-result", "requestId": "delete_1778896412535", "uuid": "Actor.Avvd0LZLXpkrgx5e", "success": true}
POST /give
Give an item to another entity
Transfers an item from one entity to another.
Required scope: entity:write
Parameters
| Name | Type | Required | Source | Description |
|---|---|---|---|---|
| clientId | string | query | Client ID for the Foundry world | |
| fromUuid | string | body | UUID of the entity giving the item | |
| toUuid | string | body | UUID of the entity receiving the item | |
| selected | boolean | query, body | Whether to get the selected entity | |
| itemUuid | string | body | UUID of the item to give | |
| itemName | string | body | Name of the item to give (alternative to itemUuid) | |
| quantity | number | body | Quantity of items to give | |
| userId | string | query, body | Foundry user ID or username to scope permissions (omit for GM-level access) |
Returns
object - Result of the give operation
Try It Out
Code Examples
- JavaScript
- cURL
- Python
- TypeScript
- Emojicode
const baseUrl = 'http://localhost:3010';
const path = '/give';
const params = {
clientId: 'fvtt_099ad17ea199e7e3'
};
const queryString = new URLSearchParams(params).toString();
const url = `${baseUrl}${path}?${queryString}`;
const response = await fetch(url, {
method: 'POST',
headers: {
'x-api-key': 'your-api-key-here',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"toUuid": "Actor.S6Nh5SfYPcyyUhRg",
"itemUuid": "Item.k5ZHEEVLu6thhtYY",
"quantity": 1
})
});
const data = await response.json();
console.log(data);
curl -X POST 'http://localhost:3010/give?clientId=fvtt_099ad17ea199e7e3' \
-H "x-api-key: your-api-key-here" \
-H "Content-Type: application/json" \
-d '{"toUuid":"Actor.S6Nh5SfYPcyyUhRg","itemUuid":"Item.k5ZHEEVLu6thhtYY","quantity":1}'
import requests
base_url = 'http://localhost:3010'
path = '/give'
params = {
'clientId': 'fvtt_099ad17ea199e7e3'
}
url = f'{base_url}{path}'
response = requests.post(
url,
params=params,
headers={
'x-api-key': 'your-api-key-here'
},
json={
"toUuid": "Actor.S6Nh5SfYPcyyUhRg",
"itemUuid": "Item.k5ZHEEVLu6thhtYY",
"quantity": 1
}
)
data = response.json()
print(data)
import axios from 'axios';
(async () => {
const baseUrl = 'http://localhost:3010';
const path = '/give';
const params = {
clientId: 'fvtt_099ad17ea199e7e3'
};
const queryString = new URLSearchParams(params).toString();
const url = `${baseUrl}${path}?${queryString}`;
const response = await axios({
method: 'post',
headers: {
'x-api-key': 'your-api-key-here',
'Content-Type': 'application/json'
},
url,
data: {
"toUuid": "Actor.S6Nh5SfYPcyyUhRg",
"itemUuid": "Item.k5ZHEEVLu6thhtYY",
"quantity": 1
}
});
const data = response.data;
console.log(data);
})();
📦 sockets 🏠
💭 Emojicode HTTP Client
💭 Compile: emojicodec example.🍇 -o example
💭 Run: ./example
🏁 🍇
💭 Connection settings
🔤localhost🔤 ➡️ host
3010 ➡️ port
🔤/give🔤 ➡️ path
💭 Query parameters
🔤clientId=fvtt_099ad17ea199e7e3🔤 ➡️ clientId
🔤?🧲clientId🧲🔤 ➡️ queryString
💭 Request body
🔤{"toUuid":"Actor.S6Nh5SfYPcyyUhRg","itemUuid":"Item.k5ZHEEVLu6thhtYY","quantity":1}🔤 ➡️ body
💭 Build HTTP request
🔤POST /give🧲queryString🧲 HTTP/1.1❌r❌nHost: localhost:3010❌r❌nx-api-key: your-api-key-here❌r❌nContent-Type: application/json❌r❌nContent-Length: 83❌r❌n❌r❌n🧲body🧲🔤 ➡️ request
💭 Connect and send
🍺 🆕📞 host port❗ ➡️ socket
🍺 💬 socket 📇 request❗❗
💭 Read and print response
🍺 👂 socket 4096❗ ➡️ data
😀 🍺 🔡 data❗❗
💭 Close socket
🚪 socket❗
🍉
Response
Status: 200
{ "type": "give-result", "requestId": "give_1778896412548", "toUuid": "Actor.S6Nh5SfYPcyyUhRg", "quantity": 1, "itemUuid": "Item.k5ZHEEVLu6thhtYY", "newItemId": "6yZnAvFbTyrUVQKp", "success": true}
POST /remove
Remove an item from an entity
Removes an item from an entity's inventory.
Required scope: entity:write
Parameters
| Name | Type | Required | Source | Description |
|---|---|---|---|---|
| clientId | string | query | Client ID for the Foundry world | |
| actorUuid | string | body | UUID of the actor to remove the item from | |
| selected | boolean | query, body | Whether to get the selected entity | |
| itemUuid | string | body | UUID of the item to remove | |
| itemName | string | body | Name of the item to remove (alternative to itemUuid) | |
| quantity | number | body | Quantity of items to remove | |
| userId | string | query, body | Foundry user ID or username to scope permissions (omit for GM-level access) |
Returns
object - Result of the remove operation
Try It Out
Code Examples
- JavaScript
- cURL
- Python
- TypeScript
- Emojicode
const baseUrl = 'http://localhost:3010';
const path = '/remove';
const params = {
clientId: 'fvtt_099ad17ea199e7e3'
};
const queryString = new URLSearchParams(params).toString();
const url = `${baseUrl}${path}?${queryString}`;
const response = await fetch(url, {
method: 'POST',
headers: {
'x-api-key': 'your-api-key-here',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"actorUuid": "Actor.S6Nh5SfYPcyyUhRg",
"itemUuid": "Actor.S6Nh5SfYPcyyUhRg.Item.6yZnAvFbTyrUVQKp",
"quantity": 1
})
});
const data = await response.json();
console.log(data);
curl -X POST 'http://localhost:3010/remove?clientId=fvtt_099ad17ea199e7e3' \
-H "x-api-key: your-api-key-here" \
-H "Content-Type: application/json" \
-d '{"actorUuid":"Actor.S6Nh5SfYPcyyUhRg","itemUuid":"Actor.S6Nh5SfYPcyyUhRg.Item.6yZnAvFbTyrUVQKp","quantity":1}'
import requests
base_url = 'http://localhost:3010'
path = '/remove'
params = {
'clientId': 'fvtt_099ad17ea199e7e3'
}
url = f'{base_url}{path}'
response = requests.post(
url,
params=params,
headers={
'x-api-key': 'your-api-key-here'
},
json={
"actorUuid": "Actor.S6Nh5SfYPcyyUhRg",
"itemUuid": "Actor.S6Nh5SfYPcyyUhRg.Item.6yZnAvFbTyrUVQKp",
"quantity": 1
}
)
data = response.json()
print(data)
import axios from 'axios';
(async () => {
const baseUrl = 'http://localhost:3010';
const path = '/remove';
const params = {
clientId: 'fvtt_099ad17ea199e7e3'
};
const queryString = new URLSearchParams(params).toString();
const url = `${baseUrl}${path}?${queryString}`;
const response = await axios({
method: 'post',
headers: {
'x-api-key': 'your-api-key-here',
'Content-Type': 'application/json'
},
url,
data: {
"actorUuid": "Actor.S6Nh5SfYPcyyUhRg",
"itemUuid": "Actor.S6Nh5SfYPcyyUhRg.Item.6yZnAvFbTyrUVQKp",
"quantity": 1
}
});
const data = response.data;
console.log(data);
})();
📦 sockets 🏠
💭 Emojicode HTTP Client
💭 Compile: emojicodec example.🍇 -o example
💭 Run: ./example
🏁 🍇
💭 Connection settings
🔤localhost🔤 ➡️ host
3010 ➡️ port
🔤/remove🔤 ➡️ path
💭 Query parameters
🔤clientId=fvtt_099ad17ea199e7e3🔤 ➡️ clientId
🔤?🧲clientId🧲🔤 ➡️ queryString
💭 Request body
🔤{"actorUuid":"Actor.S6Nh5SfYPcyyUhRg","itemUuid":"Actor.S6Nh5SfYPcyyUhRg.Item.6yZnAvFbTyrUVQKp","quantity":1}🔤 ➡️ body
💭 Build HTTP request
🔤POST /remove🧲queryString🧲 HTTP/1.1❌r❌nHost: localhost:3010❌r❌nx-api-key: your-api-key-here❌r❌nContent-Type: application/json❌r❌nContent-Length: 109❌r❌n❌r❌n🧲body🧲🔤 ➡️ request
💭 Connect and send
🍺 🆕📞 host port❗ ➡️ socket
🍺 💬 socket 📇 request❗❗
💭 Read and print response
🍺 👂 socket 4096❗ ➡️ data
😀 🍺 🔡 data❗❗
💭 Close socket
🚪 socket❗
🍉
Response
Status: 200
{ "type": "remove-result", "requestId": "remove_1778896412577", "actorUuid": "Actor.S6Nh5SfYPcyyUhRg", "itemUuid": "Actor.S6Nh5SfYPcyyUhRg.Item.6yZnAvFbTyrUVQKp", "quantity": 0, "success": true}
POST /decrease
Decrease an attribute
Decreases a numeric attribute of an entity by the specified amount.
Required scope: entity:write
Parameters
| Name | Type | Required | Source | Description |
|---|---|---|---|---|
| attribute | string | ✓ | body | The attribute to decrease (e.g., hp.value) |
| amount | number | ✓ | body | The amount to decrease by |
| clientId | string | query | Client ID for the Foundry world | |
| uuid | string | query | UUID of the entity to retrieve (optional if selected=true) | |
| selected | boolean | query, body | Whether to get the selected entity | |
| userId | string | query, body | Foundry user ID or username to scope permissions (omit for GM-level access) |
Returns
object - Result of the decrease operation
Try It Out
Code Examples
- JavaScript
- cURL
- Python
- TypeScript
- Emojicode
const baseUrl = 'http://localhost:3010';
const path = '/decrease';
const params = {
clientId: 'fvtt_099ad17ea199e7e3',
uuid: 'Actor.S6Nh5SfYPcyyUhRg'
};
const queryString = new URLSearchParams(params).toString();
const url = `${baseUrl}${path}?${queryString}`;
const response = await fetch(url, {
method: 'POST',
headers: {
'x-api-key': 'your-api-key-here',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"attribute": "prototypeToken.height",
"amount": 5
})
});
const data = await response.json();
console.log(data);
curl -X POST 'http://localhost:3010/decrease?clientId=fvtt_099ad17ea199e7e3&uuid=Actor.S6Nh5SfYPcyyUhRg' \
-H "x-api-key: your-api-key-here" \
-H "Content-Type: application/json" \
-d '{"attribute":"prototypeToken.height","amount":5}'
import requests
base_url = 'http://localhost:3010'
path = '/decrease'
params = {
'clientId': 'fvtt_099ad17ea199e7e3',
'uuid': 'Actor.S6Nh5SfYPcyyUhRg'
}
url = f'{base_url}{path}'
response = requests.post(
url,
params=params,
headers={
'x-api-key': 'your-api-key-here'
},
json={
"attribute": "prototypeToken.height",
"amount": 5
}
)
data = response.json()
print(data)
import axios from 'axios';
(async () => {
const baseUrl = 'http://localhost:3010';
const path = '/decrease';
const params = {
clientId: 'fvtt_099ad17ea199e7e3',
uuid: 'Actor.S6Nh5SfYPcyyUhRg'
};
const queryString = new URLSearchParams(params).toString();
const url = `${baseUrl}${path}?${queryString}`;
const response = await axios({
method: 'post',
headers: {
'x-api-key': 'your-api-key-here',
'Content-Type': 'application/json'
},
url,
data: {
"attribute": "prototypeToken.height",
"amount": 5
}
});
const data = response.data;
console.log(data);
})();
📦 sockets 🏠
💭 Emojicode HTTP Client
💭 Compile: emojicodec example.🍇 -o example
💭 Run: ./example
🏁 🍇
💭 Connection settings
🔤localhost🔤 ➡️ host
3010 ➡️ port
🔤/decrease🔤 ➡️ path
💭 Query parameters
🔤clientId=fvtt_099ad17ea199e7e3🔤 ➡️ clientId
🔤uuid=Actor.S6Nh5SfYPcyyUhRg🔤 ➡️ uuid
🔤?🧲clientId🧲&🧲uuid🧲🔤 ➡️ queryString
💭 Request body
🔤{"attribute":"prototypeToken.height","amount":5}🔤 ➡️ body
💭 Build HTTP request
🔤POST /decrease🧲queryString🧲 HTTP/1.1❌r❌nHost: localhost:3010❌r❌nx-api-key: your-api-key-here❌r❌nContent-Type: application/json❌r❌nContent-Length: 48❌r❌n❌r❌n🧲body🧲🔤 ➡️ request
💭 Connect and send
🍺 🆕📞 host port❗ ➡️ socket
🍺 💬 socket 📇 request❗❗
💭 Read and print response
🍺 👂 socket 4096❗ ➡️ data
😀 🍺 🔡 data❗❗
💭 Close socket
🚪 socket❗
🍉
Response
Status: 200
{ "type": "decrease-result", "requestId": "decrease_1778896412631", "results": [ 0: { "uuid": "Actor.S6Nh5SfYPcyyUhRg", "attribute": "prototypeToken.height", "oldValue": 6, "newValue": 1 } ], "success": true}
POST /increase
Increase an attribute
Increases a numeric attribute of an entity by the specified amount.
Required scope: entity:write
Parameters
| Name | Type | Required | Source | Description |
|---|---|---|---|---|
| attribute | string | ✓ | body | The attribute to increase (e.g., hp.value) |
| amount | number | ✓ | body | The amount to increase by |
| clientId | string | query | Client ID for the Foundry world | |
| uuid | string | query | UUID of the entity to retrieve (optional if selected=true) | |
| selected | boolean | query, body | Whether to get the selected entity | |
| userId | string | query, body | Foundry user ID or username to scope permissions (omit for GM-level access) |
Returns
object - Result of the increase operation
Try It Out
Code Examples
- JavaScript
- cURL
- Python
- TypeScript
- Emojicode
const baseUrl = 'http://localhost:3010';
const path = '/increase';
const params = {
clientId: 'fvtt_099ad17ea199e7e3',
uuid: 'Actor.S6Nh5SfYPcyyUhRg'
};
const queryString = new URLSearchParams(params).toString();
const url = `${baseUrl}${path}?${queryString}`;
const response = await fetch(url, {
method: 'POST',
headers: {
'x-api-key': 'your-api-key-here',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"attribute": "prototypeToken.height",
"amount": 5
})
});
const data = await response.json();
console.log(data);
curl -X POST 'http://localhost:3010/increase?clientId=fvtt_099ad17ea199e7e3&uuid=Actor.S6Nh5SfYPcyyUhRg' \
-H "x-api-key: your-api-key-here" \
-H "Content-Type: application/json" \
-d '{"attribute":"prototypeToken.height","amount":5}'
import requests
base_url = 'http://localhost:3010'
path = '/increase'
params = {
'clientId': 'fvtt_099ad17ea199e7e3',
'uuid': 'Actor.S6Nh5SfYPcyyUhRg'
}
url = f'{base_url}{path}'
response = requests.post(
url,
params=params,
headers={
'x-api-key': 'your-api-key-here'
},
json={
"attribute": "prototypeToken.height",
"amount": 5
}
)
data = response.json()
print(data)
import axios from 'axios';
(async () => {
const baseUrl = 'http://localhost:3010';
const path = '/increase';
const params = {
clientId: 'fvtt_099ad17ea199e7e3',
uuid: 'Actor.S6Nh5SfYPcyyUhRg'
};
const queryString = new URLSearchParams(params).toString();
const url = `${baseUrl}${path}?${queryString}`;
const response = await axios({
method: 'post',
headers: {
'x-api-key': 'your-api-key-here',
'Content-Type': 'application/json'
},
url,
data: {
"attribute": "prototypeToken.height",
"amount": 5
}
});
const data = response.data;
console.log(data);
})();
📦 sockets 🏠
💭 Emojicode HTTP Client
💭 Compile: emojicodec example.🍇 -o example
💭 Run: ./example
🏁 🍇
💭 Connection settings
🔤localhost🔤 ➡️ host
3010 ➡️ port
🔤/increase🔤 ➡️ path
💭 Query parameters
🔤clientId=fvtt_099ad17ea199e7e3🔤 ➡️ clientId
🔤uuid=Actor.S6Nh5SfYPcyyUhRg🔤 ➡️ uuid
🔤?🧲clientId🧲&🧲uuid🧲🔤 ➡️ queryString
💭 Request body
🔤{"attribute":"prototypeToken.height","amount":5}🔤 ➡️ body
💭 Build HTTP request
🔤POST /increase🧲queryString🧲 HTTP/1.1❌r❌nHost: localhost:3010❌r❌nx-api-key: your-api-key-here❌r❌nContent-Type: application/json❌r❌nContent-Length: 48❌r❌n❌r❌n🧲body🧲🔤 ➡️ request
💭 Connect and send
🍺 🆕📞 host port❗ ➡️ socket
🍺 💬 socket 📇 request❗❗
💭 Read and print response
🍺 👂 socket 4096❗ ➡️ data
😀 🍺 🔡 data❗❗
💭 Close socket
🚪 socket❗
🍉
Response
Status: 200
{ "type": "increase-result", "requestId": "increase_1778896412604", "results": [ 0: { "uuid": "Actor.S6Nh5SfYPcyyUhRg", "attribute": "prototypeToken.height", "oldValue": 1, "newValue": 6 } ], "success": true}
POST /kill
Kill an entity
Sets the entity's HP to 0.
Required scope: entity:write
Parameters
| Name | Type | Required | Source | Description |
|---|---|---|---|---|
| clientId | string | query | Client ID for the Foundry world | |
| uuid | string | query | UUID of the entity to retrieve (optional if selected=true) | |
| selected | boolean | query, body | Whether to get the selected entity | |
| userId | string | query, body | Foundry user ID or username to scope permissions (omit for GM-level access) |
Returns
object - Result of the kill operation
Try It Out
Code Examples
- JavaScript
- cURL
- Python
- TypeScript
- Emojicode
const baseUrl = 'http://localhost:3010';
const path = '/kill';
const params = {
clientId: 'fvtt_099ad17ea199e7e3',
uuid: 'Actor.7QAOIsAAOiZ97ocq'
};
const queryString = new URLSearchParams(params).toString();
const url = `${baseUrl}${path}?${queryString}`;
const response = await fetch(url, {
method: 'POST',
headers: {
'x-api-key': 'your-api-key-here'
}
});
const data = await response.json();
console.log(data);
curl -X POST 'http://localhost:3010/kill?clientId=fvtt_099ad17ea199e7e3&uuid=Actor.7QAOIsAAOiZ97ocq' \
-H "x-api-key: your-api-key-here"
import requests
base_url = 'http://localhost:3010'
path = '/kill'
params = {
'clientId': 'fvtt_099ad17ea199e7e3',
'uuid': 'Actor.7QAOIsAAOiZ97ocq'
}
url = f'{base_url}{path}'
response = requests.post(
url,
params=params,
headers={
'x-api-key': 'your-api-key-here'
}
)
data = response.json()
print(data)
import axios from 'axios';
(async () => {
const baseUrl = 'http://localhost:3010';
const path = '/kill';
const params = {
clientId: 'fvtt_099ad17ea199e7e3',
uuid: 'Actor.7QAOIsAAOiZ97ocq'
};
const queryString = new URLSearchParams(params).toString();
const url = `${baseUrl}${path}?${queryString}`;
const response = await axios({
method: 'post',
headers: {
'x-api-key': 'your-api-key-here'
},
url
});
const data = response.data;
console.log(data);
})();
📦 sockets 🏠
💭 Emojicode HTTP Client
💭 Compile: emojicodec example.🍇 -o example
💭 Run: ./example
🏁 🍇
💭 Connection settings
🔤localhost🔤 ➡️ host
3010 ➡️ port
🔤/kill🔤 ➡️ path
💭 Query parameters
🔤clientId=fvtt_099ad17ea199e7e3🔤 ➡️ clientId
🔤uuid=Actor.7QAOIsAAOiZ97ocq🔤 ➡️ uuid
🔤?🧲clientId🧲&🧲uuid🧲🔤 ➡️ queryString
💭 Build HTTP request
🔤POST /kill🧲queryString🧲 HTTP/1.1❌r❌nHost: localhost:3010❌r❌nx-api-key: your-api-key-here❌r❌n❌r❌n🔤 ➡️ request
💭 Connect and send
🍺 🆕📞 host port❗ ➡️ socket
🍺 💬 socket 📇 request❗❗
💭 Read and print response
🍺 👂 socket 4096❗ ➡️ data
😀 🍺 🔡 data❗❗
💭 Close socket
🚪 socket❗
🍉
Response
Status: 200
{ "type": "kill-result", "requestId": "kill_1778896412657", "results": [ 0: { "uuid": "Actor.7QAOIsAAOiZ97ocq", "success": true, "message": "Actor marked as defeated, HP set to 0, and dead effect applied to 0 tokens" } ]}