This module is a list of movement ideologies for use with Module:Ideology.
To add a new entry to this list, copy the template below and fill in the information. Note that single or double quotes must be used as in the template
p['<name>'] = {
loc = "<localization>",
desc = "<description>",
icon = "Ideology <icon>.png",
move = true,
stances = {
["<Law Group>"] = {
{ "<law>", },
{ "<law>", "<law>", },
{ },
{ },
{ },
},
},
}
local uString = mw.ustring
local function loc(t1)
t2 = {}
for k, v in pairs(t1) do
t2[k] = v -- script_name
t2[uString.lower(v.loc)] = v -- loc
local short = uString.gsub(k,"ideology_","")
if not t2[short] then
t2[short] = v -- short_script_name
end
if not t2[uString.gsub(short,"_"," ")] then
t2[uString.gsub(short,"_"," ")] = v -- short script name
end
if not t2[uString.lower(v.loc).." movement"] then
t2[uString.lower(v.loc).." movement"] = v -- loc movement
end
end
return t2
end
local p = {};
p['ideology_anti_slavery_movement'] = {
loc = "Anti-Slavery",
desc = "This movement abhors slavery and views it as a feature of a barbarous past.",
icon = "Ideology abolitionist.png",
move = true,
stances = {
["Slavery"] = {
{ "law_slave_trade", "law_debt_slavery", },
{ "law_legacy_slavery", },
{ "law_slavery_banned", },
{},
{},
},
["Land Reform"] = {
{ "law_serfdom", },
{},
{ "law_tenant_farmers", "law_homesteading", "law_collectivized_agriculture", "law_commercialized_agriculture", },
{},
{},
},
},
}
p['ideology_pro_slavery_movement'] = {
loc = "Pro-Slavery",
desc = "This movement views slavery as a necessary part of a well-functioning society, and supports the institutions that uphold it.",
icon = "Ideology slaver.png",
move = true,
stances = {
["Slavery"] = {
{ "law_slavery_banned", },
{},
{ },
{ "law_debt_slavery", "law_legacy_slavery", "law_slave_trade", },
{ },
},
["Policing"] = {
{ "law_no_police", },
{ "law_dedicated_police", },
{ "law_militarized_police", },
{ "law_local_police", },
{},
},
},
}
p['ideology_absolutist_movement'] = {
loc = "Absolutist",
desc = "This group is loyal to the institution of the monarchy, and supports vesting it with absolute power.",
icon = "Ideology royalist.png",
move = true,
stances = {
["Governance Principles"] = {
{ "law_council_republic", },
{ "law_theocracy", "law_presidential_republic", "law_parliamentary_republic", },
{ "law_corporate_state", },
{ },
{ "law_monarchy", },
},
["Distribution of Power"] = {
{ "law_anarchy", "law_technocracy", "law_universal_suffrage", },
{ "law_census_voting", },
{ "law_single_party_state", "law_wealth_voting", },
{ "law_landed_voting", "law_oligarchy", },
{ "law_autocracy", },
},
["Bureaucracy"] = {
{},
{ "law_elected_bureaucrats", },
{},
{ "law_appointed_bureaucrats", "law_hereditary_bureaucrats", },
{},
},
["Economic System"] = {
{ "law_cooperative_ownership", "law_industry_banned", "law_extraction_economy", },
{ "law_command_economy", "law_laissez_faire", },
{ "law_interventionism", "law_agrarianism", },
{ "law_traditionalism", },
{},
},
["Land Reform"] = {
{ "law_collectivized_agriculture", },
{ "law_homesteading", },
{ "law_commercialized_agriculture", "law_serfdom", "law_tenant_farmers", },
{},
{},
},
},
}
p['ideology_royalist_movement'] = {
loc = "Royalist",
desc = "This group's loyalties are to the monarchy and its rightful ruler.",
icon = "Ideology royalist.png",
move = true,
stances = {
["Governance Principles"] = {
{ "law_council_republic", },
{ "law_theocracy", "law_presidential_republic", "law_parliamentary_republic", },
{ "law_corporate_state", },
{ },
{ "law_monarchy", },
},
},
}
p['ideology_proletarian_movement'] = {
loc = "Proletarian",
desc = "This movement views politics through the lens of class struggle, supporting better conditions and increased political influence for workers.",
icon = "Ideology proletarian.png",
move = true,
stances = {
["Taxation"] = {
{},
{ "law_per_capita_based_taxation", },
{ "law_land_based_taxation", "law_proportional_taxation", "law_consumption_based_taxation", },
{ "law_graduated_taxation", },
{},
},
["Economic System"] = {
{ "law_extraction_economy", "law_industry_banned" },
{ "law_traditionalism", "law_laissez_faire"},
{ "law_agrarianism", },
{ "law_command_economy", "law_interventionism", },
{ "law_cooperative_ownership", },
},
["Welfare"] = {
{},
{ "law_no_social_security", },
{ "law_poor_laws", },
{ "law_wage_subsidies", },
{ "law_old_age_pension", },
},
["Health System"] = {
{},
{ "law_private_health_insurance", "law_no_health_system", },
{ "law_charitable_health_system", },
{ "law_public_health_insurance", },
{},
},
},
}
p['ideology_socialist'] = {
loc = "Socialist",
desc = "This movement supports workers' ownership of the means of production and the dismantling of the capitalist system.",
icon = "Ideology socialist.png",
move = true,
stances = {
["Governance Principles"] = {
{ "law_theocracy", "law_monarchy", "law_corporate_state", },
{},
{ "law_parliamentary_republic", "law_presidential_republic", },
{ "law_council_republic", },
{},
},
["Economic System"] = {
{ "law_traditionalism", "law_laissez_faire", "law_industry_banned", "law_extraction_economy", },
{},
{ "law_interventionism", "law_agrarianism", },
{ "law_command_economy", "law_cooperative_ownership", },
{},
},
["Trade Policy"] = {
{},
{ "law_free_trade", },
{ "law_isolationism", "law_mercantilism", },
{ "law_protectionism", },
{},
},
["Taxation"] = {
{},
{ "law_per_capita_based_taxation", },
{ "law_land_based_taxation", "law_proportional_taxation", "law_consumption_based_taxation", },
{ "law_graduated_taxation", },
{},
},
["Labor Rights"] = {
{},
{ "law_no_workers_rights", },
{ "law_regulatory_bodies", },
{ "law_worker_protections", },
{},
},
["Welfare"] = {
{},
{ "law_no_social_security", },
{ "law_poor_laws", },
{ "law_wage_subsidies", },
{ "law_old_age_pension", },
},
},
}
p['ideology_communist_movement'] = {
loc = "Communist",
desc = "This movement believes in the working class seizing political power through whatever means necessary.",
icon = "Ideology communist.png",
move = true,
stances = {
["Labor Rights"] = {
{},
{},
{ "law_no_workers_rights", },
{ "law_regulatory_bodies", },
{ "law_worker_protections", },
},
["Governance Principles"] = {
{ "law_corporate_state", "law_theocracy", "law_monarchy", },
{ "law_presidential_republic", "law_parliamentary_republic", },
{},
{},
{ "law_council_republic", },
},
["Economic System"] = {
{ "law_laissez_faire", "law_industry_banned", "law_extraction_economy", },
{ "law_agrarianism", "law_traditionalism", },
{ "law_interventionism", },
{},
{ "law_command_economy", "law_cooperative_ownership", },
},
["Church and State"] = {
{ "law_state_religion", },
{ "law_freedom_of_conscience", },
{ "law_total_separation", },
{ "law_state_atheism", },
{},
},
["Land Reform"] = {
{ "law_serfdom", },
{ "law_commercialized_agriculture", "law_tenant_farmers", },
{ "law_homesteading", },
{ "law_collectivized_agriculture", },
{},
},
},
}
p['ideology_anarchist_movement'] = {
loc = "Anarchist",
desc = "This movement seeks the abolition of hierarchy, authority and the state, leaving people to govern themselves.",
icon = "Ideology anarchist.png",
move = true,
stances = {
["Citizenship"] = {
{ "law_ethnostate", "law_national_supremacy", },
{ "law_racial_segregation", },
{},
{ "law_cultural_exclusion", },
{ "law_multicultural", },
},
["Distribution of Power"] = {
{ "law_technocracy", "law_oligarchy", "law_autocracy", },
{ "law_census_voting", "law_wealth_voting", "law_landed_voting", "law_single_party_state", },
{ "law_universal_suffrage", },
{},
{ "law_anarchy", },
},
["Economic System"] = {
{ "law_interventionism", "law_traditionalism", "law_laissez_faire", "law_extraction_economy", },
{ "law_command_economy", "law_industry_banned", },
{ "law_agrarianism", },
{},
{ "law_cooperative_ownership", },
},
["Army Model"] = {
{ "law_peasant_levies", },
{ "law_mass_conscription", },
{ "law_professional_army", },
{},
{ "law_national_militia", },
},
["Free Speech"] = {
{ "law_outlawed_dissent", },
{ "law_censorship", },
{},
{ "law_right_of_assembly", },
{ "law_protected_speech", },
},
["Policing"] = {
{ "law_militarized_police", },
{ "law_local_police", "law_dedicated_police", },
{},
{ "law_no_police", },
{},
},
["Governance Principles"] = {
{ "law_corporate_state", "law_theocracy", "law_monarchy", },
{ "law_presidential_republic", "law_parliamentary_republic", },
{},
{},
{ "law_council_republic", },
},
},
}
p['ideology_vanguardist_movement'] = {
loc = "Vanguardist",
desc = "This movement seeks to achieve a socialist society through a revolution headed by a vanguard party of dedicated radicals.",
icon = "Ideology vanguardist.png",
move = true,
stances = {
["Governance Principles"] = {
{ "law_corporate_state", "law_theocracy", "law_monarchy", },
{ "law_presidential_republic", "law_parliamentary_republic", },
{},
{},
{ "law_council_republic", },
},
["Distribution of Power"] = {
{ "law_oligarchy", "law_autocracy", "law_census_voting", "law_wealth_voting", "law_landed_voting", },
{ "law_anarchy", "law_universal_suffrage", },
{},
{ "law_technocracy", },
{ "law_single_party_state", },
},
["Economic System"] = {
{ "law_laissez_faire", "law_industry_banned", "law_extraction_economy", },
{ "law_agrarianism", "law_traditionalism", },
{ "law_interventionism", },
{ "law_cooperative_ownership", },
{ "law_command_economy", },
},
["Trade Policy"] = {
{ "law_free_trade", },
{ "law_mercantilism", },
{},
{ "law_protectionism", "law_isolationism", },
{},
},
["Land Reform"] = {
{ "law_commercialized_agriculture", "law_serfdom", },
{ "law_tenant_farmers", },
{ "law_homesteading", },
{ "law_collectivized_agriculture", },
{},
},
},
}
p['ideology_fascist_movement'] = {
loc = "Fascist",
desc = "This movement seeks the establishment of a totalitarian state founded upon corporatist principles, and the revival of perceived traditional, authoritarian values in a modern context.",
icon = "Ideology fascist.png",
move = true,
stances = {
["Distribution of Power"] = {
{ "law_census_voting", "law_wealth_voting", "law_landed_voting", "law_technocracy", "law_anarchy", "law_universal_suffrage", },
{},
{ "law_oligarchy", },
{ "law_autocracy", },
{ "law_single_party_state", },
},
["Citizenship"] = {
{ "law_multicultural", },
{ "law_cultural_exclusion", },
{},
{ "law_national_supremacy", "law_racial_segregation", },
{ "law_ethnostate", },
},
["Army Model"] = {
{},
{ "law_national_militia", "law_peasant_levies", },
{},
{ "law_professional_army", },
{ "law_mass_conscription", },
},
["Free Speech"] = {
{ "law_protected_speech", },
{ "law_right_of_assembly", },
{ "law_censorship", },
{},
{ "law_outlawed_dissent", },
},
["Policing"] = {
{},
{ "law_no_police", },
{},
{ "law_local_police", "law_dedicated_police", },
{ "law_militarized_police", },
},
["Governance Principles"] = {
{ "law_council_republic", },
{ "law_theocracy", },
{ "law_monarchy", "law_presidential_republic", "law_parliamentary_republic", },
{ "law_corporate_state", },
{},
},
},
}
p['ideology_corporatist_movement'] = {
loc = "Corporatist",
desc = "This movement supports the resolution of class conflict through concessions from the upper class and collaboration between different social groups.",
icon = "Ideology corporatist.png",
move = true,
stances = {
["Governance Principles"] = {
{ "law_council_republic", },
{},
{ "law_theocracy", "law_monarchy", "law_presidential_republic", "law_parliamentary_republic", },
{ "law_corporate_state", },
{},
},
["Education System"] = {
{},
{ "law_no_schools", },
{ "law_private_schools", },
{ "law_religious_schools", "law_public_schools", },
{},
},
["Labor Rights"] = {
{},
{},
{ "law_no_workers_rights", "law_worker_protections", },
{ "law_regulatory_bodies", },
{},
},
["Welfare"] = {
{},
{ "law_no_social_security", },
{ "law_poor_laws", "law_old_age_pension", },
{ "law_wage_subsidies", },
{},
},
},
}
p['ideology_liberal_movement'] = {
loc = "Liberal",
desc = "This movement values the institution of democracy, and supports guaranteeing essential freedoms for citizens.",
icon = "Ideology liberal.png",
move = true,
stances = {
["Internal Security"] = {
{ "law_secret_police", },
{ "law_national_guard", },
{ "law_no_home_affairs", },
{},
{ "law_guaranteed_liberties", },
},
["Free Speech"] = {
{},
{ "law_outlawed_dissent", },
{ "law_censorship", },
{ "law_right_of_assembly", },
{ "law_protected_speech", },
},
["Distribution of Power"] = {
{ "law_anarchy", "law_autocracy", },
{ "law_single_party_state", "law_technocracy", "law_oligarchy", },
{},
{ "law_wealth_voting", "law_landed_voting", },
{ "law_census_voting", "law_universal_suffrage", },
},
["Bureaucracy"] = {
{},
{ "law_hereditary_bureaucrats", },
{ "law_appointed_bureaucrats", },
{ "law_elected_bureaucrats", },
{},
},
},
}
p['ideology_radical_movement'] = {
loc = "Radical",
desc = "This group strives for radical liberal reforms advancing democratic ideals.",
icon = "Ideology radical.png",
move = true,
stances = {
["Governance Principles"] = {
{ "law_theocracy", "law_council_republic", "law_monarchy", },
{},
{ "law_corporate_state", },
{ "law_presidential_republic", "law_parliamentary_republic", },
{},
},
["Distribution of Power"] = {
{ "law_anarchy", "law_oligarchy", "law_autocracy", },
{ "law_technocracy", "law_landed_voting", "law_single_party_state", },
{ "law_wealth_voting", },
{ "law_census_voting", },
{ "law_universal_suffrage", },
},
["Free Speech"] = {
{ "law_outlawed_dissent", },
{ "law_censorship", },
{},
{ "law_right_of_assembly", },
{ "law_protected_speech", },
},
["Internal Security"] = {
{ "law_secret_police", "law_national_guard", },
{},
{},
{ "law_no_home_affairs", },
{ "law_guaranteed_liberties", },
},
["Education System"] = {
{},
{ "law_no_schools", "law_religious_schools", },
{ "law_private_schools", },
{ "law_public_schools", },
{},
},
["Policing"] = {
{ "law_militarized_police", "law_local_police", },
{ "law_dedicated_police", },
{},
{ "law_no_police", },
{},
},
},
}
p['ideology_nihilist_movement'] = {
loc = "Nihilist",
desc = "This movement prioritizes the questioning and overturning of traditionalist social order and institutions at all costs, seeking to clear the ground for a comprehensively revolutionary society.",
icon = "Ideology nihilist.png",
move = true,
stances = {
["Governance Principles"] = {
{ "law_monarchy", "law_theocracy", },
{ "law_corporate_state", },
{ "law_presidential_republic", "law_parliamentary_republic", },
{ "law_council_republic", },
{},
},
["Church and State"] = {
{ "law_state_religion", },
{ "law_freedom_of_conscience", },
{ "law_total_separation", },
{},
{ "law_state_atheism", },
},
["Caste Hegemony"] = {
{ "law_hindu_caste_enforced", },
{ "law_hindu_caste_codified", },
{ "law_hindu_caste_not_enforced", "law_affirmative_action", },
{},
{},
},
},
}
p['ideology_positivist_movement'] = {
loc = "Positivist",
desc = "This movement supports a society founded upon technocratic and anticlericalist lines, disdaining both the arbitrary power of monarchs and the fickle whims of the public.",
icon = "Ideology positivist.png",
move = true,
stances = {
["Governance Principles"] = {
{ "law_council_republic", "law_monarchy", "law_theocracy", },
{},
{ "law_parliamentary_republic", "law_corporate_state", },
{ "law_presidential_republic", },
{},
},
["Church and State"] = {
{ "law_state_religion", },
{ "law_freedom_of_conscience", },
{},
{ "law_total_separation", },
{ "law_state_atheism", },
},
["Distribution of Power"] = {
{ "law_anarchy", "law_universal_suffrage", },
{ "law_census_voting", "law_landed_voting", },
{ "law_autocracy", "law_oligarchy", },
{ "law_single_party_state", "law_wealth_voting", },
{ "law_technocracy", },
},
["Bureaucracy"] = {
{ "law_hereditary_bureaucrats", },
{ "law_elected_bureaucrats", },
{},
{},
{ "law_appointed_bureaucrats", },
},
},
}
p['ideology_land_reformer_movement'] = {
loc = "Land Reformer",
desc = "This movement is committed to breaking the power of large landowners, and redistributing land to be worked by the common people.",
icon = "Ideology land_reformer.png",
move = true,
stances = {
["Taxation"] = {
{ "law_land_based_taxation", },
{},
{ "law_consumption_based_taxation", "law_per_capita_based_taxation", "law_proportional_taxation", "law_graduated_taxation", },
{},
{},
},
["Land Reform"] = {
{ "law_serfdom", },
{ "law_tenant_farmers", },
{ "law_commercialized_agriculture", },
{ "law_homesteading", "law_collectivized_agriculture", },
{},
},
},
}
p['ideology_feminist_movement'] = {
loc = "Feminist",
desc = "This movement holds that women are equal to men, and strives for the extension of their rights as citizens.",
icon = "Ideology womens_liberation.png",
move = true,
stances = {
["Rights of Women"] = {
{ "law_no_womens_rights", },
{},
{ "law_women_own_property", },
{ "law_women_in_the_workplace", },
{ "law_womens_suffrage", },
},
},
}
p['ideology_reactionary_movement'] = {
loc = "Reactionary",
desc = "This movement seeks to restore a past, real or imagined, where just kings ruled over a uniform society.",
icon = "Ideology reactionary.png",
move = true,
stances = {
["Governance Principles"] = {
{},
{ "law_council_republic", },
{ "law_presidential_republic", "law_parliamentary_republic", "law_corporate_state", },
{ "law_theocracy", "law_monarchy", },
{},
},
["Citizenship"] = {
{},
{ "law_multicultural", },
{ "law_cultural_exclusion", },
{ "law_ethnostate", "law_racial_segregation", },
{ "law_national_supremacy", },
},
["Migration"] = {
{},
{ "law_no_migration_controls", },
{},
{ "law_closed_borders", },
{ "law_migration_controls", },
},
},
}
p['ideology_modernizer_movement'] = {
loc = "Modernizer",
desc = "This movement is strongly invested in modernizing and centralizing the nation under rational lines.",
icon = "Ideology modernizer.png",
move = true,
stances = {
["Trade Policy"] = {
{ "law_isolationism", },
{ "law_mercantilism", },
{ "law_free_trade", },
{ "law_protectionism", },
{},
},
["Children's Rights"] = {
{},
{ "law_child_labor_allowed", },
{ "law_restricted_child_labor", },
{ "law_compulsory_primary_school", },
{},
},
["Economic System"] = {
{ "law_traditionalism", "law_extraction_economy", "law_industry_banned" },
{ "law_cooperative_ownership", "law_agrarianism", },
{ "law_command_economy", "law_laissez_faire", },
{ "law_interventionism", },
{},
},
["Education System"] = {
{},
{ "law_no_schools", },
{ "law_private_schools", "law_religious_schools", },
{ "law_public_schools", },
{},
},
["Taxation"] = {
{},
{ "law_consumption_based_taxation", },
{ "law_land_based_taxation", },
{ "law_per_capita_based_taxation", },
{ "law_proportional_taxation", "law_graduated_taxation", },
},
},
}
p['ideology_traditionalist_movement'] = {
loc = "Traditionalist",
desc = "This movement seeks to maintain traditional customs, viewing them as an extension of natural laws.",
icon = "Ideology traditionalist.png",
move = true,
stances = {
["Rights of Women"] = {
{ "law_womens_suffrage", },
{ "law_women_in_the_workplace", },
{ "law_women_own_property", },
{ "law_no_womens_rights", },
{},
},
["Church and State"] = {
{ "law_state_atheism", "law_total_separation", },
{ "law_freedom_of_conscience", },
{},
{ "law_state_religion", },
{},
},
["Caste Hegemony"] = {
{ "law_affirmative_action", },
{ "law_hindu_caste_not_enforced", },
{},
{ "law_hindu_caste_codified", },
{ "law_hindu_caste_enforced", },
},
},
}
p['ideology_traditionalist_minoritarian_movement'] = {
loc = "Minoritarian Traditionalist",
desc = "This movement seeks to advance the station of their religion within society, both protecting its followers from discrimination and seeking to uphold its traditional customs.",
icon = "Ideology traditionalist.png",
move = true,
stances = {
["Rights of Women"] = {
{ "law_womens_suffrage", },
{ "law_women_in_the_workplace", },
{ "law_women_own_property", },
{ "law_no_womens_rights", },
{},
},
["Church and State"] = {
{ "law_state_religion", "law_state_atheism", },
{ "law_freedom_of_conscience", },
{},
{ "law_total_separation", },
{},
},
["Caste Hegemony"] = {
{ "law_affirmative_action", },
{ "law_hindu_caste_not_enforced", },
{},
{ "law_hindu_caste_codified", },
{ "law_hindu_caste_enforced", },
},
},
}
p['ideology_ethno_nationalist_movement'] = {
loc = "Ethno-Nationalist",
desc = "This movement desires a nation defined on ethnic grounds, within which the supremacy of the dominant ethnicity is legally enshrined.",
icon = "Ideology ethno_nationalist.png",
move = true,
stances = {
["Citizenship"] = {
{ "law_multicultural", },
{ "law_cultural_exclusion", },
{},
{ "law_national_supremacy", "law_racial_segregation", },
{ "law_ethnostate", },
},
["Migration"] = {
{},
{ "law_no_migration_controls", },
{},
{ "law_closed_borders", },
{ "law_migration_controls", },
},
},
}
p['ideology_pluralist_movement'] = {
loc = "Pluralist",
desc = "This group wishes to safeguard their cultural traditions, identity and language.",
icon = "Ideology reformer.png",
move = true,
stances = {
["Citizenship"] = {--[[
{},
{ "law_ethnostate", },
{ "law_racial_segregation", "law_cultural_exclusion", "law_multicultural", },
{ "law_national_supremacy", },
{},--]]
},
},
}
p['ideology_pluralist_movement_1'] = {
loc = "Pluralist (National Supremacy)",
desc = "This group wishes to safeguard their cultural traditions, identity and language.",
icon = "Ideology reformer.png",
move = true,
stances = {
["Citizenship"] = {
{},
{ "law_ethnostate", },
{ "law_racial_segregation", "law_cultural_exclusion", "law_multicultural", },
{ "law_national_supremacy", },
{},
},
},
}
p['ideology_pluralist_movement_2'] = {
loc = "Pluralist (Racial Segregation)",
desc = "This group wishes to safeguard their cultural traditions, identity and language.",
icon = "Ideology reformer.png",
move = true,
stances = {
["Citizenship"] = {
{ "law_ethnostate", },
{ "law_national_supremacy", },
{ "law_cultural_exclusion", "law_multicultural", },
{ "law_racial_segregation", },
{},
},
},
}
p['ideology_pluralist_movement_3'] = {
loc = "Pluralist (Cultural Exclusion)",
desc = "This group wishes to safeguard their cultural traditions, identity and language.",
icon = "Ideology reformer.png",
move = true,
stances = {
["Citizenship"] = {
{ "law_ethnostate", "law_national_supremacy", },
{ "law_racial_segregation", },
{ "law_multicultural", },
{ "law_cultural_exclusion", },
{},
},
},
}
p['ideology_pluralist_movement_4'] = {
loc = "Pluralist (Multiculturalism)",
desc = "This group wishes to safeguard their cultural traditions, identity and language.",
icon = "Ideology reformer.png",
move = true,
stances = {
["Citizenship"] = {
{ "law_ethnostate", "law_national_supremacy", },
{ "law_racial_segregation", "law_cultural_exclusion", },
{ },
{ "law_multicultural", },
{},
},
},
}
p['ideology_sovereignist_movement'] = {
loc = "Sovereignist",
desc = "This movement opposes oppressive measures imposed upon their nation by colonial authorities, and seeks to advance policies that serve the ends of national self-governance.",
icon = "Ideology sovereignist.png",
move = true,
stances = {
["Policing"] = {
{ "law_militarized_police", },
{ "law_dedicated_police", },
{ "law_no_police", },
{ "law_local_police", },
{},
},
["Migration"] = {
{},
{ "law_no_migration_controls", },
{},
{ "law_closed_borders", },
{ "law_migration_controls", },
},
["Free Speech"] = {
{ "law_outlawed_dissent", },
{ "law_censorship", },
{},
{ "law_right_of_assembly", },
{ "law_protected_speech", },
},
["Citizenship"] = {
{ "law_ethnostate", },
{ "law_national_supremacy", "law_racial_segregation", },
{ "law_cultural_exclusion", },
{ "law_multicultural", },
{},
},
},
}
p['ideology_utilitarian_movement'] = {
loc = "Utilitarian",
desc = "This movement supports codifying and rationalizing government functions in order to promote the common good.",
icon = "Ideology utilitarian.png",
move = true,
stances = {
["Children's Rights"] = {
{},
{},
{ "law_restricted_child_labor", "law_child_labor_allowed", },
{},
{ "law_compulsory_primary_school", },
},
["Education System"] = {
{},
{ "law_no_schools", },
{ "law_private_schools", "law_religious_schools", },
{ "law_public_schools", },
{},
},
["Rights of Women"] = {
{},
{ "law_no_womens_rights", },
{ "law_women_own_property", },
{ "law_women_in_the_workplace", },
{ "law_womens_suffrage", },
},
["Slavery"] = {
{ "law_slave_trade", "law_debt_slavery", },
{ "law_legacy_slavery", },
{ "law_slavery_banned", },
{},
{},
},
["Taxation"] = {
{},
{ "law_consumption_based_taxation", "law_land_based_taxation", },
{ "law_per_capita_based_taxation", },
{ "law_proportional_taxation", },
{ "law_graduated_taxation", },
},
["Caste Hegemony"] = {
{},
{ "law_hindu_caste_enforced", "law_hindu_caste_codified", },
{ "law_hindu_caste_not_enforced", "law_affirmative_action", },
{},
{},
},
},
}
p['ideology_orleanist_movement'] = {
loc = "Orléanist",
desc = "This movement supports the house of Orléans' claim to the French throne, desiring a constitutional order under a restrained monarch.",
icon = "Ideology orleanist.png",
move = true,
stances = {
["Governance Principles"] = {
{ "law_council_republic", },
{ "law_parliamentary_republic", "law_theocracy", },
{ "law_presidential_republic", "law_corporate_state", },
{},
{ "law_monarchy", },
},
["Distribution of Power"] = {
{ "law_technocracy", "law_anarchy", },
{ "law_autocracy", "law_universal_suffrage", "law_single_party_state", },
{ "law_oligarchy", "law_census_voting", },
{ "law_landed_voting", "law_wealth_voting", },
{},
},
["Economic System"] = {
{ "law_command_economy", "law_cooperative_ownership", "law_industry_banned", "law_extraction_economy", },
{ "law_agrarianism", "law_traditionalism", },
{ "law_interventionism", },
{},
{ "law_laissez_faire", },
},
["Trade Policy"] = {
{ "law_isolationism", },
{ "law_mercantilism", "law_protectionism", },
{},
{},
{ "law_free_trade", },
},
},
}
p['ideology_bonapartist_movement'] = {
loc = "Bonapartist",
desc = "This movement supports the restoration of a Bonaparte to the French throne, and a new Emperor to lead France into a new era of unquestioned might.",
icon = "Ideology bonapartist.png",
move = true,
stances = {
["Governance Principles"] = {
{ "law_council_republic", },
{ "law_parliamentary_republic", "law_theocracy", },
{ "law_presidential_republic", "law_corporate_state", },
{},
{ "law_monarchy", },
},
["Distribution of Power"] = {
{ "law_technocracy", "law_anarchy", },
{ "law_census_voting", "law_universal_suffrage", },
{ "law_landed_voting", "law_wealth_voting", "law_single_party_state", },
{ "law_oligarchy", },
{ "law_autocracy", },
},
["Army Model"] = {
{},
{ "law_national_militia", "law_peasant_levies", },
{},
{ "law_mass_conscription", },
{ "law_professional_army", },
},
["Economic System"] = {
{ "law_command_economy", "law_cooperative_ownership", "law_industry_banned", "law_extraction_economy", },
{ "law_agrarianism", "law_traditionalism", },
{ "law_laissez_faire", },
{},
{ "law_interventionism", },
},
},
}
p['ideology_legitimist_movement'] = {
loc = "Legitimist",
desc = "This movement yearns for the time of the French kings of old, before the Reign of Terror sullied everything.",
icon = "Ideology legitimist.png",
move = true,
stances = {
["Governance Principles"] = {
{ "law_council_republic", },
{ "law_presidential_republic", "law_parliamentary_republic", "law_theocracy", },
{ "law_corporate_state", },
{},
{ "law_monarchy", },
},
["Distribution of Power"] = {
{ "law_universal_suffrage", "law_anarchy", "law_technocracy", "law_landed_voting", "law_wealth_voting", "law_census_voting", },
{ "law_single_party_state", },
{ "law_oligarchy", },
{},
{ "law_autocracy", },
},
["Church and State"] = {
{ "law_state_atheism", "law_total_separation", },
{ "law_freedom_of_conscience", },
{},
{ "law_state_religion", },
{},
},
["Free Speech"] = {
{ "law_protected_speech", },
{ "law_right_of_assembly", },
{},
{ "law_censorship", },
{ "law_outlawed_dissent", },
},
},
}
p = loc(p)
return p