Civ Modding Wiki

Search

Search IconIcon to open search

EFFECT_DIPLOMACY_AGENDA_HORSE_LORD

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_DIPLOMACY_AGENDA_HORSE_LORD

  • Class: PLAYERS
  • Parameters:
    • BottomPercentage Integer
    • BottomRankingDiploMod Integer
    • PromotionClass1 String
      • [UnitPromotionClasses.PromotionClassType]
    • PromotionClass2 String
      • [UnitPromotionClasses.PromotionClassType]
    • StatementKey String
    • TopPercentage Integer
    • TopRankingDiploMod 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
INSERT INTO Modifiers
	(
		ModifierId,
		ModifierType,
		OwnerRequirementSetId,
		SubjectRequirementSetId
	)
VALUES
	(
		"AGENDA_HORSE_LORD",
		"MODIFIER_PLAYER_DIPLOMACY_AGENDA_HORSE_LORD",
		"ON_TURN_STARTED",
		"PLAYER_IS_MAJOR_CIV_KNOWN_10_TURNS"
	);

INSERT INTO ModifierArguments
	(
		ModifierId,
		Name,
		Value
	)
VALUES
	(
		"AGENDA_HORSE_LORD",
		"BottomPercentage",
		30
	),
	(
		"AGENDA_HORSE_LORD",
		"BottomRankingDiploMod",
		7
	),
	(
		"AGENDA_HORSE_LORD",
		"PromotionClass1",
		"PROMOTION_CLASS_HEAVY_CAVALRY"
	),
	(
		"AGENDA_HORSE_LORD",
		"PromotionClass2",
		"PROMOTION_CLASS_LIGHT_CAVALRY"
	),
	(
		"AGENDA_HORSE_LORD",
		"StatementKey",
		"AGENDA_HORSE_LORD_WARNING"
	),
	(
		"AGENDA_HORSE_LORD",
		"TopPercentage",
		70
	),
	(
		"AGENDA_HORSE_LORD",
		"TopRankingDiploMod",
		"-6"
	);
	

Interactive Graph