Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for the Qin culture using an invalid ethnicity #2470

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 28 additions & 11 deletions ImperatorToCK3/Data_Files/configurables/converter_cultures.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,27 +76,29 @@ qin = {
}

MOD_DEPENDENT = {
IF tfe = {
IF aep = {
ethnicities = {
10 = asian
10 = east_asian_chinese_north
}
}
ELSE_IF roa = {
# copied from han
ethnicities = {
2 = east_asian_han_1
2 = east_asian_han_2
2 = east_asian_han_3
2 = east_asian_han_4
}
}
ELSE = {
ethnicities = {
10 = chinese
10 = asian
}
}
}

MOD_DEPENDENT = {
IF tfe = {
# copied from han
coa_gfx = { chinese_group_coa_gfx }
building_gfx = { chinese_building_gfx indian_building_gfx }
clothing_gfx = { mongol_clothing_gfx }
unit_gfx = { mongol_unit_gfx }
}
ELSE = {
IF aep = {
coa_gfx = {
chinese_group_coa_gfx
}
Expand All @@ -108,6 +110,21 @@ qin = {
}
unit_gfx = { chinese_unit_gfx }
}
ELSE_IF tfe = {
# copied from han
coa_gfx = { chinese_group_coa_gfx }
building_gfx = { chinese_building_gfx indian_building_gfx }
clothing_gfx = { mongol_clothing_gfx }
unit_gfx = { mongol_unit_gfx }
}
ELSE = {
# copied from han
coa_gfx = { chinese_group_coa_gfx }
building_gfx = { indian_building_gfx }
clothing_gfx = { mongol_clothing_gfx }
unit_gfx = { mongol_unit_gfx }
}

}
}

Expand Down
Loading