Civ Modding Wiki

Search

Search IconIcon to open search

REQUIREMENT_PLOT_DISTRICT_TYPE_MATCHES

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_PLOT_DISTRICT_TYPE_MATCHES

  • Class: PLOTS
  • Arguments:
    • DistrictType String
      • [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
INSERT INTO Requirements
	(
		RequirementId,
		RequirementType
	)
VALUES
	(
		"REQUIRES_PLOT_HAS_COMMERCIAL_HUB",
		"REQUIREMENT_PLOT_DISTRICT_TYPE_MATCHES"
	);

INSERT INTO RequirementArguments

	(
		RequirementId,
		Name,
		Value
	)
VALUES
	(
		"REQUIRES_PLOT_HAS_COMMERCIAL_HUB",
		"DistrictType",
		"DISTRICT_COMMERCIAL_HUB"
	);
	

Interactive Graph