spooktacular

Spooktacular! 🎃

How to Participate

This year we’ll be creating monsters. JSON monsters! Fork this repository and make a pull request for each of your monsters.

⭐ Star This Repository! ⭐

  1. Fork this Repository.
  2. Create a new JSON file named after your monster.
    • Example: frankenstein.json
  3. Write valid JSON describing your monster, and then verify it here: (https://jsonlint.com/)
  4. Commit your changes.
  5. Open a pull request to merge your monster with my repository.
  6. Repeat for three more monsters.

Please make names in snake_case.

Use this format for JSON monsters to be valid:

{
  "name": "",
  "stats": {
    "hp": 0,
    "ac": 0,
    "speed": 0
  },
  "abilities": {
    "strength": 0,
    "dexterity": 0,
    "constitution": 0,
    "intelligence": 0,
    "wisdom": 0,
    "charisma": 0
  },
  "attack": {
    "name": "",
    "damage": 0
  },
  "special": {
      "name": "",
      "description": "",
      "effect": ""
  }
}

Happy Hacking!