commit 0a93d9d06b9ce42f0631bf2b8834dde187377142 Author: serialexperiments <112315380+serialexperiments0815@users.noreply.github.com> Date: Sun Jul 12 19:15:25 2026 +0200 pre-change state diff --git a/.metadata/metadata.json b/.metadata/metadata.json new file mode 100644 index 0000000..871c476 --- /dev/null +++ b/.metadata/metadata.json @@ -0,0 +1,13 @@ +{ + "name" : "Better Decrees", + "id" : "", + "version" : "", + "supported_game_version" : "", + "picture": "thumbnail.png", + "short_description" : "", + "tags" : [], + "relationships" : [], + "game_custom_data" : { + "multiplayer_synchronized" : true + } +} \ No newline at end of file diff --git a/.metadata/thumbnail.png b/.metadata/thumbnail.png new file mode 100644 index 0000000..ac6fc83 Binary files /dev/null and b/.metadata/thumbnail.png differ diff --git a/common/decrees/bd_decree.txt b/common/decrees/bd_decree.txt new file mode 100644 index 0000000..087061c --- /dev/null +++ b/common/decrees/bd_decree.txt @@ -0,0 +1,1320 @@ +# texture = filename The icon that will show up in the Lens and on the map when this Focus is deployed +# modifier The effects this Decree has on its state +# cost The cost in AUT to set this Decree on a state (scales with Power Rank) +# unlocking_technologies A list of technologies, at least one of which must be known to the country to use this Focus +# unlocking_laws A list of laws, at least one which must be active in the country to use this Focus. If the country switches away from all unlocking laws the Focus will be removed +# country_trigger A trigger in country context that determines if the Decree is permitted/shown in interface or not; should invalidate the Decree on a weekly basis if found invalid +# state_trigger A trigger in state context that determines if the Decree is permitted or not; should invalidate the Decree on a weekly basis if found invalid +# ai_weight Scripted value which determines the chance of getting the Decree by AI + +decree_road_maintenance = { + texture = "gfx/interface/icons/decree/efficient_admin.dds" + modifier = { + state_tax_capacity_mult = 0.25 + building_government_administration_throughput_add = 0.2 + state_tax_waste_add = -0.1 + state_radicals_from_sol_change_mult = 0.1 + state_bureaucracy_population_base_cost_factor_mult = -0.1 + state_infrastructure_from_population_add = 1 + state_infrastructure_from_population_max_add = 20 + } + + unlocking_technologies = { + centralization + } + cost = 75 + + ai_weight = { + value = 25 + + if = { + limit = { + OR = { + relative_infrastructure < 1 + AND = { + has_decree = decree_road_maintenance + relative_infrastructure < 1.25 + } + } + + } + add = 100 + } + + if = { + limit = { + OR = { + relative_infrastructure < 0.5 + AND = { + has_decree = decree_road_maintenance + relative_infrastructure < 0.75 + } + } + + } + add = 100 + } + + if = { + limit = { + OR = { + relative_infrastructure < 0.25 + AND = { + has_decree = decree_road_maintenance + relative_infrastructure < 0.5 + } + } + + } + add = 100 + } + + if = { + limit = { + OR = { + relative_infrastructure >= 1.25 + AND = { + has_decree = decree_road_maintenance + relative_infrastructure >= 1.5 + } + } + + } + multiply = 0 + } + } +} +decree_encourage_construction = { + texture = "gfx/interface/icons/decree/enc_con.dds" + modifier = { + building_construction_sector_throughput_add = 0.2 + state_construction_mult = 0.1 + } + + unlocking_technologies = { + urbanization + } + cost = 75 + + ai_weight = { + value = 25 + + if = { + limit = { + OR = { + relative_infrastructure < 1 + AND = { + has_decree = decree_road_maintenance + relative_infrastructure < 1.25 + } + } + + } + add = 100 + } + + if = { + limit = { + OR = { + relative_infrastructure < 0.5 + AND = { + has_decree = decree_road_maintenance + relative_infrastructure < 0.75 + } + } + + } + add = 100 + } + + if = { + limit = { + OR = { + relative_infrastructure < 0.25 + AND = { + has_decree = decree_road_maintenance + relative_infrastructure < 0.5 + } + } + + } + add = 100 + } + + if = { + limit = { + OR = { + relative_infrastructure >= 1.25 + AND = { + has_decree = decree_road_maintenance + relative_infrastructure >= 1.5 + } + } + + } + multiply = 0 + } + } +} +decree_violent_suppression = { + texture = "gfx/interface/icons/decree/decree_violent_suppression.dds" + + unlocking_technologies = { + standing_army + } + + country_trigger = { + NOT = { has_law_or_variant = law_type:law_guaranteed_liberties } + } + state_trigger = { + turmoil >= 0.25 + + #Maybe? Not sure if it would be too punishing with new harvest conditions + NOT = { + has_decree = decree_emergency_relief + } + } + + modifier = { + state_turmoil_effects_mult = -0.6 + state_mortality_turmoil_mult = 0.02 + state_radicals_from_political_movements_mult = -0.2 + } + cost = 75 + + ai_weight = { + value = 100 + + if = { + limit = { + turmoil >= 0.5 + + } + add = 100 + } + if = { + limit = { + turmoil >= 0.75 + + } + add = 100 + } + if = { + limit = { + scope:country = { + OR = { + has_strategy = ai_strategy_egalitarian_agenda + has_strategy = ai_strategy_progressive_agenda + } + } + } + multiply = 0.5 + } + } +} + +decree_emergency_relief = { + texture = "gfx/interface/icons/decree/decree_emergency_relief.dds" + unlocking_technologies = { + #egalitarianism + centralization + } + + state_trigger = { + AND = { + OR = { + #has_famine = yes + custom_tooltip = { + text = bd_any_starving_pops_tt + any_scope_pop = { + is_in_starvation = yes + } + } + devastation > 0.2 + ROOT.state_region = { + OR = { + has_harvest_condition = flood + has_harvest_condition = wildfire + has_harvest_condition = drought + has_harvest_condition = disease_outbreak + has_harvest_condition = extreme_winds + } + } + } + NOR = { #bd + has_decree = decree_violent_hostility + has_decree = decree_violent_suppression + } + } + } + + modifier = { + state_welfare_payments_add = 0.6 + state_mortality_mult = -0.01 + state_tax_collection_mult = -0.5 + state_infrastructure_mult = 0.1 + state_food_security_add = 0.1 + + #state_lower_strata_standard_of_living_add = 1.5 + #state_peasants_education_access_add = 0.2 + } + + cost = 50 + + ai_weight = { + value = 0 + + if = { + limit = { + average_sol < average_expected_sol + } + add = 100 + } + if = { + limit = { + scope:country = { + OR = { + has_strategy = ai_strategy_nationalist_agenda + has_strategy = ai_strategy_reactionary_agenda + } + } + } + multiply = 0.5 + } + } +} + +decree_promote_social_mobility = { + texture = "gfx/interface/icons/decree/learning.dds" +# unlocking_technologies = { +# academia +# } + + state_trigger = { + NOT = { + AND = { + owner ?= { + OR = { + has_law = law_type:law_hindu_caste_enforced + has_law = law_type:law_hindu_caste_codified + } + } + religion_percent_state = { + target = rel:hindu + value >= 0.3 + } + } + } + } + + modifier = { + state_education_access_add = 0.25 + state_pop_qualifications_mult = 0.25 + building_arts_academy_throughput_add = 0.2 + building_university_throughput_add = 0.2 + } + cost = 75 + + ai_weight = { + value = 0 + + if = { + limit = { + literacy_rate < 0.25 + } + add = 75 + } + if = { + limit = { + literacy_rate < 0.5 + } + add = 75 + } + if = { + limit = { + literacy_rate < 0.75 + } + add = 50 + } + if = { + limit = { + scope:country = { has_journal_entry = je_hawaii } + } + add = 1000 + } + if = { + limit = { + scope:country = { + OR = { + has_strategy = ai_strategy_reactionary_agenda + has_strategy = ai_strategy_conservative_agenda + has_strategy = ai_strategy_maintain_mandate_of_heaven + } + } + } + multiply = 0.5 + } + if = { + limit = { + scope:country = { + OR = { + has_strategy = ai_strategy_progressive_agenda + has_strategy = ai_strategy_egalitarian_agenda + } + } + } + multiply = 1.5 + } + } +} +decree_worker_exploitation = { + texture = "gfx/interface/icons/decree/exploiter.dds" + + unlocking_technologies = { + colonization + } + + country_trigger = { + NOT = { has_law_or_variant = law_type:law_guaranteed_liberties } + is_player = yes + } + + modifier = { + state_migration_pull_mult = -0.5 + building_throughput_add = 0.2 + state_unincorporated_starting_wages_mult = -0.2 + building_subsistence_output_mult = -0.33 + state_laborers_mortality_mult = 0.1 + state_machinists_mortality_mult = 0.1 + state_farmers_mortality_mult = 0.1 + state_slaves_mortality_mult = 0.15 + state_pop_qualifications_mult = -0.2 + state_radicals_from_sol_change_mult = 0.2 + building_minimum_wage_mult = -0.25 + building_working_conditions_mult = 0.15 + } + cost = 75 +} + +decree_promote_national_values = { + texture = "gfx/interface/icons/decree/decree_promote_national_values.dds" + unlocking_technologies = { + centralization + nationalism + } +# state_trigger = { +# OR = { +# has_assimilating_pops = yes +# has_converting_pops = yes +# } +# } + + country_trigger = { + NOT = { has_law_or_variant = law_type:law_multicultural } + } + + modifier = { + state_allow_assimilation_in_homeland_bool = yes # maybe this should be a distinct decree? + state_assimilation_mult = 1 + state_conversion_mult = 1 + state_loyalists_from_sol_change_mult = 0.1 + state_radicalism_increases_violent_hostility_mult = 0.4 + state_radicalism_increases_cultural_erasure_mult = 0.3 + state_radicalism_increases_open_prejudice_mult = 0.2 + } + cost = 75 + + ai_weight = { + value = 0 + + if = { + limit = { + scope:country = { + NOR = { + has_law_or_variant = law_type:law_multicultural + has_law_or_variant = law_type:law_subjecthood + } + } + primary_cultures_percent_state <= 0.9 + } + + if = { # Colonies + limit = { + scope:country = { + country_is_in_europe = no + any_primary_culture = { + has_discrimination_trait_group = heritage_group_european + } + NOR = { + has_government_type = gov_chartered_company + c:BIC ?= this + c:DEI ?= this + } + } + } + add = 300 + } + else_if = { + limit = { + scope:country = { + OR = { + has_strategy = ai_strategy_reactionary_agenda + has_strategy = ai_strategy_conservative_agenda + has_strategy = ai_strategy_maintain_mandate_of_heaven + } + } + } + add = 100 + } + else_if = { + limit = { + scope:country = { + has_strategy = ai_strategy_nationalist_agenda + } + } + add = 200 + } + + + if = { + limit = { + primary_cultures_percent_state <= 0.1 + } + multiply = 5.0 + } + else_if = { + limit = { + primary_cultures_percent_state <= 0.3 + } + multiply = 3.0 + } + else_if = { + limit = { + primary_cultures_percent_state <= 0.5 + } + multiply = 2.0 + } + + if = { + limit = { + is_homeland_of_country_cultures = scope:country + } + multiply = 5.0 + } + } + + if = { + limit = { + OR = { + NOT = { scope:country = { has_law_or_variant = law_type:law_total_separation } } + AND = { + scope:country = { country_is_in_africa = no } + state_is_in_africa = yes + } + } + religion_percent_state = { + target = scope:country.religion + value <= 0.9 + } + } + + if = { + limit = { + scope:country = { + has_strategy = ai_strategy_conservative_agenda + } + } + add = 50 + } + else_if = { + limit = { + scope:country = { + has_strategy = ai_strategy_reactionary_agenda + } + } + add = 100 + } + + if = { + limit = { + scope:country = { + OR = { + has_law_or_variant = law_type:law_state_religion + has_law_or_variant = law_type:law_state_atheism + } + } + } + add = 50 + } + + if = { + limit = { + religion_percent_state = { + target = scope:country.religion + value <= 0.1 + } + } + multiply = 5.0 + } + else_if = { + limit = { + religion_percent_state = { + target = scope:country.religion + value <= 0.3 + } + } + multiply = 3.0 + } + else_if = { + limit = { + religion_percent_state = { + target = scope:country.religion + value <= 0.5 + } + } + multiply = 2.0 + } + } + + if = { + limit = { + state_population < 100000 + } + multiply = 0 + } + else_if = { + limit = { + state_population < 300000 + } + multiply = 2.0 + } + else_if = { + limit = { + scope:country = { + OR = { + has_law = law_type:law_cultural_exclusion + has_law = law_type:law_freedom_of_conscience + } + } + } + multiply = 0.5 + } + else_if = { + limit = { + scope:country = { + OR = { + has_law = law_type:law_multicultural + has_law = law_type:law_total_separation + } + } + } + multiply = 0.1 + } + + if = { # Deliberately placed here since we want the AI to ignore laws for this + limit = { + scope:country = { + has_journal_entry = je_south_american_national_identity + } + } + add = 500 + } + + if = { + limit = { + primary_cultures_percent_state > 0.9 + religion_percent_state = { + target = scope:country.religion + value > 0.9 + } + } + multiply = 0 + } + else_if = { + limit = { + primary_cultures_percent_state > 0.5 + religion_percent_state = { + target = scope:country.religion + value > 0.5 + } + } + multiply = 0.5 + } + } +} + +decree_encourage_urban_services = { + texture = "gfx/interface/icons/decree/urban_services_decree.dds" + unlocking_technologies = { + urban_planning + } + + modifier = { + building_trade_center_throughput_add = 0.2 + building_group_bg_service_throughput_add = 0.2 + building_port_throughput_add = 0.2 + building_railway_throughput_add = 0.2 + building_group_bg_monuments_throughput_add = 0.2 + building_group_bg_canals_throughput_add = 0.2 + building_power_plant_throughput_add = 0.2 + # state_infrastructure_mult = 0.1 + } + cost = 75 + + ai_weight = { + value = 0 + if = { + limit = { + any_scope_building = { + is_building_group = bg_urban_facilities + } + } + add = 50 + } + if = { + limit = { + any_scope_building = { + is_building_group = bg_urban_facilities + count >= 3 + } + } + add = 50 + } + if = { + limit = { + any_scope_building = { + is_building_group = bg_urban_facilities + count >= 5 + } + } + add = 50 + } + if = { + limit = { + scope:country = { + has_strategy = ai_strategy_placate_population + } + } + multiply = 1.5 + } + } +} +decree_encourage_manufacturing_industry = { + texture = "gfx/interface/icons/decree/decree_encourage_manufacturing_industry.dds" + unlocking_technologies = { + manufacturies + } + + modifier = { + building_group_bg_manufacturing_throughput_add = 0.25 + state_construction_mult = 0.05 + } + cost = 75 + + ai_weight = { + value = 0 + if = { + limit = { + any_scope_building = { + is_building_group = bg_manufacturing + } + } + add = 50 + } + if = { + limit = { + any_scope_building = { + is_building_group = bg_manufacturing + count >= 3 + } + } + add = 50 + } + if = { + limit = { + any_scope_building = { + is_building_group = bg_manufacturing + count >= 5 + } + } + add = 50 + } + if = { + limit = { + scope:country = { + has_strategy = ai_strategy_industrial_expansion + } + } + multiply = 1.5 + } + } +} + +decree_encourage_agricultural_industry = { + texture = "gfx/interface/icons/decree/decree_encourage_agricultural_industry.dds" + unlocking_technologies = { + enclosure + } + + modifier = { + building_group_bg_agriculture_throughput_add = 0.2 + building_group_bg_ranching_throughput_add = 0.2 + building_group_bg_plantations_throughput_add = 0.2 + } + cost = 75 + + ai_weight = { + value = 0 + if = { + limit = { + any_scope_building = { + OR = { + is_building_group = bg_agriculture + is_building_group = bg_ranching + is_building_group = bg_plantations + } + } + } + add = 50 + } + if = { + limit = { + any_scope_building = { + OR = { + is_building_group = bg_agriculture + is_building_group = bg_ranching + is_building_group = bg_plantations + } + count >= 3 + } + } + add = 50 + } + if = { + limit = { + any_scope_building = { + OR = { + is_building_group = bg_agriculture + is_building_group = bg_ranching + is_building_group = bg_plantations + } + count >= 5 + } + } + add = 50 + } + if = { + limit = { + scope:country = { + OR = { + has_strategy = ai_strategy_plantation_economy + has_strategy = ai_strategy_agricultural_expansion + } + } + } + multiply = 1.5 + } + } +} + +decree_encourage_resource_industry = { + texture = "gfx/interface/icons/decree/decree_encourage_resource_industry.dds" + unlocking_technologies = { + shaft_mining + } + + modifier = { + building_group_bg_mining_throughput_add = 0.2 + building_group_bg_logging_throughput_add = 0.2 + building_group_bg_fishing_throughput_add = 0.2 + building_group_bg_whaling_throughput_add = 0.2 + building_group_bg_oil_extraction_throughput_add = 0.2 + building_group_bg_rubber_throughput_add = 0.2 + } + cost = 75 + + ai_weight = { + value = 0 + if = { + limit = { + any_scope_building = { + OR = { + is_building_group = bg_mining + is_building_group = bg_logging + is_building_group = bg_fishing + is_building_group = bg_whaling + is_building_group = bg_oil_extraction + } + } + } + add = 50 + } + if = { + limit = { + any_scope_building = { + OR = { + is_building_group = bg_mining + is_building_group = bg_logging + is_building_group = bg_fishing + is_building_group = bg_whaling + is_building_group = bg_oil_extraction + } + count >= 3 + } + } + add = 50 + } + if = { + limit = { + any_scope_building = { + OR = { + is_building_group = bg_mining + is_building_group = bg_logging + is_building_group = bg_fishing + is_building_group = bg_whaling + is_building_group = bg_oil_extraction + } + count >= 5 + } + } + add = 50 + } + if = { + limit = { + scope:country = { + has_strategy = ai_strategy_resource_expansion + } + } + multiply = 1.5 + } + } +} +decree_greener_grass_campaign = { + texture = "gfx/interface/icons/decree/decree_greener_grass_campaign.dds" + state_trigger = { + is_isolated_from_market = no + } + modifier = { + state_migration_pull_mult = 0.50 + state_migration_pull_add = 20 + state_migration_quota_mult = 0.05 + state_expected_sol_mult = 0.05 + } + unlocking_technologies = { + romanticism + } + cost = 75 + + ai_weight = { + value = 0 + if = { + limit = { + any_scope_building = { + is_subsistence_building = yes + occupancy < 0.75 + } + } + add = 50 + } + if = { + limit = { + any_scope_building = { + is_subsistence_building = yes + occupancy < 0.5 + } + } + add = 50 + } + if = { + limit = { + any_scope_building = { + is_subsistence_building = yes + occupancy < 0.25 + } + } + add = 50 + } + if = { + limit = { + scope:country = { + has_journal_entry = je_the_algerian_departements + } + state_region = { + OR = { + this = s:STATE_ORAN + this = s:STATE_ALGIERS + this = s:STATE_CONSTANTINE + } + } + culture_percent_state = { + target = cu:french + value <= 0.25 # Bit of a buffer since we need 20% + } + } + add = 500 + } + if = { + limit = { + is_incorporated = yes + any_scope_building = { + is_subsistence_building = yes + occupancy < 0.9 + } + scope:country = { + OR = { + has_journal_entry = je_south_america_migration + has_journal_entry = je_central_america_migration + has_journal_entry = je_american_west_migration + } + } + } + add = 500 + } + if = { + limit = { + is_incorporated = no + scope:country = { NOT = { has_law_or_variant = law_type:law_colonial_resettlement } } # Already gives a hefty migration bonus + } + multiply = 2.0 + } + if = { + limit = { + state_unemployment_rate >= 0.1 + } + multiply = 0 + } + } +} +decree_penal_colony = { + texture = "gfx/interface/icons/decree/penal.dds" + country_trigger = { + is_player = yes + NOT = { + has_law_or_variant = law_type:law_no_colonial_affairs + } + # any scope state is under colonization would function well, but increase checks perhaps not worth performance + } + state_trigger = { + is_isolated_from_market = no + } + + modifier = { + state_colony_growth_creation_factor = 0.25 + state_colony_growth_speed_mult = 0.1 + state_migration_push_mult = 0.5 + state_migration_pull_mult = -0.5 + building_throughput_add = -0.05 + state_radicals_and_loyalists_from_sol_change_mult = 0.1 + state_turmoil_effects_mult = -0.1 + + } + unlocking_technologies = { + colonization + } + cost = 75 +} + +decree_enlistment_efforts = { + texture = "gfx/interface/icons/decree/decree_enlistment_efforts.dds" + modifier = { + state_conscription_rate_add = 0.05 + building_training_rate_mult = 0.50 + } + unlocking_technologies = { + mandatory_service + } + cost = 75 + + ai_weight = { + value = 0 + + if = { + limit = { + any_scope_building = { + is_building_type = building_barracks + count >= 5 + } + } + add = 25 + } + if = { + limit = { + any_scope_building = { + is_building_type = building_barracks + count >= 10 + } + } + add = 50 + } + if = { + limit = { + any_scope_building = { + is_building_type = building_barracks + count >= 25 + } + } + add = 75 + } + + if = { + limit = { + scope:country = { + OR = { + has_strategy = ai_strategy_unify_germany + has_strategy = ai_strategy_unify_italy + has_journal_entry = je_war_of_the_confederation + } + } + } + multiply = 5.0 + } + + if = { + limit = { + any_scope_building = { + is_building_type = building_naval_base + count >= 25 + } + } + add = 50 + } + if = { + limit = { + any_scope_building = { + is_building_type = building_naval_base + count >= 50 + } + } + add = 50 + } + } +} +decree_promote_health = { + texture = "gfx/interface/icons/decree/health.dds" + unlocking_technologies = { + pharmaceuticals + } + modifier = { + state_mortality_mult = -0.1 + state_birth_rate_mult = 0.025 + state_pollution_reduction_health_mult = -0.2 + building_working_conditions_mult = -0.1 + } + cost = 75 + + ai_weight = { + value = 20 + + if = { + limit = { + state_population < 300000 + } + multiply = 0.5 + } + if = { + limit = { + scope:country = { + OR = { + has_strategy = ai_strategy_reactionary_agenda + has_strategy = ai_strategy_conservative_agenda + has_strategy = ai_strategy_maintain_mandate_of_heaven + } + } + } + multiply = 0.5 + } + if = { + limit = { + scope:country = { + OR = { + has_strategy = ai_strategy_progressive_agenda + has_strategy = ai_strategy_egalitarian_agenda + } + } + } + multiply = 1.5 + } + } +} + +#do events about intelligentsia strenght to compensate for inability to modify here +#make inverse decree? would be a little weird limited to flat pollution +gov cant will polluting practices in to existence +decree_conservation = { + texture = "gfx/interface/icons/decree/conservation_decree.dds" + unlocking_technologies = { + philosophical_pragmatism + } + + state_trigger = { + state_region = { + pollution_amount > 75 + } + } + + modifier = { + state_pollution_generation_add = -1500 #mult doesnt work riiiipppp + building_throughput_add = -0.05 + } + + cost = 75 + + ai_weight = 0 +} + +decree_disenfranchise = { + texture = "gfx/interface/icons/decree/civic_suppression_decree.dds" + unlocking_technologies = { + } + + country_trigger = { + NOT = { + has_law = law_type:law_protected_speech + } + } + + + modifier = { + state_pop_pol_str_mult = -0.125 + state_pop_qualifications_mult = -0.1 + state_radicalism_increases_violent_hostility_mult = 0.075 + state_radicalism_increases_cultural_erasure_mult = 0.05 + state_radicalism_increases_open_prejudice_mult = 0.025 + state_radicals_from_sol_change_mult = 0.05 + } + cost = 100 + + ai_weight = 0 +} + +#decree_red_tape = { +# texture = "gfx/interface/icons/decree/efficient_admin.dds" +# modifier = { +# country_company_throughput_bonus_add = 0.1 +# country_company_construction_efficiency_bonus_add = 0.1 +# } +# +# unlocking_technologies = { +# corporate_charters +# } +# +# valid = { +# } +# +# cost = 75 +# +# ai_weight = { +# value = 0 +# } +#} + +decree_violent_hostility = { + texture = "gfx/interface/icons/decree/violent_hostility_decree.dds" + unlocking_technologies = { + nationalism + } + + country_trigger = { + is_player = yes + OR = { + has_law_or_variant = law_type:law_national_supremacy + has_law_or_variant = law_type:law_ethnostate + } + } + + state_trigger = { + NOT = { + has_decree = decree_emergency_relief + } + custom_tooltip = { + text = violent_hostility_decree_eligble_tt + any_scope_culture = { + not = { + is_primary_culture_of = root.owner + has_homeland = root + } + } + } + is_split_state = no + } + + modifier = { + + state_non_homeland_mortality_mult = 0.9 + state_allow_assimilation_in_homeland_bool = yes + state_assimilation_mult = 0.15 + state_conversion_mult = 0.15 + state_migration_pull_mult = -0.5 + state_turmoil_effects_mult = 0.6 + state_radicals_and_loyalists_from_sol_change_mult = 0.2 + + #this approach no longer works without state_accepted_birth_rate_mult + # state_assimilation_mult = 0.15 + # state_conversion_mult = 0.15 + # state_migration_pull_mult = -0.25 + # state_accepted_birth_rate_mult = 6.5 + # state_birth_rate_mult = -1 + # state_mortality_mult = 8 + # state_standard_of_living_add = -2 + # state_turmoil_effects_mult = 1 + } + cost = 125 +} + +decree_bd_grant_autonomy = { + texture = "gfx/interface/icons/decree/decree_grant_autonomy.dds" + + country_trigger = { + is_player = yes + NOR = { + has_law_or_variant = law_type:law_ethnostate + has_law_or_variant = law_type:law_outlawed_dissent + } + } + + state_trigger = { + NOT = { + # has_decree = decree_emergency_relief + } + # custom_tooltip = { + # text = + # any_scope_culture = { + # not = { + # is_primary_culture_of = root.owner + # } + # has_homeland = root + # } + # } + #is_split_state = no + is_incorporated = yes + is_capital = no + } + + modifier = { + # country_bureaucracy_add = -10 #doesnt work + + state_institution_impact_add = -0.5 + state_bureaucracy_population_base_cost_factor_mult = -0.5 + state_tax_collection_mult = -0.5 + state_assimilation_mult = -0.5 + state_conversion_mult = -0.5 + +# state_infrastructure_mult = -0.125 + state_conscription_rate_mult = -0.75 + state_expected_sol_mult = -0.165 + state_pop_pol_str_mult = -0.33 +# building_group_bg_manufacturing_throughput_add = -0.05 + building_group_bg_government_throughput_add = -0.05 + building_group_bg_military_throughput_add = -0.1 + # state_market_access_price_impact = -0.05 + building_group_bg_infrastructure_construction_efficiency_add = -0.1 + building_group_bg_extraction_construction_efficiency_add = -0.1 + building_group_bg_heavy_industry_construction_efficiency_add = -0.25 + building_group_bg_light_industry_construction_efficiency_add = -0.15 + building_group_bg_government_construction_efficiency_add = -0.15 + + state_radicalism_increases_violent_hostility_mult = -0.25 + state_radicalism_increases_cultural_erasure_mult = -0.2 + state_radicalism_increases_open_prejudice_mult = -0.15 + } + cost = 0 #hmm +} \ No newline at end of file diff --git a/common/modifier_type_definitions/bc_modifier_types.txt b/common/modifier_type_definitions/bc_modifier_types.txt new file mode 100644 index 0000000..c546ca1 --- /dev/null +++ b/common/modifier_type_definitions/bc_modifier_types.txt @@ -0,0 +1,72 @@ +#state_mortality_accepted_mult = { +# good = no +# percent = yes +# num_decimals = 0 +#} + +#state_mortality_discrimination_mult = { +# good = no +# percent = yes +#} + +#state_mortality_turmoil_mult = { +# good = no +# percent = yes +#} + +#state_non_accepted_birth_rate_mult = { +# good = yes +# percent = yes +#} + +#state_discriminated_mortality_mult = { +# good = no +# percent = yes +#} + +#state_non_accepted_mortality_mult = { +# good = no +# percent = yes +#} + +#state_pollution_generation_mult = { +# good = no +# percent = yes +#} + + +building_group_bg_monuments_throughput_add={ + decimals=0 + color=good + percent=yes + game_data={ + ai_value=0 + } +} + +building_group_bg_canals_throughput_add={ + decimals=0 + color=good + percent=yes + game_data={ + ai_value=0 + } +} + +state_radicals_from_sol_change_mult={ + decimals=0 + color=bad + percent=yes + game_data={ + ai_value=0 + } +} + +state_loyalists_from_sol_change_mult={ + decimals=0 + color=good + percent=yes + game_data={ + ai_value=0 + } +} \ No newline at end of file diff --git a/common/modifier_type_definitions/betterdecrees_modifier_types.txt b/common/modifier_type_definitions/betterdecrees_modifier_types.txt new file mode 100644 index 0000000..c546ca1 --- /dev/null +++ b/common/modifier_type_definitions/betterdecrees_modifier_types.txt @@ -0,0 +1,72 @@ +#state_mortality_accepted_mult = { +# good = no +# percent = yes +# num_decimals = 0 +#} + +#state_mortality_discrimination_mult = { +# good = no +# percent = yes +#} + +#state_mortality_turmoil_mult = { +# good = no +# percent = yes +#} + +#state_non_accepted_birth_rate_mult = { +# good = yes +# percent = yes +#} + +#state_discriminated_mortality_mult = { +# good = no +# percent = yes +#} + +#state_non_accepted_mortality_mult = { +# good = no +# percent = yes +#} + +#state_pollution_generation_mult = { +# good = no +# percent = yes +#} + + +building_group_bg_monuments_throughput_add={ + decimals=0 + color=good + percent=yes + game_data={ + ai_value=0 + } +} + +building_group_bg_canals_throughput_add={ + decimals=0 + color=good + percent=yes + game_data={ + ai_value=0 + } +} + +state_radicals_from_sol_change_mult={ + decimals=0 + color=bad + percent=yes + game_data={ + ai_value=0 + } +} + +state_loyalists_from_sol_change_mult={ + decimals=0 + color=good + percent=yes + game_data={ + ai_value=0 + } +} \ No newline at end of file diff --git a/common/scripted_triggers/00_community_mod_compatibility_triggers.txt b/common/scripted_triggers/00_community_mod_compatibility_triggers.txt new file mode 100644 index 0000000..202121a --- /dev/null +++ b/common/scripted_triggers/00_community_mod_compatibility_triggers.txt @@ -0,0 +1,152 @@ +################################################# +# COMMUNITY MOD COMPATIBILITY SCRIPTED TRIGGERS # +################################################# +# FILE USAGE: +# Copy this file into the /common/scripted_triggers folder of your mod. +# +# If a mod contained in this file is not loaded, its trigger will return false. +# +# If any of the compatibility triggers in this file belong to an active mod, the trigger definition from this file should be overwritten by the one from that mod. +# +# For example, to overwrite the trigger in this file for Morgenrote and make your script think it is active, insert the following in a scripted_trigger file: +# +# morgenrote_is_active = { +# always = yes +# { +# +# Make sure your scripted trigger file is loaded AFTER this one. You can do this by adding zz_ to the filename. +# + +anno1836_is_active = { # Anno 1836 + always = no +} + +anzfp_is_active = { # Australia & New Zealand Flavor Pack + always = no +} + +basileia_is_active = { # Basileia Romaion + always = no +} + +betterdecrees_is_active = { # Better Decrees + always = no +} + +BPM_is_active_trigger = { # Better Politics Mod + always = no +} + +com_is_active = { # Community Outfit Mod + always = no +} + +community_gui_is_active = { # Community GUI Framework Detection + always = no +} + +EACP_is_active_trigger = { # East Asian Clothes Patch + always = no +} + +ecchi_r_is_active = { # ECCHI Redux + always = no +} + +GGGG_is_active_trigger = { # Gas, Guns, Garb, & Grub + always = no +} + +gilded_age_is_active_trigger = { # Gilded Age + always = no +} + +grefm_is_active = { # Greece, Byzantium, & the Balkans Flavor + always = no +} + +IEX_is_active_trigger = { # Industry Expanded + always = no +} + +is_usfp_active = { # Hail, Columbia! + always = no +} + +JKFP_is_active_trigger = { # James's Korea Flavor Pack + always = no +} + +mandate_o_h_is_active = { # Mandate of Heaven + always = no +} + +morgenrote_is_active = { # Morgenrote: Dawn of Flavor + always = no +} + +newspapers_is_active_triger = { # Newspapers Mod + always = no +} + +PCT_is_active_trigger = { # James's Pop Clothing Tweaks + always = no +} + +RRK_is_active_trigger = { # Rally Round the King + always = no +} + +STMS_is_active_trigger = { # States That Make Sense + always = no +} + +vtm_is_active_trigger = { # Victoria Tweaks Mod + always = no +} + +WCR_is_active_trigger = { # Western Clothes: Redux + always = no +} + +#### Grey's Little Reworks #### + +Grey_CIR_is_active = { # Clothing Industry Rework + always = no +} + +Grey_FIR_is_active = { # Food Industry Rework + always = no +} + +Grey_MIR_is_active = { # Military Industry Rework + always = no +} + +Grey_PLP_is_active = { # Populist Legal Power + always = no +} + +Grey_RPR_is_active = { # Ranch Production Rework + always = no +} + +Grey_SEA_is_active = { # Soft Econ Adjustments + always = no +} + +Grey_SPA_is_active = { # Soft Pop Adjustments + always = no +} + +Grey_SIS_is_active = { # Subject Interaction Suite + always = no +} + +Grey_TSC_is_active = { # Tweaked Start Conditions + always = no +} + +Grey_USU_is_active = { # Urban Synergy Unleashed + always = no +} \ No newline at end of file diff --git a/common/scripted_triggers/zz_betterdecrees_is_active_trigger.txt b/common/scripted_triggers/zz_betterdecrees_is_active_trigger.txt new file mode 100644 index 0000000..317919e --- /dev/null +++ b/common/scripted_triggers/zz_betterdecrees_is_active_trigger.txt @@ -0,0 +1,22 @@ +############################## +# BETTER DECREES CHECK SCRPITED TRIGGERS # +############################## + +# You can use this trigger to see if Better Decrees is active for in a playset. +# This is useful if you want your mod to interact with Better Decrees. + +# You can use it by adding a scripted_trigger_file in your mod. +# The File name should start with "00_", so that it gets loaded before this file. +# Add this to your file (without the "#"): + +#betterdecrees_is_active = { +# always = yes +#} + +# Now you can use the trigger like this: "betterdecrees_is_active = yes". +# If Better Decrees is active the Trigger here will take priority and it will result in a "yes". +# If Better Decrees is not active your Trigger will be used and the Trigger will return "no". + +betterdecrees_is_active = { + always = yes +} \ No newline at end of file diff --git a/gfx/interface/icons/decree/civic_suppression_decree.dds b/gfx/interface/icons/decree/civic_suppression_decree.dds new file mode 100644 index 0000000..1e4c497 Binary files /dev/null and b/gfx/interface/icons/decree/civic_suppression_decree.dds differ diff --git a/gfx/interface/icons/decree/conservation_decree.dds b/gfx/interface/icons/decree/conservation_decree.dds new file mode 100644 index 0000000..a9edc0a Binary files /dev/null and b/gfx/interface/icons/decree/conservation_decree.dds differ diff --git a/gfx/interface/icons/decree/culture_convert_decree.dds b/gfx/interface/icons/decree/culture_convert_decree.dds new file mode 100644 index 0000000..96e16d2 Binary files /dev/null and b/gfx/interface/icons/decree/culture_convert_decree.dds differ diff --git a/gfx/interface/icons/decree/decree_grant_autonomy.dds b/gfx/interface/icons/decree/decree_grant_autonomy.dds new file mode 100644 index 0000000..c49e233 Binary files /dev/null and b/gfx/interface/icons/decree/decree_grant_autonomy.dds differ diff --git a/gfx/interface/icons/decree/efficient_admin.dds b/gfx/interface/icons/decree/efficient_admin.dds new file mode 100644 index 0000000..e1aaeaf Binary files /dev/null and b/gfx/interface/icons/decree/efficient_admin.dds differ diff --git a/gfx/interface/icons/decree/enc_con.dds b/gfx/interface/icons/decree/enc_con.dds new file mode 100644 index 0000000..dfe0252 Binary files /dev/null and b/gfx/interface/icons/decree/enc_con.dds differ diff --git a/gfx/interface/icons/decree/exploiter.dds b/gfx/interface/icons/decree/exploiter.dds new file mode 100644 index 0000000..a25843b Binary files /dev/null and b/gfx/interface/icons/decree/exploiter.dds differ diff --git a/gfx/interface/icons/decree/health.dds b/gfx/interface/icons/decree/health.dds new file mode 100644 index 0000000..5391811 Binary files /dev/null and b/gfx/interface/icons/decree/health.dds differ diff --git a/gfx/interface/icons/decree/learning.dds b/gfx/interface/icons/decree/learning.dds new file mode 100644 index 0000000..1c3fdc0 Binary files /dev/null and b/gfx/interface/icons/decree/learning.dds differ diff --git a/gfx/interface/icons/decree/penal.dds b/gfx/interface/icons/decree/penal.dds new file mode 100644 index 0000000..016538e Binary files /dev/null and b/gfx/interface/icons/decree/penal.dds differ diff --git a/gfx/interface/icons/decree/urban_services_decree.dds b/gfx/interface/icons/decree/urban_services_decree.dds new file mode 100644 index 0000000..a31387a Binary files /dev/null and b/gfx/interface/icons/decree/urban_services_decree.dds differ diff --git a/gfx/interface/icons/decree/violent_hostility_decree.dds b/gfx/interface/icons/decree/violent_hostility_decree.dds new file mode 100644 index 0000000..a1dd1ae Binary files /dev/null and b/gfx/interface/icons/decree/violent_hostility_decree.dds differ diff --git a/localization/braz_por/betterdecrees_l_braz_por.yml b/localization/braz_por/betterdecrees_l_braz_por.yml new file mode 100644 index 0000000..3b5ef56 --- /dev/null +++ b/localization/braz_por/betterdecrees_l_braz_por.yml @@ -0,0 +1,52 @@ +l_braz_por: + +decree_road_maintenance:0 "Administração Eficiente" +decree_road_maintenance_desc:0 "Incentivar a administração estatal eficiente" + decree_greener_grass_campaign:0 "Campanha Grama Mais Verde" + decree_greener_grass_campaign_desc:0 "Promover o estado como um lugar desejável para migrar" + decree_promote_social_mobility:0 "Programa de Inovação e Educação" + decree_promote_social_mobility_desc:0 "Incentivar a população a buscar maiores qualificações profissionais e inovar em novas tecnologias e atividades artísticas" + decree_promote_national_values:0 "Propaganda de Valores Nacionais" + decree_promote_national_values_desc:0 "Aumente a assimilação cultural e as taxas de conversão religiosa com uma campanha de propaganda" + decree_encourage_construction:0 "Incentivar o Setor da Construção" + decree_encourage_construction_desc:0 "Aumentar o rendimento do setor de construção" +decree_emergency_relief:0 "Bem-estar e alívio" +decree_emergency_relief_desc:0 "Promover apoio de caridade e cuidar dos mais infelizes do estado" + decree_encourage_manufacturing_industry:0 "Incentivar a Indústria de Manufatura" + decree_encourage_manufacturing_industry_desc:0 "Aumentar o rendimento do setor de manufatura" + decree_encourage_agricultural_industry:0 "Incentivar a Indústria Agrícola" + decree_encourage_agricultural_industry_desc:0 "Aumentar o rendimento do setor agrícola e de plantações" + decree_encourage_resource_industry:0 "Incentivar a indústria de recursos" + decree_encourage_resource_industry_desc:0 "Aumentar a produtividade do setor de recursos" + decree_encourage_urban_services:0 "Incentivar Serviços Urbanos" + decree_encourage_urban_services_desc:0 "Aumentar o rendimento dos serviços urbanos. Inclui comércio, centro urbano, portos, caminhos-de-ferro, monumentos, canais e centrais elétricas" + decree_enlistment_efforts:1 "Programa de Treinamento Militar" + decree_enlistment_efforts_desc:1 "Incentivar o recrutamento e treinamento de tropas locais por meio de incentivos financeiros e treinamento de alta qualidade para criar uma força militar de elite" + decree_violent_suppression:0 "Supressão Violenta" + decree_violent_suppression_desc:0 "Use a guarda nacional da nação para controlar as multidões enfurecidas" + decree_promote_health:0 "Programas de saúde pública" + decree_promote_health_desc:0 "Iniciar programas de saúde pública voltados para as famílias e os enfermos" + decree_worker_exploitation:0 "exploração do trabalhador" + decree_worker_exploitation_desc:0 "Explorar os trabalhadores locais para melhorar a produtividade da indústria" + decree_penal_colony:0 "Transferências de colônias penais" + decree_penal_colony_desc:0 "Envie criadores de problemas e descontentes para povoar nossas colônias em crescimento" +decree_bd_grant_autonomy:0 "Grant Local Autonomy" +decree_bd_grant_autonomy_desc:0 "Without constant interference, communities adapt. Sometimes efficiently, sometimes chaotically" + +decree_violent_hostility:0 "Conversão Cultural" +decree_violent_hostility_desc:0 "Iniciar um programa de alta intensidade para converter a cultura das populações discriminadas para uma aceita." + +decree_conservation:0 "Conservação de Terras" +decree_conservation_desc:0 "Supervisionar o uso sábio dos recursos minimizando práticas poluentes na indústria e a transformação de terras em parques nacionais." + +decree_disenfranchise:0 "Supressão Cívica" +decree_disenfranchise_desc:0 "Suprimir o envolvimento político e influência." + +decree_red_tape:0 "Redução da Burocracia" #change +decree_red_tape_desc:0 "Por autoridade do estado, o estado terá menos autoridade sobre os negócios." + +building_group_bg_monuments_throughput_add:0 "Monumentos [concept_throughput]" +building_group_bg_canals_throughput_add:0 "Canal [concept_throughput]" + +building_group_bg_monuments_throughput_add_desc:0 "Um bônus ou penalidade para tanto a entrada quanto a saída dos monumentos" +building_group_bg_canals_throughput_add_desc:0 "Um bônus ou penalidade para tanto a entrada quanto a saída dos canal" \ No newline at end of file diff --git a/localization/english/replace/betterdecrees_l_english.yml b/localization/english/replace/betterdecrees_l_english.yml new file mode 100644 index 0000000..7bda754 --- /dev/null +++ b/localization/english/replace/betterdecrees_l_english.yml @@ -0,0 +1,64 @@ +l_english: + + decree_road_maintenance:0 "Efficient Administration" + decree_road_maintenance_desc:0 "Encourage efficient tax collection and State administration" + decree_greener_grass_campaign:0 "Greener Grass Campaign" + decree_greener_grass_campaign_desc:0 "Promote the state as a desirable place to migrate to" + decree_promote_social_mobility:0 "Encourage Innovation" + decree_promote_social_mobility_desc:0 "Encourage the population to strive for higher job qualifications and innovate new technologies and artistic pursuits" + decree_promote_national_values:0 "Encourage Values" + decree_promote_national_values_desc:0 "Increase cultural assimilation and religious conversion rates with a propaganda campaign" + decree_encourage_construction:0 "Encourage Construction" + decree_encourage_construction_desc:0 "Increase Construction Sector throughput" + decree_emergency_relief:0 "Emergency Relief" + decree_emergency_relief_desc:0 "Promote charitable support and care for the state's most unfortunate" + bd_any_starving_pops_tt:0 "Any [concept_pop] is in [concept_starvation]" + decree_encourage_manufacturing_industry:0 "Encourage Manufacturing Industry" + decree_encourage_manufacturing_industry_desc:0 "Increase Manufacturing sector throughput" + decree_encourage_agricultural_industry:0 "Encourage Agricultural Industry" + decree_encourage_agricultural_industry_desc:0 "Increase Agricultural and Plantation sector throughput" + decree_encourage_resource_industry:0 "Encourage Resource Industry" + decree_encourage_resource_industry_desc:0 "Increase Resource sector throughput" + decree_encourage_urban_services:0 "Encourage Urban Services" + decree_encourage_urban_services_desc:0 "Increase urban services throughput. Includes trade, urban centre, ports, rail, monuments, canals and power plants" + decree_enlistment_efforts:1 "Military Training" + decree_enlistment_efforts_desc:1 "Incentivizing recruitment and training of local troops through financial incentives and high quality training to create an elite military force" + decree_violent_suppression:0 "Violent Suppression" + decree_violent_suppression_desc:0 "Use the nation's national guard to control the angry mobs" + decree_promote_health:0 "Public Health Programs" + decree_promote_health_desc:0 "Initiate public health programs targeted towards families and the infirm" + decree_worker_exploitation:0 "Worker Exploitation" + decree_worker_exploitation_desc:0 "Exploit local workers to improve productivity" + decree_penal_colony:0 "Penal Colony Transfers" + decree_penal_colony_desc:0 "Send off trouble-makers and miscontents to populate our growing colonies" + + decree_violent_hostility:0 "Encourage Violent Hostility" + decree_violent_hostility_desc:0 "Issue public endorsement and support for initatives designed to eradicate people groups deemed not to belong." + violent_hostility_decree_eligble_tt:0 "A [concept_culture] is present which is not in their [concept_homeland]#b and#! is not one of our [concept_primary_cultures]." + + decree_conservation:0 "Land Conservation" + decree_conservation_desc:0 "Oversee the wise use of resources by minimising polluting practices in industry and the reclamation of land in to national parks." +#The government should be in charge of ensuring the conservation of resources for future generations +#from conquerer of nature to citizen of it +#maybe event creating arable land? connection to national parks + +decree_disenfranchise:0 "Civic Suppression" +decree_disenfranchise_desc:0 "Suppress political engagement and influence." + +#decree_red_tape:0 "Cut Red Tape" #change +#decree_red_tape:0 "By authority of the state, the state shall have less authority over business." + +decree_bd_grant_autonomy:0 "Grant Local Autonomy" +decree_bd_grant_autonomy_desc:0 "Without constant interference, communities adapt. Sometimes efficiently, sometimes chaotically" + +building_group_bg_monuments_throughput_add:0 "Monuments [concept_throughput]" +building_group_bg_canals_throughput_add:0 "Canals [concept_throughput]" + +building_group_bg_monuments_throughput_add_desc:0 "A bonus or penalty to both input and output of Monuments" +building_group_bg_canals_throughput_add_desc:0 "A bonus or penalty to both input and output of Canals" + +state_radicals_from_sol_change_mult:0 "$concept_radicals$ from [concept_sol] changes" +state_radicals_from_sol_change_mult_desc:0 "A bonus or penalty to how many [Concept('concept_pop', '$concept_pops$')] will become [concept_radical] from changes in [concept_sol]" + +state_loyalists_from_sol_change_mult:0 "$concept_loyalists$ from [concept_sol] changes" +state_loyalists_from_sol_change_mult_desc:0 "A bonus or penalty to how many [Concept('concept_pop', '$concept_pops$')] will become [concept_loyalist] from changes in [concept_sol]" \ No newline at end of file diff --git a/localization/french/betterdecrees_l_french.yml b/localization/french/betterdecrees_l_french.yml new file mode 100644 index 0000000..4adfa37 --- /dev/null +++ b/localization/french/betterdecrees_l_french.yml @@ -0,0 +1,81 @@ +l_french: + + decree_road_maintenance:0 "Administration efficace" + decree_road_maintenance_desc:0 "Encourager une collecte des impôts et une administration efficace" + + decree_greener_grass_campaign:0 "Campagne pour une herbe plus verte" + decree_greener_grass_campaign_desc:0 "Promouvoir cet état comme un lieu de migration souhaitable" + + decree_promote_social_mobility:0 "Encourager l'innovation" + decree_promote_social_mobility_desc:0 "Encourager la population à obtenir des qualifications professionnelles plus élevées et à innover dans les nouvelles technologies et les activités artistiques" + + decree_promote_national_values:0 "Promouvoir les valeurs" + decree_promote_national_values_desc:0 "Augmenter les taux d'assimilation culturelle et de conversion religieuse par une campagne de propagande" + + decree_encourage_construction:0 "Encourager la construction" + decree_encourage_construction_desc:0 "Augmenter la production du secteur de la construction" + + decree_emergency_relief:0 "Secours d'urgence" + decree_emergency_relief_desc:0 "Promouvoir le soutien caritatif et les soins aux plus démunis" + + bd_any_starving_pops_tt:0 "Tout [concept_pop] est en [concept_starvation]" + + decree_encourage_manufacturing_industry:0 "Encourager l'industrie manufacturière" + decree_encourage_manufacturing_industry_desc:0 "Augmenter le rendement du secteur manufacturier" + + decree_encourage_agricultural_industry:0 "Encourager l'industrie agricole" + decree_encourage_agricultural_industry_desc:0 "Augmenter le rendement du secteur agricole et des plantations" + + decree_encourage_resource_industry:0 "Encourager l'extraction des ressources" + decree_encourage_resource_industry_desc:0 "Augmenter le rendement du secteur des ressources" + + decree_encourage_urban_services:0 "Encourager les services urbains" + decree_encourage_urban_services_desc:0 "Augmenter la production des services urbains. Comprend le commerce, le centre urbain, les ports, le rail, les monuments, les canaux et les centrales électriques" + + decree_enlistment_efforts:1 "Formation militaire" + decree_enlistment_efforts_desc:1 "Amélioration du recrutement et de la formation des troupes locales par des incitations financières et une formation de haute qualité, afin de créer une force militaire d'élite" + + decree_violent_suppression:0 "Reppression violente" + decree_violent_suppression_desc:0 "Utiliser la garde nationale pour contrôler les foules en colère" + + decree_promote_health:0 "Programme de santé publique" + decree_promote_health_desc:0 "Lancer des programmes de santé publique ciblant les familles et les infirmes" + + decree_worker_exploitation:0 "Exploitation des travailleurs" + decree_worker_exploitation_desc:0 "Exploiter les travailleurs locaux pour améliorer la productivité" + + decree_penal_colony:0 "Transferts de colonies pénitentiaires" + decree_penal_colony_desc:0 "Expulser les fauteurs de troubles et les mécontents dans nos colonies en pleine croissance" + + decree_violent_hostility:0 "Encourager la ségrégation violente" + decree_violent_hostility_desc:0 "Apporter un soutien public aux initiatives visant à éradiquer les groupes de personnes considérés comme n'appartenant pas à la communauté." + +decree_bd_grant_autonomy:0 "Grant Local Autonomy" +decree_bd_grant_autonomy_desc:0 "Without constant interference, communities adapt. Sometimes efficiently, sometimes chaotically" + + violent_hostility_decree_eligble_tt:0 "Une [concept_culture] est présente alors qu'elle ne se trouve pas dans leur [concept_homeland]#b et#! n'est pas l'une de nos [concept_primary_cultures]." + + decree_conservation:0 "Préservation et conservation des terres" + decree_conservation_desc:0 "Imposer l'utilisation de ressources minimisants les pratiques polluantes de l'industrie et remise en valeur des terres par la création de parcs nationaux." + +#The government should be in charge of ensuring the conservation of resources for future generations +#from conquerer of nature to citizen of it +#maybe event creating arable land? connection to national parks + + decree_disenfranchise:0 "Répression politique" + decree_disenfranchise_desc:0 "Répression de l'engagement et de l'influence politiques." + +#decree_red_tape:0 "Cut Red Tape" #change +#decree_red_tape:0 "By authority of the state, the state shall have less authority over business." + +building_group_bg_monuments_throughput_add:0 "Monuments [concept_throughput]" +building_group_bg_canals_throughput_add:0 "Canaux [concept_throughput]" + +building_group_bg_monuments_throughput_add_desc:0 "Un bonus ou une pénalité à la fois à l'entrée et à la sortie des monuments" +building_group_bg_canals_throughput_add_desc:0 "Un bonus ou une pénalité à la fois à l'entrée et à la sortie des canaux" + +state_radicals_from_sol_change_mult:0 "$concept_radicals$ des changements de [concept_sol]" +state_radicals_from_sol_change_mult_desc:0 "Un bonus ou une pénalité au nombre de [Concept('concept_pop', '$concept_pops$')] qui deviendront [concept_radical] à partir des changements de [concept_sol]" + +state_loyalists_from_sol_change_mult:0 "$concept_loyalists$ des changements de [concept_sol]" +state_loyalists_from_sol_change_mult_desc:0 "Un bonus ou une pénalité au nombre de [Concept('concept_pop', '$concept_pops$')] qui deviendront concept_loyalist à partir des changements de [concept_sol]" diff --git a/localization/german/betterdecrees_l_german.yml b/localization/german/betterdecrees_l_german.yml new file mode 100644 index 0000000..66dfe41 --- /dev/null +++ b/localization/german/betterdecrees_l_german.yml @@ -0,0 +1,38 @@ +l_german: + +decree_road_maintenance:0 "Effiziente Verwaltung" +decree_road_maintenance_desc:0 "Förderung einer effizienten Staatsverwaltung" + decree_greener_grass_campaign:0 "Kampagne „Grüneres Gras“." + decree_greener_grass_campaign_desc:0 "Den Staat als wünschenswerten Migrationsort fördern" + decree_promote_social_mobility:0 "Innovations- und Bildungsprogramm" + decree_promote_social_mobility_desc:0 "Ermutigen Sie die Bevölkerung, eine höhere Berufsqualifikation anzustreben und neue Technologien und künstlerische Aktivitäten zu entwickeln" + decree_promote_national_values:0 "Nationale Wertepropaganda" + decree_promote_national_values_desc:0 "Steigern Sie die kulturelle Assimilation und die religiösen Konversionsraten mit einer Propagandakampagne" + decree_encourage_construction:0 "Bausektor fördern" + decree_encourage_construction_desc:0 "Erhöhen Sie den Durchsatz im Bausektor" +decree_emergency_relief:0 "Wohlfahrt und Erleichterung" +decree_emergency_relief_desc:0 "Fördern Sie wohltätige Unterstützung und Fürsorge für die Ärmsten des Staates" + decree_encourage_manufacturing_industry:0 "Fördern Sie die Fertigungsindustrie" + decree_encourage_manufacturing_industry_desc:0 "Erhöhen Sie den Durchsatz im Fertigungssektor" + decree_encourage_agricultural_industry:0 "Förderung der Agrarindustrie" + decree_encourage_agricultural_industry_desc:0 "Erhöhen Sie den Durchsatz im Agrar- und Plantagensektor" + decree_encourage_resource_industry:0 "Förderung der Rohstoffindustrie" + decree_encourage_resource_industry_desc:0 "Erhöhen Sie den Durchsatz des Ressourcensektors" + decree_encourage_urban_services:0 "Städtische Dienstleistungen fördern" + decree_encourage_urban_services_desc:0 "Erhöhen Sie den Durchsatz städtischer Dienstleistungen. Beinhaltet Handel, Stadtzentrum, Häfen, Eisenbahn, Denkmäler, Kanäle und Kraftwerke" + decree_enlistment_efforts:1 "Militärisches Ausbildungsprogramm" + decree_enlistment_efforts_desc:1 "Anreize für die Rekrutierung und Ausbildung örtlicher Truppen durch finanzielle Anreize und hochwertige Ausbildung schaffen, um eine militärische Elitetruppe aufzubauen" + decree_violent_suppression:0 "Gewaltsame Unterdrückung" + decree_violent_suppression_desc:0 "Benutzen Sie die Nationalgarde des Landes, um die wütenden Mobs zu kontrollieren" + decree_promote_health:0 "Öffentliche Gesundheitsprogramme" + decree_promote_health_desc:0 "Initiieren Sie öffentliche Gesundheitsprogramme, die sich an Familien und Gebrechliche richten" + decree_worker_exploitation:0 "Ausbeutung von Arbeitern" + decree_worker_exploitation_desc:0 "Nutzen Sie die lokalen Arbeitskräfte aus, um die Produktivität der Branche zu steigern" + decree_penal_colony:0 "Strafkolonie-Transfers" + decree_penal_colony_desc:0 "Schicken Sie Unruhestifter und Unzufriedene los, um unsere wachsenden Kolonien zu bevölkern" +decree_bd_grant_autonomy:0 "Grant Local Autonomy" +decree_bd_grant_autonomy_desc:0 "Without constant interference, communities adapt. Sometimes efficiently, sometimes chaotically" + +building_group_bg_monuments_throughput_add:0 "Durchsatz an Denkmälern" + +building_group_bg_canals_throughput_add:0 "Kanaldurchsatz" diff --git a/localization/japanese/betterdecrees_l_japanese.yml b/localization/japanese/betterdecrees_l_japanese.yml new file mode 100644 index 0000000..5ea28b0 --- /dev/null +++ b/localization/japanese/betterdecrees_l_japanese.yml @@ -0,0 +1,38 @@ +l_japanese: + +decree_road_maintenance:0 "効率的な管理" +decree_road_maintenance_desc:0 "効率的な国家行政の促進" + decree_greener_grass_campaign:0 "より緑の草キャンペーン" + decree_greener_grass_campaign_desc:0 "同州を移住先として望ましい場所として宣伝する" + decree_promote_social_mobility:0 "イノベーションと教育プログラム" + decree_promote_social_mobility_desc:0 "より高い職業資格を目指して努力し、新しい技術や芸術的追求を革新するよう国民を奨励する" + decree_promote_national_values:0 "国家的価値観のプロパガンダ" + decree_promote_national_values_desc:0 "プロパガンダキャンペーンで文化の同化と宗教への改宗率を高める" + decree_encourage_construction:0 "建設業界を奨励する" + decree_encourage_construction_desc:0 "建設部門のスループットを向上" +decree_emergency_relief:0 "福祉と救済" +decree_emergency_relief_desc:0 "州で最も不幸な人々への慈善支援とケアを促進する" + decree_encourage_manufacturing_industry:0 "製造業の活性化" + decree_encourage_manufacturing_industry_desc:0 "製造部門のスループットを向上" + decree_encourage_agricultural_industry:0 "農業の奨励" + decree_encourage_agricultural_industry_desc:0 "農業およびプランテーション部門のスループットを向上させる" + decree_encourage_resource_industry:0 "資源産業の活性化" + decree_encourage_resource_industry_desc:0 "資源部門のスループットを向上させる" + decree_encourage_urban_services:0 "都市サービスの促進" + decree_encourage_urban_services_desc:0 "都市サービスのスループットを向上させます。貿易、都市中心部、港、鉄道、記念碑、運河、発電所が含まれます" + decree_enlistment_efforts:1 "軍事訓練プログラム" + decree_enlistment_efforts_desc:1 "エリート軍隊を創設するための財政的インセンティブと質の高い訓練を通じて、地元軍の採用と訓練を奨励する" + decree_violent_suppression:0 "暴力的な弾圧" + decree_violent_suppression_desc:0 "国の州兵を動員して怒れる暴徒を制圧する" + decree_promote_health:0 "公衆衛生プログラム" + decree_promote_health_desc:0 "家族や弱者を対象とした公衆衛生プログラムを開始する" + decree_worker_exploitation:0 "労働者の搾取" + decree_worker_exploitation_desc:0 "地元の労働者を活用して業界の生産性を向上させる" + decree_penal_colony:0 "流刑地への移送" + decree_penal_colony_desc:0 "トラブルメーカーや不満を抱く者を追い出し、成長を続ける植民地に住まわせる" +decree_bd_grant_autonomy:0 "Grant Local Autonomy" +decree_bd_grant_autonomy_desc:0 "Without constant interference, communities adapt. Sometimes efficiently, sometimes chaotically" + +building_group_bg_monuments_throughput_add:0 "記念碑のスループット" + +building_group_bg_canals_throughput_add:0 "運河のスループット" diff --git a/localization/korean/betterdecree_l_korean.yml b/localization/korean/betterdecree_l_korean.yml new file mode 100644 index 0000000..83cdc9d --- /dev/null +++ b/localization/korean/betterdecree_l_korean.yml @@ -0,0 +1,39 @@ +l_korean: + +decree_road_maintenance:0 "효율적인 관리" +decree_road_maintenance_desc:0 "효율적인 국정 운영 장려" + decree_greener_grass_campaign:0 "푸른 잔디 캠페인" + decree_greener_grass_campaign_desc:0 "이주하기 좋은 곳으로 주를 홍보하십시오." + decree_promote_social_mobility:0 "혁신 및 교육 프로그램" + decree_promote_social_mobility_desc:0 "인구가 더 높은 직업 자격을 위해 노력하고 새로운 기술과 예술적 추구를 혁신하도록 장려하십시오." + decree_promote_national_values:0 "국가적 가치 선전" + decree_promote_national_values_desc:0 "선전 캠페인을 통해 문화 동화 및 종교 전환율을 높입니다." + decree_encourage_construction:0 "건설 부문 장려" + decree_encourage_construction_desc:0 "건설 부문 처리량 증가" +decree_emergency_relief:0 "복지 및 구호" +decree_emergency_relief_desc:0 "주에서 가장 불행한 사람들을 위한 자선 지원 및 돌봄 촉진" + decree_encourage_manufacturing_industry:0 "제조업 장려" + decree_encourage_manufacturing_industry_desc:0 "제조 부문 처리량 증가" + decree_encourage_agricultural_industry:0 "농업 산업 장려" + decree_encourage_agricultural_industry_desc:0 "농업 및 플랜테이션 부문 처리량 증가" + decree_encourage_resource_industry:0 "자원산업 육성" + decree_encourage_resource_industry_desc:0 "리소스 섹터 처리량 증가" + decree_encourage_urban_services:0 "도시 서비스 장려" + decree_encourage_urban_services_desc:0 "도시 서비스 처리량을 늘립니다. 무역, 도심, 항구, 철도, 기념물, 운하 및 발전소 포함" + decree_enlistment_efforts:1 "군사 훈련 프로그램" + decree_enlistment_efforts_desc:1 "엘리트 군대를 만들기 위한 재정적 인센티브와 고품질 훈련을 통해 현지 군대의 모집 및 훈련에 인센티브를 제공합니다." + decree_violent_suppression:0 "폭력 진압" + decree_violent_suppression_desc:0 "화난 군중을 통제하기 위해 국가의 방위군을 사용하십시오." + decree_promote_health:0 "공중 보건 프로그램" + decree_promote_health_desc:0 "가족과 약자를 대상으로 한 공중 보건 프로그램 시작" + decree_worker_exploitation:0 "노동자 착취" + decree_worker_exploitation_desc:0 "산업 생산성 향상을 위해 현지 근로자 착취" + decree_penal_colony:0 "형벌 식민지 이전" + decree_penal_colony_desc:0 "성장하는 식민지를 채우기 위해 문제를 일으키는 사람과 불만을 품는 사람을 보내십시오." +decree_bd_grant_autonomy:0 "Grant Local Autonomy" +decree_bd_grant_autonomy_desc:0 "Without constant interference, communities adapt. Sometimes efficiently, sometimes chaotically" + +building_group_bg_monuments_throughput_add:0 "기념물 처리량" + +building_group_bg_canals_throughput_add:0 "운하 처리량" + diff --git a/localization/polish/betterdecrees_l_polish.yml b/localization/polish/betterdecrees_l_polish.yml new file mode 100644 index 0000000..c31cbc4 --- /dev/null +++ b/localization/polish/betterdecrees_l_polish.yml @@ -0,0 +1,38 @@ +l_polish: + +decree_road_maintenance:0 "Sprawna administracja" +decree_road_maintenance_desc:0 "Zachęcaj do sprawnej administracji państwowej" + decree_greener_grass_campaign:0 "Kampania „Zieleńsza trawa”." + decree_greener_grass_campaign_desc:0 "Promuj stan jako pożądane miejsce migracji" + decree_promote_social_mobility:0 "Program innowacji i edukacji" + decree_promote_social_mobility_desc:0 "Zachęcaj ludność do dążenia do wyższych kwalifikacji zawodowych i wprowadzania innowacji w zakresie nowych technologii i zajęć artystycznych" + decree_promote_national_values:0 "Propaganda wartości narodowych" + decree_promote_national_values_desc:0 "Zwiększaj współczynniki asymilacji kulturowej i nawróceń religijnych dzięki kampanii propagandowej" + decree_encourage_construction:0 "Zachęcaj sektor budowlany" + decree_encourage_construction_desc:0 "Zwiększ przepustowość sektora budowlanego" +decree_emergency_relief:0 "Dobrobyt i ulga" +decree_emergency_relief_desc:0 "Promuj pomoc charytatywną i opiekę nad najuboższymi w państwie" + decree_encourage_manufacturing_industry:0 "Zachęcaj przemysł wytwórczy" + decree_encourage_manufacturing_industry_desc:0 "Zwiększ przepustowość sektora produkcyjnego" + decree_encourage_agricultural_industry:0 "Wspieraj przemysł rolniczy" + decree_encourage_agricultural_industry_desc:0 "Zwiększ przepustowość sektora rolnictwa i plantacji" + decree_encourage_resource_industry:0 "Zachęcaj przemysł surowcowy" + decree_encourage_resource_industry_desc:0 "Zwiększ przepustowość sektora zasobów" + decree_encourage_urban_services:0 "Zachęcaj usługi miejskie" + decree_encourage_urban_services_desc:0 "Zwiększ przepustowość usług miejskich. Obejmuje handel, ośrodki miejskie, porty, kolej, zabytki, kanały i elektrownie" + decree_enlistment_efforts:1 "Program szkolenia wojskowego" + decree_enlistment_efforts_desc:1 "Zachęcanie do rekrutacji i szkolenia lokalnych żołnierzy poprzez zachęty finansowe i wysokiej jakości szkolenia w celu stworzenia elitarnej siły wojskowej" + decree_violent_suppression:0 "Brutalne tłumienie" + decree_violent_suppression_desc:0 "Użyj narodowej gwardii narodowej, aby kontrolować wściekłe tłumy" + decree_promote_health:0 "Programy zdrowia publicznego" + decree_promote_health_desc:0 "Zainicjować programy zdrowia publicznego skierowane do rodzin i chorych" + decree_worker_exploitation:0 "Wyzysk pracowników" + decree_worker_exploitation_desc:0 "Wykorzystaj lokalnych pracowników, aby poprawić produktywność przemysłu" + decree_penal_colony:0 "Transfery kolonii karnych" + decree_penal_colony_desc:0 "Wyślij wichrzycieli i niezadowolenie, aby zaludnili nasze rosnące kolonie" +decree_bd_grant_autonomy:0 "Grant Local Autonomy" +decree_bd_grant_autonomy_desc:0 "Without constant interference, communities adapt. Sometimes efficiently, sometimes chaotically" + +building_group_bg_monuments_throughput_add:0 "Przepustowość pomników" + +building_group_bg_canals_throughput_add:0 "Przepustowość kanałów" diff --git a/localization/russian/betterdecrees_l_russian.yml b/localization/russian/betterdecrees_l_russian.yml new file mode 100644 index 0000000..4d36ccb --- /dev/null +++ b/localization/russian/betterdecrees_l_russian.yml @@ -0,0 +1,39 @@ +l_russian: + +decree_road_maintenance:0 "Эффективное администрирование" +decree_road_maintenance_desc:0 "Поощрять эффективное государственное управление" + decree_greener_grass_campaign:0 "Кампания "Зеленая трава"" + decree_greener_grass_campaign_desc:0 "Продвигайте штат как желаемое место для миграции" + decree_promote_social_mobility:0 "Программа инноваций и образования" + decree_promote_social_mobility_desc:0 "Поощрять население стремиться к более высокой квалификации и внедрять новые технологии и художественные занятия." + decree_promote_national_values:0 "Пропаганда национальных ценностей" + decree_promote_national_values_desc:0 "Увеличьте уровень культурной ассимиляции и религиозного обращения с помощью пропагандистской кампании" + decree_encourage_construction:0 "Поощрять строительный сектор" + decree_encourage_construction_desc:0 "Увеличение пропускной способности строительного сектора" +decree_emergency_relief:0 "Благосостояние и помощь" +decree_emergency_relief_desc:0 "Содействовать благотворительной поддержке и заботе о самых обездоленных в штате" + decree_encourage_manufacturing_industry:0 "Поощряйте обрабатывающую промышленность" + decree_encourage_manufacturing_industry_desc:0 "Увеличение пропускной способности производственного сектора" + decree_encourage_agricultural_industry:0 "Поощрять сельскохозяйственную промышленность" + decree_encourage_agricultural_industry_desc:0 "Увеличение пропускной способности сектора сельского хозяйства и плантаций" + decree_encourage_resource_industry:0 "Поощряйте ресурсную промышленность" + decree_encourage_resource_industry_desc:0 "Увеличение пропускной способности ресурсного сектора" + decree_encourage_urban_services:0 "Поощряйте городские услуги" + decree_encourage_urban_services_desc:0 "Увеличение пропускной способности городских служб. Включает торговлю, городской центр, порты, железную дорогу, памятники, каналы и электростанции." + decree_enlistment_efforts:1 "Программа военной подготовки" + decree_enlistment_efforts_desc:1 "Стимулирование набора и обучения местных войск за счет финансовых стимулов и высококачественной подготовки для создания элитных вооруженных сил." + decree_violent_suppression:0 "Насильственное подавление" + decree_violent_suppression_desc:0 "Используйте национальную гвардию, чтобы контролировать разъяренных толп" + decree_promote_health:0 "Программы общественного здравоохранения" + decree_promote_health_desc:0 "Инициировать программы общественного здравоохранения, ориентированные на семьи и немощных" + decree_worker_exploitation:0 "рабочая эксплуатация" + decree_worker_exploitation_desc:0 "Используйте местных рабочих для повышения производительности отрасли" + decree_penal_colony:0 "Переводы в исправительные колонии" + decree_penal_colony_desc:0 "Отправьте нарушителей спокойствия и недовольных, чтобы они заселили наши растущие колонии." + +decree_bd_grant_autonomy:0 "Grant Local Autonomy" +decree_bd_grant_autonomy_desc:0 "Without constant interference, communities adapt. Sometimes efficiently, sometimes chaotically" + +building_group_bg_monuments_throughput_add:0 "Памятники" + +building_group_bg_canals_throughput_add:0 "Каналы Пропускная способность" diff --git a/localization/simp_chinese/betterdecrees_l_simp_chinese.yml b/localization/simp_chinese/betterdecrees_l_simp_chinese.yml new file mode 100644 index 0000000..638368c --- /dev/null +++ b/localization/simp_chinese/betterdecrees_l_simp_chinese.yml @@ -0,0 +1,39 @@ +l_simp_chinese: + decree_road_maintenance:0 "高效行政" + decree_road_maintenance_desc:0 "鼓励有效的国家行政" + decree_greener_grass_campaign:0 "绿草运动" + decree_greener_grass_campaign_desc:0 "将该州宣传为理想的移民地" + decree_promote_social_mobility:0 "创新与教育计划" + decree_promote_social_mobility_desc:0 "鼓励人民争取更高的工作资格和创新新技术和艺术追求" + decree_promote_national_values:0 "民族价值观宣传" + decree_promote_national_values_desc:0 "通过宣传活动提高文化同化率和宗教皈依率" + decree_encourage_construction:0 "鼓励建筑业" + decree_encourage_construction_desc:0 "增加建筑业吞吐量" + decree_emergency_relief:0 "福利救济" + decree_emergency_relief_desc:0 "促进对本州最不幸者的慈善支持和关怀" + decree_encourage_manufacturing_industry:0 "鼓励制造业" + decree_encourage_manufacturing_industry_desc:0 "增加制造业吞吐量" + decree_encourage_agricultural_industry:0 "鼓励农业产业" + decree_encourage_agricultural_industry_desc:0 "增加农业和种植园部门的吞吐量" + decree_encourage_resource_industry:0 "鼓励资源产业" + decree_encourage_resource_industry_desc:0 "增加资源部门吞吐量" + decree_encourage_urban_services:0 "鼓励城市服务" + decree_encourage_urban_services_desc:0 "提高城市服务吞吐量。包括贸易、城市中心、港口、铁路、纪念碑、运河和发电厂" + decree_enlistment_efforts:1 "军事训练计划" + decree_enlistment_efforts_desc:1 "通过财政激励和高质量培训,激励地方部队的招募和训练,打造精锐军队" + decree_violent_suppression:0 "暴力镇压" + decree_violent_suppression_desc:0 "使用国家的国民警卫队来控制愤怒的暴民" + decree_promote_health:0 "公共卫生项目" + decree_promote_health_desc:0 "启动针对家庭和体弱者的公共卫生计划" + decree_worker_exploitation:0 "工人剥削" + decree_worker_exploitation_desc:0 "剥削当地工人以提高行业生产力" + decree_penal_colony:0 "流放地转移" + decree_penal_colony_desc:0 "赶走麻烦制造者和不满者,让我们不断壮大的殖民地充满活力" + decree_disenfranchise:0 "镇压公民" + decree_disenfranchise_desc:0 "抑制公民的政治集会和影响" +decree_bd_grant_autonomy:0 "Grant Local Autonomy" +decree_bd_grant_autonomy_desc:0 "Without constant interference, communities adapt. Sometimes efficiently, sometimes chaotically" + +building_group_bg_monuments_throughput_add:0 "纪念碑吞吐量" + +building_group_bg_canals_throughput_add:0 "运河吞吐量" diff --git a/localization/spanish/betterdecrees_l_spanish.yml b/localization/spanish/betterdecrees_l_spanish.yml new file mode 100644 index 0000000..e3e40a1 --- /dev/null +++ b/localization/spanish/betterdecrees_l_spanish.yml @@ -0,0 +1,38 @@ +l_spanish: + +decree_road_maintenance:0 "Administración Eficiente" +decree_road_maintenance_desc:0 "Fomentar una administración estatal eficiente" + decree_greener_grass_campaign:0 "Campaña de hierba más verde" + decree_greener_grass_campaign_desc:0 "Promover el estado como un lugar deseable para migrar" + decree_promote_social_mobility:0 "Programa de Innovación y Educación" + decree_promote_social_mobility_desc:0 "Alentar a la población a esforzarse por obtener mejores calificaciones laborales e innovar nuevas tecnologías y actividades artísticas." + decree_promote_national_values:0 "Propaganda de valores nacionales" + decree_promote_national_values_desc:0 "Aumentar la asimilación cultural y las tasas de conversión religiosa con una campaña de propaganda" + decree_encourage_construction:0 "Impulsar Sector Construcción" + decree_encourage_construction_desc:0 "Aumentar el rendimiento del sector de la construcción" +decree_emergency_relief:0 "Bienestar y Socorro" +decree_emergency_relief_desc:0 "Promover el apoyo caritativo y el cuidado de los más desafortunados del estado." + decree_encourage_manufacturing_industry:0 "Fomentar la industria manufacturera" + decree_encourage_manufacturing_industry_desc:0 "Aumentar el rendimiento del sector manufacturero" + decree_encourage_agricultural_industry:0 "Fomentar la Industria Agrícola" + decree_encourage_agricultural_industry_desc:0 "Aumentar el rendimiento del sector agrícola y de plantaciones" + decree_encourage_resource_industry:0 "Fomentar la industria de recursos" + decree_encourage_resource_industry_desc:0 "Aumentar el rendimiento del sector de recursos" + decree_encourage_urban_services:0 "Fomentar los Servicios Urbanos" + decree_encourage_urban_services_desc:0 "Aumentar el rendimiento de los servicios urbanos. Incluye comercio, centro urbano, puertos, ferrocarril, monumentos, canales y centrales eléctricas" + decree_enlistment_efforts:1 "Programa de Entrenamiento Militar" + decree_enlistment_efforts_desc:1 "Incentivar el reclutamiento y entrenamiento de tropas locales a través de incentivos financieros y entrenamiento de alta calidad para crear una fuerza militar de élite" + decree_violent_suppression:0 "Represión violenta" + decree_violent_suppression_desc:0 "Usa la guardia nacional de la nación para controlar a las turbas enojadas" + decree_promote_health:0 "Programas de salud pública" + decree_promote_health_desc:0 "Iniciar programas de salud pública dirigidos a las familias y los enfermos." + decree_worker_exploitation:0 "Explotación del trabajador" + decree_worker_exploitation_desc:0 "Explotar a los trabajadores locales para mejorar la productividad de la industria." + decree_penal_colony:0 "Traslados a colonias penales" + decree_penal_colony_desc:0 "Envía a los alborotadores y descontentos a poblar nuestras crecientes colonias." +decree_bd_grant_autonomy:0 "Grant Local Autonomy" +decree_bd_grant_autonomy_desc:0 "Without constant interference, communities adapt. Sometimes efficiently, sometimes chaotically" + +building_group_bg_monuments_throughput_add:0 "Rendimiento de monumentos" + +building_group_bg_canals_throughput_add:0 "Rendimiento de los canales" diff --git a/localization/turkish/betterdecrees_l_turkish.yml b/localization/turkish/betterdecrees_l_turkish.yml new file mode 100644 index 0000000..ca2ea9a --- /dev/null +++ b/localization/turkish/betterdecrees_l_turkish.yml @@ -0,0 +1,38 @@ +l_turkish: + +decree_road_maintenance:0 "Verimli Yönetim" +decree_road_maintenance_desc:0 "Verimli devlet yönetimini teşvik edin" + decree_greener_grass_campaign:0 "Daha Yeşil Çim Kampanyası" + decree_greener_grass_campaign_desc:0 "Eyaleti göç etmek için arzu edilen bir yer olarak tanıtın" + decree_promote_social_mobility:0 "İnovasyon ve Eğitim Programı" + decree_promote_social_mobility_desc:0 "Nüfusu daha yüksek iş nitelikleri için çabalamaya ve yeni teknolojiler ve sanatsal arayışlar geliştirmeye teşvik edin" + decree_promote_national_values:0 "Ulusal Değerler Propagandası" + decree_promote_national_values_desc:0 "Propaganda kampanyasıyla kültürel asimilasyon ve din değiştirme oranlarını artırın" + decree_encourage_construction:0 "İnşaat Sektörünü Teşvik Edin" + decree_encourage_construction_desc:0 "İnşaat Sektörü verimini artırın" +decree_emergency_relief:0 "Refah ve Yardım" +decree_emergency_relief_desc:0 "Devletin en talihsizleri için hayırsever desteği ve bakımı teşvik edin" + decree_encourage_manufacturing_industry:0 "İmalat Sanayisini Teşvik Edin" + decree_encourage_manufacturing_industry_desc:0 "Üretim sektörü verimini artırın" + decree_encourage_agricultural_industry:0 "Tarım Sektörünü Teşvik Edin" + decree_encourage_agricultural_industry_desc:0 "Tarım ve Plantasyon sektörü verimini artırın" + decree_encourage_resource_industry:0 "Kaynak Endüstrisini Teşvik Edin" + decree_encourage_resource_industry_desc:0 "Kaynak sektörü verimini artırın" + decree_encourage_urban_services:0 "Kentsel Hizmetleri Teşvik Edin" + decree_encourage_urban_services_desc:0 "Kentsel hizmet verimini artırın. Ticaret, şehir merkezi, limanlar, demiryolu, anıtlar, kanallar ve enerji santrallerini içerir" + decree_enlistment_efforts:1 "Askeri Eğitim Programı" + decree_enlistment_efforts_desc:1 "Seçkin bir askeri güç oluşturmak için mali teşvikler ve yüksek kaliteli eğitim yoluyla yerel birliklerin askere alınmasını ve eğitilmesini teşvik etmek" + decree_violent_suppression:0 "Şiddetli Bastırma" + decree_violent_suppression_desc:0 "Kızgın çeteleri kontrol etmek için ülkenin ulusal muhafızlarını kullanın" + decree_promote_health:0 "Halk Sağlığı Programları" + decree_promote_health_desc:0 "Ailelere ve sakatlara yönelik halk sağlığı programları başlatmak" + decree_worker_exploitation:0 "İşçi Sömürüsü" + decree_worker_exploitation_desc:0 "Endüstri üretkenliğini artırmak için yerel işçileri kullanın" + decree_penal_colony:0 "Ceza Kolonisi Transferleri" + decree_penal_colony_desc:0 "Büyüyen kolonilerimizi doldurmak için sorun çıkaranları ve hoşnutsuzları gönderin" + +decree_bd_grant_autonomy:0 "Grant Local Autonomy" +decree_bd_grant_autonomy_desc:0 "Without constant interference, communities adapt. Sometimes efficiently, sometimes chaotically" +building_group_bg_monuments_throughput_add:0 "Anıt Verimi" + +building_group_bg_canals_throughput_add:0 "Kanal Verimi" diff --git a/thumbnail.png b/thumbnail.png new file mode 100644 index 0000000..ccab23a Binary files /dev/null and b/thumbnail.png differ