Scripted EffectChanged this version
apply_same_laws_policy_effect
Senior PartnerSpecial Statuscustom tooltipDefinitionin_game/common/scripted_effects/international_organization_effects.txt:840
841custom_tooltip = {
842text = union_aligned_legislature_policy_at Every member of the Union adopts the implemented Government Reforms and Policies where available of the Senior Partner
843ordered_country_with_special_status_of_type = {
844type = senior_partner
845order_by = country_economical_base
846check_range_bounds = no
847max = 1
848every_current_reforms = {
848add_to_temporary_list = reforms_list
}
849every_current_policy = {
849add_to_temporary_list = policy_list
}
850save_scope_as = leader_scope
}
852every_international_organization_member = {
853limit = {
854exists = scope:leader_scope
855NOT = {
856has_special_status_in_international_organization = {
858international_organization = prev
}
}
}
862save_temporary_scope_as = target_country
863every_current_reforms = {
864limit = {
865is_unique_reform = no
866is_major_reform = no
867is_implementable_in = scope:leader_scope
}
869scope:target_country = {
869remove_reform = PREV
}
}
871every_in_list = {
872list = reforms_list
873if = {
874limit = {
875NOT = {
875is_fully_implemented_in = scope:target_country
}
876is_implementable_in = scope:target_country
877scope:target_country.num_open_reform_slots > 0
}
879scope:target_country = {
879add_reform = PREV
}
}
}
882every_current_policy = {
883limit = {
884is_implementable_in = scope:leader_scope
}
886scope:target_country = {
886remove_policy = PREV
}
}
888every_in_list = {
889list = policy_list
890if = {
891limit = {
892NOT = {
892is_fully_implemented_in = scope:target_country
}
893is_implementable_in = scope:target_country
894law = {
895NOT = {
895is_fully_implemented_in = scope:target_country
}
896is_implementable_in = scope:target_country
}
}
899scope:target_country = {
899add_policy = PREV
}
}
}
}
}