Civ Modding Wiki

Search

Search IconIcon to open search

EFFECT_ADJUST_PREVENT_STRUCTURAL_DAMAGE

Last updated Aug 8, 2022 Edit Source

This is an Effect Type. Please refer to that page for more information on Effect Type

# Info

EFFECT_ADJUST_PREVENT_STRUCTURAL_DAMAGE

  • Class: CITIES
  • Parameters:
    • Prevent 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
INSERT INTO Modifiers
	(
		ModifierId,
		ModifierType
	)
VALUES
	(
		"REINFORCED_INFRASTRUCTURE_PREVENET_STRUCTURAL_DAMAGE",
		"MODIFIER_GOVERNOR_ADJUST_PREVENET_STRUCTURAL_DAMAGE"
	);

INSERT INTO ModifierArguments
	(
		ModifierId,
		Name,
		Value
	)
VALUES
	(
		"REINFORCED_INFRASTRUCTURE_PREVENET_STRUCTURAL_DAMAGE",
		"Prevent",
		1
	);
	

Interactive Graph