Search
REQUIREMENT_CITY_HAS_DISTRICT
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_CITY_HAS_DISTRICT
- Class:
CITIES
- Arguments:
- MustBeFunctioning
Boolean
- Require the district to be functioning (not pillaged).
- [Buildings.BuildingType]
- DistrictType
String
- The type of the district to check for.
- [Districts.DistrictType]
# 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
(
"FOREIGN_CITY_REQUIRES_CITY_HAS_ROYAL_NAVY_DOCKYARD",
"REQUIREMENT_CITY_HAS_DISTRICT"
);
INSERT INTO RequirementArguments
(
RequirementId,
Name,
Value
)
VALUES
(
"FOREIGN_CITY_REQUIRES_CITY_HAS_ROYAL_NAVY_DOCKYARD",
"DistrictType",
"DISTRICT_ROYAL_NAVY_DOCKYARD"
),
(
"FOREIGN_CITY_REQUIRES_CITY_HAS_ROYAL_NAVY_DOCKYARD",
"MustBeFunctioning",
0
);
|