May 29, 2017
Crusader Kings II - BjornB


Greetings!

Today I’d like to talk to you about a part of the game that we’ve chosen to overhaul and improve - the Tributary system! Introduced in Horse Lords, the ‘Make Tributary’ CB allowed you to go to war with a neighboring realm to make them pay you 40% of their income until the death of your current character. It was quite a simple system that didn’t always fit the intended purpose very well, so we decided to make it more advanced and capable of diverse use!

Tributaries can now come in a lot of flavors, as they are entirely definable in a new ‘tributary_types’ file. You define a name and then you set the parameters for how you would like the Tributary to work. You are able to customize a lot of things, for example; the various tribute percentages, if the Tributary should be set free on death or if the Suzerain must defend the Tributary in wars.

With this new system we have lots of ideas on where we could add new types of Tributaries, i.e. Permanent Tributaries or Nomad Tributaries. If you have any ideas for a type of Tributary (and when it would make sense to have it/when to gain access to the CB) feel free to post a suggestion in this thread!

To demonstrate, here’s the script for an example Tributary type:

example = { # name used for that type of tributary. "default" is the standard type, replacing the old tributaries, and "none" is reserved and should not be used tributary_name = TRIBUTARY_DEFAULT_NAME # localization string used for tributaries of that type (ie "Tributary" for the default type, "Permanent Tributary" for the Permanent type, etc) tributary_plural = TRIBUTARY_DEFAULT_PLURAL # localization string used for tributaries of that type, when there is more than one (ie "Tributaries" for the default type, "Permanent Tributaries" for the Permanent type, etc) suzerain_name = SUZERAIN_DEFAULT_NAME # localization string used for suzerains of that tributary type (ie "Suzerain" for the default type, "Permanent Suzerain" for the Permanent type, etc) tribute_name = TRIBUTARY_DEFAULT_TRIBUTE # localization string used for "paying $TRIBUTE$" for that tributary type breaks_at_suzerain_death = yes # yes/no value determining if the tributary relationship is dissolved when the suzerain dies. breaks_at_tributary_death = no # yes/no value determining if the tributary relationship is dissolved when the tributary dies suzerain_must_defend = no # yes/no value determining if the suzerain is forced to accept calls to arms from tributary in defensive wars (wars were the tributary is the defender) # if they decline anyway, they will lose the tributary and an amount of prestige defined in defines.lua, called SUZERAIN_DEFENDER_CALL_DECLINE_COST tributary_can_be_summoned = yes # yes/no value determining if the suzerain can calls the tributaries to war (as tribal vassals / allies) tributary_must_defend = yes # yes/no value determining if the tributaries are forced to accept defensive calls to arms tributaries_can_infight = yes # yes/no value determining if the tributaries can fight against each others, if both tributaries are of the same type # if tributaries are of different types, they will always be allowed to fight each other, even if they have the same suzerain suzerain_can_join_infighting = yes # yes/no value determining if the suzerain can join a tributary in a war against another tributaries_can_unite = no # yes/no value determining if, when trying to break, the tributaries can band together against the suzerain, à la major revolt breaks_on_realm_change=yes # yes/no value determining if the tributary relationship is dissolved when the tributary's titles change realms cbs_against_suzerain = { # list of CBs tributaries can use against their suzerain free_tributary_cb } income_tribute_percentage = { # how much of their monthly income the tributary must pay to their suzerain. # THIS IS ONLY EVALUATED WHEN THE TRIBUTARY RELATIONSHIP IS FORMED # and is not reevaluated afterwards # this value is an MTTH and should compute a value between 0 and 1, inclusive # in case the total is less than 0, it will be counted as 0 # in case the total is more than 1, it will be counted as 1 # current scope is the tributary, FROM is the suzerain value = 0.10 additive_modifier = { value = 0.05 FROM = { is_merchant_republic = yes } } } reinforce_tribute_percentage = { # How much of the tributary's reinforcement rate will go to the suzerain's instead. # THIS IS ONLY EVALUATED WHEN THE TRIBUTARY RELATIONSHIP IS FORMED # and is not reevaluated afterwards # this value is an MTTH and should compute a value between 0 and 1, inclusive # in case the total is less than 0, it will be counted as 0 # in case the total is more than 1, it will be counted as 1 # current scope is the tributary, FROM is the suzerain # this is applied by subtracting the percentage, as is, from the tributary's reinforcement rate # and adding a scaled (based on demesne size= version of the percentage to the suzerain # So, for example, the tributary loses 10% of reinforcement rate, but the suzerain gains 10% * (tributary's demesne size) / (suzerain's demesne size) value = 0.10 additive_modifier = { value = 0.05 FROM = { is_merchant_republic = yes } } } prestige_to_suzerain = { # how much of prestige the suzerain gains every month per tributary (of that type) he holds # this value is an MTTH and the raw value will be added to the suzerain's prestige every month. # current scope is the suzerain, FROM is the tributary value = 0 } prestige_to_tributary = { # how much prestige the tributary gains every month # this value is an MTTH and the raw value will be added to the tributary's prestige every month. # to make them lose prestige, return a negative value # current scope is the tributary, FROM is the suzerain value = 0 } piety_to_suzerain = { # how much of piety the suzerain gains every month per tributary (of that type) he holds # this value is an MTTH and the raw value will be added to the suzerain's piety every month. # current scope is the suzerain, FROM is the tributary value = 0 } piety_to_tributary = { # how much of piety a tributary gains every month # this value is an MTTH and the raw value will be added to the tributary's piety every month. # to make them lose piety, return a negative value # current scope is the tributary, FROM is the suzerain value = 0 } }

I’d also like to expand upon something we touched upon in the last DD; the new ‘unjust conquest’ CB (now renamed to Border Dispute). When declaring a Border Dispute over a County you first and foremost have to pay an upfront cost of Piety and Gold scaled to your tier (in the case of Pagans, prestige is used), but you also take an opinion hit from both your religious head (if you have one) as well as any landed characters of the targeted religious group in both your realm and the one you’re attacking. Note that these opinion modifiers stack! This makes the border Dispute CB dangerous to use on characters of your own religion, especially if you have a religious head capable of excommunicating you. You will primarily want to use this CB to expand early on when drawing the ire of your co-religionists is worth the risk, or against characters not of your religion.


Example is of an Irish Count wanting to conquer another Irish Count.


Note that Muslims, Nomads and in certain cases Pagans do not have access to this CB, as their current CB’s are already superior. It is also possible to turn the CB off entirely by using Game Rules.


Note that we’ve also decided to leave Fabricate Claim as it is right now.

//rageair

Read the original post


Useful links
Official Website
Crusader Kings II Wiki
Crusader Kings II Development Diary Archive
May 29, 2017
Crusader Kings II - BjornB


Greetings!

Today I’d like to talk to you about a part of the game that we’ve chosen to overhaul and improve - the Tributary system! Introduced in Horse Lords, the ‘Make Tributary’ CB allowed you to go to war with a neighboring realm to make them pay you 40% of their income until the death of your current character. It was quite a simple system that didn’t always fit the intended purpose very well, so we decided to make it more advanced and capable of diverse use!

Tributaries can now come in a lot of flavors, as they are entirely definable in a new ‘tributary_types’ file. You define a name and then you set the parameters for how you would like the Tributary to work. You are able to customize a lot of things, for example; the various tribute percentages, if the Tributary should be set free on death or if the Suzerain must defend the Tributary in wars.

With this new system we have lots of ideas on where we could add new types of Tributaries, i.e. Permanent Tributaries or Nomad Tributaries. If you have any ideas for a type of Tributary (and when it would make sense to have it/when to gain access to the CB) feel free to post a suggestion in this thread!

To demonstrate, here’s the script for an example Tributary type:

example = { # name used for that type of tributary. "default" is the standard type, replacing the old tributaries, and "none" is reserved and should not be used tributary_name = TRIBUTARY_DEFAULT_NAME # localization string used for tributaries of that type (ie "Tributary" for the default type, "Permanent Tributary" for the Permanent type, etc) tributary_plural = TRIBUTARY_DEFAULT_PLURAL # localization string used for tributaries of that type, when there is more than one (ie "Tributaries" for the default type, "Permanent Tributaries" for the Permanent type, etc) suzerain_name = SUZERAIN_DEFAULT_NAME # localization string used for suzerains of that tributary type (ie "Suzerain" for the default type, "Permanent Suzerain" for the Permanent type, etc) tribute_name = TRIBUTARY_DEFAULT_TRIBUTE # localization string used for "paying $TRIBUTE$" for that tributary type breaks_at_suzerain_death = yes # yes/no value determining if the tributary relationship is dissolved when the suzerain dies. breaks_at_tributary_death = no # yes/no value determining if the tributary relationship is dissolved when the tributary dies suzerain_must_defend = no # yes/no value determining if the suzerain is forced to accept calls to arms from tributary in defensive wars (wars were the tributary is the defender) # if they decline anyway, they will lose the tributary and an amount of prestige defined in defines.lua, called SUZERAIN_DEFENDER_CALL_DECLINE_COST tributary_can_be_summoned = yes # yes/no value determining if the suzerain can calls the tributaries to war (as tribal vassals / allies) tributary_must_defend = yes # yes/no value determining if the tributaries are forced to accept defensive calls to arms tributaries_can_infight = yes # yes/no value determining if the tributaries can fight against each others, if both tributaries are of the same type # if tributaries are of different types, they will always be allowed to fight each other, even if they have the same suzerain suzerain_can_join_infighting = yes # yes/no value determining if the suzerain can join a tributary in a war against another tributaries_can_unite = no # yes/no value determining if, when trying to break, the tributaries can band together against the suzerain, à la major revolt breaks_on_realm_change=yes # yes/no value determining if the tributary relationship is dissolved when the tributary's titles change realms cbs_against_suzerain = { # list of CBs tributaries can use against their suzerain free_tributary_cb } income_tribute_percentage = { # how much of their monthly income the tributary must pay to their suzerain. # THIS IS ONLY EVALUATED WHEN THE TRIBUTARY RELATIONSHIP IS FORMED # and is not reevaluated afterwards # this value is an MTTH and should compute a value between 0 and 1, inclusive # in case the total is less than 0, it will be counted as 0 # in case the total is more than 1, it will be counted as 1 # current scope is the tributary, FROM is the suzerain value = 0.10 additive_modifier = { value = 0.05 FROM = { is_merchant_republic = yes } } } reinforce_tribute_percentage = { # How much of the tributary's reinforcement rate will go to the suzerain's instead. # THIS IS ONLY EVALUATED WHEN THE TRIBUTARY RELATIONSHIP IS FORMED # and is not reevaluated afterwards # this value is an MTTH and should compute a value between 0 and 1, inclusive # in case the total is less than 0, it will be counted as 0 # in case the total is more than 1, it will be counted as 1 # current scope is the tributary, FROM is the suzerain # this is applied by subtracting the percentage, as is, from the tributary's reinforcement rate # and adding a scaled (based on demesne size= version of the percentage to the suzerain # So, for example, the tributary loses 10% of reinforcement rate, but the suzerain gains 10% * (tributary's demesne size) / (suzerain's demesne size) value = 0.10 additive_modifier = { value = 0.05 FROM = { is_merchant_republic = yes } } } prestige_to_suzerain = { # how much of prestige the suzerain gains every month per tributary (of that type) he holds # this value is an MTTH and the raw value will be added to the suzerain's prestige every month. # current scope is the suzerain, FROM is the tributary value = 0 } prestige_to_tributary = { # how much prestige the tributary gains every month # this value is an MTTH and the raw value will be added to the tributary's prestige every month. # to make them lose prestige, return a negative value # current scope is the tributary, FROM is the suzerain value = 0 } piety_to_suzerain = { # how much of piety the suzerain gains every month per tributary (of that type) he holds # this value is an MTTH and the raw value will be added to the suzerain's piety every month. # current scope is the suzerain, FROM is the tributary value = 0 } piety_to_tributary = { # how much of piety a tributary gains every month # this value is an MTTH and the raw value will be added to the tributary's piety every month. # to make them lose piety, return a negative value # current scope is the tributary, FROM is the suzerain value = 0 } }

I’d also like to expand upon something we touched upon in the last DD; the new ‘unjust conquest’ CB (now renamed to Border Dispute). When declaring a Border Dispute over a County you first and foremost have to pay an upfront cost of Piety and Gold scaled to your tier (in the case of Pagans, prestige is used), but you also take an opinion hit from both your religious head (if you have one) as well as any landed characters of the targeted religious group in both your realm and the one you’re attacking. Note that these opinion modifiers stack! This makes the border Dispute CB dangerous to use on characters of your own religion, especially if you have a religious head capable of excommunicating you. You will primarily want to use this CB to expand early on when drawing the ire of your co-religionists is worth the risk, or against characters not of your religion.


Example is of an Irish Count wanting to conquer another Irish Count.


Note that Muslims, Nomads and in certain cases Pagans do not have access to this CB, as their current CB’s are already superior. It is also possible to turn the CB off entirely by using Game Rules.


Note that we’ve also decided to leave Fabricate Claim as it is right now.

//rageair

Read the original post


Useful links
Official Website
Crusader Kings II Wiki
Crusader Kings II Development Diary Archive
May 23, 2017
Europa Universalis IV - BjornB


Good day all and welcome to another Development diary for our upcoming Immersion Pack Third Rome.

As covered in our previous diary we're spicing up the Russian region with cool new mechanics and flavour. Today we're going to be covering a couple of new options available to the Tsardom.

A Tsardom government form is gained automatically when forming Russia and brings one up to Empire rank. You are granted some hefty bonuses to available States and Absolutism but you also gain access to claim entire Areas.



For 50% more Spynetwork cost, the Tsar may lay claim to an entire area, rather than settle for claiming individual provinces.

As part of the revamped Russian Ideas set granted for forming Russia, Siberian Frontiers may now be established too. Any uncolonized province bordering a city of yours which is connected by land to your capital is suitable for the establishment of such a Frontier at a cost of 20 DIP.



Upon establishing a Siberian Frontier, the province becomes colonized and begins to grow without need of a colonist. Growth is between 5 and 15 settlers per month and the colony will not cost any colonial maintenance. If captured by a hostile power, the colony will lose its status at a Siberian Frontier and revert to being a regular colony.



Due to these additions in Third Rome, the Russian Nation will have a lot more flexibility with how it wants to tackle the wastes of the East, as they are not obliged to acquire colonists nor are they confined to claiming the nomads province by province. It has also been heartwarming to watch Russia in hands-off observation games as they stride Eastwards. As a little spoiler, there will be an Achievement for reaching the East coast in a time limit when Third Rome goes live.

So we've talked a fair bit about Russia in these dev diaries. Makes a lot of sense since they are the star of the show in Third Rome, but next week we are going to talk about something available for them and their brothers-in-faith. We'll see you then!

Read the original post


Useful links
Official Website
Europa Universalis IV Wiki
Europa Universalis IV Development Diary Archive
May 23, 2017
Europa Universalis IV - BjornB


Good day all and welcome to another Development diary for our upcoming Immersion Pack Third Rome.

As covered in our previous diary we're spicing up the Russian region with cool new mechanics and flavour. Today we're going to be covering a couple of new options available to the Tsardom.

A Tsardom government form is gained automatically when forming Russia and brings one up to Empire rank. You are granted some hefty bonuses to available States and Absolutism but you also gain access to claim entire Areas.



For 50% more Spynetwork cost, the Tsar may lay claim to an entire area, rather than settle for claiming individual provinces.

As part of the revamped Russian Ideas set granted for forming Russia, Siberian Frontiers may now be established too. Any uncolonized province bordering a city of yours which is connected by land to your capital is suitable for the establishment of such a Frontier at a cost of 20 DIP.



Upon establishing a Siberian Frontier, the province becomes colonized and begins to grow without need of a colonist. Growth is between 5 and 15 settlers per month and the colony will not cost any colonial maintenance. If captured by a hostile power, the colony will lose its status at a Siberian Frontier and revert to being a regular colony.



Due to these additions in Third Rome, the Russian Nation will have a lot more flexibility with how it wants to tackle the wastes of the East, as they are not obliged to acquire colonists nor are they confined to claiming the nomads province by province. It has also been heartwarming to watch Russia in hands-off observation games as they stride Eastwards. As a little spoiler, there will be an Achievement for reaching the East coast in a time limit when Third Rome goes live.

So we've talked a fair bit about Russia in these dev diaries. Makes a lot of sense since they are the star of the show in Third Rome, but next week we are going to talk about something available for them and their brothers-in-faith. We'll see you then!

Read the original post


Useful links
Official Website
Europa Universalis IV Wiki
Europa Universalis IV Development Diary Archive
Crusader Kings II - contact@rockpapershotgun.com (Adam Smith)

Forget everything Fallout has ever taught you because war is changing. We already knew about upcoming geographical expansions in Crusader Kings II [official site], making areas that were previously impassable playable, but fresh news arrived in today’s dev diary and it involves changes to fundamental systems. The major shift will be in the causes of war, which will no longer require justification in every instance. That could be a dramatic change, given that one of the most important aspects of CK II is the need for a Casus Belli to not only declare war but to inform the goals of a war. The other alterations will come in battle itself, specifically sieges. More below.

… [visit site to read more]

May 22, 2017
Crusader Kings II - BjornB

Greetings all!

One of the great things about meeting our dear players - you folks - in real life (such as at PDXCON) is getting to hear such a lot of constructive, persuasive suggestions for improvements. For example, two things that were brought up last week were how annoying the “Fabricate Claim” job is, and the fact that Siege Assaults are rather overpowered when you have the numbers to just blitz down even heavily fortified Holdings. So, we decided to experiment with some changes…

First off, we’re going to deemphasize the “Fabricate Claim” job by giving all playable entities (including Christians) a form of “Unjustified War” Casus Belli that will allow you to seize a single County for an upfront cost of Piety, Prestige or Gold (depending on your Religion and Government Form.) Ideally, I’d also like to replace the “Fabricate Claim” job with something else (maybe something to do with foreign embassies and arranging marriages, or something to do with Laws. Suggestions are welcome!) However, we might decide leave it there as it is (it does still have some uses.)

Next, we’re adding a Game Rule for Siege Assaults. The options are “Unlimited”, which works like before, “On”, which disables Assaults against Holdings at Fort Level 6 or above, and “Off”, which disables Assaults entirely. We’re currently playing around with these changes, so the exact rules for the “On” setting might change. On a related note, the time it takes to siege down Holdings is also being tweaked, to make it quicker overall but also making the Fort Level matter more.



When we sat down and talked about the above tweaks, we also decided to (rather dramatically) increase the “Ticking Warscore” rate for the attackers in wars. This necessitated splitting some defines (CONTESTED_TITLE_OCCUPIED_WARSCORE_BONUS, etc) into defender and attacker versions.

We are still evaluating how well these changes turned out. It’s likely we’ll tweak some numbers (or even backtrack on something.) So far though, it appears quite promising, positively altering the “rhythm” of warfare!



That’s all for now, stay tuned for the CK2 livestream, starting at 16:00 CET today. Until next time!

Read the original post


Useful links
Official Website
Crusader Kings II Wiki
Crusader Kings II Development Diary Archive
May 22, 2017
Crusader Kings II - BjornB

Greetings all!

One of the great things about meeting our dear players - you folks - in real life (such as at PDXCON) is getting to hear such a lot of constructive, persuasive suggestions for improvements. For example, two things that were brought up last week were how annoying the “Fabricate Claim” job is, and the fact that Siege Assaults are rather overpowered when you have the numbers to just blitz down even heavily fortified Holdings. So, we decided to experiment with some changes…

First off, we’re going to deemphasize the “Fabricate Claim” job by giving all playable entities (including Christians) a form of “Unjustified War” Casus Belli that will allow you to seize a single County for an upfront cost of Piety, Prestige or Gold (depending on your Religion and Government Form.) Ideally, I’d also like to replace the “Fabricate Claim” job with something else (maybe something to do with foreign embassies and arranging marriages, or something to do with Laws. Suggestions are welcome!) However, we might decide leave it there as it is (it does still have some uses.)

Next, we’re adding a Game Rule for Siege Assaults. The options are “Unlimited”, which works like before, “On”, which disables Assaults against Holdings at Fort Level 6 or above, and “Off”, which disables Assaults entirely. We’re currently playing around with these changes, so the exact rules for the “On” setting might change. On a related note, the time it takes to siege down Holdings is also being tweaked, to make it quicker overall but also making the Fort Level matter more.



When we sat down and talked about the above tweaks, we also decided to (rather dramatically) increase the “Ticking Warscore” rate for the attackers in wars. This necessitated splitting some defines (CONTESTED_TITLE_OCCUPIED_WARSCORE_BONUS, etc) into defender and attacker versions.

We are still evaluating how well these changes turned out. It’s likely we’ll tweak some numbers (or even backtrack on something.) So far though, it appears quite promising, positively altering the “rhythm” of warfare!



That’s all for now, stay tuned for the CK2 livestream, starting at 16:00 CET today. Until next time!

Read the original post


Useful links
Official Website
Crusader Kings II Wiki
Crusader Kings II Development Diary Archive
Sid Meier's Civilization® V - contact@rockpapershotgun.com (Adam Smith)

Jon Shafer was 21 years old when he became lead designer of Civilization V. Now working at Paradox on an unannounced project and on his own historical strategy game At The Gates in his spare time, he says he’s learning from the likes of Spelunky along with the more obvious strategic influences. We spoke about how the second half of every Civ sucks, the part the series played in his life, the perils of boredom in strategy design, how much we love maps, and what the future holds for both Shafer and Paradox.

I began by asking how he ended up sitting at the Paradox Convention, in Stockholm, the city that has now been his home for two weeks: “It’s quite a long story, actually.”

That story begins in Denver, around 2003.

… [visit site to read more]

Europa Universalis IV - contact@rockpapershotgun.com (Fraser Brown)

Since you already know what the best Crusader Kings 2 mods are, I thought you should probably get the skinny on the best additions to Paradox s other grand strategy romp: Europa Universalis 4. It s got more than a few, too.

Tweaks, fantastical overhauls, graphics improvements modders have given the game plenty of love. And while some mods have fallen by the wayside, there s still a mountain of crackers to dig through. … [visit site to read more]

Europa Universalis IV - BjornB


Hi everyone, and welcome to another Europa Universalis development diary. I hope you all enjoyed PdxCon last weekend, either in person or from watching the streams.

As you all know, we announced our new Immersion Pack, Third Rome, which will be out in June this year for 9.99$. So what is an immersion pack then? Well, it is something between a full expansion and a small graphics pack, similar to the story pack Leviathans for Stellaris.

Closest comparison to Third Rome of our previous releases for EU4 would be Wealth of Nations when it comes to amount and size of features. Third Rome also comes bundled with a portrait pack for russians, and 3 new sprite-packs, for 12 countries in the russian region, including Ryazan, Lithuania and Perm.

So, what cool features will we talk about today then?

We’re adding three new russian government types. The actual types are in the free patch, but the abilities we give them as well, belong to the Immersion Pack.

Veche Republic
This is a new republic form, which works like a merchant republic and have access to the russian abilities as well. They are always duchy rank, and their bonus is +1 merchant. Novgorod and Pskov starts as Veche Republics. It also gives +3 to states.

Principality
This is the new monarchy governmentform, which all russian monarchies start with. It has access to the russian abilities, and while they are locked to duchy rank, they have a bonus of -1 unrest and +5% Tax Modifier. It also gives +3 to states.

Tsardom
This government form is given when forming Russia, and is automatically empire rank. Besides giving +10 to amount of states and access to the russian abilities, it gives the following bonuses. +20% Manpower, +0.1 Yearly Absolutism & -0.05 monthly autonomy.




The russian abilities work like this. All actions have a bar to fill up before they can be used. Bar fill up from 0 - 100, increasing yearly by the ruler’s monarch point in the category, and a base +3. The actual bar can hold 150, so you don’t lose by not using it immediately.
  • The Administrative ability is called Reform Sudebnik, and reduces autonomy by 10% in all provinces you own.
  • The diplomatic ability is called Support Oprichnina, and reduces progress of all your rebelfactions by 30% each.
  • The military ability is called Raise Streltsy, and reduces war exhaustion by 2, and raises 20% of your forcelimit as Streltsy Infantry in your capital.

So what is Streltsy units? Previously we had three categories of units, with regulars, mercenaries & banners. In 1.22 there are two more categories added, and one of those is the Streltsy.

Streltsy arrive at full strength, but low morale, and do not cost manpower nor gold at recruit, but otherwise works like a regular unit, if not for two distinct differences. First, the amount of streltsy compared to your force.limit increases your stability costs, while each streltsy regiment provides +10% fire damage.

The other category we add for 1.22 is Cossacks, which is there for everyone that bought the “The Cossacks” expansion. Cossacks work like regulars, except they do +10% extra shock damage.

Cossacks are recruited as an estate interaction, where each province assigned to the Cossacks estate will give you 1 cavalry cossack regiment.

Of course, fittingly for the focus on this update, we have added three new interactions to the Cossacks estate.
  • Conscripting Elites: gain army tradition, lose loyalty
  • Supply Arms: lose MIL, gain loyalty and influence
  • Permit Self Governance: give autonomy to cossack lands, gain loyalty and influence

Next week, we’ll take a deeper look into more abilities of Russia and the Tsardom.

Read the original post


Useful links
Official Website
Europa Universalis IV Wiki
Europa Universalis IV Development Diary Archive
...