Search
REQUIREMENT_PLAYER_HAPPINESS_LEAD
Last updated
Aug 13, 2022
Edit Source
This is a
Requirement Type. Please refer to that page for more information on Requirement Types
# Info
REQUIREMENT_PLAYER_HAPPINESS_LEAD
- Class:
PLAYERS
- Arguments:
- MinimumDelta
Integer
- HappinessRatio
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
| INSERT INTO Requirements
(
RequirementId,
RequirementType
)
VALUES
(
"REQUIRES_HAS_HIGH_HAPPINESS",
"REQUIREMENT_PLAYER_HAPPINESS_LEAD"
);
INSERT INTO RequirementArguments
(
RequirementId,
Name,
Value
)
VALUES
(
"REQUIRES_HAS_HIGH_HAPPINESS",
"HappinessRatio",
"1.3"
),
(
"REQUIRES_HAS_HIGH_HAPPINESS",
"MinimumDelta",
2
);
|