Vendored
+2
@@ -169,6 +169,8 @@ export interface Character {
|
||||
|
||||
movement: DerivedCharacteristic
|
||||
|
||||
fatePoints: DerivedCharacteristic
|
||||
|
||||
/**
|
||||
* This property is not present if the required focus rules are not activated.
|
||||
*/
|
||||
|
||||
@@ -482,6 +482,9 @@
|
||||
"movement": {
|
||||
"$ref": "#/$defs/DerivedCharacteristic"
|
||||
},
|
||||
"fatePoints": {
|
||||
"$ref": "#/$defs/DerivedCharacteristic"
|
||||
},
|
||||
"woundThreshold": {
|
||||
"description": "This property is not present if the required focus rules are not activated.",
|
||||
"$ref": "#/$defs/DerivedCharacteristic"
|
||||
@@ -493,7 +496,8 @@
|
||||
"toughness",
|
||||
"dodge",
|
||||
"initiative",
|
||||
"movement"
|
||||
"movement",
|
||||
"fatePoints"
|
||||
]
|
||||
},
|
||||
"skills": {
|
||||
|
||||
@@ -153,6 +153,9 @@ export const Character = Entity(import.meta.filename, {
|
||||
movement: Required({
|
||||
type: IncludeIdentifier(DerivedCharacteristic),
|
||||
}),
|
||||
fatePoints: Required({
|
||||
type: IncludeIdentifier(DerivedCharacteristic),
|
||||
}),
|
||||
woundThreshold: Optional({
|
||||
comment: "This property is not present if the required focus rules are not activated.",
|
||||
type: IncludeIdentifier(DerivedCharacteristic),
|
||||
|
||||
Reference in New Issue
Block a user