• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

liyanjifeng

Corporal
23 Badges
Apr 3, 2020
39
1
  • Crusader Kings II: Way of Life
  • Crusader Kings III Referal
  • Crusader Kings II: Holy Fury
  • Cities: Skylines - Parklife
  • Crusader Kings II: Jade Dragon
  • Cities: Skylines - Green Cities
  • Cities: Skylines - Mass Transit
  • Cities: Skylines - Natural Disasters
  • Cities: Skylines - Snowfall
  • Crusader Kings II: Conclave
  • Cities: Skylines - After Dark
  • Crusader Kings II: Horse Lords
  • Cities: Skylines
  • Crusader Kings II
  • Cities: Skylines Deluxe Edition
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: The Republic
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: Charlemagne
trigger = {
NOR = {
graphical_culture = byzantinegfx
graphical_culture = chinesegfx
graphical_culture = easternslavicgfx
graphical_culture = mongolgfx
graphical_culture = norsegfx
graphical_culture = southindiangfx
}
}

immediate = {
if = {
limit = {
OR = {
location = { region = world_europe_south }
location = { region = world_asia_minor }
location = { region = world_middle_east } # Sorry Arabs!
location = { region = world_persia }
}
}
set_graphical_culture = greek # byzantinegfx
break = yes
}
if = {
limit = {
location = { region = world_himalayas }
}
set_graphical_culture = mongol # mongolgfx
break = yes
}
if = {
limit = {
location = { region = world_europe_east }
}
set_graphical_culture = russian # easternslavicgfx
break = yes
}
if = {
limit = {
location = { region = world_steppe }
}
set_graphical_culture = han # chinesegfx
break = yes
}
if = {
limit = {
OR = {
location = { region = world_europe_west }
location = { region = world_europe_north }
}
}
set_graphical_culture = norse # norsegfx
break = yes
}
if = {
limit = {
OR = {
location = { region = world_africa } # Sorry Africans!
location = { region = world_india }
}
}
set_graphical_culture = tamil # southindiangfx
break = yes
}
}
-----------------------------------------------------------------------------------------------------
I want to modify my portraits mod according to this EIF mod event, but I find that I don't know what race these regions include. I also couldn't find the answer on CK2wiki, so where should I get the information?