From d200d48903d68166389a88f1d4fa892577b6fcd5 Mon Sep 17 00:00:00 2001 From: Endeavorance Date: Thu, 20 Mar 2025 14:46:58 -0400 Subject: [PATCH] Add and comment all schemas --- README.md | 50 +++++++++++++++++++++++++------------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index 9f47811..a1543bf 100644 --- a/README.md +++ b/README.md @@ -133,13 +133,13 @@ spark: # Starting spark prowess (default novice) ```yaml $define: item -type: -rarity: -affinity: -damage: 0 -damageType: -hands: 1 | 2 # Only for wielded items -slot: # Only for worn items +type: # Defaults to wielded +rarity: # Defaults to common +affinity: # Defaults to none +damage: 0 # Defaults to 0 +damageType: # Defaults to phy +hands: 1 | 2 # Only for wielded items +slot: # Only for worn items ``` #### `Item Type` Options @@ -167,8 +167,8 @@ slot: # Only for worn items ```yaml $define: method -curator: Someone -abilities: +curator: Someone # The name of the curator +abilities: # A 2-d array of ability IDs - [rank-1-ability-id-one, rank-1-ability-id-two] - [rank-2-ability-id-one] ``` @@ -177,9 +177,9 @@ abilities: ```yaml $define: resource -type: -url: https://example.com/image.jpeg # Only for image resources -data: # Only for table resources +type: # Defaults to text +url: https://url.com/image.jpeg # Only for image resources +data: # Only for table resources ``` #### `Resource Type` Options @@ -193,25 +193,25 @@ data: # Only for table resources ```yaml $define: rule overrule: another-rule-id # Optional -order: 0 # Optional +order: 0 # Optional ``` ### Species Definition ```yaml $define: species -hands: 2 -abilities: +hands: 2 # Defaults to 2 +abilities: # A list of innate ability IDs - some-ability-id - another-ability-id -ap: 0 -hp: 0 -ep: 0 -xp: 0 -muscle: -focus: -knowledge: -charm: -cunning: -spark: +ap: 0 # Starting AP modifier +hp: 0 # Starting HP modifier +ep: 0 # Starting EP modifier +xp: 0 # Starting XP modifier +muscle: # Defaults to novice +focus: # Defaults to novice +knowledge: # Defaults to novice +charm: # Defaults to novice +cunning: # Defaults to novice +spark: # Defaults to novice ```