Civ Modding Wiki

Search

Search IconIcon to open search

EFFECT_ADJUST_ATTACKER_STRENGTH_MODIFIER

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_ATTACKER_STRENGTH_MODIFIER

  • Class: COMBATS
  • Parameters:
    • Amount Integer

# 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
INSERT INTO Modifiers
	(
		ModifierId,
		ModifierType,
		SubjectRequirementSetId
	)
VALUES
	(
		"MILITARY_EMERGENCY_MEMBER_COMBAT_STRENGTH_DEFEND",
		"MODIFIER_EMERGENCY_COMBATS_ADJUST_ATTACKER_STRENGTH",
		"MILITARY_EMERGENCY_COMBAT_STRENGTH_DEFENDER_REQUIREMENTS"
	);

INSERT INTO ModifierArguments
	(
		ModifierId,
		Name,
		Value
	)
VALUES
	(
		"MILITARY_EMERGENCY_MEMBER_COMBAT_STRENGTH_DEFEND",
		"Amount",
		"-2"
	);
	

Interactive Graph