Overlays
"Ice Sheet": {
type: "objective",
object: "Large Ice Corridor",
}
|
The type of the overlay, which defines how the outline will show for this overlay. Can be one of:
|
|
The name of the overlay tile to use. This is optional and default to the name of the overlay in the definition. |
|
The default rotation for this overlay. If the overlays defined in a room don’t set their own rotation this value is used. |
|
An optional list of tags that will be added to each overlay of this type. Can be useful to actions. |
|
Stats that should be added to the overlay. See Stats. |
|
Actions that should be added to the overlay. This will add a button to the overlay, which when pressed executed the given action(s). See Actions. |
Stats
The stats
attribute can be used to define stats like health, attack, movement, etc. for the overlay.
Each value is an expression that will be calculated during the scenario to take into account variables like current scenario level or player count.
"Ice Sheet": {
type: "objective",
object: "Large Ice Corridor",
stats: {
health: "C * (L + 2)",
},
}
Currently only health is supported for overlays.
|