this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Adding changes

+35 -13
+19 -13
data/pf2e/ancestryFeature.json
··· 1 1 { 2 2 "$schema": "../../schema/schema.json", 3 3 "_meta": { 4 - "dateUpdated": "2025-04-25", 4 + "dateUpdated": "2025-06-27", 5 5 "version": "0.0.1" 6 6 }, 7 7 "ancestryFeature": [ ··· 9 9 "id": "darkvision", 10 10 "name": "Darkvision", 11 11 "description": "You can see in darkness and dim light just as well as you can see in bright light, though your vision in darkness is in black and white.", 12 - "effect": { 13 - "type": "giveSense", 14 - "id": "darkvision" 15 - } 12 + "effect": [ 13 + { 14 + "type": "giveSense", 15 + "id": "darkvision" 16 + } 17 + ] 16 18 }, 17 19 { 18 20 "id": "clan-dagger", 19 21 "name": "Clan Dagger", 20 22 "description": "You get one clan dagger for free, as it was given to you at birth. Selling this clan dagger is a terrible taboo and earns you the disdain of other dwarves.", 21 - "effect": { 22 - "type": "giveItem", 23 - "id": "clan-dagger" 24 - } 23 + "effect": [ 24 + { 25 + "type": "giveItem", 26 + "id": "clan-dagger" 27 + } 28 + ] 25 29 }, 26 30 { 27 31 "id": "low-light-vision", 28 32 "name": "Low-Light Vision", 29 33 "description": "You can see in dim light as though it were bright light, so you ignore the concealed condition due to dim light.", 30 - "effect": { 31 - "type": "giveSense", 32 - "id": "low-light-vision" 33 - } 34 + "effect": [ 35 + { 36 + "type": "giveSense", 37 + "id": "low-light-vision" 38 + } 39 + ] 34 40 } 35 41 ] 36 42 }
+16
schema/schema.json
··· 395 395 "item", 396 396 "untyped" 397 397 ] 398 + }, 399 + "applyTo": { 400 + "oneOf": [ 401 + { 402 + "type": "object", 403 + "properties": { 404 + "type": { 405 + "const": "action" 406 + }, 407 + "actionId": { 408 + "type": "string", 409 + "description": "" 410 + } 411 + } 412 + } 413 + ] 398 414 } 399 415 }, 400 416 "required": [