This commit is contained in:
2025-07-28 14:57:27 +02:00
parent 48eb799861
commit 6ab0cab5a0
18 changed files with 437 additions and 34 deletions

View File

@@ -1,16 +1,86 @@
{
"Actor": {},
"Item": {
"types": ["item"],
"templates": {
"base": {
"description": ""
}
"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": {
"templates": ["base"],
"quantity": 1,
"weight": 0
"Item": {
"types":[
"Item"
],
"templates": {
"generalItems": {
"weight": 10,
"value": 100,
"description": ""
}
},
"Item": {
"templates": ["generalItems"],
"type": "item",
"quantity": 1
}
}
}
}