Files
pokemon-foundry/template.json
2025-07-28 14:57:27 +02:00

86 lines
1.8 KiB
JSON

{
"Actor": {
"types": [
"character"
],
"character": {
"species": "",
"experience": {
"level": 1,
"EXP": 0
},
"armor class": 0,
"stats": {
"attack": {
"value": 0,
"modifier": 0
},
"defense": {
"value": 0,
"modifier": 0
},
"move": {
"value": 0,
"modifier": 0
},
"hp": {
"value": 0,
"modifier": 0
}
},
"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
}
}
}