Search
EFFECT_ADJUST_DISTRICT_YIELD_CHANGE
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_DISTRICT_YIELD_CHANGE
- Class:
DISTRICTS
- Parameters:
- Amount
Integer
- YieldType
String
# 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
| INSERT INTO Modifiers
(
ModifierId,
ModifierType,
SubjectRequirementSetId
)
VALUES
(
"MINOR_CIV_SCIENTIFIC_YIELD_FOR_CAMPUS",
"MODIFIER_PLAYER_DISTRICTS_ADJUST_YIELD_CHANGE",
"DISTRICT_IS_CAMPUS"
);
INSERT INTO ModifierArguments
(
ModifierId,
Name,
Value
)
VALUES
(
"MINOR_CIV_SCIENTIFIC_YIELD_FOR_CAMPUS",
"Amount",
2
),
(
"MINOR_CIV_SCIENTIFIC_YIELD_FOR_CAMPUS",
"YieldType",
"YIELD_SCIENCE"
);
|