You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Advance::builder("Conversion","You add +1 to your Influence Culture roll and gain 1 culture token when you make a successful Influence Culture attempt.")
22
+
.add_player_event_listener(
23
+
|event| &mut event.on_influence_culture_attempt,
24
+
|info, _, _| {
25
+
if !info.is_defender{
26
+
info.roll_boost += 1;
27
+
info.info.log.push("Player gets +1 to Influence Culture roll for Conversion Advance".to_string());
c.add_info_log_item("Player gained 1 culture token for a successful Influence Culture attempt for Conversion Advance");
37
+
},
38
+
0,
39
+
)
40
+
}
41
+
20
42
fndogma() -> AdvanceBuilder{
21
43
Advance::builder("Dogma","Whenever you Construct a new Temple, either through the Construct Action or through playing of cards, you may immediately get a Theocracy Advance for free, marking it with a cube from your Event tracker as normal.
22
44
You are now limited to a maximum of 2 ideas. If you have more than 2 ideas when
23
45
getting this Advance, you must immediately reduce down to 2.
24
46
Note: Dogma Advance does not apply when you conquer a city with a Temple.")
0 commit comments