Bases: _DataSetIntEnums
This enum class provides the integer values used to reference the color mood values used in the game. Used in the
'Change Color Mood' effect
Examples
Source code in AoE2ScenarioParser/datasets/trigger_lists/color_mood.py
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 | class ColorMood(_DataSetIntEnums):
"""
This enum class provides the integer values used to reference the color mood values used in the game. Used in the
'Change Color Mood' effect
**Examples**
"""
DEFAULT = 0
AUTUMN = 1
WINTER = 2
JUNGLE = 3
DESERT = 4
NIGHT = 5
|
Attributes
DEFAULT = 0
class-attribute
instance-attribute
Value:
0
AUTUMN = 1
class-attribute
instance-attribute
Value:
1
WINTER = 2
class-attribute
instance-attribute
Value:
2
JUNGLE = 3
class-attribute
instance-attribute
Value:
3
DESERT = 4
class-attribute
instance-attribute
Value:
4
NIGHT = 5
class-attribute
instance-attribute
Value:
5