dreibart / dreibart.github.io

https://dreibart.github.io/
0 stars 0 forks source link

Skills Request #4

Open LokiMidgard opened 1 month ago

LokiMidgard commented 1 month ago

GET /character/{id:number}/skills

{
"type":"skills",
    "skills": [
        {
            "id": 1,
            "name": "Angeln",
            "module": "Wildnis",
            "category": "body",
            "attributes": [
                "muscle",
                "muscle"
            ],
            "current": 4,
            "maximum": 10,
            "type": [],
        },
        {
            "id": 3,
            "name": "Faustfeuerwaffen",
            "module": "Wildnis",
            "category": "body",
            "attributes": [
                "muscle",
                "dexterity"
            ],
            "current": 4,
            "maximum": 10,
            "type": [
                "shooting"
            ], // Zeigt an das dieser Skill besser in der Schuss übersicht verwendet wird
        },
        {
            "id": 4,
            "name": "Entfernug Abschätzen",
            "module": "Wildnis",
            "category": "body",
            "attributes": [
                "muscle",
                "dexterity"
            ],
            "current": 4,
            "maximum": 10,
            "type": [
                "support-shooting-range"
            ], // Zeigt an das dieser Skill besser in der Schuss übersicht verwendet wird
        },
        // … more
    ],
}