24 lines
533 B
JSON
24 lines
533 B
JSON
{
|
|
"id": 1,
|
|
"type":"MonsterCard",
|
|
"name": "Test Monster",
|
|
"image": "Assets/Cards/1/cards.png",
|
|
"description": "can attack other monsters",
|
|
"costs": 30,
|
|
"defense": 40,
|
|
"attacks":[
|
|
{
|
|
"id": 1,
|
|
"name":"test attack",
|
|
"description": "can attack another Monster",
|
|
"damage": 80
|
|
},
|
|
{
|
|
"id": 2,
|
|
"name":"test attack",
|
|
"description": "can attack another Monster",
|
|
"damage": 80
|
|
}
|
|
]
|
|
}
|