AncientSwordRage / nWoD-db

Web app for creating new world of darkness characters and browsing character data (Mage spells, vampire disciplines merits, etc)
1 stars 0 forks source link

Nest Traits to show level/prioity #4

Open AncientSwordRage opened 9 years ago

AncientSwordRage commented 9 years ago

Should follow @rozza2058's Json in issue #1

Should look like:

 "Attributes": {
        "Physical": {
            "Level": 1,
            "Strength": 1,
            "Dexterity": 1,
            "Stamina": 1
        },
        "Mental": {
            "Level": 2,
            "Intelligence": 1,
            "Wits": 1,
            "Resolve": 1
        },
        "Social": {
            "Level": 3,
            "Presence": 1,
            "Manipulation": 1,
            "Composure": 1
        }
    },
AncientSwordRage commented 9 years ago

Good example here: http://stackoverflow.com/a/27585066/1075247

Currently looks like:

        "mental_attributes": {
            "Wits": 0, 
            "Intelligence": 1, 
            "Resolve": 0
        }, 
        "physical_attributes": {
            "Dexterity": 0, 
            "Strength": 0, 
            "Stamina": 0
        }, 
        "social_attributes": {
            "Presence": 0, 
            "Manipulation": 0, 
            "Composure": 0
        },