Jon-Davis / Cypher-System-JSON-DB

A machine readable document of the Cypher System Reference Document
9 stars 4 forks source link

CATFOLK #3

Closed davebytemfg closed 1 year ago

davebytemfg commented 1 year ago

The SRD has a formatting bug, which results in an incorrect parse on the JSON.

SRD page 386 under CATFOLK

Agile: +4 to your Speed Pool. Skill: You are trained in climbing and balance tasks. 

Current JSON:

        {
          "name": "Agile: +4 to your Speed Pool. Skill",
          "description": "You are trained in climbing and balance tasks."
        },

Expected JSON:

        {
          "name": "Agile",
          "description": "+4 to your Speed Pool."
        },
        {
          "name": "Skill",
          "description": "You are trained in climbing and balance tasks."
        },

Thanks for the awesome resource!

Jon-Davis commented 1 year ago

Fixed Thank you!