Implemented animatronic.json
This commit is contained in:
5
assets/data/config/animatronics.json
Normal file
5
assets/data/config/animatronics.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"animatronics": [
|
||||
"freddy"
|
||||
]
|
||||
}
|
||||
27
assets/data/config/animatronics/freddy.json
Normal file
27
assets/data/config/animatronics/freddy.json
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"id": "freddy",
|
||||
"displayName": "Freddy Fazbear",
|
||||
|
||||
"inRoom": 9,
|
||||
"restRoom": 9,
|
||||
|
||||
"color": "#FF5733",
|
||||
|
||||
"movement": {
|
||||
"type": "SEQUENTIAL",
|
||||
"path": [9],
|
||||
"moveIntervalSeconds": 30,
|
||||
"aiSpeedMultiplier": true
|
||||
},
|
||||
|
||||
"attackType": {
|
||||
"kind": "LIGHT",
|
||||
"lightLevel": 3
|
||||
},
|
||||
|
||||
"jumpscare": {
|
||||
"sprite": "freddy_jumpscare",
|
||||
"sound": "freddy_scream",
|
||||
"durationSeconds": 2.5
|
||||
}
|
||||
}
|
||||
12
assets/data/config/night_control.json
Normal file
12
assets/data/config/night_control.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"nights": [
|
||||
{
|
||||
"night": 1,
|
||||
"hours": [
|
||||
{ "hour": 0, "ai": { "freddy": 10 } },
|
||||
{ "hour": 1, "ai": { "freddy": 11 } },
|
||||
{ "hour": 2, "ai": { "freddy": 20 } }
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user