Search
REQUIREMENT_REQUIREMENTSET_IS_MET
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_REQUIREMENTSET_IS_MET
- Class:
ANY
- Arguments:
- RequirementSetId
String
- OnlyOwnersCity
Boolean
# 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
| INSERT INTO Requirements
(
RequirementId,
RequirementType
)
VALUES
(
"AOE_REQUIRES_ATOMIC_REQUIREMENTS",
"REQUIREMENT_REQUIREMENTSET_IS_MET"
);
INSERT INTO RequirementArguments
(
RequirementId,
Name,
Value
)
VALUES
(
"AOE_REQUIRES_ATOMIC_REQUIREMENTS",
"RequirementSetId",
"AOE_ATOMIC_REQUIREMENTS"
);
|
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_WARMONGER_TRIGGER",
"REQUIREMENT_REQUIREMENTSET_IS_MET"
);
INSERT INTO RequirementArguments
(
RequirementId,
Name,
Value
)
VALUES
(
"REQUIRES_WARMONGER_TRIGGER",
"OnlyOwnersCity",
0
),
(
"REQUIRES_WARMONGER_TRIGGER",
"RequirementSetId",
"WARMONGER_TRIGGERS"
);
|
1
2
3
4
5
6
7
8
9
10
| INSERT INTO Requirements
(
RequirementId,
RequirementType
)
VALUES
(
"PLOT_IS_DESERT_OR_DESERT_HILLS_REQUIREMENT",
"REQUIREMENT_REQUIREMENTSET_IS_MET"
);
|