Files
pokemon-foundry/template.json
2025-08-04 11:12:48 +02:00

76 lines
1.6 KiB
JSON

{
"Actor": {
"types": [
"character"
],
"character": {
"species": "species",
"experience": {
"level": 1,
"EXP": 0
},
"armorClass": 0,
"stats": {
"attack": 0,
"defense": 0,
"speed": 0,
"hp": 0
},
"attackCategory": "Physical",
"defenseCategory": "Physical",
"speed": 0,
"hp": {
"max": 0,
"current": 0
},
"moves": {
"move 1": {
"category": 0,
"type": 0,
"description": ""
},
"move 2": {
"category": 0,
"type": 0,
"description": ""
},
"move 3": {
"category": 0,
"type": 0,
"description": ""
},
"move 4": {
"category": 0,
"type": 0,
"description": ""
}
}
}
},
"Item": {
"types":[
"item"
],
"templates": {
"generalItems": {
"weight": 10,
"value": 100,
"description": ""
}
},
"Item": {
"templates": ["generalItems"],
"type": "item",
"quantity": 1
}
}
}