Etates General event bug.
There seems to be a bug in the Etates General event:
As you can seen, you get the same gold amount for both the b and the c choice. Maybe option c should have last_year instead?
There seems to be a bug in the Etates General event:
Code:
################################
# Calling the Etates General #
################################
character_event = {
id = 1959
picture = "event_intrigue"
trigger = {
condition = { type = is_independent }
condition = { type = has_vassal }
}
mean_time_to_happen = {
months = 180
modifier = {
condition = {
type = not
value = {
type = gold
value = 1
}
}
factor = 0.1
}
}
action_a = {#Don't Call them
effect = { type = prestige value = 5 }
}
action_b = {#Crave small contribution
effect = { type = gold value = last_month }
effect = { type = prestige value = -10 }
}
action_c = {#Crave large contribution
effect = { type = gold value = last_month }
effect = { type = prestige value = -50 }
}
}
As you can seen, you get the same gold amount for both the b and the c choice. Maybe option c should have last_year instead?
Upvote
0