Civ Modding Wiki

Search

Search IconIcon to open search

REQUIREMENT_PLAYER_NUKE_LOVER

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_NUKE_LOVER

  • Class: PLAYERS
  • Arguments:
    • UsedNukeValue Integer
    • TotalScoreThreshold Integer
    • BuiltNukeValue Integer
    • BelowThreshold 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
26
27
28
29
30
31
32
33
34
35
INSERT INTO Requirements
	(
		RequirementId,
		RequirementType
	)
VALUES
	(
		"REQUIRES_HIGH_NUKE_LOVE",
		"REQUIREMENT_PLAYER_NUKE_LOVER"
	);

INSERT INTO RequirementArguments

	(
		RequirementId,
		Name,
		Value
	)
VALUES
	(
		"REQUIRES_HIGH_NUKE_LOVE",
		"BuiltNukeValue",
		1
	),
	(
		"REQUIRES_HIGH_NUKE_LOVE",
		"TotalScoreThreshold",
		0
	),
	(
		"REQUIRES_HIGH_NUKE_LOVE",
		"UsedNukeValue",
		1
	);
	
 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
31
32
33
34
35
36
37
38
39
40
INSERT INTO Requirements
	(
		RequirementId,
		RequirementType
	)
VALUES
	(
		"REQUIRES_LOW_NUKE_LOVE",
		"REQUIREMENT_PLAYER_NUKE_LOVER"
	);

INSERT INTO RequirementArguments

	(
		RequirementId,
		Name,
		Value
	)
VALUES
	(
		"REQUIRES_LOW_NUKE_LOVE",
		"BelowThreshold",
		1
	),
	(
		"REQUIRES_LOW_NUKE_LOVE",
		"BuiltNukeValue",
		1
	),
	(
		"REQUIRES_LOW_NUKE_LOVE",
		"TotalScoreThreshold",
		1
	),
	(
		"REQUIRES_LOW_NUKE_LOVE",
		"UsedNukeValue",
		1
	);
	

Interactive Graph