5.4. RespawnTime sectionΒΆ
Note
RespawnTimeSectionParser
is responsible for parsing RespawnTime section. This section defines
respawn time for different types of stationary objects.
Section example:
[RespawnTime]
Bigship 1000000
Ship 1000000
Aeroanchored 1000000
Artillery 1000000
Searchlight 1000000
Output example:
{
'respawn_time': {
'ships': {
'big': 1000000,
'small': 1000000,
},
'balloons': 1000000,
'artillery': 1000000,
'searchlights': 1000000,
},
}
Output contains a dict with respawn_time element.
Description:
Respawn time is measured by seconds.
BigshipRespawn time for big ships [1].
Output path: respawn_time.ships.bigOutput type: intOutput value: original value converted to integer number ShipRespawn time for small ships [1].
Output path: respawn_time.ships.smallOutput type: intOutput value: original value converted to integer number AeroanchoredRespawn time for balloons.
Output path: respawn_time.balloonsOutput type: intOutput value: original value converted to integer number ArtilleryRespawn time for artillery.
Output path: respawn_time.artilleryOutput type: intOutput value: original value converted to integer number SearchlightRespawn time for searchlights.
Output path: respawn_time.searchlightsOutput type: intOutput value: original value converted to integer number
Footnotes:
| [1] | See what big and small ships are: ships categories. |