Rafiki's Corporate Structure Mod
From VickyWiki
After the discovery of "Market Structure" (3302), one of three inventions will fire that changes the corporate structure of a nation, shifting the cost of expanding industry compared to building new. Not everyone is happy with this being random, and here is what you can do about it if you like:
Replace invention 352 in VICTORIA/db/tech/commerce_inventions.txt with the one below and make sure to delete inventions 353 and 354.
event = {
id = 352
random = no
invention = yes
picture = marketfunctionality
trigger = {
technology = 3302
}
name = "Change in corporate structure"
desc = "As our economy grows, the structure of our nation's corporations changes, into:"
style = 0
date = { day = 1 month = january year = 1850 }
offset = 60 # Check for trigger conditions every 60 days
deathdate = { day = 30 month = december year = 1860 }
action_a = {
name = "Polypoly!"
ai_chance = 25
command = { type = factory_cost_mod value = -25 }
command = { type = capacity_cost_mod value = 10 }
}
action_b = {
name = "Samepoly! We like it just the way it is, thank you!"
ai_chance = 25
command = { type = prestige value = -5 } # Small prestige loss for being stuck in old ways ;)
}
action_c = {
name = "Oligopoly!"
ai_chance = 25
command = { type = factory_cost_mod value = 25 }
command = { type = capacity_cost_mod value = -10 }
}
action_d = {
name = "Monopoly!"
ai_chance = 25
command = { type = factory_cost_mod value = 100 }
command = { type = capacity_cost_mod value = -25 }
}
}

