Civ Modding Wiki

Search

Search IconIcon to open search

REQUIREMENT_PLAYER_HAS_CIVIC

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_HAS_CIVIC

  • Class: PLAYERS
  • Arguments:
    • CivicType String
      • [Civics.CivicType]

# 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
INSERT INTO Requirements
	(
		RequirementId,
		RequirementType,
		Inverse
	)
VALUES
	(
		"REQUIRES_PLAYER_DOES_NOT_HAVE_NATURAL_HISTORY",
		"REQUIREMENT_PLAYER_HAS_CIVIC",
		1
	);

INSERT INTO RequirementArguments

	(
		RequirementId,
		Name,
		Value
	)
VALUES
	(
		"REQUIRES_PLAYER_DOES_NOT_HAVE_NATURAL_HISTORY",
		"CivicType",
		"CIVIC_NATURAL_HISTORY"
	);
	

Interactive Graph