Test_Dragon
Server/NPC/Roles/_Core/Tests/Test_Dragon.json, 1.1 KB
Fields
| Field | Type |
|---|---|
Type | string |
$Comment | string |
Appearance | string |
MotionControllerList | array[1] |
TestType | string |
MaxHealth | object |
Parameters | object |
Instructions | array[2] |
NameTranslationKey | string |
Source
{
"Type": "Generic",
"$Comment": "MotionControllerMove, MotionControllerSteer",
"Appearance": "Dragon_Fire",
"MotionControllerList": [
{
"Type": "Fly",
"MaxHorizontalSpeed": 50,
"MaxSinkSpeed": 10,
"MaxClimbSpeed": 10,
"MinAirSpeed": 10,
"Acceleration": 10,
"MinHeightOverGround": 40,
"MaxHeightOverGround": 45,
"MaxRollAngle": 80,
"MaxTurnSpeed": 45
}
],
"TestType": "Normal",
"MaxHealth": { "Compute": "MaxHealth" },
"Parameters": {
"MaxHealth": {
"Value": 100,
"Description": "Max health for the NPC"
}
},
"Instructions": [
{
"Continue": true,
"Instructions": [
{
"Sensor": {
"Type": "Any"
},
"BodyMotion": {
"Type": "WanderInCircle",
"Radius": 60
}
}
]
},
{
"Instructions": [
{
"Sensor": {
"Type": "Any"
},
"Actions": [
{
"Type": "Nothing"
}
]
}
]
}
],
"NameTranslationKey": "server.npcRoles.Test_Dragon.name"
}