BlankTemplate
Server/NPC/Roles/_Core/BlankTemplate.json, 775 B
Fields
| Field | Type |
|---|---|
$Comment | string |
Type | string |
Parameters | object |
MotionControllerList | array[1] |
Appearance | string |
MaxHealth | object |
StartState | string |
Instructions | array[1] |
NameTranslationKey | object |
Source
{
"$Comment": "DisplayState",
"Type": "Abstract",
"Parameters": {
"MaxHealth": {
"Value": 100,
"Description": "Max health for the NPC"
},
"NameTranslationKey": {
"Value": "server.npcRoles.BlankTemplate.name",
"Description": "Translation key for NPC name display"
}
},
"MotionControllerList": [
{
"Type": "Walk",
"MaxWalkSpeed": 3,
"Gravity": 10,
"MaxFallSpeed": 8,
"Acceleration": 10
}
],
"Appearance": "Sheep",
"MaxHealth": { "Compute": "MaxHealth" },
"StartState": "start",
"Instructions": [
{
"Sensor": {
"Type": "Any"
},
"BodyMotion": {
"Type": "Nothing"
}
}
],
"NameTranslationKey": { "Compute": "NameTranslationKey" }
}