Search
EFFECT_ADJUST_RELIGIOUS_SPREAD_STRENGTH
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_RELIGIOUS_SPREAD_STRENGTH
- Class:
PLAYERS
- Parameters:
- EnhancingTechType
String
- [Technologies.TechnologyType]
- SpreadMultiplier
Integer
- TechEnabledSpreadMultiplier
Integer
# 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
(
"SCRIPTURE_SPEAD_STRENGTH",
"MODIFIER_PLAYER_RELIGION_ADJUST_RELIGIOUS_SPREAD_STRENGTH"
);
INSERT INTO ModifierArguments
(
ModifierId,
Name,
Value
)
VALUES
(
"SCRIPTURE_SPEAD_STRENGTH",
"EnhancingTechType",
"TECH_PRINTING"
),
(
"SCRIPTURE_SPEAD_STRENGTH",
"SpreadMultiplier",
25
),
(
"SCRIPTURE_SPEAD_STRENGTH",
"TechEnabledSpreadMultiplier",
25
);
|