Bug description
A cursory investigation reveals that there are no Bonus Actions or Reaction included in our Creature / CreatureAction data for srd-2024 Creatures. It doesn't appear that they are mislabled as Actions, but have instead not been imported at all.
Steps to Reproduce
- Fork the
open5e-api, make sure you are on the staging branch
- In your IDE, open
/data/v2/wizards-of-the-coast/srd-2024/CreatureAction.json
- Search (cmd + F) for the term
"action_type": "ACTION" (inc. double quotes) -> you should get 806 results
- Next search for
"action_type": "REACTION" -> 0 results
- Next search for "action_type": "BONUS_ACTION" -> 0 results
Other notes
Manually adding the Reactions and Bonus Actions will be unreasonably labourous work to carry out. Writing a Python script to scrape either V1 JSON (for SRD-2014) or raw Markdown (for SRD-2024) is probably more reasonable.
Bug description
A cursory investigation reveals that there are no Bonus Actions or Reaction included in our
Creature/CreatureActiondata forsrd-2024Creatures. It doesn't appear that they are mislabled as Actions, but have instead not been imported at all.Steps to Reproduce
open5e-api, make sure you are on thestagingbranch/data/v2/wizards-of-the-coast/srd-2024/CreatureAction.json"action_type": "ACTION"(inc. double quotes) -> you should get 806 results"action_type": "REACTION"-> 0 resultsOther notes
Manually adding the Reactions and Bonus Actions will be unreasonably labourous work to carry out. Writing a Python script to scrape either V1 JSON (for SRD-2014) or raw Markdown (for SRD-2024) is probably more reasonable.