-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #600 from Zemnmez/update-ck3
update ck3
- Loading branch information
Showing
2,822 changed files
with
293,241 additions
and
262,305 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,4 @@ filegroup( | |
), | ||
) | ||
|
||
exports_files(glob(["**/*"])) | ||
exports_files(glob(["**/*"])) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
166 changes: 166 additions & 0 deletions
166
project/ck3/base_game/common/achievements/fp2_achievements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,166 @@ | ||
fp2_historys_best_friends = { # History's Best Friend | ||
possible = { | ||
has_fp2_dlc_trigger = yes | ||
} | ||
happened = { | ||
custom_description = { | ||
text = fp2_historys_best_friends_trigger | ||
exists = global_var:fp2_historys_best_friends_achievement_unlocked | ||
} | ||
} | ||
} | ||
|
||
fp2_basque_in_my_glory = { | ||
possible = { | ||
has_fp2_dlc_trigger = yes | ||
} | ||
happened = { | ||
custom_description = { | ||
text = fp2_basque_in_my_glory_trigger | ||
exists = global_var:fp2_basque_in_my_glory_achievement_unlocked | ||
} | ||
} | ||
} | ||
|
||
fp2_friendship_is_magic = { | ||
possible = { | ||
has_fp2_dlc_trigger = yes | ||
fp2_character_involved_in_struggle_trigger = yes | ||
} | ||
happened = { | ||
custom_description = { | ||
text = fp2_friendship_is_magic_trigger | ||
exists = global_var:fp2_friendship_is_magic_achievement_unlocked | ||
} | ||
} | ||
} | ||
|
||
fp2_high_stakes_chess = { | ||
possible = { | ||
has_fp2_dlc_trigger = yes | ||
} | ||
happened = { | ||
custom_description = { | ||
text = fp2_high_stakes_chess_trigger | ||
exists = global_var:fp2_high_stakes_chess_achievement_unlocked | ||
} | ||
} | ||
} | ||
|
||
fp2_iberia_or_iberia = { | ||
possible = { | ||
has_fp2_dlc_trigger = yes | ||
NOT = { | ||
is_target_in_global_variable_list = { | ||
name = unavailable_achievements | ||
target = flag:rd_character_blocked_iberia_or_iberia_achievement | ||
} | ||
} | ||
} | ||
happened = { | ||
custom_description = { | ||
text = fp2_iberia_or_iberia_trigger | ||
is_ai = no | ||
culture = { has_cultural_pillar = heritage_iberian } | ||
completely_controls_region = dlc_fp2_caucasian_iberia # custom_ireland can be used instead of dlc_fp2_caucasian_iberia for testing, otherwise use debug.411 | ||
} | ||
} | ||
} | ||
|
||
fp2_andalusian_inquisition = { | ||
possible = { | ||
has_fp2_dlc_trigger = yes | ||
} | ||
happened = { | ||
custom_description = { | ||
text = fp2_andalusian_inquisition_trigger | ||
is_ai = no | ||
any_county_in_region = { | ||
region = world_europe_west_iberia | ||
count = all | ||
faith = faith:mozarabic_church | ||
} | ||
} | ||
} | ||
} | ||
|
||
fp2_iberian_hostilities = { | ||
possible = { | ||
has_fp2_dlc_trigger = yes | ||
} | ||
happened = { | ||
custom_description = { | ||
text = fp2_iberian_hostilities_trigger | ||
exists = global_var:fp2_iberian_hostilities_achievement_unlocked | ||
} | ||
} | ||
} | ||
|
||
fp2_iberian_conciliation = { | ||
possible = { | ||
has_fp2_dlc_trigger = yes | ||
} | ||
happened = { | ||
custom_description = { | ||
text = fp2_iberian_conciliation_trigger | ||
exists = global_var:fp2_iberian_conciliation_achievement_unlocked | ||
} | ||
} | ||
} | ||
|
||
fp2_iberian_compromise = { | ||
possible = { | ||
has_fp2_dlc_trigger = yes | ||
} | ||
happened = { | ||
custom_description = { | ||
text = fp2_iberian_compromise_trigger | ||
exists = global_var:fp2_iberian_compromise_achievement_unlocked | ||
} | ||
} | ||
} | ||
|
||
fp2_holiday_in_iberia = { | ||
possible = { | ||
has_fp2_dlc_trigger = yes | ||
exists = global_var:fp2_holiday_in_iberia_achievement_unlocked | ||
} | ||
happened = { | ||
custom_description = { | ||
text = fp2_holiday_in_iberia_trigger | ||
global_var:fp2_holiday_in_iberia_achievement_unlocked = yes | ||
} | ||
} | ||
} | ||
|
||
fp2_el_cid_achievement = { | ||
possible = { | ||
has_fp2_dlc_trigger = yes | ||
game_start_date > 1045 | ||
NOT = { | ||
is_target_in_global_variable_list = { | ||
name = unavailable_achievements | ||
target = flag:rd_character_blocked_el_cid_achievement | ||
} | ||
} | ||
} | ||
happened = { | ||
custom_description = { | ||
text = fp2_el_cid_achievement_trigger | ||
exists = global_var:fp2_el_cid_achievement_unlocked | ||
} | ||
} | ||
} | ||
|
||
|
||
# fp2_00_achievement = { | ||
# possible = { | ||
# has_fp2_dlc_trigger = yes | ||
# } | ||
# happened = { | ||
# custom_description = { | ||
# text = fp2_00_achievement_trigger | ||
# # | ||
# } | ||
# } | ||
# } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.