Skip to content

Commit

Permalink
cult of reason to state atheism (#467)
Browse files Browse the repository at this point in the history
* some additional traits

* cult of reason to state atheism
  • Loading branch information
Zemurin authored Sep 25, 2023
1 parent 64447ef commit 9dfd304
Show file tree
Hide file tree
Showing 13 changed files with 43 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
animal_speaking = {}
latinophone = {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
l_braz_por:
animal_speaking:0 "Linguagem animal"
latinophone:0 "Latinophone"
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
l_english:
animal_speaking:0 "Animal Speaking"
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
l_french:
animal_speaking:0 "Langage animal"
latinophone:0 "Latinophone"
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
l_german:
animal_speaking:0 "Tiersprache"
latinophone:0 "Latinophone"
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
l_japanese:
animal_speaking:0 "動物の言語"
latinophone:0 "Latinophone"
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
l_korean:
animal_speaking:0 "동물의 언어"
latinophone:0 "Latinophone"
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
l_polish:
animal_speaking:0 "Język zwierząt"
latinophone:0 "Latinophone"
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
l_russian:
animal_speaking:0 "язык животных"
latinophone:0 "Latinophone"
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
l_simp_chinese:
animal_speaking:0 "动物语言"
latinophone:0 "Latinophone"
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
l_spanish:
animal_speaking:0 "Lenguaje animal"
latinophone:0 "Latinophone"
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
l_turkish:
animal_speaking:0 "hayvan dili"
latinophone:0 "Latinophone"
9 changes: 9 additions & 0 deletions EU4ToVic3/Source/V3World/PoliticalManager/Country/Country.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,15 @@ void V3::Country::convertFromEU4Country(const ClayManager& clayManager,
if (sourceCountry->hasModifier("the_abolish_slavery_act"))
processedData.laws.emplace("law_slavery_banned");

// state atheism - we're setting this law right here and now as it's a base for further laws later when we have techs.
if (sourceCountry->hasModifier("cult_of_reason"))
{
processedData.techs.emplace("rationalism");
processedData.techs.emplace("academia");
processedData.techs.emplace("empiricism");
processedData.laws.emplace("law_state_atheism");
}

// (ex-)colonial countries require colonization to continue expanding.
if (sourceCountry->isColony())
{
Expand Down

0 comments on commit 9dfd304

Please sign in to comment.