dreibart / dreibart.github.io

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

request equipment #9

Open LokiMidgard opened 4 months ago

LokiMidgard commented 4 months ago

GET /character/{id:number}/equimpent

{
    "type":"equipment",
    "equipment": [
        {
            "id": 3,
            "name": "Rope",
            "cost": 40,
            "description": "Ein 5m langes Seil",
            "amount": 1,
        },
        {
            "id": 5,
            "name": "Lederjake",
            "cost": 40,
            "description": "Eine Jacke",
            "amount": 1,
            "armor":{
                "weapon-side-shoulder":{
                    // wie auch immer Rüstungen funktionieren ¬_¬
                }
            }

        },
        {
            "id": 6,
            "name": "Gunsword",
            "cost": 40,
            "description": "Eine Jacke",
            "amount": 1,
            "close-combat":{

            },
            "range-combat":{

            }

        },
    ],
}