adding the stats
This commit is contained in:
parent
dc03492d53
commit
e85f9795ed
@ -1,2 +1,9 @@
|
||||
name: Verg-La
|
||||
player: Yanick
|
||||
statistics:
|
||||
strength: 11
|
||||
dexterity: 13
|
||||
constitution: 10
|
||||
intelligence: 18
|
||||
wisdom: 15
|
||||
charisma: 11
|
||||
|
@ -5,7 +5,25 @@ additionalProperties: false
|
||||
required:
|
||||
- name
|
||||
- player
|
||||
- statistics
|
||||
properties:
|
||||
name: &string
|
||||
type: string
|
||||
player: *string
|
||||
statistics:
|
||||
type: object
|
||||
allRequired: true
|
||||
properties:
|
||||
strength: &stat
|
||||
$ref: '#/$defs/statistic'
|
||||
dexterity: *stat
|
||||
constitution: *stat
|
||||
intelligence: *stat
|
||||
wisdom: *stat
|
||||
charisma: *stat
|
||||
$defs:
|
||||
statistic:
|
||||
type: number
|
||||
minimum: 1
|
||||
maximum: 20
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user