Magic Circle spell missing data
Ic80 opened this issue · 4 comments
The spell data entry for the spell "Magic Circle" seems to miss the first few lines of the description that describe the area of effect, and it misses the property for the area of effect property as well. Not sure about the dc property because I haven't found the rules to valorize it properly, but one of the use cases of the spell provides a dc save, should it be listed in a dc property? Here is the entry with the missing desc line and area of effect properties, please provide a dc property if needed. Hope it helps.
{
"index": "magic-circle",
"name": "Magic Circle",
"desc": [
"You create a 10-foot radius, 20-foot-tall cylinder of magical energy centered on a point on the ground that you can see within range. Glowing runes appear whetever the cylinder intersects with the floor or other surface.",
"Choose one or more of the following types of creatures: celestials, elementals, fey, fiends, or undead. The circle affects a creature of the chosen type in the following ways:",
"- The creature can't willingly enter the cylinder by nonmagical means. If the creature tries to use teleportation or interplanar travel to do so, it must first succeed on a charisma saving throw.",
"- The creature has disadvantage on attack rolls against targets within the cylinder.",
"- Targets within the cylinder can't be charmed, frightened, or possessed by the creature.",
"When you cast this spell, you can elect to cause its magic to operate in the reverse direction, preventing a creature of the specified type from leaving the cylinder and protecting targets outside it."
],
"higher_level": [
"When you cast this spell using a spell slot of 4th level or higher, the duration increases by 1 hour for each slot level above 3rd."
],
"range": "10 feet",
"components": ["V", "S", "M"],
"material": "Holy water or powdered silver and iron worth at least 100 gp, which the spell consumes.",
"ritual": false,
"duration": "1 hour",
"concentration": false,
"casting_time": "1 minute",
"level": 3,
"area_of_effect": {
"type": "cylinder",
"size": 10
},
"school": {
"index": "abjuration",
"name": "Abjuration",
"url": "/api/magic-schools/abjuration"
},
"classes": [
{
"index": "cleric",
"name": "Cleric",
"url": "/api/classes/cleric"
},
{
"index": "paladin",
"name": "Paladin",
"url": "/api/classes/paladin"
},
{
"index": "warlock",
"name": "Warlock",
"url": "/api/classes/warlock"
},
{
"index": "wizard",
"name": "Wizard",
"url": "/api/classes/wizard"
}
],
"subclasses": [
{
"index": "lore",
"name": "Lore",
"url": "/api/subclasses/lore"
}
],
"url": "/api/spells/magic-circle"
}
The missing description is definitely an error, and an area_of_effect
property is definitely useful.
I'm not sure why there'd be a DC property, though? Spell save DCs are defined by character classes, not spells. Do you mean perhaps that there should be a reference to the ability score to be used for saving throws against the spell effect?
Yeah well I've seen that there's a property dc in many spells but I haven't found a documentation about it, so I'm not sure about what information it should deliver, I leave it to someone that knows exactly how it works, just reporting the possible issue.
Ah, my mistake, I had forgotten that the ability used for saving throws was under the dc
property of spells. That's a poorly named field, imo.
So yes - a dc
property should be added to this spell. Thanks for letting us know!
Opened a PR to fix this if anyone wants to take a gander.