new item types - 0.0.7

This commit is contained in:
François-Xavier Guillois
2023-06-05 10:06:11 +02:00
parent 0381276b1a
commit 731f94dbb0
12 changed files with 236 additions and 91 deletions
+44 -24
View File
@@ -17,22 +17,25 @@
"value": 0,
"min": 0,
"max": 2
},
"instinct":0,
"identity": {
"height": 0,
"weight": 0,
"totem": "",
"age": 15,
"origin": ""
},
"stories": {
"biography": ""
}
}
},
"character": {
"templates": ["base"],
"identity": {
"height": 0,
"weight": 0,
"totem": "",
"age": 15,
"profile": "",
"origin": "",
"theme": "",
"instincts": "",
"prohibits": "",
"objectives": "",
"relations": "",
"biography": ""
},
"attributes": {
"level": {
"value": 1,
@@ -365,38 +368,55 @@
}
},
"Item": {
"types": ["item", "weapon", "defense", "ritual", "technique", "trait"],
"types": ["item", "weapon", "defense", "ability", "specialty", "trait", "background", "trauma", "evolution", "rumor"],
"templates": {
"base": {
"description": "",
"rarity":3,
"reliability":3,
"quantity": 1,
"weight": 0
},
"list": {
"description": ""
}
},
"item": {
"templates": ["base"],
"quantity": 1,
"weight": 0,
"rarity":3,
"reliability":3
"templates": ["base"]
},
"weapon": {
"templates": ["base"],
"range":0,
"min_range":0,
"max_range":0,
"damage":0,
"ammo":0
},
"defense": {
"templates": ["base"],
"level":0
"level":0,
"mobility":3
},
"ritual": {
"templates": ["base"]
"ability": {
"templates": ["list"]
},
"technique": {
"templates": ["base"]
"specialty": {
"templates": ["list"]
},
"trait": {
"templates": ["base"],
"templates": ["list"],
"level":0
},
"background": {
"templates": ["list"]
},
"trauma": {
"templates": ["list"]
},
"evolution": {
"templates": ["list"]
},
"rumor": {
"templates": ["list"]
}
}
}