Advertisement
Guest User

common/culture/cultures

a guest
Apr 12th, 2022
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 6 3.32 KB | None | 0 0
  1.  
  2. frisian = { #Consider this to be "old frisian", in the times of "Frankish" culture, so 760s and before.
  3.     # Effectively, this culture isn't playable in game
  4.     color = { 0.7 0.3 0.0 }
  5.    
  6.     ethos = ethos_stoic
  7.     heritage = heritage_west_germanic #Frisian now West Germanic
  8.     language = language_anglic
  9.     martial_custom = martial_custom_male_only
  10.     traditions = {
  11.         tradition_fishermen
  12.         tradition_zealous_people
  13.         tradition_battlefield_looters
  14.     }
  15.    
  16.     name_list = name_list_frisian
  17.  
  18.     coa_gfx = { frisian_coa_gfx german_group_coa_gfx western_coa_gfx }
  19.     building_gfx = { norse_building_gfx }
  20.     clothing_gfx = { northern_clothing_gfx dde_hre_clothing_gfx western_clothing_gfx } # Doesn't match existing sequence in latgalian
  21.     unit_gfx = { northern_unit_gfx }       
  22.  
  23.     ethnicities = {
  24.         25 = caucasian_blond
  25.         15 = caucasian_ginger
  26.         35 = caucasian_brown_hair
  27.         25 = caucasian_dark_hair
  28.     }
  29. }
  30.  
  31.  
  32. latgalian = {
  33.     color = { 0.5 0.5 0.1 }
  34.    
  35.     ethos = ethos_stoic
  36.     heritage = heritage_baltic
  37.     language = language_baltic
  38.     martial_custom = martial_custom_male_only
  39.     traditions = {
  40.         tradition_forest_wardens
  41.         tradition_sacred_groves
  42.     }
  43.    
  44.     dlc_tradition = {
  45.         trait = tradition_staunch_traditionalists
  46.         requires_dlc_flag = hybridize_culture
  47.     }
  48.    
  49.     name_list = name_list_latgalian
  50.    
  51.     coa_gfx = { baltic_group_coa_gfx steppe_coa_gfx western_coa_gfx }
  52.     building_gfx = { western_building_gfx }
  53.     clothing_gfx = { northern_clothing_gfx } # Vanilla Sequence
  54.     unit_gfx = { northern_unit_gfx }
  55.    
  56.     ethnicities = {
  57.         80 = caucasian_northern_blond
  58.         15 = caucasian_northern_ginger
  59.         3 = caucasian_northern_brown_hair
  60.         2 = caucasian_northern_dark_hair
  61.     }
  62. }
  63.  
  64.  
  65.  
  66.  
  67.  
  68. swedish = {
  69.     color = { 0.25 0.5 0.75 }
  70.     created = 1000.1.1
  71.     parents = { norse }
  72.    
  73.     ethos = ethos_bellicose
  74.     heritage = heritage_north_germanic
  75.     language = language_norse
  76.     martial_custom = martial_custom_male_only
  77.     traditions = {
  78.         tradition_zealous_people
  79.         tradition_runestones
  80.         tradition_things
  81.     }
  82.     # FP1 Traditions
  83.     dlc_tradition = {
  84.         trait = tradition_fp1_coastal_warriors
  85.         requires_dlc_flag = the_northern_lords
  86.         fallback = tradition_hird
  87.     }
  88.    
  89.     name_list = name_list_swedish
  90.    
  91.     coa_gfx = { swedish_coa_gfx western_coa_gfx } #Vanilla Sequence
  92.     building_gfx = { western_building_gfx }
  93.     clothing_gfx = { northern_clothing_gfx }
  94.     unit_gfx = { northern_unit_gfx }
  95.    
  96.     ethnicities = {
  97.         70 = caucasian_northern_blond
  98.         15 = caucasian_northern_ginger
  99.         10 = caucasian_northern_brown_hair
  100.         5 = caucasian_northern_dark_hair
  101.     }
  102. }
  103.  
  104.  
  105. old_saxon = {
  106.     color = { 0.5 0.1 0.1 }
  107.    
  108.     ethos = ethos_bellicose
  109.     heritage = heritage_west_germanic
  110.     language = language_anglic
  111.     martial_custom = martial_custom_male_only
  112.     traditions = {
  113.         tradition_things
  114.         tradition_seafaring
  115.         tradition_hird
  116.     }
  117.    
  118.     dlc_tradition = {
  119.         trait = tradition_malleable_invaders
  120.         requires_dlc_flag = hybridize_culture
  121.     }
  122.    
  123.     name_list = name_list_old_saxon
  124.  
  125.     coa_gfx = { swedish_coa_gfx german_group_coa_gfx western_coa_gfx } # Doesn't match existing sequence in swedish
  126.     building_gfx = { norse_building_gfx }
  127.     clothing_gfx = { fp1_norse_clothing_gfx northern_clothing_gfx }
  128.     unit_gfx = { northern_unit_gfx }    
  129.  
  130.     ethnicities = {
  131.         25 = caucasian_northern_blond
  132.         15 = caucasian_northern_ginger
  133.         35 = caucasian_northern_brown_hair
  134.         25 = caucasian_northern_dark_hair
  135.     }
  136. }
  137.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement