Search
EFFECT_ADJUST_GOVERNOR_IDENTITY_PRESSURE
Last updated
Aug 8, 2022
Edit Source
This is an
Effect Type. Please refer to that page for more information on Effect Type
# Info
EFFECT_ADJUST_GOVERNOR_IDENTITY_PRESSURE
- Class:
GOVERNORS
- Parameters:
- Amount
Integer
- The delta amount of pressure to modify the strength.
- DomesticCities
Boolean
- If true, the effect will apply the value to the Governor’s external domestic pressure.
- ForeignCities
Boolean
- If true, the effect will apply the value to the Governor’s external foreign pressure.
- OncePerCity
Unknown
# Samples
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| INSERT INTO Modifiers
(
ModifierId,
ModifierType
)
VALUES
(
"TOQUI_DOMESTIC_LOYALTY",
"MODIFIER_PLAYER_GOVERNORS_ADJUST_GOVERNOR_IDENTITY_PRESSURE"
);
INSERT INTO ModifierArguments
(
ModifierId,
Name,
Value
)
VALUES
(
"TOQUI_DOMESTIC_LOYALTY",
"Amount",
4
),
(
"TOQUI_DOMESTIC_LOYALTY",
"DomesticCities",
1
),
(
"TOQUI_DOMESTIC_LOYALTY",
"OncePerCity",
1
);
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| INSERT INTO Modifiers
(
ModifierId,
ModifierType
)
VALUES
(
"TOQUI_FOREIGN_LOYALTY",
"MODIFIER_PLAYER_GOVERNORS_ADJUST_GOVERNOR_IDENTITY_PRESSURE"
);
INSERT INTO ModifierArguments
(
ModifierId,
Name,
Value
)
VALUES
(
"TOQUI_FOREIGN_LOYALTY",
"Amount",
4
),
(
"TOQUI_FOREIGN_LOYALTY",
"ForeignCities",
1
),
(
"TOQUI_FOREIGN_LOYALTY",
"OncePerCity",
1
);
|