Improvement - Extract Magic Item data from Description
See original GitHub issueThere is data in the description field of a magic items that would be useful to extract out into their own fields for better access. The first item in the description array holds the item type, as well as the the rarity (or rarities in some instances). So my proposal would be to add a couple fields to the magic item.
First one would be an object named magic_item_category:
{
"name": __,
"desc": __
}
And the second one would be an array named rarity:
[
{
"name": __,
"desc": __
}
]
Example:
{
"index": "ammunition",
"name": "Ammunition, +1, +2, or +3",
"equipment_category": {
"index": "ammunition",
"name": "Ammunition",
"url": "/api/equipment-categories/ammunition"
},
"magic_item_category": {
"name": "Weapon",
"desc": "any ammunition"
},
"rarity": [
{
"name": "uncommon",
"desc": "+1"
},
{
"name": "rare",
"desc": "+2"
},
{
"name": "very rare",
"desc": "+3"
}
],
"desc": [
"Weapon (any ammunition), uncommon (+1), rare (+2), or very rare (+3)",
"You have a bonus to attack and damage rolls made with this piece of magic ammunition. The bonus is determined by the rarity of the ammunition. Once it hits a target, the ammunition is no longer magical."
],
"url": "/api/magic-items/ammunition"
}
Certainly interested in having a discussion on these purposed changes and seeing what we can work out.
Issue Analytics
- State:
- Created 2 years ago
- Comments:22 (11 by maintainers)
Top Results From Across the Web
Item Set Skills - Runes of Magic Wiki - Fandom
The first ISS can be used at level 51. Once a complete set is collected, the set's innate ability can be "extracted" by...
Read more >Data Extraction Tools: Improving Data Warehouse Performance
Data extraction tools expedite data collection and provide the fastest path to data integration. Learn more about their use and benefits with Talend....
Read more >Manual of Quickness of Action - Magic Items - D&D Beyond
Manual of Quickness of Action. Wondrous Item, very rare. This book contains coordination and balance exercises, and its words are charged with magic....
Read more >dnd 5e - Are there ways to improve items?
There is no convenient way in 5e to merge different magic weapons and there is a reason for that. Let's say we have...
Read more >Magic Deepsight tool to extract data from unstructured and ...
Magic DeepSight™ is a one-stop solution for comprehensive data extraction, transformation, and delivery from a wide range of unstructured data sources ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thanks for the feedback! I’ll make some changes to address this sometime this week. Here’s my plan on what to do:
@bagelbits I’ll be honest, I wrote this a year ago when I was on vacation in Mexico, and I’m not sure what I was going for there. I clearly intended there to be some difference, but what it is? I can’t say. I think this issue can be considered closed with the variant item changes.