Merge branch 'main' of https://gitlab.com/new-era-team/N3OW
This commit is contained in:
commit
533681a8f8
50 changed files with 6112 additions and 5701 deletions
|
|
@ -0,0 +1,597 @@
|
|||
### Interactions from vanilla that are modified by NEOW
|
||||
|
||||
# Request Clergy Support / request_clergy_support
|
||||
ep3_hof_ask_for_influence_interaction = {
|
||||
icon = icon_influence_01
|
||||
category = interaction_category_religion
|
||||
|
||||
desc = ep3_hof_ask_for_influence_interaction_desc
|
||||
|
||||
ai_targets = {
|
||||
ai_recipients = head_of_faith
|
||||
}
|
||||
ai_target_quick_trigger = {
|
||||
adult = yes
|
||||
}
|
||||
ai_frequency_by_tier = {
|
||||
barony = 0
|
||||
county = 144
|
||||
duchy = 24
|
||||
kingdom = 24
|
||||
empire = 24
|
||||
hegemony = 24
|
||||
}
|
||||
|
||||
cooldown_against_recipient = { years = 10 }
|
||||
|
||||
is_shown = {
|
||||
scope:recipient != scope:actor
|
||||
scope:actor.faith = {
|
||||
religious_head = scope:recipient
|
||||
has_doctrine = doctrine_spiritual_head
|
||||
}
|
||||
scope:actor = {
|
||||
is_playable_character = yes
|
||||
government_allows = administrative
|
||||
is_lowborn = no
|
||||
}
|
||||
}
|
||||
|
||||
is_valid_showing_failures_only = {
|
||||
scope:actor = {
|
||||
piety >= massive_piety_value
|
||||
custom_description = {
|
||||
text = "hof_ask_for_gold_excommunicated"
|
||||
NOT = { has_trait = excommunicated }
|
||||
}
|
||||
NOT = { is_at_war_with = scope:recipient }
|
||||
custom_description = {
|
||||
text = "hof_interaction_unreformed_faith"
|
||||
NOT = {
|
||||
faith = { has_doctrine_parameter = unreformed }
|
||||
}
|
||||
}
|
||||
custom_description = {
|
||||
text = "hof_interaction_has_house_modifier"
|
||||
house ?= {
|
||||
NOT = {
|
||||
has_house_modifier = ep3_requested_faith_support_modifier
|
||||
}
|
||||
}
|
||||
}
|
||||
custom_description = {
|
||||
text = "hof_interaction_is_house_head"
|
||||
house ?= {
|
||||
house_head = scope:actor
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
auto_accept = {
|
||||
custom_description = {
|
||||
text = "spending_hook"
|
||||
subject = scope:actor
|
||||
object = scope:recipient
|
||||
scope:hook = yes
|
||||
}
|
||||
}
|
||||
|
||||
send_option = {
|
||||
is_shown = {
|
||||
scope:actor != scope:recipient
|
||||
}
|
||||
is_valid = {
|
||||
scope:actor = {
|
||||
has_usable_hook = scope:recipient
|
||||
}
|
||||
}
|
||||
flag = hook
|
||||
localization = GENERIC_SPEND_A_HOOK
|
||||
}
|
||||
should_use_extra_icon = {
|
||||
scope:actor = { has_usable_hook = scope:recipient }
|
||||
}
|
||||
extra_icon = "gfx/interface/icons/character_interactions/hook_icon.dds"
|
||||
|
||||
send_options_exclusive = no
|
||||
|
||||
ai_min_reply_days = 1
|
||||
ai_max_reply_days = 5
|
||||
|
||||
on_accept = {
|
||||
ep3_hof_ask_for_influence_interaction_effect = yes
|
||||
|
||||
scope:actor = {
|
||||
trigger_event = ep3_interactions_events.0620
|
||||
}
|
||||
}
|
||||
|
||||
on_decline = {
|
||||
scope:actor = {
|
||||
trigger_event = ep3_interactions_events.0621
|
||||
}
|
||||
}
|
||||
|
||||
ai_potential = {
|
||||
is_playable_character = yes
|
||||
piety >= massive_piety_value
|
||||
NOT = { has_trait = excommunicated }
|
||||
exists = faith.religious_head
|
||||
exists = house
|
||||
}
|
||||
|
||||
ai_accept = {
|
||||
base = -50
|
||||
|
||||
opinion_modifier = {
|
||||
opinion_target = scope:actor
|
||||
who = scope:recipient
|
||||
multiplier = 0.5
|
||||
}
|
||||
|
||||
#Doesn't like the emperor... if you're not the emperor
|
||||
modifier = {
|
||||
add = 5
|
||||
scope:actor.top_liege = {
|
||||
NOR = {
|
||||
this = scope:actor
|
||||
this = scope:recipient
|
||||
}
|
||||
reverse_opinion = {
|
||||
target = scope:recipient
|
||||
value < 0
|
||||
}
|
||||
reverse_opinion = {
|
||||
target = scope:recipient
|
||||
value > -40
|
||||
}
|
||||
}
|
||||
desc = HOF_OPINION_OF_EMPEROR
|
||||
}
|
||||
modifier = {
|
||||
add = 10
|
||||
scope:actor.top_liege = {
|
||||
NOR = {
|
||||
this = scope:actor
|
||||
this = scope:recipient
|
||||
}
|
||||
reverse_opinion = {
|
||||
target = scope:recipient
|
||||
value <= -40
|
||||
}
|
||||
reverse_opinion = {
|
||||
target = scope:recipient
|
||||
value > -80
|
||||
}
|
||||
}
|
||||
desc = HOF_OPINION_OF_EMPEROR
|
||||
}
|
||||
modifier = {
|
||||
add = 20
|
||||
scope:actor.top_liege = {
|
||||
NOR = {
|
||||
this = scope:actor
|
||||
this = scope:recipient
|
||||
}
|
||||
reverse_opinion = {
|
||||
target = scope:recipient
|
||||
value <= -80
|
||||
}
|
||||
}
|
||||
desc = HOF_OPINION_OF_EMPEROR
|
||||
}
|
||||
#Likes emperor... and you're not emperor
|
||||
modifier = {
|
||||
add = -5
|
||||
scope:actor.top_liege = {
|
||||
NOR = {
|
||||
this = scope:actor
|
||||
this = scope:recipient
|
||||
}
|
||||
reverse_opinion = {
|
||||
target = scope:recipient
|
||||
value >= 40
|
||||
}
|
||||
reverse_opinion = {
|
||||
target = scope:recipient
|
||||
value < 80
|
||||
}
|
||||
}
|
||||
desc = HOF_OPINION_OF_EMPEROR
|
||||
}
|
||||
modifier = {
|
||||
add = -10
|
||||
scope:actor.top_liege = {
|
||||
NOR = {
|
||||
this = scope:actor
|
||||
this = scope:recipient
|
||||
}
|
||||
reverse_opinion = {
|
||||
target = scope:recipient
|
||||
value >= 80
|
||||
}
|
||||
}
|
||||
desc = HOF_OPINION_OF_EMPEROR
|
||||
}
|
||||
|
||||
modifier = { # Same language
|
||||
add = 5
|
||||
desc = speaks_same_language_interaction_reason
|
||||
trigger = {
|
||||
scope:actor = {
|
||||
knows_language_of_culture = scope:recipient.culture
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # Attacking a co-religionist
|
||||
add = -50
|
||||
desc = I_AM_ATTACKING_A_CORELIGIONIST
|
||||
scope:actor = {
|
||||
is_at_war = yes
|
||||
any_character_war = {
|
||||
primary_attacker = scope:actor
|
||||
primary_defender.faith = scope:actor.faith
|
||||
primary_defender = {
|
||||
NOT = {
|
||||
has_trait = excommunicated
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # Offensive holy war/excommunication war
|
||||
add = 30
|
||||
desc = I_AM_WAGING_AN_OFFENSIVE_HOLY_OR_EXCOMMUNICATION_WAR
|
||||
scope:actor = {
|
||||
is_at_war = yes
|
||||
any_character_war = {
|
||||
is_attacker = scope:actor
|
||||
OR = {
|
||||
using_non_ghw_holy_war_cb_trigger = yes
|
||||
using_cb = excommunication_war
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # Defensive Holy War
|
||||
add = 50
|
||||
desc = I_AM_DEFENDING_AGAINST_A_HOLY_WAR
|
||||
scope:actor = {
|
||||
is_at_war = yes
|
||||
any_character_war = {
|
||||
is_defender = scope:actor
|
||||
using_non_ghw_holy_war_cb_trigger = yes
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # HoF wants the influence for themselves!
|
||||
add = -10
|
||||
desc = THEY_ARE_GREEDY
|
||||
scope:recipient = {
|
||||
ai_greed >= high_positive_greed
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # I am influential already
|
||||
add = -10
|
||||
desc = I_AM_INFLUENTIAL
|
||||
scope:actor = {
|
||||
influence_level >= 4
|
||||
NOT = {
|
||||
influence_level >= 6
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # I am very influential already
|
||||
add = -20
|
||||
desc = I_AM_INFLUENTIAL
|
||||
scope:actor = {
|
||||
influence_level >= 6
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # I am Adulterer/Fornicator
|
||||
add = -25
|
||||
desc = I_AM_ADULTERER
|
||||
scope:actor = {
|
||||
OR = {
|
||||
AND = {
|
||||
has_trait = fornicator
|
||||
trait_is_shunned_or_criminal_in_faith_trigger = { FAITH = faith TRAIT = fornicator GENDER_CHARACTER = scope:actor }
|
||||
}
|
||||
AND = {
|
||||
has_trait = adulterer
|
||||
trait_is_shunned_or_criminal_in_faith_trigger = { FAITH = faith TRAIT = adulterer GENDER_CHARACTER = scope:actor }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # I am a Murderer
|
||||
add = -50
|
||||
desc = I_AM_MURDERER
|
||||
scope:actor = {
|
||||
has_trait = murderer
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # I am Incestous
|
||||
add = -50
|
||||
desc = I_AM_INCESTOUS
|
||||
scope:actor = {
|
||||
NOT = { scope:recipient = { faith = { has_doctrine = doctrine_consanguinity_unrestricted } } }
|
||||
has_trait = incestuous
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # I am a Kinslayer
|
||||
add = -50
|
||||
desc = I_AM_A_KINSLAYER
|
||||
scope:actor = {
|
||||
OR = {
|
||||
AND = {
|
||||
has_trait = kinslayer_1
|
||||
trait_is_shunned_or_criminal_in_faith_trigger = { FAITH = faith TRAIT = kinslayer_1 GENDER_CHARACTER = scope:actor }
|
||||
}
|
||||
AND = {
|
||||
has_trait = kinslayer_2
|
||||
trait_is_shunned_or_criminal_in_faith_trigger = { FAITH = faith TRAIT = kinslayer_2 GENDER_CHARACTER = scope:actor }
|
||||
}
|
||||
AND = {
|
||||
has_trait = kinslayer_3
|
||||
trait_is_shunned_or_criminal_in_faith_trigger = { FAITH = faith TRAIT = kinslayer_3 GENDER_CHARACTER = scope:actor }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
modifier = {
|
||||
desc = RELIGIOUS_HEAD_INTERACTION_SAVIOR
|
||||
add = 15
|
||||
scope:actor = {
|
||||
has_trait = savior
|
||||
}
|
||||
}
|
||||
modifier = {
|
||||
desc = RELIGIOUS_HEAD_INTERACTION_DIVINE_BLOOD
|
||||
add = 5
|
||||
scope:actor = {
|
||||
has_trait = divine_blood
|
||||
}
|
||||
}
|
||||
modifier = {
|
||||
desc = RELIGIOUS_HEAD_INTERACTION_PARAGON
|
||||
add = 15
|
||||
scope:actor = {
|
||||
has_trait = paragon
|
||||
}
|
||||
}
|
||||
modifier = {
|
||||
desc = RELIGIOUS_HEAD_INTERACTION_CONSECRATED_BLOOD
|
||||
add = 5
|
||||
scope:actor = {
|
||||
has_trait = consecrated_blood
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # You are of the same dynasty as the Head of Faith
|
||||
add = 5
|
||||
desc = YOU_ARE_MY_DYNASTY_MEMBER
|
||||
scope:recipient = {
|
||||
is_lowborn = no
|
||||
dynasty = scope:actor.dynasty
|
||||
NOR = {
|
||||
is_close_or_extended_family_of = scope:actor
|
||||
is_cousin_of = scope:actor
|
||||
is_child_of = scope:actor
|
||||
scope:recipient.dynasty = scope:secondary_recipient.dynasty
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # You are of the same house as the Head of Faith
|
||||
add = 10
|
||||
desc = YOU_ARE_MY_HOUSE_MEMBER
|
||||
scope:recipient = {
|
||||
is_lowborn = no
|
||||
house = scope:actor.house
|
||||
NOR = {
|
||||
is_close_or_extended_family_of = scope:actor
|
||||
is_cousin_of = scope:actor
|
||||
is_child_of = scope:actor
|
||||
scope:recipient.house = scope:secondary_recipient.house
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # Related to the Head of Faith
|
||||
add = 10
|
||||
desc = YOU_ARE_MY_RELATIVE
|
||||
scope:recipient = {
|
||||
OR = {
|
||||
is_close_or_extended_family_of = scope:actor
|
||||
is_cousin_of = scope:actor
|
||||
}
|
||||
NOT = { is_child_of = scope:actor }
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # Parent of the Head of Faith
|
||||
add = 25
|
||||
desc = YOU_ARE_MY_PARENT
|
||||
scope:recipient = {
|
||||
is_child_of = scope:actor
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # Friend of the Head of Faith
|
||||
add = 25
|
||||
desc = WE_ARE_FRIENDS
|
||||
scope:recipient = {
|
||||
has_relation_friend = scope:actor
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # Best Friend of the Head of Faith
|
||||
add = 50
|
||||
desc = WE_ARE_BEST_FRIENDS
|
||||
scope:recipient = {
|
||||
has_relation_best_friend = scope:actor
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # Lover of the Head of Faith
|
||||
add = 10
|
||||
desc = WE_ARE_LOVERS
|
||||
scope:recipient = {
|
||||
has_relation_lover = scope:actor
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # Rival of the Head of Faith
|
||||
add = -100
|
||||
desc = WE_ARE_RIVALS
|
||||
scope:recipient = {
|
||||
has_relation_rival = scope:actor
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # Nemesis of the Head of Faith
|
||||
add = -500
|
||||
desc = WE_ARE_NEMESES
|
||||
scope:recipient = {
|
||||
has_relation_nemesis = scope:actor
|
||||
}
|
||||
}
|
||||
|
||||
modifier = {
|
||||
add = {
|
||||
add = 10
|
||||
multiply = scope:actor.num_virtuous_traits
|
||||
}
|
||||
scope:actor.num_virtuous_traits > 0
|
||||
desc = I_AM_VIRTUOUS
|
||||
}
|
||||
|
||||
modifier = {
|
||||
add = {
|
||||
add = 5
|
||||
multiply = scope:actor.piety_level
|
||||
}
|
||||
scope:actor.piety_level > 1
|
||||
desc = I_AM_PIOUS
|
||||
}
|
||||
|
||||
modifier = {
|
||||
add = {
|
||||
add = -10
|
||||
multiply = scope:actor.num_sinful_traits
|
||||
}
|
||||
scope:actor.num_sinful_traits > 0
|
||||
desc = I_AM_SINFUL
|
||||
}
|
||||
|
||||
# Admin family attribute bonus
|
||||
modifier = {
|
||||
add = {
|
||||
value = 0
|
||||
if = {
|
||||
limit = {
|
||||
scope:actor.house ?= { has_house_power_parameter = increased_clerical_influence_acceptance_3 }
|
||||
}
|
||||
add = increased_clerical_influence_acceptance_3_value
|
||||
}
|
||||
else_if = {
|
||||
limit = {
|
||||
scope:actor.house ?= { has_house_power_parameter = increased_clerical_influence_acceptance_2 }
|
||||
}
|
||||
add = increased_clerical_influence_acceptance_2_value
|
||||
}
|
||||
else = {
|
||||
add = increased_clerical_influence_acceptance_1_value
|
||||
}
|
||||
}
|
||||
scope:actor.house ?= {
|
||||
OR = {
|
||||
has_house_power_parameter = increased_clerical_influence_acceptance_1
|
||||
has_house_power_parameter = increased_clerical_influence_acceptance_2
|
||||
has_house_power_parameter = increased_clerical_influence_acceptance_3
|
||||
}
|
||||
}
|
||||
desc = you_have_faithful_nobles_attribute_with_value_desc
|
||||
}
|
||||
}
|
||||
|
||||
ai_will_do = {
|
||||
base = 0
|
||||
|
||||
modifier = { # The AI will only use a Hook if they couldn't otherwise do this
|
||||
scope:hook = yes
|
||||
add = -1
|
||||
}
|
||||
|
||||
modifier = { # I am low on influence
|
||||
add = 300
|
||||
scope:actor = {
|
||||
influence <= minor_influence_value
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # Piety to burn, and no reason to keep it.
|
||||
add = 100
|
||||
scope:actor = {
|
||||
piety > massive_piety_value
|
||||
NOR = {
|
||||
has_character_modifier = vow_of_poverty_modifier
|
||||
has_trait = content
|
||||
has_trait = humble
|
||||
}
|
||||
}
|
||||
}
|
||||
modifier = { # Or when greedy
|
||||
add = {
|
||||
value = scope:actor.ai_greed
|
||||
multiply = 0.5
|
||||
}
|
||||
scope:actor = {
|
||||
ai_greed > 0
|
||||
}
|
||||
}
|
||||
modifier = { # Or when energy
|
||||
add = {
|
||||
value = scope:actor.ai_energy
|
||||
multiply = 0.5
|
||||
}
|
||||
scope:actor = {
|
||||
ai_energy > 0
|
||||
}
|
||||
}
|
||||
|
||||
modifier = { # I am an up and comer who really needs help
|
||||
add = 100
|
||||
scope:actor = {
|
||||
influence_level <= 1
|
||||
}
|
||||
}
|
||||
|
||||
modifier = {
|
||||
add = 100
|
||||
scope:actor = {
|
||||
ai_has_warlike_personality = yes
|
||||
}
|
||||
}
|
||||
|
||||
modifier = {
|
||||
add = 50
|
||||
scope:actor = {
|
||||
ai_has_cautious_personality = no
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -4204,89 +4204,6 @@ d_pas_de_calais = {
|
|||
}
|
||||
}
|
||||
|
||||
#Netherlands#
|
||||
k_frisia = {
|
||||
pattern="pattern_tricolor_horizontal_01.dds"
|
||||
color1=orange
|
||||
color2=orange
|
||||
color3=orange
|
||||
colored_emblem={
|
||||
color1=yellow
|
||||
color2=rgb { 141 21 4 }
|
||||
texture="ce_lion_rampant_crown.dds"
|
||||
instance={
|
||||
scale={ 0.700000 0.700000 }
|
||||
depth=1.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=red
|
||||
texture="ce_chief_random.dds"
|
||||
instance={
|
||||
depth=4.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=yellow
|
||||
color2=white
|
||||
texture="ce_sword_simple.dds"
|
||||
instance={
|
||||
position={ 0.410000 0.190000 }
|
||||
scale={ 0.430000 0.400000 }
|
||||
rotation=36
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=blue
|
||||
texture="ce_chief_random.dds"
|
||||
instance={
|
||||
scale={ 1.000000 -1.000000 }
|
||||
depth=2.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=white
|
||||
texture="ce_block_01.dds"
|
||||
instance={
|
||||
scale={ 1.000000 0.740000 }
|
||||
depth=3.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
d_holland={
|
||||
pattern="pattern_horizontal_split_01.dds"
|
||||
color1=yellow
|
||||
color2=red
|
||||
color3=black
|
||||
colored_emblem={
|
||||
color1=red
|
||||
color2=blue_light
|
||||
color3=white
|
||||
texture="ce_lion_rampant_per_pale.dds"
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=yellow
|
||||
texture="ce_block_02.dds"
|
||||
instance={
|
||||
depth=1.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
d_frisia = {
|
||||
pattern="pattern_solid.dds"
|
||||
color1=blue
|
||||
|
|
@ -4391,242 +4308,6 @@ d_frisia = {
|
|||
}
|
||||
}
|
||||
|
||||
d_weserems={
|
||||
pattern="pattern_checkers_02.dds"
|
||||
color1=blue
|
||||
color2=yellow_light
|
||||
color3=black
|
||||
colored_emblem={
|
||||
color1=yellow_light
|
||||
color2=yellow
|
||||
texture="ce_spearhead.dds"
|
||||
instance={
|
||||
position={ 0.720000 0.350000 }
|
||||
scale={ 0.230000 -0.360000 }
|
||||
depth=2.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.280000 0.810000 }
|
||||
scale={ 0.230000 -0.360000 }
|
||||
depth=3.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=yellow_light
|
||||
color2=yellow_light
|
||||
texture="ce_cross_06.dds"
|
||||
instance={
|
||||
position={ 0.720000 0.250000 }
|
||||
scale={ 0.330000 0.330000 }
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.280000 0.710000 }
|
||||
scale={ 0.330000 0.330000 }
|
||||
depth=1.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=yellow_light
|
||||
color2=blue
|
||||
texture="ce_quarterly.dds"
|
||||
instance={
|
||||
depth=8.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=red
|
||||
texture="ce_block_04.dds"
|
||||
instance={
|
||||
position={ 0.000000 0.170000 }
|
||||
depth=4.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.000000 0.340000 }
|
||||
depth=5.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 1.000000 0.830000 }
|
||||
depth=6.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 1.000000 0.640000 }
|
||||
depth=7.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
d_gelre = {
|
||||
pattern="pattern_vertical_split_01.dds"
|
||||
color1=blue
|
||||
color2=yellow
|
||||
color3=black
|
||||
colored_emblem={
|
||||
color1=yellow
|
||||
color2=red
|
||||
texture="ce_lion_rampant_crown.dds"
|
||||
instance={
|
||||
position={ 0.280000 0.500000 }
|
||||
scale={ -0.550000 0.680000 }
|
||||
depth=1.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=black
|
||||
texture="ce_lion_rampant.dds"
|
||||
instance={
|
||||
position={ 0.720000 0.500000 }
|
||||
scale={ 0.550000 0.680000 }
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
d_utrecht = {
|
||||
pattern="pattern_solid.dds"
|
||||
color1=rgb { 229 163 66 }
|
||||
color2=yellow
|
||||
color3=red
|
||||
colored_emblem={
|
||||
color1=blue
|
||||
texture="ce_block_02.dds"
|
||||
instance={
|
||||
scale={ 0.065000 1.000000 }
|
||||
depth=3.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=rgb { 164 45 28 }
|
||||
color2=rgb { 164 45 28 }
|
||||
texture="ce_lion_rampant.dds"
|
||||
instance={
|
||||
position={ 0.245000 0.490000 }
|
||||
scale={ -0.500000 0.666000 }
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.755000 0.490000 }
|
||||
scale={ 0.500000 0.666000 }
|
||||
depth=1.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=blue
|
||||
texture="ce_waves_04.dds"
|
||||
instance={
|
||||
scale={ 0.500000 1.000000 }
|
||||
depth=2.010000
|
||||
rotation=90
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#Moselle/Lotheringia#
|
||||
k_lotharingia={
|
||||
pattern="pattern_tricolor_horizontal_01.dds"
|
||||
color1=red
|
||||
color2=white
|
||||
color3=blue_light
|
||||
colored_emblem={
|
||||
color1=white
|
||||
color2=blue_light
|
||||
texture="ce_barruly_10.dds"
|
||||
instance={
|
||||
depth=1.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=red
|
||||
color2=yellow_light
|
||||
color3=white
|
||||
texture="ce_lion_rampant_crown_forked.dds"
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
d_luxembourg = {
|
||||
pattern="pattern_solid.dds"
|
||||
color1=rgb { 222 152 49 }
|
||||
color2=yellow
|
||||
color3=black
|
||||
colored_emblem={
|
||||
color1=rgb { 138 30 16 }
|
||||
color2=green
|
||||
color3=rgb { 21 94 28 }
|
||||
texture="ce_flower.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.185000 }
|
||||
scale={ 0.333000 0.333000 }
|
||||
depth=3.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=red
|
||||
texture="ce_bendlet.dds"
|
||||
instance={
|
||||
scale={ 1.000000 -1.000000 }
|
||||
depth=4.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
depth=5.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=rgb { 138 30 16 }
|
||||
color2=green_light
|
||||
color3=green_light
|
||||
texture="ce_flower.dds"
|
||||
instance={
|
||||
position={ 0.185000 0.500000 }
|
||||
scale={ 0.333000 -0.333000 }
|
||||
rotation=90
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.815000 0.500000 }
|
||||
scale={ 0.333000 0.333000 }
|
||||
depth=1.010000
|
||||
rotation=90
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.500000 0.815000 }
|
||||
scale={ 0.333000 -0.333000 }
|
||||
depth=2.010000
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
e_west_francia = {
|
||||
sub = {
|
||||
parent = "bees" # defined elsewhere
|
||||
|
|
@ -5115,132 +4796,6 @@ k_gwynedd = {
|
|||
|
||||
}
|
||||
|
||||
e_europa = {
|
||||
pattern="pattern_horizontal_split_01.dds"
|
||||
color1=blue
|
||||
color2=blue
|
||||
color3=black
|
||||
colored_emblem={
|
||||
color1=yellow_light
|
||||
texture="ce_star_05.dds"
|
||||
instance={
|
||||
position={ 0.420000 0.800000 }
|
||||
scale={ 0.140000 0.140000 }
|
||||
depth=5.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.290000 0.710000 }
|
||||
scale={ 0.140000 0.140000 }
|
||||
depth=6.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.200000 0.600000 }
|
||||
scale={ 0.140000 0.140000 }
|
||||
depth=7.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.170000 0.460000 }
|
||||
scale={ 0.140000 0.140000 }
|
||||
depth=8.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.200000 0.320000 }
|
||||
scale={ 0.140000 0.140000 }
|
||||
depth=9.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.580000 0.800000 }
|
||||
scale={ 0.140000 0.140000 }
|
||||
depth=10.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.710000 0.710000 }
|
||||
scale={ 0.140000 0.140000 }
|
||||
depth=11.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.800000 0.600000 }
|
||||
scale={ 0.140000 0.140000 }
|
||||
depth=12.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.830000 0.460000 }
|
||||
scale={ 0.140000 0.140000 }
|
||||
depth=13.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.800000 0.320000 }
|
||||
scale={ 0.140000 0.140000 }
|
||||
depth=14.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=blue
|
||||
texture="ce_block_02.dds"
|
||||
instance={
|
||||
depth=15.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=white
|
||||
texture="ce_deva_sitting.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.380000 }
|
||||
scale={ 0.440000 0.440000 }
|
||||
depth=3.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=white
|
||||
color2=white
|
||||
color3=black
|
||||
texture="ce_bull_passant_humped.dds"
|
||||
instance={
|
||||
scale={ -0.420000 0.420000 }
|
||||
depth=4.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=blue
|
||||
texture="ce_circle_mask.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.150000 }
|
||||
scale={ 0.200000 0.200000 }
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.480000 0.210000 }
|
||||
scale={ 0.060000 0.170000 }
|
||||
depth=1.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.580000 0.210000 }
|
||||
scale={ 0.060000 0.170000 }
|
||||
depth=2.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
d_lucania_albanian = {
|
||||
pattern="pattern__solid_designer.dds"
|
||||
color1=yellow
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load diff
|
|
@ -7,7 +7,11 @@
|
|||
martial_custom = martial_custom_equal
|
||||
traditions = {
|
||||
tradition_swords_of_freedom
|
||||
tradition_ep3_cultivated_sophistication
|
||||
dlc_tradition = {
|
||||
trait = tradition_ep3_cultivated_sophistication
|
||||
requires_dlc_flag = roads_to_power
|
||||
fallback = tradition_legalistic
|
||||
}
|
||||
tradition_republican_legacy
|
||||
tradition_culture_blending
|
||||
tradition_parochialism
|
||||
|
|
|
|||
|
|
@ -164,7 +164,11 @@ souflander = {
|
|||
tradition_british_meritocracy
|
||||
#tradition_british_armoires
|
||||
tradition_seafaring
|
||||
tradition_ep3_cultivated_sophistication
|
||||
dlc_tradition = {
|
||||
trait = tradition_ep3_cultivated_sophistication
|
||||
requires_dlc_flag = roads_to_power
|
||||
fallback = tradition_legalistic
|
||||
}
|
||||
tradition_maritime_mercantilism
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -112,7 +112,11 @@ soueyrneg = { #Soufyrneg
|
|||
tradition_british_meritocracy
|
||||
#tradition_british_armoires
|
||||
tradition_seafaring
|
||||
tradition_ep3_cultivated_sophistication
|
||||
dlc_tradition = {
|
||||
trait = tradition_ep3_cultivated_sophistication
|
||||
requires_dlc_flag = roads_to_power
|
||||
fallback = tradition_legalistic
|
||||
}
|
||||
tradition_maritime_mercantilism
|
||||
}
|
||||
|
||||
|
|
@ -185,7 +189,10 @@ welsh = { #Cymry
|
|||
#tradition_concubines
|
||||
tradition_highland_warriors
|
||||
tradition_pastoralists
|
||||
tradition_staunch_traditionalists
|
||||
dlc_tradition = {
|
||||
trait = tradition_staunch_traditionalists
|
||||
requires_dlc_flag = hybridize_culture
|
||||
}
|
||||
#tradition_longbow_competitions
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -140,7 +140,7 @@ hessian = { #Hessisch
|
|||
tradition_hard_working
|
||||
tradition_parochialism
|
||||
}
|
||||
dlc_tradition = {
|
||||
dlc_tradition = {
|
||||
trait = tradition_fp3_beacon_of_learning
|
||||
requires_dlc_flag = legacy_of_persia
|
||||
fallback = tradition_philosopher_culture
|
||||
|
|
|
|||
|
|
@ -147,7 +147,11 @@ castilian = { #Castellano
|
|||
tradition_castle_keepers
|
||||
tradition_fp2_ritualised_friendship
|
||||
tradition_zealous_people
|
||||
tradition_fp1_performative_honour
|
||||
dlc_tradition = {
|
||||
trait = tradition_fp1_performative_honour
|
||||
requires_dlc_flag = the_northern_lords
|
||||
fallback = tradition_poetry
|
||||
}
|
||||
}
|
||||
|
||||
name_list = name_list_castilian
|
||||
|
|
|
|||
|
|
@ -7,7 +7,10 @@
|
|||
martial_custom = martial_custom_equal
|
||||
traditions = {
|
||||
tradition_astute_diplomats
|
||||
tradition_culture_blending
|
||||
dlc_tradition = {
|
||||
trait = tradition_culture_blending
|
||||
requires_dlc_flag = hybridize_culture
|
||||
}
|
||||
tradition_stand_and_fight
|
||||
#tradition_pacifism
|
||||
#tradition_heirs_of_numenor
|
||||
|
|
@ -39,7 +42,10 @@ elsasse = {
|
|||
language = language_mosellic
|
||||
martial_custom = martial_custom_equal
|
||||
traditions = {
|
||||
tradition_culture_blending
|
||||
dlc_tradition = {
|
||||
trait = tradition_culture_blending
|
||||
requires_dlc_flag = hybridize_culture
|
||||
}
|
||||
tradition_legalistic
|
||||
tradition_loyal_soldiers
|
||||
tradition_warrior_monks
|
||||
|
|
@ -68,7 +74,10 @@ letzebuerge = { #Letzebüerge
|
|||
language = language_mosellic
|
||||
martial_custom = martial_custom_equal
|
||||
traditions = {
|
||||
tradition_culture_blending
|
||||
dlc_tradition = {
|
||||
trait = tradition_culture_blending
|
||||
requires_dlc_flag = hybridize_culture
|
||||
}
|
||||
tradition_castle_keepers
|
||||
tradition_artisans
|
||||
tradition_culinary_art
|
||||
|
|
@ -98,7 +107,10 @@ lorin = {
|
|||
language = language_mosellic
|
||||
martial_custom = martial_custom_equal
|
||||
traditions = {
|
||||
tradition_culture_blending
|
||||
dlc_tradition = {
|
||||
trait = tradition_culture_blending
|
||||
requires_dlc_flag = hybridize_culture
|
||||
}
|
||||
tradition_metal_craftsmanship
|
||||
tradition_chivalry
|
||||
tradition_martial_admiration
|
||||
|
|
|
|||
|
|
@ -77,7 +77,11 @@ doggerlander = {
|
|||
tradition_practiced_pirates
|
||||
tradition_fishermen
|
||||
tradition_polders
|
||||
tradition_fp1_coastal_warriors
|
||||
dlc_tradition = {
|
||||
trait = tradition_fp1_coastal_warriors
|
||||
requires_dlc_flag = the_northern_lords
|
||||
fallback = tradition_hird
|
||||
}
|
||||
tradition_battlefield_looters
|
||||
}
|
||||
|
||||
|
|
@ -249,7 +253,11 @@ jaamtsk = {
|
|||
traditions = {
|
||||
tradition_landstinget
|
||||
tradition_astute_diplomats
|
||||
tradition_fp3_fierce_independence
|
||||
dlc_tradition = {
|
||||
trait = tradition_fp3_fierce_independence
|
||||
requires_dlc_flag = legacy_of_persia
|
||||
fallback = tradition_swords_for_hire
|
||||
}
|
||||
tradition_ce1_ritual_washing
|
||||
tradition_winter_warriors
|
||||
}
|
||||
|
|
@ -316,7 +324,11 @@ skansk = {
|
|||
tradition_landstinget
|
||||
tradition_astute_diplomats
|
||||
tradition_pastoralists
|
||||
tradition_fp3_fierce_independence
|
||||
dlc_tradition = {
|
||||
trait = tradition_fp3_fierce_independence
|
||||
requires_dlc_flag = legacy_of_persia
|
||||
fallback = tradition_swords_for_hire
|
||||
}
|
||||
tradition_african_tolerance
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -7,18 +7,18 @@ albana_female = { Aubano }
|
|||
alberta_female = { Albertino_female }
|
||||
alexandra_female = { Alessandrino_female Alessandro_female Alexandra Sandra Sandrine Sandrino_female }
|
||||
alexia_female = { Alessio_female }
|
||||
alice_female = { Alis Alixe }
|
||||
alice_female = { Alice Alis Alixe }
|
||||
alina_female = { Alina Alino }
|
||||
alfonsa_female = { Anfounsino }
|
||||
amanda_female = { Amandino }
|
||||
amata_female = { Aimado }
|
||||
amelia_female = { Am_e_grv_li }
|
||||
amelia_female = { Am_e_grv_li Amalie Amelie }
|
||||
amina_female = { Amina }
|
||||
amira_female = { Amira }
|
||||
anastasia_female = { Anastasi_e_act_ }
|
||||
andrea_female = { Andrea Andriveto }
|
||||
angela_female = { Aela Aelia Aelig Ang_e_grv_lo_female }
|
||||
angelica_female = { Angelico_female }
|
||||
angelica_female = { Angelico_female Angelika }
|
||||
anna_female = { Ana Ana_i_uml_s Aneto Anita Anja Anna Annaig Annette Annick Ano Hannah Hanne Naig }
|
||||
annaclara_female = { Ano-Claro }
|
||||
annaeleonora_female = { Hannelore }
|
||||
|
|
@ -31,6 +31,7 @@ arlette_female = { Arleto }
|
|||
astrid_female = { Astrid }
|
||||
auda_female = { Aude }
|
||||
audrey_female = { Audr_e_act_ }
|
||||
augusta_female = { Auguste_female }
|
||||
augustina_female = { Agustino_female Augustina }
|
||||
aurelia_female = { Aur_e_act_lie Aurel_i_grv_o_female Aurelia }
|
||||
aurora_female = { Auroro }
|
||||
|
|
@ -41,52 +42,53 @@ baptista_female = { Batistino }
|
|||
barbara_female = { B_a_uml_rbl Barbara Barbo_female }
|
||||
beata_female = { Beata Beate }
|
||||
beatrice_female = { Beatris }
|
||||
benedicta_female = { Benedito_female }
|
||||
benedicta_female = { Benedikta Benedito_female }
|
||||
berengaria_female = { Berenguiero }
|
||||
berenice_female = { Bereni_c_ced_o }
|
||||
bernarda_female = { Bernadeto Bernadette Bernado }
|
||||
bertha_female = { Berta Berto_female }
|
||||
bertranda_female = { Bertrando }
|
||||
blanche_female = { Bianca Blanco_female }
|
||||
bridget_female = { Birgitt Brec_pst_hed Bregido Brigitte }
|
||||
bridget_female = { Birgit Birgitt Brec_pst_hed Bregido Brigitte }
|
||||
bushra_female = { Bouchra }
|
||||
camilla_female = { Camiho }
|
||||
carla_female = { Carla Carleno_female Carola Carole Carolo_female }
|
||||
carmen_female = { Carmen Carmina }
|
||||
carolina_female = { Caroline Caroulino Karoline }
|
||||
cassandra_female = { Cassandro }
|
||||
catherine_female = { Catarino Karin Karine Katell Katharina Katja Katrin }
|
||||
catherine_female = { Carina Catarino Karin Karine Katell Katharina Katja Katrin }
|
||||
cecilia_female = { Cecilo Cilly Silke }
|
||||
celestina_female = { Celestino_female Celesto_female }
|
||||
celia_female = { Celi_a_grv_ }
|
||||
celine_female = { C_e_act_line Celino }
|
||||
celine_female = { C_e_act_line Celino Selina }
|
||||
charlotte_female = { Charloto Charlotte }
|
||||
chloe_female = { Clou_e_grv_ }
|
||||
christa_female = { Christa }
|
||||
christelle_female = { Kristell }
|
||||
christina_female = { Christiane Christina Christine Crestino Kristen Kristin Kristina Tine }
|
||||
claire_female = { Clarisso Claro_female Klara Sklaerenn }
|
||||
christina_female = { Christiane Christina Christine Crestino Kerstin Kristen Kristin Kristina Tine }
|
||||
claire_female = { Clara Clarisso Claro_female Klara Sklaerenn }
|
||||
claudia_female = { Claudia Glaudeto Glaudino Glaudo_female Klaoda Klaodina }
|
||||
clementia_female = { Clem_e_grv_nci Clementino_female }
|
||||
clotilda_female = { Cloutido }
|
||||
colette_female = { Colette Coul_e_grv_to }
|
||||
constance_female = { Coustan_c_ced_o }
|
||||
constance_female = { Constanze Coustan_c_ced_o }
|
||||
coralie_female = { Coural_i_grv_o }
|
||||
corinne_female = { Corina Corinne Courino }
|
||||
cornelia_female = { Cornelia }
|
||||
cynthia_female = { Cynthia }
|
||||
daniela_female = { Danielle Danielo_female }
|
||||
daniela_female = { Daniela Danielle Danielo_female }
|
||||
daphne_female = { Daun_e_grv_ }
|
||||
debora_female = { Debora }
|
||||
delphine_female = { D_o_act_ufino Delphine }
|
||||
denise_female = { Daniso Deneza }
|
||||
diana_female = { Diano }
|
||||
denise_female = { Daniso Deneza Denise }
|
||||
diana_female = { Diana Diano }
|
||||
dominica_female = { Dominique_female Doumenico_female }
|
||||
dorothy_female = { Dorothea Dourout_e_grv_io }
|
||||
edith_female = { Edith Edito }
|
||||
edith_female = { Edith Editha Edito }
|
||||
edmunda_female = { Edmunda }
|
||||
eleanor_female = { A_e_act_nor Eliounor Leounoro Lore }
|
||||
eleanor_female = { A_e_act_nor Eleonore Eliounor Leounoro Lore }
|
||||
eliana_female = { Eliano }
|
||||
elisa_female = { Eliso Liza }
|
||||
elisa_female = { Elisa Eliso }
|
||||
elizabeth_female = { Bab_e_grv_u_female Bettina Eisab_e_grv_u Elesbed Elisabeth Elsbeth Liesel Liz }
|
||||
elizabethcharlotte_female = { Liselotte }
|
||||
elodie_female = { _E_act_lodie Eloud_i_grv_o }
|
||||
|
|
@ -94,10 +96,11 @@ elsa_female = { Els_a_grv_ Else Ilse }
|
|||
elvira_female = { Elvira }
|
||||
emeline_female = { Emelino }
|
||||
emerald_female = { Esmeraudo }
|
||||
emily_female = { _E_act_milie Emil_i_grv_o_female Emiliano_female Emmy }
|
||||
emma_female = { Em_a_grv_ }
|
||||
emily_female = { _E_act_milie Emil_i_grv_o_female Emilia Emiliano_female Emmy }
|
||||
emma_female = { Em_a_grv_ Emma }
|
||||
emmanuella_female = { Emanuelo_female Emmanuelle Manuela Manuello }
|
||||
erika_female = { Erika }
|
||||
ermengarde_female = { Irmingard }
|
||||
ernesta_female = { Ernestino }
|
||||
esther_female = { Est_e_grv_r }
|
||||
eugenia_female = { _E_act_ug_e_grv_nio }
|
||||
|
|
@ -117,7 +120,7 @@ felicia_female = { Feliso_female }
|
|||
felicity_female = { Felicita }
|
||||
ferdinanda_female = { Fernando_female }
|
||||
fiona_female = { Fiona }
|
||||
flavia_female = { Fl_a_grv_vio_female }
|
||||
flavia_female = { Fl_a_grv_vio_female Flavia }
|
||||
flora_female = { Floro Flour Flourino }
|
||||
florence_female = { Florence Flour_e_grv_n_c_ced_o }
|
||||
floriana_female = { Flouriano }
|
||||
|
|
@ -141,10 +144,11 @@ hajar_female = { Hajer }
|
|||
halima_female = { Halima }
|
||||
hanan_female = { Hanane }
|
||||
hedwig_female = { Hedwig }
|
||||
helen_female = { Elen Elena Eleno Ellen H_e_act_l_e_grv_ne Helen Ilka Lena }
|
||||
helen_female = { Elen Elena Eleno Ellen H_e_act_l_e_grv_ne Helen Helena Helene Ilka Lena }
|
||||
helga_female = { Helga }
|
||||
henrietta_female = { Enrieto Heike }
|
||||
hermine_female = { Hermine }
|
||||
hilda_female = { Hilda }
|
||||
hildegard_female = { Hildegard }
|
||||
hind_female = { Henda Hind }
|
||||
honorina_female = { Enora Ounourino }
|
||||
|
|
@ -187,11 +191,11 @@ laurence_female = { Laur_e_grv_n_c_ced_o Laurence }
|
|||
layla_female = { La_i_uml_la Leila Leyla }
|
||||
lea_female = { Le_a_grv Lea }
|
||||
leonie_female = { Leonie Leoun_i_grv_o Leountino }
|
||||
liliana_female = { Liliano }
|
||||
liliana_female = { Lilian_female Liliano }
|
||||
linda_female = { Lindo_female Lynda }
|
||||
lisa_female = { Lisa Liseto Liso_female }
|
||||
lisa_female = { Lisa Liseto Liso_female Liza }
|
||||
lorraine_female = { Lourreno }
|
||||
louise_female = { Lizig Lo_i_uml_za Loeiza Lou_i_uml_so_female Lou_i_uml_sono Louisa Zaig }
|
||||
louise_female = { Aloisia Lizig Lo_i_uml_za Loeiza Lou_i_uml_so_female Lou_i_uml_sono Louisa Ludwiga Luisa Zaig }
|
||||
lubna_female = { Lobna }
|
||||
lucia_female = { L_u_grv_ci }
|
||||
luciana_female = { Luciano_female }
|
||||
|
|
@ -203,11 +207,12 @@ magdalena_female = { Madalen Madaleno Magali Magdalena }
|
|||
malika_female = { Malika }
|
||||
marcella_female = { Marcelino_female Marcello_female }
|
||||
margaret_female = { Gaid Gretel Margarete Margarido Margot Marjour_i_grv_o Megano Rita }
|
||||
maria_female = { Manoun Mar_i_grv_o_female Mari Maria Mariama Marion Marioun Mariso_female Miriam Myriam }
|
||||
maria_female = { Manoun Mar_i_grv_o_female Mari Maria Mariama Marie Marion Marioun Mariso_female Miriam Myriam }
|
||||
mariaangel_female = { Mar_i_grv_o-Ange }
|
||||
mariaanna_female = { Mar_i_grv_o-Ano Mariannick Marie-Annick Maryannick }
|
||||
mariaanna_female = { Mar_i_grv_o-Ano Maria_spc_Anna Mariannick Marie-Annick Maryannick }
|
||||
mariaantonia_female = { Mar_i_grv_o-Antouneto }
|
||||
mariacatherine_female = { Mar_i_grv_o-Catarino }
|
||||
mariacharlotte_female = { Marie_spc_Charlotte }
|
||||
mariachristina_female = { Mar_i_grv_o-Crestino Maria-Kristina }
|
||||
mariaclara_female = { Mar_i_grv_o-Claro Marie-Claire }
|
||||
mariaclaudia_female = { Mar_i_grv_o-Glaudo }
|
||||
|
|
@ -228,20 +233,20 @@ mariaodila_female = { Mar_i_grv_o-Oudilo }
|
|||
mariapaula_female = { Mar_i_grv_o-Paulo }
|
||||
mariapeter_female = { Mar_i_grv_o-P_e_grv_ire }
|
||||
mariarosa_female = { Mar_i_grv_o-Roso }
|
||||
mariatheresa_female = { Mar_i_grv_o-Ter_e_grv_so Maria-Tereza }
|
||||
mariatheresa_female = { Mar_i_grv_o-Ter_e_grv_so Maria_spc_Theresia Maria-Tereza }
|
||||
mariayvonne_female = { Marivon Marivono }
|
||||
marilyn_female = { Maril_e_grv_no_female }
|
||||
marina_female = { Marina Marino_female }
|
||||
marlene_female = { Marl_e_grv_no }
|
||||
marlene_female = { Marl_e_grv_no Marlene }
|
||||
martha_female = { Marta Marto_female }
|
||||
martina_female = { Martina Martine Martino_female }
|
||||
mathilda_female = { Mathilde }
|
||||
mathilda_female = { Mathilda Mathilde Mechthild }
|
||||
mauricia_female = { Mauriceto_female }
|
||||
maximiliana_female = { Maximiliane }
|
||||
melania_female = { M_e_act_lanie Melan_i_grv_o }
|
||||
melania_female = { M_e_act_lanie Melan_i_grv_o Melanie }
|
||||
melinda_female = { M_e_act_linda }
|
||||
melissa_female = { Melisso }
|
||||
michelle_female = { Michaela Micheleto_female Michelle Michello_female Mikaela }
|
||||
michelle_female = { Michaela Michaele Micheleto_female Michelle Michello_female Mikaela }
|
||||
mireille_female = { Mir_e_grv_io Mireille }
|
||||
monica_female = { Monika Monique Mounico_female }
|
||||
morgana_female = { Morgana Mourgano }
|
||||
|
|
@ -258,22 +263,23 @@ nolwenn_female = { Noalig Nolwen Nolwenn }
|
|||
oceana_female = { Ouceano }
|
||||
octavia_female = { _O_act_ut_a_grv_vio }
|
||||
odette_female = { Oudeto }
|
||||
odile_female = { Odile Oudilo }
|
||||
odile_female = { Odile Odilia Oudilo }
|
||||
olga_female = { Olg_a_grv_ }
|
||||
olivia_female = { Olivia }
|
||||
olympia_female = { Oulimpo_female }
|
||||
ophelia_female = { Ouf_e_act_l_i_grv_o }
|
||||
pascala_female = { Pascale Pascaleto Pascalo_female }
|
||||
patricia_female = { Patricia Patricio_female }
|
||||
paula_female = { Paola Paula Pauleto_female Paulino_female Paulo_female }
|
||||
paula_female = { Paola Paula Pauleto_female Paulina Paulino_female Paulo_female }
|
||||
petra_female = { Peireto Peirounello Peirouno Petra }
|
||||
philippa_female = { Felipino }
|
||||
philippa_female = { Felipino Philippa }
|
||||
philomena_female = { Filoumeno }
|
||||
quitteria_female = { Quit_e_grv_ri }
|
||||
rachel_female = { Rach_e_grv_l }
|
||||
ramona_female = { Ramoundo_female }
|
||||
rashida_female = { Rachida }
|
||||
rayhan_female = { Rayhana }
|
||||
rebecca_female = { Rebekka }
|
||||
rebecca_female = { Rebecca Rebekka }
|
||||
regina_female = { R_e_grv_ino Regina Regino_female }
|
||||
regula_female = { Regula }
|
||||
renata_female = { Renate Renato_female }
|
||||
|
|
@ -282,14 +288,14 @@ romana_female = { Roumano_female }
|
|||
rosa_female = { Rosa Roso_female Rousado Rousino Rozenn }
|
||||
rosalia_female = { Rosely Rousal_i_grv_o }
|
||||
rosalyn_female = { Rousselino }
|
||||
rosamaria_female = { Rosemarie Roso-Mar_i_grv_o }
|
||||
rosamaria_female = { Romy Rosemarie Roso-Mar_i_grv_o }
|
||||
ruth_female = { Rut Ruth }
|
||||
sabina_female = { Sabine Sabino_female }
|
||||
sabrina_female = { Sabrina Sabrino_female }
|
||||
safia_female = { Safia Saphia }
|
||||
samantha_female = { Samanto }
|
||||
samia_female = { Samia }
|
||||
sarah_female = { Sarah Saro_female }
|
||||
sarah_female = { Sara Sarah Saro_female }
|
||||
segolene_female = { Sigouleno }
|
||||
severina_female = { Severino_female }
|
||||
sharifa_female = { Ch_e_act_rifa }
|
||||
|
|
@ -303,29 +309,33 @@ solange_female = { Solen Solenn Soulanjo }
|
|||
solene_female = { Soul_e_grv_no }
|
||||
sophia_female = { Sophia Sofia Sonia Sonja Sophie Souf_i_grv_o }
|
||||
stella_female = { Estelle Estello Steren Sterenn }
|
||||
stephanie_female = { Esteveneto Fan_i_grv_ St_e_act_phanie Stephanie }
|
||||
stephanie_female = { Esteveneto Fan_i_grv_ St_e_act_phanie Stefanie Stephanie }
|
||||
suad_female = { Souad }
|
||||
susan_female = { Susanne Susano_female Susoun Suzana }
|
||||
susan_female = { Sanne Susanne Susano_female Susoun Suzana }
|
||||
sylvia_female = { Silv_i_grv_o_female Silvie Sylvia Sylvie }
|
||||
tamara_female = { Tamara }
|
||||
tatiana_female = { Tanja Tatjana }
|
||||
thekla_female = { Thekla }
|
||||
theresa_female = { Ter_e_grv_so Theresia }
|
||||
theresa_female = { Ter_e_grv_so Theresa Therese Theresia }
|
||||
ulrika_female = { Ulrike }
|
||||
ursula_female = { Oursulo Ursel Ursula }
|
||||
valentina_female = { Valentino_female }
|
||||
ute_female = { Ute }
|
||||
valentina_female = { Valentina Valentino_female }
|
||||
valeria_female = { Val_e_act_rie Valiero_female }
|
||||
vanessa_female = { Vanesso_female }
|
||||
vera_female = { Veruschka Wera }
|
||||
verena_female = { Verena }
|
||||
veronica_female = { V_e_act_ronique Veronika Verounico }
|
||||
victoria_female = { Vent_u_grv_ri_female Viktoria Vit_o_grv_ri_female Vitourino_female }
|
||||
victoria_female = { Vent_u_grv_ri_female Victoria Viktoria Vit_o_grv_ri_female Vitourino_female }
|
||||
violet_female = { Vi_o_act_uleto }
|
||||
virginia_female = { Viergino_female }
|
||||
vivian_female = { Viviano_female }
|
||||
wilhelmina_female = { Wilhelmine }
|
||||
yasmin_female = { Guisl_e_grv_no Yassmina }
|
||||
yasmin_female = { Iasmino Jasmin Yassmina }
|
||||
yolanda_female = { Vi_o_act_ulando }
|
||||
yvette_female = { Ivetig Iveto_female Youna Yuna }
|
||||
yvonne_female = { Ivona Ivono_female }
|
||||
zahra_female = { Zahra Zohra }
|
||||
zaynab_female = { Zineb }
|
||||
zenayda_female = { Sinaida }
|
||||
zoe_female = { Zou_e_grv_ }
|
||||
|
|
@ -377,7 +377,7 @@ theodoric_male = { Dieter Dietrich Terris Thierry }
|
|||
theophilus_male = { Teoufile Theophil }
|
||||
thomas_male = { Thomas Tomaz Toumas }
|
||||
tiberius_male = { Tiberius }
|
||||
timothy_male = { Timouti_e_act_u }
|
||||
timothy_male = { Tim Timouti_e_act_u }
|
||||
tobias_male = { Tobias }
|
||||
tristan_male = { Tristan Trystan }
|
||||
tugdual_male = { Tudal Tugdual }
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
name_list_bavarian_wip = {
|
||||
name_list_dutch_wip = {
|
||||
|
||||
cadet_dynasty_names = {
|
||||
"dynn_Aigner"
|
||||
|
|
@ -254,19 +254,62 @@ name_list_bavarian_wip = {
|
|||
}
|
||||
female_names = {
|
||||
2 = {
|
||||
Anna
|
||||
Christine
|
||||
Agnes Alexandra Aloisia Angelika Anna
|
||||
Barbara Bettina Birgit Brigitte
|
||||
Charlotte Christa Christiane Christine Claudia Cornelia
|
||||
Daniela Doris
|
||||
Elisabeth Eva
|
||||
Franziska
|
||||
Ilse
|
||||
Julia
|
||||
Katharina
|
||||
Paula
|
||||
Gabriele Gisela
|
||||
Helene Hildegard
|
||||
Ilse Ingrid Isabella
|
||||
Johanna Julia Jutta
|
||||
Katharina Katrin Kerstin
|
||||
Magdalena Manuela Maria Marianne Martina Mathilde Melanie Michaela Monika
|
||||
Nicole
|
||||
Paula Petra
|
||||
Regina Renate Rosa Roswitha Ruth
|
||||
Sabine Stefanie
|
||||
Tanja Therese Theresia
|
||||
Ulrike Ursula Ute
|
||||
Verena
|
||||
}
|
||||
1 = {
|
||||
Antonia
|
||||
Hannah
|
||||
Laura Lea Lisa
|
||||
Sarah Sophia Sophie
|
||||
Adelgunde Alice Alina Almuth Amalie Amelie Antonia Auguste_female
|
||||
Benedikta Bernadette Bianca
|
||||
Carina Caroline Clara Constanze
|
||||
Denise Diana Dietlinde Dorothea
|
||||
Editha Elena Eleonore Elisa Elvira Emilia Emma
|
||||
Flavia
|
||||
Gundelinde
|
||||
Hannah Helena Helmtrud Hilda
|
||||
Ida Irmingard Isabell
|
||||
Jasmin Jessica
|
||||
Laura Lea Leonie Lilian_female Lisa Ludwiga Luisa
|
||||
Maria_spc_Anna Maria_spc_Elisabeth Maria_spc_Theresia Marie Marie_spc_Charlotte Marina Marlene Mathilda Mechthild Michaele Michelle
|
||||
Nadine Notburga
|
||||
Odilia Olivia
|
||||
Patricia Paulina Philippa
|
||||
Rebecca Romy
|
||||
Sabrina Sara Sarah Selina Sinaida Sofia Sophia Sophie Stephanie
|
||||
Tamara Theodelinde Theresa
|
||||
Valentina Vanessa Victoria Viktoria
|
||||
Wiltrud
|
||||
}
|
||||
}
|
||||
dynasty_of_location_prefix = "dynnp_von"
|
||||
|
||||
# Chance of male children being named after their paternal or maternal grandfather, or their father. Sum must not exceed 100.
|
||||
pat_grf_name_chance = 60
|
||||
mat_grf_name_chance = 10
|
||||
father_name_chance = 10
|
||||
|
||||
# Chance of female children being named after their paternal or maternal grandmother, or their mother. Sum must not exceed 100.
|
||||
pat_grm_name_chance = 10
|
||||
mat_grm_name_chance = 60
|
||||
mother_name_chance = 10
|
||||
|
||||
|
||||
mercenary_names = {
|
||||
}
|
||||
}
|
||||
|
|
|
|||
288
N3OW/common/culture/name_lists/NEOW_breton.txt
Normal file
288
N3OW/common/culture/name_lists/NEOW_breton.txt
Normal file
|
|
@ -0,0 +1,288 @@
|
|||
name_list_NEOW_breton = {
|
||||
|
||||
cadet_dynasty_names = {
|
||||
"dynn_Abyann"
|
||||
"dynn_al_spc_Lae"
|
||||
"dynn_an_spc_Amour"
|
||||
"dynn_an_spc_Deunff"
|
||||
"dynn_an_spc_Du"
|
||||
"dynn_ar_spc_Berr"
|
||||
"dynn_ar_spc_Besko"
|
||||
"dynn_ar_spc_Bihan"
|
||||
"dynn_ar_spc_Borgn"
|
||||
"dynn_ar_spc_Braz"
|
||||
"dynn_ar_spc_Brizh"
|
||||
"dynn_ar_spc_C_pst_haer"
|
||||
"dynn_ar_spc_Floc_pst_h"
|
||||
"dynn_ar_spc_Fur"
|
||||
"dynn_ar_spc_Gall"
|
||||
"dynn_ar_spc_Garreg"
|
||||
"dynn_ar_spc_Gov"
|
||||
"dynn_ar_spc_Gwenn"
|
||||
"dynn_ar_spc_Moal"
|
||||
"dynn_ar_spc_Mogn"
|
||||
"dynn_ar_spc_Penneg"
|
||||
"dynn_ar_spc_Roc_pst_h"
|
||||
"dynn_ar_spc_Rouz"
|
||||
"dynn_ar_spc_Rouzig"
|
||||
"dynn_ar_spc_Ruyet"
|
||||
"dynn_ar_spc_Saoz"
|
||||
"dynn_ar_spc_Strad"
|
||||
"dynn_Arcou_e_uml_t"
|
||||
"dynn_Bellec"
|
||||
"dynn_Bihanig"
|
||||
"dynn_Broudig"
|
||||
"dynn_Castel"
|
||||
"dynn_Denez"
|
||||
"dynn_Duff"
|
||||
"dynn_er_spc_Meliner"
|
||||
"dynn_Ewen"
|
||||
"dynn_Gargam"
|
||||
"dynn_Gourcuff"
|
||||
"dynn_Gourmelon"
|
||||
"dynn_Gwegen"
|
||||
"dynn_Gwezhenneg"
|
||||
"dynn_Gwilhermig"
|
||||
"dynn_Gwilhmod"
|
||||
"dynn_Gwilho_u_grv_"
|
||||
"dynn_Gwivarc_pst_h"
|
||||
"dynn_Herry"
|
||||
"dynn_Huon"
|
||||
"dynn_Jaffre"
|
||||
"dynn_Jaouen"
|
||||
"dynn_Jegou"
|
||||
"dynn_Jestin"
|
||||
"dynn_Kadiou"
|
||||
"dynn_Kalvez"
|
||||
"dynn_Kemener"
|
||||
"dynn_Kermoal"
|
||||
"dynn_Kervella"
|
||||
"dynn_Kombod"
|
||||
"dynn_Laora_n_tld_s"
|
||||
"dynn_Louarn"
|
||||
"dynn_Louet"
|
||||
"dynn_Marzin"
|
||||
"dynn_Milin"
|
||||
"dynn_Nedeleg"
|
||||
"dynn_Olier"
|
||||
"dynn_Pasco"
|
||||
"dynn_Pellen"
|
||||
"dynn_Perrot"
|
||||
"dynn_Queff_e_act_lec"
|
||||
"dynn_Riou"
|
||||
"dynn_Robic"
|
||||
"dynn_Roparzh"
|
||||
"dynn_Rozeg"
|
||||
"dynn_Salaun"
|
||||
"dynn_Samzun"
|
||||
"dynn_Serandour"
|
||||
"dynn_Stephan"
|
||||
"dynn_Taleg"
|
||||
"dynn_Urvoas"
|
||||
}
|
||||
|
||||
dynasty_names = {
|
||||
"dynn_Abyann"
|
||||
"dynn_al_spc_Lae"
|
||||
"dynn_an_spc_Amour"
|
||||
"dynn_an_spc_Deunff"
|
||||
"dynn_an_spc_Du"
|
||||
"dynn_ar_spc_Berr"
|
||||
"dynn_ar_spc_Besko"
|
||||
"dynn_ar_spc_Bihan"
|
||||
"dynn_ar_spc_Borgn"
|
||||
"dynn_ar_spc_Braz"
|
||||
"dynn_ar_spc_Brizh"
|
||||
"dynn_ar_spc_C_pst_haer"
|
||||
"dynn_ar_spc_Floc_pst_h"
|
||||
"dynn_ar_spc_Fur"
|
||||
"dynn_ar_spc_Gall"
|
||||
"dynn_ar_spc_Garreg"
|
||||
"dynn_ar_spc_Gov"
|
||||
"dynn_ar_spc_Gwenn"
|
||||
"dynn_ar_spc_Moal"
|
||||
"dynn_ar_spc_Mogn"
|
||||
"dynn_ar_spc_Penneg"
|
||||
"dynn_ar_spc_Roc_pst_h"
|
||||
"dynn_ar_spc_Rouz"
|
||||
"dynn_ar_spc_Rouzig"
|
||||
"dynn_ar_spc_Ruyet"
|
||||
"dynn_ar_spc_Saoz"
|
||||
"dynn_ar_spc_Strad"
|
||||
"dynn_Arcou_e_uml_t"
|
||||
"dynn_Bellec"
|
||||
"dynn_Bihanig"
|
||||
"dynn_Broudig"
|
||||
"dynn_Castel"
|
||||
"dynn_Denez"
|
||||
"dynn_Duff"
|
||||
"dynn_er_spc_Meliner"
|
||||
"dynn_Ewen"
|
||||
"dynn_Gargam"
|
||||
"dynn_Gourcuff"
|
||||
"dynn_Gourmelon"
|
||||
"dynn_Gwegen"
|
||||
"dynn_Gwezhenneg"
|
||||
"dynn_Gwilhermig"
|
||||
"dynn_Gwilhmod"
|
||||
"dynn_Gwilho_u_grv_"
|
||||
"dynn_Gwivarc_pst_h"
|
||||
"dynn_Herry"
|
||||
"dynn_Huon"
|
||||
"dynn_Jaffre"
|
||||
"dynn_Jaouen"
|
||||
"dynn_Jegou"
|
||||
"dynn_Jestin"
|
||||
"dynn_Kadiou"
|
||||
"dynn_Kalvez"
|
||||
"dynn_Kemener"
|
||||
"dynn_Kermoal"
|
||||
"dynn_Kervella"
|
||||
"dynn_Kombod"
|
||||
"dynn_Laora_n_tld_s"
|
||||
"dynn_Louarn"
|
||||
"dynn_Louet"
|
||||
"dynn_Marzin"
|
||||
"dynn_Milin"
|
||||
"dynn_Nedeleg"
|
||||
"dynn_Olier"
|
||||
"dynn_Pasco"
|
||||
"dynn_Pellen"
|
||||
"dynn_Perrot"
|
||||
"dynn_Queff_e_act_lec"
|
||||
"dynn_Riou"
|
||||
"dynn_Robic"
|
||||
"dynn_Roparzh"
|
||||
"dynn_Rozeg"
|
||||
"dynn_Salaun"
|
||||
"dynn_Samzun"
|
||||
"dynn_Serandour"
|
||||
"dynn_Stephan"
|
||||
"dynn_Taleg"
|
||||
"dynn_Urvoas"
|
||||
}
|
||||
|
||||
male_names = {
|
||||
20 = {
|
||||
Adrian Alan Alban Alberzh Aleksandr Andrev Anton Armel Arno Arthur
|
||||
Beltram Benead Bernez Bruno
|
||||
Charlez Corentin Cyril Cyrille
|
||||
Damien Daniel Denez Didier Divi Dominique_male
|
||||
Eden Elouan Emil Emmanuel Erik Erwan Erwann Eujen Evan Ewen
|
||||
Fa_n_tld_ch Fabian Fabrice Fra_n_tld_sez Frank Frederig Fulup
|
||||
G_e_act_rard Ga_e_uml_l Gabriel Gildas Glaoda Goulven Guy Gwena_e_uml_l Gwendal Gwilherm Gwillam
|
||||
Herri Herve Huberzh
|
||||
Jakez Jilberzh Jili Joel Jorj Jozeb Juluan
|
||||
K_e_act_vin Kristian Kristof Kylian
|
||||
Laora_n_tld_s Lionel Lo_i_uml_c Lo_i_uml_g Loeiz Lucien
|
||||
Mael Ma_e_uml_l Malo Maoris Mark Marsel Mathurin Maxime Mazhev Micka_e_uml_l Mikael Milo Morgan
|
||||
Nikolaz
|
||||
Olier
|
||||
P_e_hat_r P_e_hat_r-Erwan P_e_hat_r-Vari Padrig Paol Paskal Patrig Pierrick
|
||||
Remont Ren_e_act_ Richarzh Roje Roland Roman Ronan Roparzh
|
||||
Sebastian Serj Steven Sylvain
|
||||
Tanguy Thierry Tomaz Tristan
|
||||
Visant
|
||||
Yann Yann-B_e_hat_r Yann-Baol Yann-Charlez Yann-Erwan Yann-Fa_n_tld_ch Yann-Glaod Yann-Jakez Yann-Loeiz Yann-Luk Yann-Vadezour Yannick Yannig Yann-Vari Yann-Vark Yann-Vikael Yerom Yoann Yohann Youenn Yves Yvon Yvonnick
|
||||
Zavier
|
||||
}
|
||||
5 = {
|
||||
Allan
|
||||
Brendan Brieuc
|
||||
Davy Dylan
|
||||
Ernest Evann Ewan Ewenn
|
||||
F_e_act_lix
|
||||
Glenn Graham Gu_e_act_na_e_uml_l Gurvan Gw_e_act_nol_e_act_
|
||||
Ian
|
||||
Janick Jannick Jean-Pol Jean-Yvon Jord
|
||||
Kilian Kyllian
|
||||
Leon Lo_i_uml_s
|
||||
Mah_e_act_ Malone Melvyn Mewen
|
||||
Pol
|
||||
Renan
|
||||
Tangi Tepot Tugdual
|
||||
Vivien
|
||||
Yan Yoan Yohan
|
||||
}
|
||||
1 = {
|
||||
Adraboran Ael Anatol Aodrenn Argan Avel
|
||||
Brann Brewen Briac
|
||||
Dewi Diwan
|
||||
Edern Efflam Ehouarn Elowan Eliaz Elouann Elwen Envel Eozen Even Ewann
|
||||
F_e_act_lix-Pol
|
||||
Gael Galaad Gireg Goulc_pst_han Goulwen Goustan Gu_e_act_nol_e_act_ Guillian Guirec Gurwan Gweltaz Gwenc_pst_hlan Gwenegan Gwenha_e_uml_l Gwenn-A_e_uml_l Gwennole Gwenvael
|
||||
Hoel Hollsent Howel
|
||||
Jaouen Jean-Mathurin Jil Job_Joseph Jozeb-Mari Judica_e_uml_l Judikael
|
||||
Kenan Kerrian Kilyan Klaod Kyliann
|
||||
L_e_act_na_i_uml_c Lancelot Laouen Lenaig Loen Logann Lomig
|
||||
M_e_act_riadec Ma_e_uml_lan Maelann Maho Matilin Melen Meven Mewenn Milio Morgann
|
||||
Neven Nomino_e_uml_
|
||||
Owenn
|
||||
P_e_hat_r-Jakez Peran
|
||||
Riwal Riwan
|
||||
Servan Stefan
|
||||
Trystan Tudi Tudal
|
||||
Yann-Varc_pst_h Youen Youn Yvonig
|
||||
}
|
||||
}
|
||||
female_names = {
|
||||
20 = {
|
||||
_E_act_lodie _E_act_milie
|
||||
Alexandra Anna Anna-Vari Annaig Annick Armelle Aur_e_act_lie
|
||||
Bernadette Brec_pst_hed
|
||||
C_e_act_line Carole Caroline Chanig Chantal Colette Corinne
|
||||
Danielle Delphine Deneza Dominique_female
|
||||
Elena Elesbed Emmanuelle Enora Estelle
|
||||
Fabienne Florence Fra_n_tld_seza
|
||||
Ga_e_uml_lle Gw_e_act_na_e_uml_lle Gwenola
|
||||
Ivetig Ivona Izabel
|
||||
Jakeza Janed Janedig Jo_e_uml_lle Josiane Julie
|
||||
Karine Katell Klaoda Klaodina Klara Kristell Kristin Kristina
|
||||
Laure Laurence Loeiza Lydie
|
||||
M_e_act_lanie Maiwenn Madalen Maelys Magali Mari Maria Maria-Kristina Maria-Tereza Marie-Annick Marie-Claire Marie-France Mari-Jozeb Mari-Loeiza Marina Marivon Martine Michelle Mikaela Mireille Monique Morgana Myriam
|
||||
Nadine Nathalie Nicole Nolwenn
|
||||
Odile
|
||||
Pascale Patricia
|
||||
Rozenn
|
||||
Sandra Sandrine Simone Soizic Solenn Sonia Sophie St_e_act_phanie Suzana Sylvie
|
||||
V_e_act_ronique Val_e_act_rie
|
||||
Youna Yuna Yveline
|
||||
}
|
||||
5 = {
|
||||
A_e_act_nor Aela Aelia Aelig Aina Alana Alwena Ana Andrea Anne-Ga_e_uml_lle Annwenn Aouregan Arwenn Awen Awena Awenn Azenor Aziliz Azylis
|
||||
Bleuen Bleuenn
|
||||
Diwezha
|
||||
Elen Erell
|
||||
Fiona
|
||||
Gaid Garlonn Gwen Gwendoline Gwenn
|
||||
Hermine
|
||||
Jeannick
|
||||
Ka_e_uml_lig Kelig Klervi Kristen
|
||||
L_e_act_na_i_uml_g Lara Lena Lilwenn Liz Liza Lizenn Lizig Lo_i_uml_za Loeva Louisa
|
||||
Ma_e_uml_lie Ma_e_uml_lig Ma_i_uml_wenn Maden Madenn Maela Maelenn Maeli Maelwenn Maewenn Mai Maina Maiwen Malou Mariana Mariannick Marie-Armelle Mari-Gwenn Maryannick Mevena Mona
|
||||
Naig Nolwen Noalig
|
||||
Oanell
|
||||
Paola
|
||||
Riwanon
|
||||
Sklaerenn Soazig Soizick Solen Steren Sterenn
|
||||
Tifenn Tina
|
||||
Yael Yanna Yseult
|
||||
Zaig
|
||||
}
|
||||
}
|
||||
dynasty_of_location_prefix = "dynnp_de"
|
||||
grammar_transform = french
|
||||
|
||||
# Chance of male children being named after their paternal or maternal grandfather, or their father. Sum must not exceed 100.
|
||||
pat_grf_name_chance = 60
|
||||
mat_grf_name_chance = 10
|
||||
father_name_chance = 10
|
||||
|
||||
# Chance of female children being named after their paternal or maternal grandmother, or their mother. Sum must not exceed 100.
|
||||
pat_grm_name_chance = 10
|
||||
mat_grm_name_chance = 60
|
||||
mother_name_chance = 10
|
||||
|
||||
mercenary_names = {
|
||||
}
|
||||
}
|
||||
41
N3OW/common/culture/name_lists/NEOW_dutch.txt
Normal file
41
N3OW/common/culture/name_lists/NEOW_dutch.txt
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
name_list_dutch_wip = {
|
||||
|
||||
cadet_dynasty_names = {
|
||||
}
|
||||
|
||||
dynasty_names = {
|
||||
}
|
||||
|
||||
male_names = {
|
||||
2 = {
|
||||
Tim
|
||||
}
|
||||
1 = {
|
||||
Max
|
||||
Willibrord
|
||||
}
|
||||
}
|
||||
female_names = {
|
||||
2 = {
|
||||
Lisa
|
||||
Sanne
|
||||
}
|
||||
1 = {
|
||||
}
|
||||
}
|
||||
dynasty_of_location_prefix = "dynnp_von"
|
||||
|
||||
# Chance of male children being named after their paternal or maternal grandfather, or their father. Sum must not exceed 100.
|
||||
pat_grf_name_chance = 60
|
||||
mat_grf_name_chance = 10
|
||||
father_name_chance = 10
|
||||
|
||||
# Chance of female children being named after their paternal or maternal grandmother, or their mother. Sum must not exceed 100.
|
||||
pat_grm_name_chance = 10
|
||||
mat_grm_name_chance = 60
|
||||
mother_name_chance = 10
|
||||
|
||||
|
||||
mercenary_names = {
|
||||
}
|
||||
}
|
||||
|
|
@ -701,708 +701,3 @@ name_list_NEOW_french = {
|
|||
{ name = "mercenary_company_french_band_2" }
|
||||
}
|
||||
}
|
||||
name_list_NEOW_provencal = {
|
||||
|
||||
cadet_dynasty_names = {
|
||||
"dynn_Abajolo"
|
||||
"dynn_Aglout"
|
||||
"dynn_Alaveno"
|
||||
"dynn_Amoussa"
|
||||
"dynn_Aplana"
|
||||
"dynn_Armado"
|
||||
"dynn_Arvi_e_act_u"
|
||||
"dynn_Aubour"
|
||||
"dynn_Aurelian"
|
||||
"dynn_Avignan"
|
||||
"dynn_Baioun"
|
||||
"dynn_Barbeja"
|
||||
"dynn_Barret"
|
||||
"dynn_Batar_e_grv_u"
|
||||
"dynn_Bec_a_grv_ris"
|
||||
"dynn_Belissen"
|
||||
"dynn_Berno"
|
||||
"dynn_B_e_grv_uves_e_act_"
|
||||
"dynn_Bonac_u_grv_rsi"
|
||||
"dynn_Boudoun"
|
||||
"dynn_Boulo"
|
||||
"dynn_Bourguignoun"
|
||||
"dynn_Boussano"
|
||||
"dynn_Brechet"
|
||||
"dynn_Broucard"
|
||||
"dynn_Buer"
|
||||
"dynn_Cabrau"
|
||||
"dynn_Cala"
|
||||
"dynn_Caminau"
|
||||
"dynn_Cansa"
|
||||
"dynn_Caras"
|
||||
"dynn_C_a_grv_rri"
|
||||
"dynn_Cast_e_grv_un_o_grv_u"
|
||||
"dynn_Cavaioun"
|
||||
"dynn_Chalamound"
|
||||
"dynn_Charamaulo"
|
||||
"dynn_Cheirias"
|
||||
"dynn_Chivali_e_act_"
|
||||
"dynn_Clar"
|
||||
"dynn_Costobello"
|
||||
"dynn_Coulanjo"
|
||||
"dynn_Coumtour"
|
||||
"dynn_Courdouan"
|
||||
"dynn_Cousti_e_act_"
|
||||
"dynn_Croto"
|
||||
"dynn_D_pst_Esper_e_grv_u"
|
||||
"dynn_Dagevilo"
|
||||
"dynn_De_spc_Bisqu_e_grv_ris"
|
||||
"dynn_De_spc_L_pst_Estrado"
|
||||
"dynn_De_spc_Soio"
|
||||
"dynn_Deg_o_grv_u"
|
||||
"dynn_Denans"
|
||||
"dynn_Di_e_act_udounat"
|
||||
"dynn_Doumiero"
|
||||
"dynn_Dunau"
|
||||
"dynn_Dupargue"
|
||||
"dynn_Engaurran"
|
||||
"dynn_Escudi_e_act_"
|
||||
"dynn_Fantoun"
|
||||
"dynn_Fedoun"
|
||||
"dynn_Ferrouia"
|
||||
"dynn_Flaiosc"
|
||||
"dynn_Foulc"
|
||||
"dynn_Francobaumo"
|
||||
"dynn_Fusado"
|
||||
"dynn_Gabeli_e_act_"
|
||||
"dynn_Gap"
|
||||
"dynn_Gibous"
|
||||
"dynn_Goudelard"
|
||||
"dynn_Gourd_e_act_s"
|
||||
"dynn_Gravat"
|
||||
"dynn_Grimaud"
|
||||
"dynn_Gu_e_grv_lh"
|
||||
"dynn_Isnardoun"
|
||||
"dynn_Jalassoun"
|
||||
"dynn_Jausserand"
|
||||
"dynn_Javelas"
|
||||
"dynn_Lacha"
|
||||
"dynn_Laure"
|
||||
"dynn_L_e_grv_pe"
|
||||
"dynn_L_o_grv_qui"
|
||||
"dynn_Madi_e_act_"
|
||||
"dynn_Maloboucho"
|
||||
"dynn_Manoui_e_act_"
|
||||
"dynn_Marmouret"
|
||||
"dynn_Massihoun"
|
||||
"dynn_Mausan"
|
||||
"dynn_Menet"
|
||||
"dynn_Miejo"
|
||||
"dynn_Mistrau"
|
||||
"dynn_Mounoun"
|
||||
"dynn_Mournans"
|
||||
"dynn_Nitri"
|
||||
"dynn_Ouneio"
|
||||
"dynn_Paious"
|
||||
"dynn_Paul_e_grv_u"
|
||||
"dynn_Pegue"
|
||||
"dynn_Pelanchoun"
|
||||
"dynn_Periss_o_grv_u"
|
||||
"dynn_Pielo"
|
||||
"dynn_Pla_c_ced_a"
|
||||
"dynn_Pouja"
|
||||
"dynn_Pourtari_e_act_"
|
||||
"dynn_Proumt"
|
||||
"dynn_Rabel"
|
||||
"dynn_Ranchi_e_act_"
|
||||
"dynn_Rebuf_e_grv_u"
|
||||
"dynn_Remacle"
|
||||
"dynn_Ribeiroto"
|
||||
"dynn_Rouais"
|
||||
"dynn_Roumanet"
|
||||
"dynn_R_u_grv_bi"
|
||||
"dynn_Salau"
|
||||
"dynn_Sart_e_grv_u"
|
||||
"dynn_Sclopis"
|
||||
"dynn_S_e_grv_govesso"
|
||||
"dynn_S_e_grv_rvi"
|
||||
"dynn_Soum_e_act_s"
|
||||
"dynn_Taiado"
|
||||
"dynn_Tarteiroun"
|
||||
"dynn_Terraioun"
|
||||
"dynn_Tirreo"
|
||||
"dynn_Tourtoun"
|
||||
"dynn_Treule"
|
||||
"dynn_Truze"
|
||||
"dynn_Valadoun"
|
||||
"dynn_Veirancho"
|
||||
"dynn_Vernous"
|
||||
"dynn_Viret"
|
||||
}
|
||||
|
||||
dynasty_names = {
|
||||
"dynn_Abajolo"
|
||||
"dynn_Aglout"
|
||||
"dynn_Alaveno"
|
||||
"dynn_Amoussa"
|
||||
"dynn_Aplana"
|
||||
"dynn_Armado"
|
||||
"dynn_Arvi_e_act_u"
|
||||
"dynn_Aubour"
|
||||
"dynn_Aurelian"
|
||||
"dynn_Avignan"
|
||||
"dynn_Baioun"
|
||||
"dynn_Barbeja"
|
||||
"dynn_Barret"
|
||||
"dynn_Batar_e_grv_u"
|
||||
"dynn_Bec_a_grv_ris"
|
||||
"dynn_Belissen"
|
||||
"dynn_Berno"
|
||||
"dynn_B_e_grv_uves_e_act_"
|
||||
"dynn_Bonac_u_grv_rsi"
|
||||
"dynn_Boudoun"
|
||||
"dynn_Boulo"
|
||||
"dynn_Bourguignoun"
|
||||
"dynn_Boussano"
|
||||
"dynn_Brechet"
|
||||
"dynn_Broucard"
|
||||
"dynn_Buer"
|
||||
"dynn_Cabrau"
|
||||
"dynn_Cala"
|
||||
"dynn_Caminau"
|
||||
"dynn_Cansa"
|
||||
"dynn_Caras"
|
||||
"dynn_C_a_grv_rri"
|
||||
"dynn_Cast_e_grv_un_o_grv_u"
|
||||
"dynn_Cavaioun"
|
||||
"dynn_Chalamound"
|
||||
"dynn_Charamaulo"
|
||||
"dynn_Cheirias"
|
||||
"dynn_Chivali_e_act_"
|
||||
"dynn_Clar"
|
||||
"dynn_Costobello"
|
||||
"dynn_Coulanjo"
|
||||
"dynn_Coumtour"
|
||||
"dynn_Courdouan"
|
||||
"dynn_Cousti_e_act_"
|
||||
"dynn_Croto"
|
||||
"dynn_D_pst_Esper_e_grv_u"
|
||||
"dynn_Dagevilo"
|
||||
"dynn_De_spc_Bisqu_e_grv_ris"
|
||||
"dynn_De_spc_L_pst_Estrado"
|
||||
"dynn_De_spc_Soio"
|
||||
"dynn_Deg_o_grv_u"
|
||||
"dynn_Denans"
|
||||
"dynn_Di_e_act_udounat"
|
||||
"dynn_Doumiero"
|
||||
"dynn_Dunau"
|
||||
"dynn_Dupargue"
|
||||
"dynn_Engaurran"
|
||||
"dynn_Escudi_e_act_"
|
||||
"dynn_Fantoun"
|
||||
"dynn_Fedoun"
|
||||
"dynn_Ferrouia"
|
||||
"dynn_Flaiosc"
|
||||
"dynn_Foulc"
|
||||
"dynn_Francobaumo"
|
||||
"dynn_Fusado"
|
||||
"dynn_Gabeli_e_act_"
|
||||
"dynn_Gap"
|
||||
"dynn_Gibous"
|
||||
"dynn_Goudelard"
|
||||
"dynn_Gourd_e_act_s"
|
||||
"dynn_Gravat"
|
||||
"dynn_Grimaud"
|
||||
"dynn_Gu_e_grv_lh"
|
||||
"dynn_Isnardoun"
|
||||
"dynn_Jalassoun"
|
||||
"dynn_Jausserand"
|
||||
"dynn_Javelas"
|
||||
"dynn_Lacha"
|
||||
"dynn_Laure"
|
||||
"dynn_L_e_grv_pe"
|
||||
"dynn_L_o_grv_qui"
|
||||
"dynn_Madi_e_act_"
|
||||
"dynn_Maloboucho"
|
||||
"dynn_Manoui_e_act_"
|
||||
"dynn_Marmouret"
|
||||
"dynn_Massihoun"
|
||||
"dynn_Mausan"
|
||||
"dynn_Menet"
|
||||
"dynn_Miejo"
|
||||
"dynn_Mistrau"
|
||||
"dynn_Mounoun"
|
||||
"dynn_Mournans"
|
||||
"dynn_Nitri"
|
||||
"dynn_Ouneio"
|
||||
"dynn_Paious"
|
||||
"dynn_Paul_e_grv_u"
|
||||
"dynn_Pegue"
|
||||
"dynn_Pelanchoun"
|
||||
"dynn_Periss_o_grv_u"
|
||||
"dynn_Pielo"
|
||||
"dynn_Pla_c_ced_a"
|
||||
"dynn_Pouja"
|
||||
"dynn_Pourtari_e_act_"
|
||||
"dynn_Proumt"
|
||||
"dynn_Rabel"
|
||||
"dynn_Ranchi_e_act_"
|
||||
"dynn_Rebuf_e_grv_u"
|
||||
"dynn_Remacle"
|
||||
"dynn_Ribeiroto"
|
||||
"dynn_Rouais"
|
||||
"dynn_Roumanet"
|
||||
"dynn_R_u_grv_bi"
|
||||
"dynn_Salau"
|
||||
"dynn_Sart_e_grv_u"
|
||||
"dynn_Sclopis"
|
||||
"dynn_S_e_grv_govesso"
|
||||
"dynn_S_e_grv_rvi"
|
||||
"dynn_Soum_e_act_s"
|
||||
"dynn_Taiado"
|
||||
"dynn_Tarteiroun"
|
||||
"dynn_Terraioun"
|
||||
"dynn_Tirreo"
|
||||
"dynn_Tourtoun"
|
||||
"dynn_Treule"
|
||||
"dynn_Truze"
|
||||
"dynn_Valadoun"
|
||||
"dynn_Veirancho"
|
||||
"dynn_Vernous"
|
||||
"dynn_Viret"
|
||||
}
|
||||
|
||||
male_names = {
|
||||
20 = {
|
||||
_O_act_ulivi_e_act_
|
||||
Adam Adrian Alan Aleissandre Andri_e_act_u Ant_o_grv_ni Arnaud Aubert
|
||||
Benezet Bernat Brunoun
|
||||
Camihe Carle Cerile Chichoues Crestian Crist_o_grv_u
|
||||
D_a_grv_vi Dani_e_grv_ Danis Deidi_e_act_ Doumenge
|
||||
Enmanu_e_grv_l Enri Eri Estefan
|
||||
Fabian Fabrice Felip Frederi Franc_e_act_s Francoun
|
||||
Gabri_e_act_u Gibert Gile Girard Gl_a_grv_udi Gui Guih_e_grv_n Guih_e_grv_ume
|
||||
Ives
|
||||
J_o_act_us_e_grv_ J_o_grv_rgi Jan Jan-Gl_a_grv_udi Jan-Jaque Jan-Lou_i_uml_s Jan-Lu Jan-Mar_i_grv_o Jan-Marc Jan-Mich_e_grv_u Jan-P_e_grv_ire Jan-Pau Jaque Jirome Jou_e_grv_l Julian
|
||||
Laur_e_grv_ns Liounel Lou_i_uml_s Lucas Lucian
|
||||
Manu_e_grv_ Marc Marc_e_grv_u Maurise Mich_e_grv_u Miqu_e_grv_u
|
||||
Natan Nicoulau
|
||||
P_e_grv_ire Pascau Patrice Patris Pau
|
||||
Quevin
|
||||
Ramoun Ricard Roubert Rougi_e_act_ Rouland Rouman
|
||||
S_e_grv_rgi S_e_act_uvan Savi_e_act_ Sebastian
|
||||
Terris Toumas
|
||||
Ubert
|
||||
Vinc_e_grv_ns
|
||||
}
|
||||
5 = {
|
||||
_A_grv_rtus
|
||||
_E_act_ug_e_grv_ni
|
||||
Ab_e_grv_l Aguste Agustin Al_e_grv_ssi Alfret Amat Amaudri Amine Anfous Ange Antounin Armand Assel Auban Audouard Aurelian
|
||||
Bastian Batisto Benet Benjamin Bertrand Bres Brian
|
||||
Calendau Cedric Charle Clem_e_grv_nt Courentin
|
||||
Damian Dem_e_grv_tri
|
||||
Edmound Edouard Eimeri El_i_grv_o Emile Emilian Ernest Erv_e_act_ Est_e_grv_ve Estanislau
|
||||
F_e_grv_lis Fernand Flavian Flour_e_grv_ns Flourian
|
||||
Ga_e_grv_l Gaietan Gastoun Gauchi_e_act_ Gaufre German Giraud Greg_o_grv_ri Gust_a_grv_vi
|
||||
J_u_grv_li Jan-Batisto Jan-Bernat Jan-Calendau Jan-Carle Jan-Crist_o_grv_u Jan-Felip Jan-Franc_e_act_s Jan-Ives Jan-Pascau Jaufret Jaume Jerem_i_grv_a Jouachin Jounatan Jourdan Justin
|
||||
Leoun Lu
|
||||
M_a_grv_ri_male Maime Marciau Marius Martin Mas Mati_e_act_u Matias Meiss_e_grv_ns
|
||||
Nourbert
|
||||
P_e_grv_ire-Ant_o_grv_ni P_e_grv_ire-Ives P_e_grv_ire-Jan
|
||||
Quentin
|
||||
R_e_grv_gis Raf_e_grv_u Ravous Reinaud Roud_o_grv_u Roudrigo Roumi_e_act_
|
||||
Samu_e_grv_l Sauvaire Simoun
|
||||
T_o_grv_ni Tibaud Tristan
|
||||
Ugue
|
||||
Val_e_grv_ri Valentin Vitour
|
||||
}
|
||||
1 = {
|
||||
_O_act_ut_a_grv_vi
|
||||
Achile Aloi Amable Amadi_e_act_u Amand Ambr_o_grv_si Anat_o_grv_li Ans_e_grv_ume Aristido Arsena Aubin
|
||||
Barnab_e_grv_u Bartoumi_e_act_u Basile Baudouin Berengui_e_act_ Bernard Bl_a_grv_si Bounif_a_grv_ci Brand_a_grv_ni
|
||||
Calist Carle-Enri Casim_e_grv_r Celestin Cesar Ciprian Clouvis Cosme Coustant Coustantin
|
||||
Dourian
|
||||
Eitor
|
||||
Faustin Felician Fermin Franc_e_act_s-Savi_e_act_
|
||||
Gaspard
|
||||
Il_a_grv_ri Ipoulite Ireni_e_act_u
|
||||
Jacint Jaque-Ives Jasoun
|
||||
Lambert Leoupold Lienard
|
||||
Nou_e_grv_
|
||||
Ouscar
|
||||
Prousp_e_grv_r
|
||||
Reini_e_act_ Roumiaud
|
||||
Teoudor Teoufile Timouti_e_act_u
|
||||
Ulisse Umbert
|
||||
Zacar_i_grv_o
|
||||
}
|
||||
}
|
||||
female_names = {
|
||||
20 = {
|
||||
Alessandro_female Amandino Angelico_female Ano Ano-Mar_i_grv_o Audr_e_act_ Aurel_i_grv_o_female
|
||||
Bernadeto Bregido
|
||||
Camiho Carolo_female Caroulino Catarino Cecilo Celino Chantal Claro_female Coul_e_grv_to Courino Crestino
|
||||
D_o_act_ufino Danielo_female Daniso Doumenico_female
|
||||
Eisab_e_grv_u Eisabello Eleno Eliano Eloud_i_grv_o Emanuelo_female Emil_i_grv_o_female Estello
|
||||
Fabiano_female Flour_e_grv_n_c_ced_o Franceso
|
||||
Genevivo Glaudino Glaudo_female Gueni_e_grv_vro
|
||||
Iveto_female
|
||||
J_u_grv_li_female Jano_female Jaquelino Joucelino_female Jouelo_female Jouseto_female Jousiano
|
||||
Laur_e_grv_n_c_ced_o Lauro_female Lid_i_grv_o Liliano Lou_i_uml_so_female
|
||||
Madaleno Magali Mar_i_grv_o_female Mar_i_grv_o-Crestino Mar_i_grv_o-Fran_c_ced_o Mar_i_grv_o-Jano Mar_i_grv_o-Louiso Mar_i_grv_o-Ter_e_grv_so Margarido Marioun Mariso_female Martino_female Melan_i_grv_o Michello_female Mir_e_grv_io Mounico_female Murielo
|
||||
Natal_i_grv_o Nicleto Nicolo_female
|
||||
Oudeto Oudilo Ouf_e_act_l_i_grv_o
|
||||
Pascalo_female Patricio_female Pauleto_female Peireto
|
||||
Sabino_female Sabrino_female Sandrino_female Susano_female
|
||||
Valiero_female Vanesso_female Verounico
|
||||
}
|
||||
5 = {
|
||||
_E_act_ug_e_grv_nio _E_grv_vo
|
||||
Adriano Agato Agn_e_grv_s Albertino_female Alessio_female Alino Alis Am_e_grv_li Ana_i_uml_s Andriveto Aneto Ang_e_grv_lo_female Ano-Claro Ano-Lauro Ano-Liso Ano-Souf_i_grv_o Antouneto Arleto Aude Auroro
|
||||
Beatris Benedito_female Berto_female Blanco_female
|
||||
Carleno_female Carmen Celi_a_grv_ Charloto Chichoueso Cindy Clarisso Clem_e_grv_nci Clementino_female Clou_e_grv_ Cloutido Coural_i_grv_o Coustan_c_ced_o Cynthia
|
||||
Debora Diano Dourout_e_grv_io
|
||||
Edito Eliso Els_a_grv_ Em_a_grv_ Emelino Emiliano_female Enrieto Est_e_grv_r Esteveneto Evelino
|
||||
Fan_i_grv_ Fernando_female Fl_a_grv_vio_female Floro Flouriano Fran_c_ced_o_female Francino Frederico_female
|
||||
Ga_e_grv_lo Gabrielo_female Geraldino_female Germano_female Giliberto_female Gineto Gis_e_grv_lo Glaudeto Guisl_e_grv_no
|
||||
Iasmino Ido Ingrido Ireno_female Ivono_female
|
||||
J_o_act_usefino Janeto_female Jano-Mar_i_grv_o Jessic_a_grv_ Jourgeto Judit Juliano_female Julieto Justino_female
|
||||
L_u_grv_ci Laur_i_grv_o Laureto Le_a_grv Leila Liso_female
|
||||
Manoun Manuello Mar_i_grv_o-Ange Mar_i_grv_o-Ano Mar_i_grv_o-Antouneto Mar_i_grv_o-Catarino Mar_i_grv_o-Claro Mar_i_grv_o-Doumenico Mar_i_grv_o-Eleno Mar_i_grv_o-Franceso Mar_i_grv_o-Glaudo Mar_i_grv_o-J_o_act_us_e_grv_ Mar_i_grv_o-Lauro Mar_i_grv_o-Madaleno Mar_i_grv_o-Nouelo Mar_i_grv_o-Oudilo Mar_i_grv_o-P_e_grv_ire Mar_i_grv_o-Paulo Mar_i_grv_o-Roso Marcello_female Margot Mariama Mariano_female Maril_e_grv_no_female Marino_female Marivono Marjour_i_grv_o Marl_e_grv_no Marto_female Mauriceto_female Melisso Micheleto_female Mourgano
|
||||
Nad_e_grv_jo Nadalo_female Natach_a_grv_ Nouelo_female Nouen_i_grv_o
|
||||
Olg_a_grv_ Ourt_e_grv_nsi
|
||||
Pascaleto Paulino_female Paulo_female
|
||||
R_e_grv_ino Rach_e_grv_l Ramoundo_female Regino_female Renato_female Roso_female Roso-Mar_i_grv_o Roulando_female Rousal_i_grv_o Rousino Rousselino
|
||||
Samanto Saro_female Severino_female Silv_i_grv_o_female Simouno_female Souf_i_grv_o Soul_e_grv_no Soulanjo Susoun
|
||||
Ter_e_grv_so T_o_grv_nio_female
|
||||
Ugueto
|
||||
Valentino_female Vent_u_grv_ri_female Vi_o_act_ulando Vi_o_act_uleto Viergino_female Vit_o_grv_ri_female Viviano_female
|
||||
}
|
||||
1 = {
|
||||
_E_act_ul_a_grv_lio
|
||||
_O_act_ut_a_grv_vio
|
||||
Abri_e_act_u Ad_e_grv_lo Agla_e_grv_ Agustino_female Aimado Alessandrino_female Anastasi_e_act_ Anfounsino Aubano Azala_i_uml_s
|
||||
Bab_e_grv_u_female Barbo_female Batistino Berenguiero Bereni_c_ced_o Bernado Bertrando
|
||||
Cassandro Celestino_female Celesto_female
|
||||
Daun_e_grv_ Deivoto
|
||||
Eliounor Ernestino Esmeraudo
|
||||
Faustino_female Felicita Felipino Feliso_female Filoumeno Flour Flourino
|
||||
Gertrudo
|
||||
Irm_a_grv_ Is_e_grv_ut
|
||||
Jade Jaqueto
|
||||
Leoun_i_grv_o Leounoro Leountino Leticio Lindo_female Liseto Lou_i_uml_sono Lourreno Luciano_female Lucr_e_grv__c_ced_o Ludivino
|
||||
Marcelino_female Megano
|
||||
Ouceano Oulimpo_female Ounourino Oursulo
|
||||
Peirounello Peirouno Poul_o_grv_nio
|
||||
Quit_e_grv_ri
|
||||
Roumano_female Rousado Rut
|
||||
Sibilo_female Sidoun_i_grv_o Sigouleno
|
||||
Tounieto
|
||||
Vitourino_female
|
||||
Zou_e_grv_
|
||||
}
|
||||
}
|
||||
dynasty_of_location_prefix = "dynnp_de"
|
||||
grammar_transform = french
|
||||
|
||||
# Chance of male children being named after their paternal or maternal grandfather, or their father. Sum must not exceed 100.
|
||||
pat_grf_name_chance = 60
|
||||
mat_grf_name_chance = 10
|
||||
father_name_chance = 10
|
||||
|
||||
# Chance of female children being named after their paternal or maternal grandmother, or their mother. Sum must not exceed 100.
|
||||
pat_grm_name_chance = 10
|
||||
mat_grm_name_chance = 60
|
||||
mother_name_chance = 10
|
||||
|
||||
|
||||
|
||||
mercenary_names = {
|
||||
}
|
||||
}
|
||||
name_list_NEOW_breton = {
|
||||
|
||||
cadet_dynasty_names = {
|
||||
"dynn_Abyann"
|
||||
"dynn_al_spc_Lae"
|
||||
"dynn_an_spc_Amour"
|
||||
"dynn_an_spc_Deunff"
|
||||
"dynn_an_spc_Du"
|
||||
"dynn_ar_spc_Berr"
|
||||
"dynn_ar_spc_Besko"
|
||||
"dynn_ar_spc_Bihan"
|
||||
"dynn_ar_spc_Borgn"
|
||||
"dynn_ar_spc_Braz"
|
||||
"dynn_ar_spc_Brizh"
|
||||
"dynn_ar_spc_C_pst_haer"
|
||||
"dynn_ar_spc_Floc_pst_h"
|
||||
"dynn_ar_spc_Fur"
|
||||
"dynn_ar_spc_Gall"
|
||||
"dynn_ar_spc_Garreg"
|
||||
"dynn_ar_spc_Gov"
|
||||
"dynn_ar_spc_Gwenn"
|
||||
"dynn_ar_spc_Moal"
|
||||
"dynn_ar_spc_Mogn"
|
||||
"dynn_ar_spc_Penneg"
|
||||
"dynn_ar_spc_Roc_pst_h"
|
||||
"dynn_ar_spc_Rouz"
|
||||
"dynn_ar_spc_Rouzig"
|
||||
"dynn_ar_spc_Ruyet"
|
||||
"dynn_ar_spc_Saoz"
|
||||
"dynn_ar_spc_Strad"
|
||||
"dynn_Arcou_e_uml_t"
|
||||
"dynn_Bellec"
|
||||
"dynn_Bihanig"
|
||||
"dynn_Broudig"
|
||||
"dynn_Castel"
|
||||
"dynn_Denez"
|
||||
"dynn_Duff"
|
||||
"dynn_er_spc_Meliner"
|
||||
"dynn_Ewen"
|
||||
"dynn_Gargam"
|
||||
"dynn_Gourcuff"
|
||||
"dynn_Gourmelon"
|
||||
"dynn_Gwegen"
|
||||
"dynn_Gwezhenneg"
|
||||
"dynn_Gwilhermig"
|
||||
"dynn_Gwilhmod"
|
||||
"dynn_Gwilho_u_grv_"
|
||||
"dynn_Gwivarc_pst_h"
|
||||
"dynn_Herry"
|
||||
"dynn_Huon"
|
||||
"dynn_Jaffre"
|
||||
"dynn_Jaouen"
|
||||
"dynn_Jegou"
|
||||
"dynn_Jestin"
|
||||
"dynn_Kadiou"
|
||||
"dynn_Kalvez"
|
||||
"dynn_Kemener"
|
||||
"dynn_Kermoal"
|
||||
"dynn_Kervella"
|
||||
"dynn_Kombod"
|
||||
"dynn_Laora_n_tld_s"
|
||||
"dynn_Louarn"
|
||||
"dynn_Louet"
|
||||
"dynn_Marzin"
|
||||
"dynn_Milin"
|
||||
"dynn_Nedeleg"
|
||||
"dynn_Olier"
|
||||
"dynn_Pasco"
|
||||
"dynn_Pellen"
|
||||
"dynn_Perrot"
|
||||
"dynn_Queff_e_act_lec"
|
||||
"dynn_Riou"
|
||||
"dynn_Robic"
|
||||
"dynn_Roparzh"
|
||||
"dynn_Rozeg"
|
||||
"dynn_Salaun"
|
||||
"dynn_Samzun"
|
||||
"dynn_Serandour"
|
||||
"dynn_Stephan"
|
||||
"dynn_Taleg"
|
||||
"dynn_Urvoas"
|
||||
}
|
||||
|
||||
dynasty_names = {
|
||||
"dynn_Abyann"
|
||||
"dynn_al_spc_Lae"
|
||||
"dynn_an_spc_Amour"
|
||||
"dynn_an_spc_Deunff"
|
||||
"dynn_an_spc_Du"
|
||||
"dynn_ar_spc_Berr"
|
||||
"dynn_ar_spc_Besko"
|
||||
"dynn_ar_spc_Bihan"
|
||||
"dynn_ar_spc_Borgn"
|
||||
"dynn_ar_spc_Braz"
|
||||
"dynn_ar_spc_Brizh"
|
||||
"dynn_ar_spc_C_pst_haer"
|
||||
"dynn_ar_spc_Floc_pst_h"
|
||||
"dynn_ar_spc_Fur"
|
||||
"dynn_ar_spc_Gall"
|
||||
"dynn_ar_spc_Garreg"
|
||||
"dynn_ar_spc_Gov"
|
||||
"dynn_ar_spc_Gwenn"
|
||||
"dynn_ar_spc_Moal"
|
||||
"dynn_ar_spc_Mogn"
|
||||
"dynn_ar_spc_Penneg"
|
||||
"dynn_ar_spc_Roc_pst_h"
|
||||
"dynn_ar_spc_Rouz"
|
||||
"dynn_ar_spc_Rouzig"
|
||||
"dynn_ar_spc_Ruyet"
|
||||
"dynn_ar_spc_Saoz"
|
||||
"dynn_ar_spc_Strad"
|
||||
"dynn_Arcou_e_uml_t"
|
||||
"dynn_Bellec"
|
||||
"dynn_Bihanig"
|
||||
"dynn_Broudig"
|
||||
"dynn_Castel"
|
||||
"dynn_Denez"
|
||||
"dynn_Duff"
|
||||
"dynn_er_spc_Meliner"
|
||||
"dynn_Ewen"
|
||||
"dynn_Gargam"
|
||||
"dynn_Gourcuff"
|
||||
"dynn_Gourmelon"
|
||||
"dynn_Gwegen"
|
||||
"dynn_Gwezhenneg"
|
||||
"dynn_Gwilhermig"
|
||||
"dynn_Gwilhmod"
|
||||
"dynn_Gwilho_u_grv_"
|
||||
"dynn_Gwivarc_pst_h"
|
||||
"dynn_Herry"
|
||||
"dynn_Huon"
|
||||
"dynn_Jaffre"
|
||||
"dynn_Jaouen"
|
||||
"dynn_Jegou"
|
||||
"dynn_Jestin"
|
||||
"dynn_Kadiou"
|
||||
"dynn_Kalvez"
|
||||
"dynn_Kemener"
|
||||
"dynn_Kermoal"
|
||||
"dynn_Kervella"
|
||||
"dynn_Kombod"
|
||||
"dynn_Laora_n_tld_s"
|
||||
"dynn_Louarn"
|
||||
"dynn_Louet"
|
||||
"dynn_Marzin"
|
||||
"dynn_Milin"
|
||||
"dynn_Nedeleg"
|
||||
"dynn_Olier"
|
||||
"dynn_Pasco"
|
||||
"dynn_Pellen"
|
||||
"dynn_Perrot"
|
||||
"dynn_Queff_e_act_lec"
|
||||
"dynn_Riou"
|
||||
"dynn_Robic"
|
||||
"dynn_Roparzh"
|
||||
"dynn_Rozeg"
|
||||
"dynn_Salaun"
|
||||
"dynn_Samzun"
|
||||
"dynn_Serandour"
|
||||
"dynn_Stephan"
|
||||
"dynn_Taleg"
|
||||
"dynn_Urvoas"
|
||||
}
|
||||
|
||||
male_names = {
|
||||
20 = {
|
||||
Adrian Alan Alban Alberzh Aleksandr Andrev Anton Armel Arno Arthur
|
||||
Beltram Benead Bernez Bruno
|
||||
Charlez Corentin Cyril Cyrille
|
||||
Damien Daniel Denez Didier Divi Dominique_male
|
||||
Eden Elouan Emil Emmanuel Erik Erwan Erwann Eujen Evan Ewen
|
||||
Fa_n_tld_ch Fabian Fabrice Fra_n_tld_sez Frank Frederig Fulup
|
||||
G_e_act_rard Ga_e_uml_l Gabriel Gildas Glaoda Goulven Guy Gwena_e_uml_l Gwendal Gwilherm Gwillam
|
||||
Herri Herve Huberzh
|
||||
Jakez Jilberzh Jili Joel Jorj Jozeb Juluan
|
||||
K_e_act_vin Kristian Kristof Kylian
|
||||
Laora_n_tld_s Lionel Lo_i_uml_c Lo_i_uml_g Loeiz Lucien
|
||||
Mael Ma_e_uml_l Malo Maoris Mark Marsel Mathurin Maxime Mazhev Micka_e_uml_l Mikael Milo Morgan
|
||||
Nikolaz
|
||||
Olier
|
||||
P_e_hat_r P_e_hat_r-Erwan P_e_hat_r-Vari Padrig Paol Paskal Patrig Pierrick
|
||||
Remont Ren_e_act_ Richarzh Roje Roland Roman Ronan Roparzh
|
||||
Sebastian Serj Steven Sylvain
|
||||
Tanguy Thierry Tomaz Tristan
|
||||
Visant
|
||||
Yann Yann-B_e_hat_r Yann-Baol Yann-Charlez Yann-Erwan Yann-Fa_n_tld_ch Yann-Glaod Yann-Jakez Yann-Loeiz Yann-Luk Yann-Vadezour Yannick Yannig Yann-Vari Yann-Vark Yann-Vikael Yerom Yoann Yohann Youenn Yves Yvon Yvonnick
|
||||
Zavier
|
||||
}
|
||||
5 = {
|
||||
Allan
|
||||
Brendan Brieuc
|
||||
Davy Dylan
|
||||
Ernest Evann Ewan Ewenn
|
||||
F_e_act_lix
|
||||
Glenn Graham Gu_e_act_na_e_uml_l Gurvan Gw_e_act_nol_e_act_
|
||||
Ian
|
||||
Janick Jannick Jean-Pol Jean-Yvon Jord
|
||||
Kilian Kyllian
|
||||
Leon Lo_i_uml_s
|
||||
Mah_e_act_ Malone Melvyn Mewen
|
||||
Pol
|
||||
Renan
|
||||
Tangi Tepot Tugdual
|
||||
Vivien
|
||||
Yan Yoan Yohan
|
||||
}
|
||||
1 = {
|
||||
Adraboran Ael Anatol Aodrenn Argan Avel
|
||||
Brann Brewen Briac
|
||||
Dewi Diwan
|
||||
Edern Efflam Ehouarn Elowan Eliaz Elouann Elwen Envel Eozen Even Ewann
|
||||
F_e_act_lix-Pol
|
||||
Gael Galaad Gireg Goulc_pst_han Goulwen Goustan Gu_e_act_nol_e_act_ Guillian Guirec Gurwan Gweltaz Gwenc_pst_hlan Gwenegan Gwenha_e_uml_l Gwenn-A_e_uml_l Gwennole Gwenvael
|
||||
Hoel Hollsent Howel
|
||||
Jaouen Jean-Mathurin Jil Job_Joseph Jozeb-Mari Judica_e_uml_l Judikael
|
||||
Kenan Kerrian Kilyan Klaod Kyliann
|
||||
L_e_act_na_i_uml_c Lancelot Laouen Lenaig Loen Logann Lomig
|
||||
M_e_act_riadec Ma_e_uml_lan Maelann Maho Matilin Melen Meven Mewenn Milio Morgann
|
||||
Neven Nomino_e_uml_
|
||||
Owenn
|
||||
P_e_hat_r-Jakez Peran
|
||||
Riwal Riwan
|
||||
Servan Stefan
|
||||
Trystan Tudi Tudal
|
||||
Yann-Varc_pst_h Youen Youn Yvonig
|
||||
}
|
||||
}
|
||||
female_names = {
|
||||
20 = {
|
||||
_E_act_lodie _E_act_milie
|
||||
Alexandra Anna Anna-Vari Annaig Annick Armelle Aur_e_act_lie
|
||||
Bernadette Brec_pst_hed
|
||||
C_e_act_line Carole Caroline Chanig Chantal Colette Corinne
|
||||
Danielle Delphine Deneza Dominique_female
|
||||
Elena Elesbed Emmanuelle Enora Estelle
|
||||
Fabienne Florence Fra_n_tld_seza
|
||||
Ga_e_uml_lle Gw_e_act_na_e_uml_lle Gwenola
|
||||
Ivetig Ivona Izabel
|
||||
Jakeza Janed Janedig Jo_e_uml_lle Josiane Julie
|
||||
Karine Katell Klaoda Klaodina Klara Kristell Kristin Kristina
|
||||
Laure Laurence Loeiza Lydie
|
||||
M_e_act_lanie Maiwenn Madalen Maelys Magali Mari Maria Maria-Kristina Maria-Tereza Marie-Annick Marie-Claire Marie-France Mari-Jozeb Mari-Loeiza Marina Marivon Martine Michelle Mikaela Mireille Monique Morgana Myriam
|
||||
Nadine Nathalie Nicole Nolwenn
|
||||
Odile
|
||||
Pascale Patricia
|
||||
Rozenn
|
||||
Sandra Sandrine Simone Soizic Solenn Sonia Sophie St_e_act_phanie Suzana Sylvie
|
||||
V_e_act_ronique Val_e_act_rie
|
||||
Youna Yuna Yveline
|
||||
}
|
||||
5 = {
|
||||
A_e_act_nor Aela Aelia Aelig Aina Alana Alwena Ana Andrea Anne-Ga_e_uml_lle Annwenn Aouregan Arwenn Awen Awena Awenn Azenor Aziliz Azylis
|
||||
Bleuen Bleuenn
|
||||
Diwezha
|
||||
Elen Erell
|
||||
Fiona
|
||||
Gaid Garlonn Gwen Gwendoline Gwenn
|
||||
Hermine
|
||||
Jeannick
|
||||
Ka_e_uml_lig Kelig Klervi Kristen
|
||||
L_e_act_na_i_uml_g Lara Lena Lilwenn Liz Liza Lizenn Lizig Lo_i_uml_za Loeva Louisa
|
||||
Ma_e_uml_lie Ma_e_uml_lig Ma_i_uml_wenn Maden Madenn Maela Maelenn Maeli Maelwenn Maewenn Mai Maina Maiwen Malou Mariana Mariannick Marie-Armelle Mari-Gwenn Maryannick Mevena Mona
|
||||
Naig Nolwen Noalig
|
||||
Oanell
|
||||
Paola
|
||||
Riwanon
|
||||
Sklaerenn Soazig Soizick Solen Steren Sterenn
|
||||
Tifenn Tina
|
||||
Yael Yanna Yseult
|
||||
Zaig
|
||||
}
|
||||
}
|
||||
dynasty_of_location_prefix = "dynnp_de"
|
||||
grammar_transform = french
|
||||
|
||||
# Chance of male children being named after their paternal or maternal grandfather, or their father. Sum must not exceed 100.
|
||||
pat_grf_name_chance = 60
|
||||
mat_grf_name_chance = 10
|
||||
father_name_chance = 10
|
||||
|
||||
# Chance of female children being named after their paternal or maternal grandmother, or their mother. Sum must not exceed 100.
|
||||
pat_grm_name_chance = 10
|
||||
mat_grm_name_chance = 60
|
||||
mother_name_chance = 10
|
||||
|
||||
|
||||
|
||||
mercenary_names = {
|
||||
}
|
||||
}
|
||||
413
N3OW/common/culture/name_lists/NEOW_provencal.txt
Normal file
413
N3OW/common/culture/name_lists/NEOW_provencal.txt
Normal file
|
|
@ -0,0 +1,413 @@
|
|||
name_list_NEOW_provencal = {
|
||||
|
||||
cadet_dynasty_names = {
|
||||
"dynn_Abajolo"
|
||||
"dynn_Aglout"
|
||||
"dynn_Alaveno"
|
||||
"dynn_Amoussa"
|
||||
"dynn_Aplana"
|
||||
"dynn_Armado"
|
||||
"dynn_Arvi_e_act_u"
|
||||
"dynn_Aubour"
|
||||
"dynn_Aurelian"
|
||||
"dynn_Avignan"
|
||||
"dynn_Baioun"
|
||||
"dynn_Barbeja"
|
||||
"dynn_Barret"
|
||||
"dynn_Batar_e_grv_u"
|
||||
"dynn_Bec_a_grv_ris"
|
||||
"dynn_Belissen"
|
||||
"dynn_Berno"
|
||||
"dynn_B_e_grv_uves_e_act_"
|
||||
"dynn_Bonac_u_grv_rsi"
|
||||
"dynn_Boudoun"
|
||||
"dynn_Boulo"
|
||||
"dynn_Bourguignoun"
|
||||
"dynn_Boussano"
|
||||
"dynn_Brechet"
|
||||
"dynn_Broucard"
|
||||
"dynn_Buer"
|
||||
"dynn_Cabrau"
|
||||
"dynn_Cala"
|
||||
"dynn_Caminau"
|
||||
"dynn_Cansa"
|
||||
"dynn_Caras"
|
||||
"dynn_C_a_grv_rri"
|
||||
"dynn_Cast_e_grv_un_o_grv_u"
|
||||
"dynn_Cavaioun"
|
||||
"dynn_Chalamound"
|
||||
"dynn_Charamaulo"
|
||||
"dynn_Cheirias"
|
||||
"dynn_Chivali_e_act_"
|
||||
"dynn_Clar"
|
||||
"dynn_Costobello"
|
||||
"dynn_Coulanjo"
|
||||
"dynn_Coumtour"
|
||||
"dynn_Courdouan"
|
||||
"dynn_Cousti_e_act_"
|
||||
"dynn_Croto"
|
||||
"dynn_D_pst_Esper_e_grv_u"
|
||||
"dynn_Dagevilo"
|
||||
"dynn_De_spc_Bisqu_e_grv_ris"
|
||||
"dynn_De_spc_L_pst_Estrado"
|
||||
"dynn_De_spc_Soio"
|
||||
"dynn_Deg_o_grv_u"
|
||||
"dynn_Denans"
|
||||
"dynn_Di_e_act_udounat"
|
||||
"dynn_Doumiero"
|
||||
"dynn_Dunau"
|
||||
"dynn_Dupargue"
|
||||
"dynn_Engaurran"
|
||||
"dynn_Escudi_e_act_"
|
||||
"dynn_Fantoun"
|
||||
"dynn_Fedoun"
|
||||
"dynn_Ferrouia"
|
||||
"dynn_Flaiosc"
|
||||
"dynn_Foulc"
|
||||
"dynn_Francobaumo"
|
||||
"dynn_Fusado"
|
||||
"dynn_Gabeli_e_act_"
|
||||
"dynn_Gap"
|
||||
"dynn_Gibous"
|
||||
"dynn_Goudelard"
|
||||
"dynn_Gourd_e_act_s"
|
||||
"dynn_Gravat"
|
||||
"dynn_Grimaud"
|
||||
"dynn_Gu_e_grv_lh"
|
||||
"dynn_Isnardoun"
|
||||
"dynn_Jalassoun"
|
||||
"dynn_Jausserand"
|
||||
"dynn_Javelas"
|
||||
"dynn_Lacha"
|
||||
"dynn_Laure"
|
||||
"dynn_L_e_grv_pe"
|
||||
"dynn_L_o_grv_qui"
|
||||
"dynn_Madi_e_act_"
|
||||
"dynn_Maloboucho"
|
||||
"dynn_Manoui_e_act_"
|
||||
"dynn_Marmouret"
|
||||
"dynn_Massihoun"
|
||||
"dynn_Mausan"
|
||||
"dynn_Menet"
|
||||
"dynn_Miejo"
|
||||
"dynn_Mistrau"
|
||||
"dynn_Mounoun"
|
||||
"dynn_Mournans"
|
||||
"dynn_Nitri"
|
||||
"dynn_Ouneio"
|
||||
"dynn_Paious"
|
||||
"dynn_Paul_e_grv_u"
|
||||
"dynn_Pegue"
|
||||
"dynn_Pelanchoun"
|
||||
"dynn_Periss_o_grv_u"
|
||||
"dynn_Pielo"
|
||||
"dynn_Pla_c_ced_a"
|
||||
"dynn_Pouja"
|
||||
"dynn_Pourtari_e_act_"
|
||||
"dynn_Proumt"
|
||||
"dynn_Rabel"
|
||||
"dynn_Ranchi_e_act_"
|
||||
"dynn_Rebuf_e_grv_u"
|
||||
"dynn_Remacle"
|
||||
"dynn_Ribeiroto"
|
||||
"dynn_Rouais"
|
||||
"dynn_Roumanet"
|
||||
"dynn_R_u_grv_bi"
|
||||
"dynn_Salau"
|
||||
"dynn_Sart_e_grv_u"
|
||||
"dynn_Sclopis"
|
||||
"dynn_S_e_grv_govesso"
|
||||
"dynn_S_e_grv_rvi"
|
||||
"dynn_Soum_e_act_s"
|
||||
"dynn_Taiado"
|
||||
"dynn_Tarteiroun"
|
||||
"dynn_Terraioun"
|
||||
"dynn_Tirreo"
|
||||
"dynn_Tourtoun"
|
||||
"dynn_Treule"
|
||||
"dynn_Truze"
|
||||
"dynn_Valadoun"
|
||||
"dynn_Veirancho"
|
||||
"dynn_Vernous"
|
||||
"dynn_Viret"
|
||||
}
|
||||
|
||||
dynasty_names = {
|
||||
"dynn_Abajolo"
|
||||
"dynn_Aglout"
|
||||
"dynn_Alaveno"
|
||||
"dynn_Amoussa"
|
||||
"dynn_Aplana"
|
||||
"dynn_Armado"
|
||||
"dynn_Arvi_e_act_u"
|
||||
"dynn_Aubour"
|
||||
"dynn_Aurelian"
|
||||
"dynn_Avignan"
|
||||
"dynn_Baioun"
|
||||
"dynn_Barbeja"
|
||||
"dynn_Barret"
|
||||
"dynn_Batar_e_grv_u"
|
||||
"dynn_Bec_a_grv_ris"
|
||||
"dynn_Belissen"
|
||||
"dynn_Berno"
|
||||
"dynn_B_e_grv_uves_e_act_"
|
||||
"dynn_Bonac_u_grv_rsi"
|
||||
"dynn_Boudoun"
|
||||
"dynn_Boulo"
|
||||
"dynn_Bourguignoun"
|
||||
"dynn_Boussano"
|
||||
"dynn_Brechet"
|
||||
"dynn_Broucard"
|
||||
"dynn_Buer"
|
||||
"dynn_Cabrau"
|
||||
"dynn_Cala"
|
||||
"dynn_Caminau"
|
||||
"dynn_Cansa"
|
||||
"dynn_Caras"
|
||||
"dynn_C_a_grv_rri"
|
||||
"dynn_Cast_e_grv_un_o_grv_u"
|
||||
"dynn_Cavaioun"
|
||||
"dynn_Chalamound"
|
||||
"dynn_Charamaulo"
|
||||
"dynn_Cheirias"
|
||||
"dynn_Chivali_e_act_"
|
||||
"dynn_Clar"
|
||||
"dynn_Costobello"
|
||||
"dynn_Coulanjo"
|
||||
"dynn_Coumtour"
|
||||
"dynn_Courdouan"
|
||||
"dynn_Cousti_e_act_"
|
||||
"dynn_Croto"
|
||||
"dynn_D_pst_Esper_e_grv_u"
|
||||
"dynn_Dagevilo"
|
||||
"dynn_De_spc_Bisqu_e_grv_ris"
|
||||
"dynn_De_spc_L_pst_Estrado"
|
||||
"dynn_De_spc_Soio"
|
||||
"dynn_Deg_o_grv_u"
|
||||
"dynn_Denans"
|
||||
"dynn_Di_e_act_udounat"
|
||||
"dynn_Doumiero"
|
||||
"dynn_Dunau"
|
||||
"dynn_Dupargue"
|
||||
"dynn_Engaurran"
|
||||
"dynn_Escudi_e_act_"
|
||||
"dynn_Fantoun"
|
||||
"dynn_Fedoun"
|
||||
"dynn_Ferrouia"
|
||||
"dynn_Flaiosc"
|
||||
"dynn_Foulc"
|
||||
"dynn_Francobaumo"
|
||||
"dynn_Fusado"
|
||||
"dynn_Gabeli_e_act_"
|
||||
"dynn_Gap"
|
||||
"dynn_Gibous"
|
||||
"dynn_Goudelard"
|
||||
"dynn_Gourd_e_act_s"
|
||||
"dynn_Gravat"
|
||||
"dynn_Grimaud"
|
||||
"dynn_Gu_e_grv_lh"
|
||||
"dynn_Isnardoun"
|
||||
"dynn_Jalassoun"
|
||||
"dynn_Jausserand"
|
||||
"dynn_Javelas"
|
||||
"dynn_Lacha"
|
||||
"dynn_Laure"
|
||||
"dynn_L_e_grv_pe"
|
||||
"dynn_L_o_grv_qui"
|
||||
"dynn_Madi_e_act_"
|
||||
"dynn_Maloboucho"
|
||||
"dynn_Manoui_e_act_"
|
||||
"dynn_Marmouret"
|
||||
"dynn_Massihoun"
|
||||
"dynn_Mausan"
|
||||
"dynn_Menet"
|
||||
"dynn_Miejo"
|
||||
"dynn_Mistrau"
|
||||
"dynn_Mounoun"
|
||||
"dynn_Mournans"
|
||||
"dynn_Nitri"
|
||||
"dynn_Ouneio"
|
||||
"dynn_Paious"
|
||||
"dynn_Paul_e_grv_u"
|
||||
"dynn_Pegue"
|
||||
"dynn_Pelanchoun"
|
||||
"dynn_Periss_o_grv_u"
|
||||
"dynn_Pielo"
|
||||
"dynn_Pla_c_ced_a"
|
||||
"dynn_Pouja"
|
||||
"dynn_Pourtari_e_act_"
|
||||
"dynn_Proumt"
|
||||
"dynn_Rabel"
|
||||
"dynn_Ranchi_e_act_"
|
||||
"dynn_Rebuf_e_grv_u"
|
||||
"dynn_Remacle"
|
||||
"dynn_Ribeiroto"
|
||||
"dynn_Rouais"
|
||||
"dynn_Roumanet"
|
||||
"dynn_R_u_grv_bi"
|
||||
"dynn_Salau"
|
||||
"dynn_Sart_e_grv_u"
|
||||
"dynn_Sclopis"
|
||||
"dynn_S_e_grv_govesso"
|
||||
"dynn_S_e_grv_rvi"
|
||||
"dynn_Soum_e_act_s"
|
||||
"dynn_Taiado"
|
||||
"dynn_Tarteiroun"
|
||||
"dynn_Terraioun"
|
||||
"dynn_Tirreo"
|
||||
"dynn_Tourtoun"
|
||||
"dynn_Treule"
|
||||
"dynn_Truze"
|
||||
"dynn_Valadoun"
|
||||
"dynn_Veirancho"
|
||||
"dynn_Vernous"
|
||||
"dynn_Viret"
|
||||
}
|
||||
|
||||
male_names = {
|
||||
20 = {
|
||||
_O_act_ulivi_e_act_
|
||||
Adam Adrian Alan Aleissandre Andri_e_act_u Ant_o_grv_ni Arnaud Aubert
|
||||
Benezet Bernat Brunoun
|
||||
Camihe Carle Cerile Chichoues Crestian Crist_o_grv_u
|
||||
D_a_grv_vi Dani_e_grv_ Danis Deidi_e_act_ Doumenge
|
||||
Enmanu_e_grv_l Enri Eri Estefan
|
||||
Fabian Fabrice Felip Frederi Franc_e_act_s Francoun
|
||||
Gabri_e_act_u Gibert Gile Girard Gl_a_grv_udi Gui Guih_e_grv_n Guih_e_grv_ume
|
||||
Ives
|
||||
J_o_act_us_e_grv_ J_o_grv_rgi Jan Jan-Gl_a_grv_udi Jan-Jaque Jan-Lou_i_uml_s Jan-Lu Jan-Mar_i_grv_o Jan-Marc Jan-Mich_e_grv_u Jan-P_e_grv_ire Jan-Pau Jaque Jirome Jou_e_grv_l Julian
|
||||
Laur_e_grv_ns Liounel Lou_i_uml_s Lucas Lucian
|
||||
Manu_e_grv_ Marc Marc_e_grv_u Maurise Mich_e_grv_u Miqu_e_grv_u
|
||||
Natan Nicoulau
|
||||
P_e_grv_ire Pascau Patrice Patris Pau
|
||||
Quevin
|
||||
Ramoun Ricard Roubert Rougi_e_act_ Rouland Rouman
|
||||
S_e_grv_rgi S_e_act_uvan Savi_e_act_ Sebastian
|
||||
Terris Toumas
|
||||
Ubert
|
||||
Vinc_e_grv_ns
|
||||
}
|
||||
5 = {
|
||||
_A_grv_rtus
|
||||
_E_act_ug_e_grv_ni
|
||||
Ab_e_grv_l Aguste Agustin Al_e_grv_ssi Alfret Amat Amaudri Amine Anfous Ange Antounin Armand Assel Auban Audouard Aurelian
|
||||
Bastian Batisto Benet Benjamin Bertrand Bres Brian
|
||||
Calendau Cedric Charle Clem_e_grv_nt Courentin
|
||||
Damian Dem_e_grv_tri
|
||||
Edmound Edouard Eimeri El_i_grv_o Emile Emilian Ernest Erv_e_act_ Est_e_grv_ve Estanislau
|
||||
F_e_grv_lis Fernand Flavian Flour_e_grv_ns Flourian
|
||||
Ga_e_grv_l Gaietan Gastoun Gauchi_e_act_ Gaufre German Giraud Greg_o_grv_ri Gust_a_grv_vi
|
||||
J_u_grv_li Jan-Batisto Jan-Bernat Jan-Calendau Jan-Carle Jan-Crist_o_grv_u Jan-Felip Jan-Franc_e_act_s Jan-Ives Jan-Pascau Jaufret Jaume Jerem_i_grv_a Jouachin Jounatan Jourdan Justin
|
||||
Leoun Lu
|
||||
M_a_grv_ri_male Maime Marciau Marius Martin Mas Mati_e_act_u Matias Meiss_e_grv_ns
|
||||
Nourbert
|
||||
P_e_grv_ire-Ant_o_grv_ni P_e_grv_ire-Ives P_e_grv_ire-Jan
|
||||
Quentin
|
||||
R_e_grv_gis Raf_e_grv_u Ravous Reinaud Roud_o_grv_u Roudrigo Roumi_e_act_
|
||||
Samu_e_grv_l Sauvaire Simoun
|
||||
T_o_grv_ni Tibaud Tristan
|
||||
Ugue
|
||||
Val_e_grv_ri Valentin Vitour
|
||||
}
|
||||
1 = {
|
||||
_O_act_ut_a_grv_vi
|
||||
Achile Aloi Amable Amadi_e_act_u Amand Ambr_o_grv_si Anat_o_grv_li Ans_e_grv_ume Aristido Arsena Aubin
|
||||
Barnab_e_grv_u Bartoumi_e_act_u Basile Baudouin Berengui_e_act_ Bernard Bl_a_grv_si Bounif_a_grv_ci Brand_a_grv_ni
|
||||
Calist Carle-Enri Casim_e_grv_r Celestin Cesar Ciprian Clouvis Cosme Coustant Coustantin
|
||||
Dourian
|
||||
Eitor
|
||||
Faustin Felician Fermin Franc_e_act_s-Savi_e_act_
|
||||
Gaspard
|
||||
Il_a_grv_ri Ipoulite Ireni_e_act_u
|
||||
Jacint Jaque-Ives Jasoun
|
||||
Lambert Leoupold Lienard
|
||||
Nou_e_grv_
|
||||
Ouscar
|
||||
Prousp_e_grv_r
|
||||
Reini_e_act_ Roumiaud
|
||||
Teoudor Teoufile Timouti_e_act_u
|
||||
Ulisse Umbert
|
||||
Zacar_i_grv_o
|
||||
}
|
||||
}
|
||||
female_names = {
|
||||
20 = {
|
||||
Alessandro_female Amandino Angelico_female Ano Ano-Mar_i_grv_o Audr_e_act_ Aurel_i_grv_o_female
|
||||
Bernadeto Bregido
|
||||
Camiho Carolo_female Caroulino Catarino Cecilo Celino Chantal Claro_female Coul_e_grv_to Courino Crestino
|
||||
D_o_act_ufino Danielo_female Daniso Doumenico_female
|
||||
Eisab_e_grv_u Eisabello Eleno Eliano Eloud_i_grv_o Emanuelo_female Emil_i_grv_o_female Estello
|
||||
Fabiano_female Flour_e_grv_n_c_ced_o Franceso
|
||||
Genevivo Glaudino Glaudo_female Gueni_e_grv_vro
|
||||
Iveto_female
|
||||
J_u_grv_li_female Jano_female Jaquelino Joucelino_female Jouelo_female Jouseto_female Jousiano
|
||||
Laur_e_grv_n_c_ced_o Lauro_female Lid_i_grv_o Liliano Lou_i_uml_so_female
|
||||
Madaleno Magali Mar_i_grv_o_female Mar_i_grv_o-Crestino Mar_i_grv_o-Fran_c_ced_o Mar_i_grv_o-Jano Mar_i_grv_o-Louiso Mar_i_grv_o-Ter_e_grv_so Margarido Marioun Mariso_female Martino_female Melan_i_grv_o Michello_female Mir_e_grv_io Mounico_female Murielo
|
||||
Natal_i_grv_o Nicleto Nicolo_female
|
||||
Oudeto Oudilo Ouf_e_act_l_i_grv_o
|
||||
Pascalo_female Patricio_female Pauleto_female Peireto
|
||||
Sabino_female Sabrino_female Sandrino_female Susano_female
|
||||
Valiero_female Vanesso_female Verounico
|
||||
}
|
||||
5 = {
|
||||
_E_act_ug_e_grv_nio _E_grv_vo
|
||||
Adriano Agato Agn_e_grv_s Albertino_female Alessio_female Alino Alis Am_e_grv_li Ana_i_uml_s Andriveto Aneto Ang_e_grv_lo_female Ano-Claro Ano-Lauro Ano-Liso Ano-Souf_i_grv_o Antouneto Arleto Aude Auroro
|
||||
Beatris Benedito_female Berto_female Blanco_female
|
||||
Carleno_female Carmen Celi_a_grv_ Charloto Chichoueso Cindy Clarisso Clem_e_grv_nci Clementino_female Clou_e_grv_ Cloutido Coural_i_grv_o Coustan_c_ced_o Cynthia
|
||||
Debora Diano Dourout_e_grv_io
|
||||
Edito Eliso Els_a_grv_ Em_a_grv_ Emelino Emiliano_female Enrieto Est_e_grv_r Esteveneto Evelino
|
||||
Fan_i_grv_ Fernando_female Fl_a_grv_vio_female Floro Flouriano Fran_c_ced_o_female Francino Frederico_female
|
||||
Ga_e_grv_lo Gabrielo_female Geraldino_female Germano_female Giliberto_female Gineto Gis_e_grv_lo Glaudeto Guisl_e_grv_no
|
||||
Iasmino Ido Ingrido Ireno_female Ivono_female
|
||||
J_o_act_usefino Janeto_female Jano-Mar_i_grv_o Jessic_a_grv_ Jourgeto Judit Juliano_female Julieto Justino_female
|
||||
L_u_grv_ci Laur_i_grv_o Laureto Le_a_grv Leila Liso_female
|
||||
Manoun Manuello Mar_i_grv_o-Ange Mar_i_grv_o-Ano Mar_i_grv_o-Antouneto Mar_i_grv_o-Catarino Mar_i_grv_o-Claro Mar_i_grv_o-Doumenico Mar_i_grv_o-Eleno Mar_i_grv_o-Franceso Mar_i_grv_o-Glaudo Mar_i_grv_o-J_o_act_us_e_grv_ Mar_i_grv_o-Lauro Mar_i_grv_o-Madaleno Mar_i_grv_o-Nouelo Mar_i_grv_o-Oudilo Mar_i_grv_o-P_e_grv_ire Mar_i_grv_o-Paulo Mar_i_grv_o-Roso Marcello_female Margot Mariama Mariano_female Maril_e_grv_no_female Marino_female Marivono Marjour_i_grv_o Marl_e_grv_no Marto_female Mauriceto_female Melisso Micheleto_female Mourgano
|
||||
Nad_e_grv_jo Nadalo_female Natach_a_grv_ Nouelo_female Nouen_i_grv_o
|
||||
Olg_a_grv_ Ourt_e_grv_nsi
|
||||
Pascaleto Paulino_female Paulo_female
|
||||
R_e_grv_ino Rach_e_grv_l Ramoundo_female Regino_female Renato_female Roso_female Roso-Mar_i_grv_o Roulando_female Rousal_i_grv_o Rousino Rousselino
|
||||
Samanto Saro_female Severino_female Silv_i_grv_o_female Simouno_female Souf_i_grv_o Soul_e_grv_no Soulanjo Susoun
|
||||
Ter_e_grv_so T_o_grv_nio_female
|
||||
Ugueto
|
||||
Valentino_female Vent_u_grv_ri_female Vi_o_act_ulando Vi_o_act_uleto Viergino_female Vit_o_grv_ri_female Viviano_female
|
||||
}
|
||||
1 = {
|
||||
_E_act_ul_a_grv_lio
|
||||
_O_act_ut_a_grv_vio
|
||||
Abri_e_act_u Ad_e_grv_lo Agla_e_grv_ Agustino_female Aimado Alessandrino_female Anastasi_e_act_ Anfounsino Aubano Azala_i_uml_s
|
||||
Bab_e_grv_u_female Barbo_female Batistino Berenguiero Bereni_c_ced_o Bernado Bertrando
|
||||
Cassandro Celestino_female Celesto_female
|
||||
Daun_e_grv_ Deivoto
|
||||
Eliounor Ernestino Esmeraudo
|
||||
Faustino_female Felicita Felipino Feliso_female Filoumeno Flour Flourino
|
||||
Gertrudo
|
||||
Irm_a_grv_ Is_e_grv_ut
|
||||
Jade Jaqueto
|
||||
Leoun_i_grv_o Leounoro Leountino Leticio Lindo_female Liseto Lou_i_uml_sono Lourreno Luciano_female Lucr_e_grv__c_ced_o Ludivino
|
||||
Marcelino_female Megano
|
||||
Ouceano Oulimpo_female Ounourino Oursulo
|
||||
Peirounello Peirouno Poul_o_grv_nio
|
||||
Quit_e_grv_ri
|
||||
Roumano_female Rousado Rut
|
||||
Sibilo_female Sidoun_i_grv_o Sigouleno
|
||||
Tounieto
|
||||
Vitourino_female
|
||||
Zou_e_grv_
|
||||
}
|
||||
}
|
||||
dynasty_of_location_prefix = "dynnp_de"
|
||||
grammar_transform = french
|
||||
|
||||
# Chance of male children being named after their paternal or maternal grandfather, or their father. Sum must not exceed 100.
|
||||
pat_grf_name_chance = 60
|
||||
mat_grf_name_chance = 10
|
||||
father_name_chance = 10
|
||||
|
||||
# Chance of female children being named after their paternal or maternal grandmother, or their mother. Sum must not exceed 100.
|
||||
pat_grm_name_chance = 10
|
||||
mat_grm_name_chance = 60
|
||||
mother_name_chance = 10
|
||||
|
||||
mercenary_names = {
|
||||
}
|
||||
}
|
||||
|
|
@ -148,7 +148,7 @@ tradition_british_palace_politics = {
|
|||
hostile_action_vs_rival_bonuses = yes
|
||||
bonuses_from_patriarch_matriarch_trait = yes
|
||||
#cultural_house_personal_scheme_success_chance = yes
|
||||
landing_house_members_give_renown = yes
|
||||
landing_house_members_gives_renown = yes
|
||||
penalty_for_revoking_titles_from_house_members = yes
|
||||
loyal_trait_more_common = yes
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1214,7 +1214,7 @@ dismantle_holy_pretender_decision = {
|
|||
#And Lotharingia (the Rhine).
|
||||
completely_controls = title:d_luxembourg
|
||||
completely_controls = title:d_brabant
|
||||
completely_controls = title:d_julich
|
||||
completely_controls = title:d_cologne
|
||||
completely_controls = title:d_upper_lorraine
|
||||
completely_controls = title:d_lower_lorraine
|
||||
}
|
||||
|
|
|
|||
|
|
@ -201,11 +201,11 @@ form_the_kingdom_of_rhineland_decision = {
|
|||
is_valid = {
|
||||
top_liege = this
|
||||
has_title = title:d_lower_lorraine
|
||||
has_title = title:d_julich
|
||||
has_title = title:d_cologne
|
||||
has_title = title:d_trier
|
||||
has_title = title:c_mainz
|
||||
completely_controls = title:d_lower_lorraine
|
||||
completely_controls = title:d_julich
|
||||
completely_controls = title:d_cologne
|
||||
completely_controls = title:d_trier
|
||||
}
|
||||
|
||||
|
|
@ -219,7 +219,7 @@ form_the_kingdom_of_rhineland_decision = {
|
|||
culture = { save_scope_as = founder_culture }
|
||||
title:k_rhineland = { save_scope_as = k_rhineland }
|
||||
title:d_trier = { save_scope_as = d_trier }
|
||||
title:d_julich = { save_scope_as = d_julich }
|
||||
title:d_cologne = { save_scope_as = d_cologne }
|
||||
title:d_lower_lorraine = { save_scope_as = d_lower_lorraine }
|
||||
title:d_alsace = { save_scope_as = d_alsace }
|
||||
title:c_bitburg = { save_scope_as = c_bitburg }
|
||||
|
|
|
|||
|
|
@ -1546,6 +1546,41 @@ bolt_dynasty = {
|
|||
culture = jaamtsk
|
||||
}
|
||||
|
||||
wrede_dynasty = {
|
||||
name = dynn_wrede
|
||||
culture = ostsk
|
||||
}
|
||||
|
||||
benkestokk_dynasty = {
|
||||
name = dynn_benkestokk
|
||||
culture = ostsk
|
||||
}
|
||||
|
||||
aspa_dynasty = {
|
||||
name = dynn_aspa
|
||||
culture = vestsk
|
||||
}
|
||||
|
||||
hjerne_dynasty = {
|
||||
name = dynn_hjerne
|
||||
culture = vestsk
|
||||
}
|
||||
|
||||
traette_dynasty = {
|
||||
name = dynn_traette
|
||||
culture = vestsk
|
||||
}
|
||||
|
||||
nott_dynasty = {
|
||||
name = dynn_nott
|
||||
culture = vestsk
|
||||
}
|
||||
|
||||
ulfhilde_dynasty = {
|
||||
name = dynn_ulfhilde
|
||||
culture = vestsk
|
||||
}
|
||||
|
||||
cool_dynasty = {
|
||||
prefix = "dynnp_mac"
|
||||
name = dynn_cool
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ e_europa = {
|
|||
|
||||
capital = c_westfriesland #Amsterdam
|
||||
|
||||
c_holland = {
|
||||
c_holland = { # South Holland
|
||||
color = { 235 85 30 }
|
||||
|
||||
b_delft = {
|
||||
|
|
@ -82,7 +82,7 @@ e_europa = {
|
|||
}
|
||||
|
||||
}
|
||||
c_westfriesland = {
|
||||
c_westfriesland = { # North Holland
|
||||
color = { 245 99 50 }
|
||||
b_amsterdam = {
|
||||
province = 2406
|
||||
|
|
@ -118,9 +118,9 @@ e_europa = {
|
|||
d_gelre = {
|
||||
color = { 200 60 40 }
|
||||
|
||||
capital = c_arnhem #Arnhem
|
||||
capital = c_zutphen # Arnhem
|
||||
|
||||
c_guelders = {
|
||||
c_nijmegen = {
|
||||
color = { 200 60 40 }
|
||||
|
||||
b_nijmegen = {
|
||||
|
|
@ -135,7 +135,7 @@ e_europa = {
|
|||
}
|
||||
}
|
||||
|
||||
c_arnhem = {
|
||||
c_arnhem = { # Utrecht
|
||||
color = { 235 45 30 }
|
||||
|
||||
b_arnhem = {
|
||||
|
|
@ -159,7 +159,7 @@ e_europa = {
|
|||
color = { 160 100 10 }
|
||||
}
|
||||
}
|
||||
c_zutphen = {
|
||||
c_zutphen = { # Arnhem
|
||||
color = { 195 30 5 }
|
||||
|
||||
b_zutphen = {
|
||||
|
|
@ -180,12 +180,11 @@ e_europa = {
|
|||
}
|
||||
}
|
||||
|
||||
d_utrecht = {
|
||||
d_utrecht = { # Overijssel
|
||||
color = { 170 100 10 }
|
||||
capital = c_oversticht # Zwolle
|
||||
|
||||
capital = c_oversticht #Zwolle
|
||||
|
||||
c_oversticht = {
|
||||
c_oversticht = { # Overijssel
|
||||
color = { 180 120 10 }
|
||||
|
||||
b_zwolle = {
|
||||
|
|
@ -222,7 +221,7 @@ e_europa = {
|
|||
color = { 175 70 20 }
|
||||
}
|
||||
}
|
||||
c_groningen = {
|
||||
c_groningen = { # Drenthe
|
||||
color = { 200 145 40 }
|
||||
|
||||
b_groningen = {
|
||||
|
|
@ -267,8 +266,9 @@ e_europa = {
|
|||
color = { 240 160 90 }
|
||||
}
|
||||
}
|
||||
c_tecklenburg = {
|
||||
c_tecklenburg = { # Emsland
|
||||
color = { 250 170 65 }
|
||||
|
||||
b_meppen = {
|
||||
province = 2439
|
||||
|
||||
|
|
@ -327,9 +327,9 @@ e_europa = {
|
|||
d_frisia = {
|
||||
color = { 190 90 10 }
|
||||
|
||||
capital = c_dokkum
|
||||
capital = c_dokkum # Groningen
|
||||
|
||||
c_dokkum = {
|
||||
c_dokkum = { # Groningen
|
||||
color = { 190 90 10 }
|
||||
|
||||
b_appingedam = {
|
||||
|
|
@ -348,7 +348,7 @@ e_europa = {
|
|||
color = { 200 145 40 }
|
||||
}
|
||||
}
|
||||
c_frisia = {
|
||||
c_frisia = { # Friesland
|
||||
color = { 175 70 20 }
|
||||
|
||||
b_leeuwarden = {
|
||||
|
|
@ -598,7 +598,7 @@ e_europa = {
|
|||
color = { 130 125 175 }
|
||||
}
|
||||
}
|
||||
c_bouillon = {
|
||||
c_bouillon = { # West-Luxembourg
|
||||
color = { 100 110 180 }
|
||||
|
||||
b_chiny = {
|
||||
|
|
@ -618,10 +618,10 @@ e_europa = {
|
|||
}
|
||||
}
|
||||
}
|
||||
d_julich = {
|
||||
d_cologne = {
|
||||
color = { 145 125 195 }
|
||||
|
||||
capital = c_aachen #Aachen
|
||||
capital = c_cologne #Cologne
|
||||
|
||||
c_aachen = {
|
||||
color = { 130 125 175 }
|
||||
|
|
@ -771,15 +771,15 @@ e_europa = {
|
|||
}
|
||||
}
|
||||
}
|
||||
d_bar = {
|
||||
d_bar = { # Lorraine
|
||||
color = { 24 95 226 }
|
||||
|
||||
capital = c_metz #Bar
|
||||
|
||||
c_bar = {
|
||||
c_bar = { # Meuse
|
||||
color = { 14 85 226 }
|
||||
|
||||
b_bar = {
|
||||
b_bar = { # Bar-le-Duc
|
||||
province = 2388
|
||||
|
||||
color = { 24 95 226 }
|
||||
|
|
@ -814,7 +814,7 @@ e_europa = {
|
|||
color = { 53 132 226 }
|
||||
}
|
||||
}
|
||||
c_neufchateau = {
|
||||
c_neufchateau = { # Vosges
|
||||
color = { 75 75 125 }
|
||||
|
||||
b_epinal = {
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -2013,7 +2013,7 @@
|
|||
winter_severity_bias = 0.45
|
||||
}
|
||||
### d_gelre
|
||||
## c_guelders
|
||||
## c_nijmegen
|
||||
# b_geldern
|
||||
2450 ={
|
||||
winter_severity_bias = 0.45
|
||||
|
|
@ -2264,7 +2264,7 @@
|
|||
2119 ={
|
||||
winter_severity_bias = 0.40
|
||||
}
|
||||
### d_julich
|
||||
### d_cologne
|
||||
## c_aachen
|
||||
# b_aachen
|
||||
2092 ={
|
||||
|
|
|
|||
|
|
@ -1015,82 +1015,6 @@
|
|||
WaterGodHerHim = CHARACTER_HERHIM_HIM
|
||||
}
|
||||
}
|
||||
teutonic = {
|
||||
color = { 211 214 208 }
|
||||
icon = NEOW_teutonic
|
||||
|
||||
religious_head = k_papal_state
|
||||
|
||||
graphical_faith = "catholic_gfx"
|
||||
#placeholder holy sites
|
||||
# Uncomment once 0.3 starts being worked on # holy_site = jerusalem
|
||||
holy_site = rome
|
||||
holy_site = cologne
|
||||
holy_site = santiago
|
||||
holy_site = kent
|
||||
#holy_site = segrada_familia
|
||||
|
||||
#Special Tolerance | placeholder
|
||||
doctrine = special_doctrine_roman_rite
|
||||
|
||||
#Tenets | placeholder
|
||||
doctrine = tenet_catholic_communion
|
||||
doctrine = tenet_unrelenting_faith
|
||||
doctrine = tenet_monasticism
|
||||
|
||||
holy_order_names = { #placeholder
|
||||
{ name = "holy_order_knights_templar" coat_of_arms = "ho_knights_templar" }
|
||||
{ name = "holy_order_knights_hospitaller" coat_of_arms = "ho_knights_hospitaller" }
|
||||
{ name = "holy_order_teutonic_order" coat_of_arms = "ho_teutonic_order" }
|
||||
{ name = "holy_order_order_of_calatrava" coat_of_arms = "ho_order_of_calatrava" }
|
||||
{ name = "holy_order_order_of_alcantara" coat_of_arms = "ho_order_of_alcantara" }
|
||||
{ name = "holy_order_knights_of_santiago" coat_of_arms = "ho_knights_of_santiago" }
|
||||
}
|
||||
|
||||
localization = { # placeholder
|
||||
#FertilityGod
|
||||
FertilityGodName = west_christian_fertility_god_name
|
||||
FertilityGodNamePossessive = west_christian_fertility_god_name_possessive
|
||||
FertilityGodSheHe = CHARACTER_SHEHE_SHE
|
||||
FertilityGodHerHis = CHARACTER_HERHIS_HER
|
||||
FertilityGodHerHim = CHARACTER_HERHIM_HER
|
||||
|
||||
#WealthGod
|
||||
WealthGodName = west_christian_wealth_god_name
|
||||
WealthGodNamePossessive = west_christian_wealth_god_name_possessive
|
||||
WealthGodSheHe = CHARACTER_SHEHE_HE
|
||||
WealthGodHerHis = CHARACTER_HERHIS_HIS
|
||||
WealthGodHerHim = CHARACTER_HERHIM_HIM
|
||||
|
||||
#HouseholdGod
|
||||
HouseholdGodName = west_christian_household_god_name
|
||||
HouseholdGodNamePossessive = west_christian_household_god_name_possessive
|
||||
HouseholdGodSheHe = CHARACTER_SHEHE_HE
|
||||
HouseholdGodHerHis = CHARACTER_HERHIS_HIS
|
||||
HouseholdGodHerHim = CHARACTER_HERHIM_HIM
|
||||
|
||||
#KnowledgeGod
|
||||
KnowledgeGodName = west_christian_knowledge_god_name
|
||||
KnowledgeGodNamePossessive = west_christian_knowledge_god_name_possessive
|
||||
KnowledgeGodSheHe = CHARACTER_SHEHE_SHE
|
||||
KnowledgeGodHerHis = CHARACTER_HERHIS_HER
|
||||
KnowledgeGodHerHim = CHARACTER_HERHIM_HER
|
||||
|
||||
#WarGod
|
||||
WarGodName = west_christian_war_god_name
|
||||
WarGodNamePossessive = west_christian_war_god_name_possessive
|
||||
WarGodSheHe = CHARACTER_SHEHE_HE
|
||||
WarGodHerHis = CHARACTER_HERHIS_HIS
|
||||
WarGodHerHim = CHARACTER_HERHIM_HIM
|
||||
|
||||
#WaterGod
|
||||
WaterGodName = west_christian_water_god_name
|
||||
WaterGodNamePossessive = west_christian_water_god_name_possessive
|
||||
WaterGodSheHe = CHARACTER_SHEHE_HE
|
||||
WaterGodHerHis = CHARACTER_HERHIS_HIS
|
||||
WaterGodHerHim = CHARACTER_HERHIM_HIM
|
||||
}
|
||||
}
|
||||
soleil_royal = {
|
||||
color = { 221 170 0 }
|
||||
icon = soleil_royal
|
||||
|
|
|
|||
BIN
N3OW/gfx/coat_of_arms/colored_emblems/NEOW_ce_dolmen.dds
(Stored with Git LFS)
Normal file
BIN
N3OW/gfx/coat_of_arms/colored_emblems/NEOW_ce_dolmen.dds
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
N3OW/gfx/coat_of_arms/colored_emblems/NEOW_ce_oak_branch.dds
(Stored with Git LFS)
Normal file
BIN
N3OW/gfx/coat_of_arms/colored_emblems/NEOW_ce_oak_branch.dds
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
N3OW/gfx/coat_of_arms/colored_emblems/NEOW_ce_sea_lion.dds
(Stored with Git LFS)
Normal file
BIN
N3OW/gfx/coat_of_arms/colored_emblems/NEOW_ce_sea_lion.dds
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
N3OW/gfx/coat_of_arms/colored_emblems/NEOW_ce_whip.dds
(Stored with Git LFS)
Normal file
BIN
N3OW/gfx/coat_of_arms/colored_emblems/NEOW_ce_whip.dds
(Stored with Git LFS)
Normal file
Binary file not shown.
|
|
@ -59,6 +59,7 @@ NEOW_ce_partridge_statant.dds = { colors = 3 category = animals }
|
|||
NEOW_ce_peacock_statant.dds = { colors = 3 category = animals }
|
||||
NEOW_ce_ponticeagle.dds = { colors = 1 category = animals }
|
||||
NEOW_ce_ram_passant.dds = { colors = 3 category = animals }
|
||||
NEOW_ce_sea_lion.dds = { colors = 3 category = animals }
|
||||
NEOW_ce_wallonia.dds = { colors = 1 category = animals }
|
||||
|
||||
###CROSSES AND KNOTS
|
||||
|
|
@ -104,6 +105,7 @@ NEOW_ce_crown_french_closed.dds = { colors = 2 category = manmade }
|
|||
NEOW_ce_bridge_innsbruck.dds = { colors = 1 category = manmade }
|
||||
NEOW_ce_crown_koln.dds = { colors = 2 category = manmade }
|
||||
NEOW_ce_crown_koln_imperial.dds = { colors = 3 category = manmade }
|
||||
NEOW_ce_dolmen.dds = { colors = 1 category = manmade }
|
||||
NEOW_ce_fasces.dds = { colors = 2 category = manmade }
|
||||
NEOW_ce_gondor_crown.dds = { colors = 1 category = manmade }
|
||||
NEOW_ce_guillotine.dds = { colors = 1 category = manmade }
|
||||
|
|
@ -125,6 +127,7 @@ NEOW_ce_spitfire.dds = { colors = 3 category = manmade }
|
|||
NEOW_ce_tongs.dds = { colors = 1 category = manmade }
|
||||
NEOW_ce_tower_02.dds = { colors = 2 category = manmade }
|
||||
NEOW_ce_wall.dds = { colors = 2 category = manmade }
|
||||
NEOW_ce_whip.dds = { colors = 1 category = manmade }
|
||||
ce_book_open.dds = { colors = 2 category = manmade }
|
||||
|
||||
###NATURE
|
||||
|
|
@ -136,6 +139,7 @@ NEOW_ce_grapes.dds = { colors = 2 category = nature }
|
|||
NEOW_ce_kimstar.dds = { colors = 1 category = nature }
|
||||
NEOW_ce_lotus.dds = { colors = 1 category = nature }
|
||||
NEOW_ce_newton.dds = { colors = 2 category = nature }
|
||||
NEOW_ce_oak_branch.dds = { colors = 3 category = nature }
|
||||
NEOW_ce_orange_branch.dds = { colors = 2 category = nature }
|
||||
NEOW_ce_paektu.dds = { colors = 1 category = nature }
|
||||
NEOW_ce_rosa_camuna.dds = { colors = 1 category = nature }
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ thomas_i_of_vorarlberg={
|
|||
name="Thomas"
|
||||
dynasty=bludenzer_dynasty #Bludenzer
|
||||
culture=aleman
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2207.1.6={birth=yes}
|
||||
2258.3.30={death=yes}
|
||||
}
|
||||
|
|
@ -69,7 +69,7 @@ wenzel_i_of_bavaria={
|
|||
dynasty=bludenzer_dynasty #Bludenzer
|
||||
father=thomas_i_of_vorarlberg
|
||||
culture=aleman
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=lifestyle_mystic
|
||||
trait=witch
|
||||
trait=scholar
|
||||
|
|
@ -83,7 +83,7 @@ heinrich_bludenzer={
|
|||
dynasty=bludenzer_dynasty #Bludenzer
|
||||
father=thomas_i_of_vorarlberg
|
||||
culture=aleman
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2246.2.28={birth=yes}
|
||||
2292.9.1={death=yes}
|
||||
}
|
||||
|
|
@ -92,7 +92,7 @@ georg_i_of_bavaria={
|
|||
dynasty=bludenzer_dynasty #Bludenzer
|
||||
father=heinrich_bludenzer
|
||||
culture=aleman
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=zealous
|
||||
trait=pilgrim
|
||||
trait=celibate
|
||||
|
|
@ -106,7 +106,7 @@ thomas_bludenzer={
|
|||
father=georg_i_of_bavaria
|
||||
mother=juliane_kreile
|
||||
culture=aleman
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2306.1.18={birth=yes}
|
||||
2351.10.4={death=yes}
|
||||
}
|
||||
|
|
@ -116,7 +116,7 @@ maria_i_of_bavaria={
|
|||
dynasty=bludenzer_dynasty #Bludenzer
|
||||
father=thomas_bludenzer
|
||||
culture=aleman
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2334.4.7={birth=yes}
|
||||
2384.2.23={death=yes}
|
||||
}
|
||||
|
|
@ -125,7 +125,7 @@ oliver_bludenzer={
|
|||
dynasty=bludenzer_dynasty #Bludenzer
|
||||
father=heinrich_bludenzer
|
||||
culture=aleman
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2286.12.1={birth=yes}
|
||||
2334.6.5={death=yes}
|
||||
}
|
||||
|
|
@ -134,7 +134,7 @@ dieter_bludenzer={
|
|||
dynasty=bludenzer_dynasty #Bludenzer
|
||||
father=oliver_bludenzer
|
||||
culture=aleman
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2311.4.18={birth=yes}
|
||||
2344.12.13={death=yes}
|
||||
}
|
||||
|
|
@ -143,7 +143,7 @@ heinrich_bludenzer_2={
|
|||
dynasty=bludenzer_dynasty #Bludenzer
|
||||
father=oliver_bludenzer
|
||||
culture=aleman
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2322.8.19={birth=yes}
|
||||
2337.1.19={death=yes}
|
||||
}
|
||||
|
|
@ -152,7 +152,7 @@ friedrich_bludenzer={
|
|||
dynasty=bludenzer_dynasty #Bludenzer
|
||||
father=oliver_bludenzer
|
||||
culture=aleman
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2334.5.28={birth=yes}
|
||||
2374.2.28={death=yes}
|
||||
}
|
||||
|
|
@ -161,7 +161,7 @@ alfred_bludenzer={
|
|||
dynasty=bludenzer_dynasty #Bludenzer
|
||||
father=friedrich_bludenzer
|
||||
culture=aleman
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2357.12.22={birth=yes}
|
||||
2446.7.12={death=yes}
|
||||
}
|
||||
|
|
@ -170,7 +170,7 @@ friedrich_bludenzer_2={
|
|||
dynasty=bludenzer_dynasty #Bludenzer
|
||||
father=alfred_bludenzer
|
||||
culture=aleman
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2381.4.23={birth=yes}
|
||||
2467.12.6={death=yes}
|
||||
}
|
||||
|
|
@ -179,7 +179,7 @@ alfred_bludenzer_2={
|
|||
dynasty=bludenzer_dynasty #Bludenzer
|
||||
father=friedrich_bludenzer_2
|
||||
culture=aleman
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2418.8.25={birth=yes}
|
||||
2493.3.22={death=yes}
|
||||
}
|
||||
|
|
@ -188,7 +188,7 @@ friedrich_bludenzer_3={
|
|||
dynasty=bludenzer_dynasty #Bludenzer
|
||||
father=alfred_bludenzer_2
|
||||
culture=aleman
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2451.4.21={birth=yes}
|
||||
2541.1.8={death=yes}
|
||||
}
|
||||
|
|
@ -197,7 +197,7 @@ fritz_bludenzer={
|
|||
dynasty=bludenzer_dynasty #Bludenzer
|
||||
father=friedrich_bludenzer_3
|
||||
culture=aleman
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2477.12.21={birth=yes}
|
||||
2527.6.27={death=yes}
|
||||
}
|
||||
|
|
@ -206,7 +206,7 @@ friedrich_bludenzer_4={
|
|||
dynasty=bludenzer_dynasty #Bludenzer
|
||||
father=fritz_bludenzer
|
||||
culture=aleman
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2522.12.26={birth=yes}
|
||||
2600.6.27={death=yes}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ germany0005 = {
|
|||
name = "Thorus"
|
||||
prefix = dynnp_von
|
||||
dynasty = habsburg_dynasty
|
||||
religion = "teutonic"
|
||||
religion = "roman_catholic"
|
||||
culture = bavarian
|
||||
trait = education_learning_3
|
||||
trait = just
|
||||
|
|
@ -109,7 +109,7 @@ germany0008 = { #Lars Hauke, Count of Haguenau
|
|||
germany0009 = {
|
||||
name = "Julius"
|
||||
dynasty = weiser_dynasty
|
||||
religion = "teutonic"
|
||||
religion = "roman_catholic"
|
||||
culture = palatine
|
||||
trait = education_learning_2
|
||||
trait = wrathful
|
||||
|
|
@ -177,7 +177,7 @@ germany0011 = {
|
|||
germany0012 = {
|
||||
name = "Bernd"
|
||||
dynasty = lichtenberg_dynasty
|
||||
religion = "teutonic"
|
||||
religion = "roman_catholic"
|
||||
culture = hessian
|
||||
trait = education_learning_3
|
||||
trait = patient
|
||||
|
|
@ -453,7 +453,7 @@ germany0027 = {
|
|||
germany0028 = {
|
||||
name = "Alfred"
|
||||
dynasty = camphausen_dynasty
|
||||
religion = "teutonic"
|
||||
religion = "roman_catholic"
|
||||
culture = palatine
|
||||
2523.1.1 = {
|
||||
birth = yes
|
||||
|
|
@ -1018,7 +1018,7 @@ germany0058 = {
|
|||
germany0059 = {
|
||||
name = "Jutta"
|
||||
dynasty = kapfenberg_dynasty
|
||||
religion = "teutonic"
|
||||
religion = "roman_catholic"
|
||||
culture = austrian
|
||||
female = yes
|
||||
trait = education_diplomacy_2
|
||||
|
|
@ -1037,7 +1037,7 @@ germany0059 = {
|
|||
germany0060 = {
|
||||
name = "Wiknand"
|
||||
dynasty = schweipunt_dynasty
|
||||
religion = "teutonic"
|
||||
religion = "roman_catholic"
|
||||
culture = austrian
|
||||
trait = education_diplomacy_2
|
||||
trait = tourney_participant
|
||||
|
|
@ -1074,7 +1074,7 @@ germany0061 = {
|
|||
germany0062 = {
|
||||
name = "Imma"
|
||||
dynasty = bamberg_dynasty
|
||||
religion = "teutonic"
|
||||
religion = "roman_catholic"
|
||||
culture = bavarian
|
||||
female = yes
|
||||
trait = education_martial_1
|
||||
|
|
@ -1093,7 +1093,7 @@ germany0062 = {
|
|||
germany0063 = {
|
||||
name = "Richardis"
|
||||
dynasty = meissen_dynasty
|
||||
religion = "teutonic"
|
||||
religion = "roman_catholic"
|
||||
culture = bavarian
|
||||
female = yes
|
||||
trait = education_stewardship_3
|
||||
|
|
@ -1111,7 +1111,7 @@ germany0063 = {
|
|||
germany0064 = {
|
||||
name = "Liutfrid"
|
||||
dynasty = margrave_dynasty
|
||||
religion = "teutonic"
|
||||
religion = "roman_catholic"
|
||||
culture = bavarian
|
||||
trait = education_martial_1
|
||||
trait = logistician
|
||||
|
|
@ -1129,7 +1129,7 @@ germany0064 = {
|
|||
germany0065 = {
|
||||
name = "Andreas"
|
||||
dynasty = eurasburg_dynasty
|
||||
religion = "teutonic"
|
||||
religion = "roman_catholic"
|
||||
culture = bavarian
|
||||
trait = education_intrigue_1
|
||||
trait = humble
|
||||
|
|
@ -1148,7 +1148,7 @@ thaddaus_leeb={
|
|||
name="Thadd_a_uml_us"
|
||||
dynasty=leeb_dynasty #Leeb
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2087.8.8={birth=yes}
|
||||
2137.4.7={death=yes}
|
||||
}
|
||||
|
|
@ -1158,7 +1158,7 @@ adelgund_leeb={
|
|||
female=yes
|
||||
father=thaddaus_leeb
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2117.8.9={birth=yes}
|
||||
2158.7.22={death=yes}
|
||||
}
|
||||
|
|
@ -1168,7 +1168,7 @@ benedikt_ii_of_bavaria={
|
|||
name="Benedikt"
|
||||
dynasty=vohburg_dynasty #von Vohburg
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=stuttering
|
||||
trait=brave
|
||||
give_nickname=nick_the_stammerer
|
||||
|
|
@ -1182,7 +1182,7 @@ albrecht_vi_of_bavaria={
|
|||
father=benedikt_ii_of_bavaria
|
||||
mother=marlene_kreile
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=compassionate
|
||||
trait=content
|
||||
trait=just
|
||||
|
|
@ -1198,7 +1198,7 @@ mathilda_von_vohburg={
|
|||
father=benedikt_ii_of_bavaria
|
||||
mother=marlene_kreile
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2162.3.9={birth=yes}
|
||||
2236.1.8={death=yes}
|
||||
}
|
||||
|
|
@ -1222,7 +1222,7 @@ stefan_i_of_muhldorf={
|
|||
father=burkhard_burkhardinger
|
||||
mother=ilse_hartmann
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2146.1.1={birth=yes}
|
||||
2216.7.31={death=yes}
|
||||
}
|
||||
|
|
@ -1231,7 +1231,7 @@ johann_baptist_ii_of_muhldorf={
|
|||
dynasty=burkhardinger_dynasty #Burkhardinger
|
||||
father=stefan_i_of_muhldorf
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2175.9.21={birth=yes}
|
||||
2226.11.2={death=yes}
|
||||
}
|
||||
|
|
@ -1239,7 +1239,7 @@ stefan_i_of_bavaria={
|
|||
name="Stefan"
|
||||
dynasty=burkhardinger_dynasty #Burkhardinger
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=johann_baptist_ii_of_muhldorf
|
||||
2213.1.21={birth=yes}
|
||||
2239.3.2={add_spouse=friedlinde_kreile}
|
||||
|
|
@ -1251,7 +1251,7 @@ korbinian_i_of_bavaria={
|
|||
father=stefan_i_of_bavaria
|
||||
mother=friedlinde_kreile
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2238.1.13={birth=yes}
|
||||
2279.12.4={death=yes}
|
||||
}
|
||||
|
|
@ -1261,7 +1261,7 @@ maria_burkhardinger={
|
|||
dynasty=burkhardinger_dynasty #Burkhardinger
|
||||
father=korbinian_i_of_bavaria
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2251.9.26={birth=yes}
|
||||
2293.6.14={death=yes}
|
||||
}
|
||||
|
|
@ -1271,7 +1271,7 @@ dorothea_burkhardinger={
|
|||
dynasty=burkhardinger_dynasty #Burkhardinger
|
||||
father=korbinian_i_of_bavaria
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2254.7.1={birth=yes}
|
||||
2314.7.30={death=yes}
|
||||
}
|
||||
|
|
@ -1282,7 +1282,7 @@ johann_baptist_i_of_muhldorf={
|
|||
dynasty=hartmann_dynasty #Hartmann
|
||||
father=johann_baptist_i_of_muhldorf
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2084.1.23={birth=yes}
|
||||
2118.3.15={death=yes}
|
||||
}
|
||||
|
|
@ -1292,7 +1292,7 @@ ilse_hartmann={
|
|||
dynasty=hartmann_dynasty #Hartmann
|
||||
father=johann_baptist_i_of_muhldorf
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2115.10.23={birth=yes}
|
||||
2154.2.9={death=yes}
|
||||
}
|
||||
|
|
@ -1302,7 +1302,7 @@ andreas_i_of_erding={
|
|||
name="Andreas"
|
||||
dynasty=stromer_dynasty #Stromer
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2286.11.18={birth=yes}
|
||||
2348.7.26={death=yes}
|
||||
}
|
||||
|
|
@ -1311,7 +1311,7 @@ david_i_of_erding={
|
|||
dynasty=stromer_dynasty #Stromer
|
||||
father=andreas_i_of_erding
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2317.2.1={birth=yes}
|
||||
2351.3.2={add_spouse=maria_i_of_bavaria}
|
||||
2359.8.15={death=yes}
|
||||
|
|
@ -1322,7 +1322,7 @@ albrecht_ix_of_bavaria={
|
|||
father=david_i_of_erding
|
||||
mother=maria_i_of_bavaria
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2354.12.1={birth=yes}
|
||||
2410.12.15={death=yes}
|
||||
}
|
||||
|
|
@ -1330,7 +1330,7 @@ markus_stromer={
|
|||
name="Markus"
|
||||
dynasty=stromer_dynasty #Stromer
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=albrecht_ix_of_bavaria
|
||||
2381.2.7={birth=yes}
|
||||
2409.4.17={death=yes}
|
||||
|
|
@ -1339,7 +1339,7 @@ albrecht_x_of_bavaria={
|
|||
name="Albrecht"
|
||||
dynasty=stromer_dynasty #Stromer
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=markus_stromer
|
||||
2408.10.24={birth=yes}
|
||||
2444.8.18={add_spouse=laetitia_eichstatter}
|
||||
|
|
@ -1349,7 +1349,7 @@ felix_iv_of_bavaria={
|
|||
name="Felix"
|
||||
dynasty=stromer_dynasty #Stromer
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=albrecht_x_of_bavaria
|
||||
mother=laetitia_eichstatter
|
||||
2445.9.27={birth=yes}
|
||||
|
|
@ -1359,7 +1359,7 @@ berta_stromer={
|
|||
name="Berta"
|
||||
dynasty=stromer_dynasty #Stromer
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
female=yes
|
||||
father=albrecht_x_of_bavaria
|
||||
mother=laetitia_eichstatter
|
||||
|
|
@ -1370,7 +1370,7 @@ stefan_iii_of_bavaria={
|
|||
name="Stefan"
|
||||
dynasty=stromer_dynasty #Stromer
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=felix_iv_of_bavaria
|
||||
trait=blind
|
||||
give_nickname=nick_the_blind
|
||||
|
|
@ -1382,7 +1382,7 @@ johanna_i_of_bavaria={
|
|||
female=yes
|
||||
dynasty=stromer_dynasty #Stromer
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=stefan_iii_of_bavaria
|
||||
mother=carmella_dworschak
|
||||
trait=twin
|
||||
|
|
@ -1398,7 +1398,7 @@ maximilian_i_of_bavaria={
|
|||
name="Maximilian"
|
||||
dynasty=stromer_dynasty #Stromer
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=stefan_iii_of_bavaria
|
||||
mother=carmella_dworschak
|
||||
trait=twin
|
||||
|
|
@ -1418,7 +1418,7 @@ benedikt_iv_of_bavaria={
|
|||
name="Benedikt"
|
||||
dynasty=stromer_dynasty #Stromer
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=stefan_iii_of_bavaria
|
||||
mother=carmella_dworschak
|
||||
trait=scarred
|
||||
|
|
@ -1434,7 +1434,7 @@ albrecht_xii_of_bavaria={
|
|||
father=stefan_iii_of_bavaria
|
||||
mother=carmella_dworschak
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=education_martial_4
|
||||
trait=wrathful
|
||||
trait=ambitious
|
||||
|
|
@ -1447,7 +1447,7 @@ stefan_iv_of_bavaria={
|
|||
name="Stefan"
|
||||
dynasty=stromer_dynasty #Stromer
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=albrecht_xii_of_bavaria
|
||||
mother=klara_weissbronner
|
||||
sexuality=homosexual
|
||||
|
|
@ -1463,7 +1463,7 @@ hannah_stromer={
|
|||
female=yes
|
||||
dynasty=stromer_dynasty #Stromer
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=albrecht_xii_of_bavaria
|
||||
mother=klara_weissbronner
|
||||
trait=education_diplomacy_2
|
||||
|
|
@ -1547,7 +1547,7 @@ stefan_ii_of_bavaria={
|
|||
name="Stefan"
|
||||
dynasty=sonntag_dynasty #Sonntag
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=peasant_leader
|
||||
2431.4.22={birth=yes}
|
||||
2457.1.23={add_spouse=clementia_eichstatter}
|
||||
|
|
@ -1559,7 +1559,7 @@ xaver_i_of_bavaria={
|
|||
name="Xaver"
|
||||
dynasty_house=house_hofer #Hofer
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=maximilian_i_of_bavaria
|
||||
trait=bastard
|
||||
give_nickname=nick_the_bastard
|
||||
|
|
@ -1572,7 +1572,7 @@ josef_i_of_weiden={
|
|||
name="Josef"
|
||||
dynasty=reger_dynasty #Reger
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=education_learning_3
|
||||
trait=diligent
|
||||
trait=cynical
|
||||
|
|
@ -1604,7 +1604,7 @@ karl_i_of_lower_bavaria={
|
|||
name="Karl"
|
||||
dynasty=lahm_dynasty #Lahm
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=education_diplomacy_4
|
||||
2479.3.21={birth=yes}
|
||||
2516.2.1={add_spouse=ada_mann}
|
||||
|
|
@ -1614,7 +1614,7 @@ ernst_i_of_lower_bavaria={
|
|||
name="Ernst"
|
||||
dynasty=lahm_dynasty #Lahm
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=education_stewardship_4
|
||||
trait=lifestyle_blademaster
|
||||
trait=cynical
|
||||
|
|
@ -1630,7 +1630,7 @@ maria_lahm={
|
|||
female=yes
|
||||
dynasty=lahm_dynasty #Lahm
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=education_diplomacy_3
|
||||
trait=beauty_good_2
|
||||
trait=weak
|
||||
|
|
@ -1650,7 +1650,7 @@ ada_mann={
|
|||
female=yes
|
||||
dynasty=mann_dynasty #Mann
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=education_stewardship_2
|
||||
2489.2.4={birth=yes}
|
||||
2585.2.1={death=yes}
|
||||
|
|
@ -1661,7 +1661,7 @@ dionys_i_of_ingolstadt={
|
|||
name="Dionys"
|
||||
dynasty_house=house_waldman #Waldman
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=bastard
|
||||
father=florian_i_of_ingolstadt
|
||||
2375.1.14={birth=yes}
|
||||
|
|
@ -1671,7 +1671,7 @@ nepomuk_i_of_ingolstadt={
|
|||
name="Nepomuk"
|
||||
dynasty_house=house_waldman #Waldman
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=dionys_i_of_ingolstadt
|
||||
2405.4.2={birth=yes}
|
||||
2482.6.29={death=yes}
|
||||
|
|
@ -1680,7 +1680,7 @@ ignaz_waldman={
|
|||
name="Ignaz"
|
||||
dynasty_house=house_waldman #Waldman
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=nepomuk_i_of_ingolstadt
|
||||
2426.6.3={birth=yes}
|
||||
2481.5.2={death=yes}
|
||||
|
|
@ -1689,7 +1689,7 @@ franz_michael_waldman={
|
|||
name="Franz_spc_Michael"
|
||||
dynasty_house=house_waldman #Waldman
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=ignaz_waldman
|
||||
2446.7.21={birth=yes}
|
||||
2476.7.15={death=yes}
|
||||
|
|
@ -1698,7 +1698,7 @@ max_josef_i_of_ingolstadt={
|
|||
name="Max-Josef"
|
||||
dynasty_house=house_waldman #Waldman
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=franz_michael_waldman
|
||||
2468.9.2={birth=yes}
|
||||
2531.11.14={death=yes}
|
||||
|
|
@ -1707,7 +1707,7 @@ anton_i_of_ingolstadt={
|
|||
name="Anton" #Frankenstein + Illuminatus
|
||||
dynasty_house=house_waldman #Waldman
|
||||
culture=bavarian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=max_josef_i_of_ingolstadt
|
||||
trait=education_learning_3
|
||||
trait=mystic
|
||||
|
|
@ -1721,7 +1721,7 @@ friz_i_of_augsburg={
|
|||
name="Fritz"
|
||||
dynasty=fugger_dynasty #Lochner
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=education_learning_3
|
||||
trait=wrathful
|
||||
trait=brave
|
||||
|
|
@ -1952,7 +1952,7 @@ daniel_i_of_swabia={
|
|||
dynasty=lechge_dynasty #von Lechge
|
||||
father=burkhard_i_of_ulm
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2296.11.6={birth=yes}
|
||||
2330.10.30={death=yes}
|
||||
}
|
||||
|
|
@ -2420,7 +2420,7 @@ franz_i_of_karlsruhe={
|
|||
name="Franz"
|
||||
dynasty=pfeiffer_dynasty #Pfeiffer
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2327.1.20={birth=yes}
|
||||
2388.1.1={add_spouse=johanna_wendlenger}
|
||||
2407.11.26={death=yes}
|
||||
|
|
@ -2429,7 +2429,7 @@ martin_pfeiffer={
|
|||
name="Martin"
|
||||
dynasty=pfeiffer_dynasty #Pfeiffer
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=franz_i_of_karlsruhe
|
||||
mother=johanna_wendlenger
|
||||
2358.8.8={birth=yes}
|
||||
|
|
@ -2440,7 +2440,7 @@ burkhard_iii_of_swabia={
|
|||
name="Burkhard"
|
||||
dynasty=pfeiffer_dynasty #Pfeiffer
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=martin_pfeiffer
|
||||
mother=tina_bruderle
|
||||
2383.10.17={birth=yes}
|
||||
|
|
@ -2451,7 +2451,7 @@ friedemann_pfeiffer={
|
|||
name="Friedemann"
|
||||
dynasty=pfeiffer_dynasty #Pfeiffer
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=burkhard_iii_of_swabia
|
||||
mother=ursel_wendlenger
|
||||
2406.9.16={birth=yes}
|
||||
|
|
@ -2463,7 +2463,7 @@ franz_i_of_swabia={
|
|||
name="Franz"
|
||||
dynasty=weissbronner_dynasty #Weissbronner
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=education_diplomacy_3
|
||||
trait=lifestyle_gardener
|
||||
trait=compassionate
|
||||
|
|
@ -2479,7 +2479,7 @@ eiges_vii_of_swabia={
|
|||
name="Eiges"
|
||||
dynasty=weissbronner_dynasty #Weissbronner
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=franz_i_of_swabia
|
||||
mother=lydia_wendlenger_2
|
||||
2445.6.13={birth=yes}
|
||||
|
|
@ -2489,7 +2489,7 @@ gotthilf_i_of_swabia={
|
|||
name="Gotthilf"
|
||||
dynasty=weissbronner_dynasty #Weissbronner
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=eiges_vii_of_swabia
|
||||
mother=marta_hastenteufel
|
||||
trait=education_stewardship_3
|
||||
|
|
@ -2504,7 +2504,7 @@ franz_weissbronner={
|
|||
name="Franz"
|
||||
dynasty=weissbronner_dynasty #Weissbronner
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=gotthilf_i_of_swabia
|
||||
trait=twin
|
||||
2483.8.24={birth=yes}
|
||||
|
|
@ -2516,7 +2516,7 @@ isabella_weissbronner={
|
|||
female=yes
|
||||
dynasty=weissbronner_dynasty #Weissbronner
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=franz_weissbronner
|
||||
mother=helene_coudenhove
|
||||
2509.5.25={birth=yes}
|
||||
|
|
@ -2526,7 +2526,7 @@ eberhard_i_of_swabia={
|
|||
name="Eberhard"
|
||||
dynasty=weissbronner_dynasty #Weissbronner
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=franz_weissbronner
|
||||
mother=helene_coudenhove
|
||||
2512.10.13={birth=yes}
|
||||
|
|
@ -2536,7 +2536,7 @@ markus_i_of_swabia={
|
|||
name="Markus"
|
||||
dynasty=weissbronner_dynasty #Weissbronner
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=eberhard_i_of_swabia
|
||||
2535.6.10={birth=yes}
|
||||
2554.5.15={death=yes}
|
||||
|
|
@ -2623,7 +2623,7 @@ xaver_i_of_ravensburg={ #Killer of Burkhard III
|
|||
name="Xaver"
|
||||
dynasty=dornier_dynasty #Dornier
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=deceitful
|
||||
trait=ambitious
|
||||
trait=callous
|
||||
|
|
@ -2635,7 +2635,7 @@ pius_i_of_ravensburg={
|
|||
name="Pius"
|
||||
dynasty=dornier_dynasty #Dornier
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=xaver_i_of_ravensburg
|
||||
mother=vera_bruderle
|
||||
2440.1.20={birth=yes}
|
||||
|
|
@ -2645,7 +2645,7 @@ jochem_i_of_ravensburg={
|
|||
name="Jochem"
|
||||
dynasty=dornier_dynasty #Dornier
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=pius_i_of_ravensburg
|
||||
2477.9.4={birth=yes}
|
||||
2516.11.16={death=yes}
|
||||
|
|
@ -2654,7 +2654,7 @@ gebhard_i_of_ravensburg={
|
|||
name="Gebhard"
|
||||
dynasty=dornier_dynasty #Dornier
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=jochem_i_of_ravensburg
|
||||
2511.12.20={birth=yes}
|
||||
2527.12.10={add_spouse=isabella_weissbronner}
|
||||
|
|
@ -2664,7 +2664,7 @@ jurgen_i_of_ravensburg={
|
|||
name="J_u_uml_rgen"
|
||||
dynasty=dornier_dynasty #Dornier
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=gebhard_i_of_ravensburg
|
||||
mother=isabella_weissbronner
|
||||
trait=education_learning_3
|
||||
|
|
@ -2683,7 +2683,7 @@ jochem_i_of_karlsruhe={
|
|||
name="Jochem"
|
||||
dynasty_house=house_hastenteufel #Hastenteufel
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=friedemann_pfeiffer
|
||||
trait=bastard
|
||||
2423.1.20={birth=yes}
|
||||
|
|
@ -2694,7 +2694,7 @@ marta_hastenteufel={
|
|||
female=yes
|
||||
dynasty_house=house_hastenteufel #Hastenteufel
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=jochem_i_of_karlsruhe
|
||||
2441.5.16={birth=yes}
|
||||
2462.6.13={add_spouse=eiges_vii_of_swabia}
|
||||
|
|
@ -2704,7 +2704,7 @@ herbert_hastenteufel={
|
|||
name="Herbert"
|
||||
dynasty_house=house_hastenteufel #Hastenteufel
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=jochem_i_of_karlsruhe
|
||||
2447.3.25={birth=yes}
|
||||
2474.12.11={death=yes}
|
||||
|
|
@ -2713,7 +2713,7 @@ edwin_i_of_karlsruhe={
|
|||
name="Edwin"
|
||||
dynasty_house=house_hastenteufel #Hastenteufel
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=herbert_hastenteufel
|
||||
2466.6.16={birth=yes}
|
||||
2495.7.6={death=yes}
|
||||
|
|
@ -2722,7 +2722,7 @@ wigulaus_i_of_karlsruhe={
|
|||
name="Wigul_a_uml_us"
|
||||
dynasty_house=house_hastenteufel #Hastenteufel
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=edwin_i_of_karlsruhe
|
||||
2487.11.23={birth=yes}
|
||||
2534.12.11={death=yes}
|
||||
|
|
@ -2731,7 +2731,7 @@ erwin_i_of_karlsruhe={
|
|||
name="Erwin"
|
||||
dynasty_house=house_hastenteufel #Hastenteufel
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=wigulaus_i_of_karlsruhe
|
||||
trait=education_stewardship_3
|
||||
trait=diligent
|
||||
|
|
@ -2746,7 +2746,7 @@ otto_i_of_breisgau={
|
|||
name="Otto"
|
||||
dynasty=hohenheim_dynasty #von Hohenheim
|
||||
culture=swabian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=education_learning_3
|
||||
trait=lifestyle_mystic
|
||||
trait=intellect_good_2
|
||||
|
|
@ -2761,7 +2761,7 @@ wolfgang_i_of_salzburg={
|
|||
name="Wolfgang"
|
||||
dynasty=vigauner_dynasty #Vigauner
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2211.5.24={birth=yes}
|
||||
2250.2.21={death=yes}
|
||||
}
|
||||
|
|
@ -2769,7 +2769,7 @@ alois_i_of_bavaria={
|
|||
name="Alois"
|
||||
dynasty=vigauner_dynasty #Vigauner
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=wolfgang_i_of_salzburg
|
||||
give_nickname=nick_the_zitherplayer
|
||||
2248.6.14={birth=yes}
|
||||
|
|
@ -2782,7 +2782,7 @@ albert_vii_of_bavaria={
|
|||
father=alois_i_of_bavaria
|
||||
mother=maria_burkhardinger
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2271.5.31={birth=yes}
|
||||
2330.5.1={death=yes}
|
||||
}
|
||||
|
|
@ -2791,7 +2791,7 @@ albert_viii_of_bavaria={
|
|||
dynasty=vigauner_dynasty #Vigauner
|
||||
father=albert_vii_of_bavaria
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=wounded_3
|
||||
trait=pneumonic
|
||||
2293.7.15={birth=yes}
|
||||
|
|
@ -2801,7 +2801,7 @@ jakob_i_of_innviertel={
|
|||
name="Jakob"
|
||||
dynasty=vigauner_dynasty #Vigauner
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=wolfgang_i_of_salzburg
|
||||
2257.3.24={birth=yes}
|
||||
2304.12.16={death=yes}
|
||||
|
|
@ -2810,7 +2810,7 @@ gregor_i_of_innviertel={
|
|||
name="Gregor"
|
||||
dynasty=vigauner_dynasty #Vigauner
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=jakob_i_of_innviertel
|
||||
2288.5.16={birth=yes}
|
||||
2329.1.13={death=yes}
|
||||
|
|
@ -2819,7 +2819,7 @@ ulrich_i_of_salzburg={
|
|||
name="Ulrich"
|
||||
dynasty=vigauner_dynasty #Vigauner
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=gregor_i_of_innviertel
|
||||
2311.8.3={birth=yes}
|
||||
2376.7.27={death=yes}
|
||||
|
|
@ -2828,7 +2828,7 @@ monika_i_of_salzburg={
|
|||
name="Monika"
|
||||
dynasty=vigauner_dynasty #Vigauner
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
female=yes
|
||||
father=ulrich_i_of_salzburg
|
||||
2329.1.23={birth=yes}
|
||||
|
|
@ -2840,7 +2840,7 @@ manuel_i_of_upper_austria={
|
|||
name="Manuel"
|
||||
dynasty=dworschak_dynasty #Dworschak
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2393.9.27={birth=yes}
|
||||
2440.10.29={death=yes}
|
||||
}
|
||||
|
|
@ -2848,7 +2848,7 @@ sebastian_i_of_upper_austria={
|
|||
name="Sebastian"
|
||||
dynasty=dworschak_dynasty #Dworschak
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=manuel_i_of_upper_austria
|
||||
mother=katharina_i_of_hausruckviertel
|
||||
2421.11.15={birth=yes}
|
||||
|
|
@ -2858,7 +2858,7 @@ leopold_i_of_upper_austria={
|
|||
name="Leopold"
|
||||
dynasty=dworschak_dynasty #Dworschak
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=sebastian_i_of_upper_austria
|
||||
2451.12.4={birth=yes}
|
||||
2504.1.27={death=yes}
|
||||
|
|
@ -2868,7 +2868,7 @@ carmella_dworschak={
|
|||
female=yes
|
||||
dynasty=dworschak_dynasty #Dworschak
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=leopold_i_of_upper_austria
|
||||
2471.10.3={birth=yes}
|
||||
2491.12.21={add_spouse=stefan_iii_of_bavaria}
|
||||
|
|
@ -2879,7 +2879,7 @@ maria_elizabeth_dworschak={
|
|||
female=yes
|
||||
dynasty=dworschak_dynasty #Dworschak
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=leopold_i_of_upper_austria
|
||||
2474.11.19={birth=yes}
|
||||
2494.5.22={add_spouse=adalbert_i_of_upper_austria}
|
||||
|
|
@ -2889,7 +2889,7 @@ salvator_i_of_upper_austria={
|
|||
name="Salvator"
|
||||
dynasty=dworschak_dynasty #Dworschak
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=sebastian_i_of_upper_austria
|
||||
2455.12.29={birth=yes}
|
||||
2472.2.10={add_spouse=berta_stromer}
|
||||
|
|
@ -2899,7 +2899,7 @@ adalbert_i_of_upper_austria={
|
|||
name="Adalbert"
|
||||
dynasty=dworschak_dynasty #Dworschak
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=salvator_i_of_upper_austria
|
||||
mother=berta_stromer
|
||||
2473.2.18={birth=yes}
|
||||
|
|
@ -2909,7 +2909,7 @@ valentin_i_of_upper_austria={
|
|||
name="Valentin"
|
||||
dynasty=dworschak_dynasty #Dworschak
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=adalbert_i_of_upper_austria
|
||||
mother=maria_elizabeth_dworschak
|
||||
2498.8.31={birth=yes}
|
||||
|
|
@ -2920,7 +2920,7 @@ helga_dworschak={
|
|||
female=yes
|
||||
dynasty=dworschak_dynasty #Dworschak
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=adalbert_i_of_upper_austria
|
||||
mother=maria_elizabeth_dworschak
|
||||
2500.9.28={birth=yes}
|
||||
|
|
@ -2931,7 +2931,7 @@ ferdinand_i_of_upper_austria={
|
|||
name="Ferdinand"
|
||||
dynasty=dworschak_dynasty #Dworschak
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=valentin_i_of_upper_austria
|
||||
trait=education_diplomacy_4
|
||||
trait=beauty_bad_1
|
||||
|
|
@ -2946,7 +2946,7 @@ michael_dworschak={
|
|||
name="Michael"
|
||||
dynasty=dworschak_dynasty #Dworschak
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=salvator_i_of_upper_austria
|
||||
mother=berta_stromer
|
||||
2476.9.14={birth=yes}
|
||||
|
|
@ -2956,7 +2956,7 @@ meinhard_i_of_hausruckviertel={
|
|||
name="Meinhard"
|
||||
dynasty=dworschak_dynasty #Dworschak
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=michael_dworschak
|
||||
2501.8.14={birth=yes}
|
||||
2578.7.29={death=yes}
|
||||
|
|
@ -2966,7 +2966,7 @@ grete_dworschak={
|
|||
female=yes
|
||||
dynasty=dworschak_dynasty #Dworschak
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=meinhard_i_of_hausruckviertel
|
||||
mother=helga_dworschak
|
||||
2520.10.2={birth=yes}
|
||||
|
|
@ -2977,7 +2977,7 @@ siegfried_dworschak={
|
|||
name="Siegfried"
|
||||
dynasty=dworschak_dynasty #Dworschak
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=meinhard_i_of_hausruckviertel
|
||||
mother=helga_dworschak
|
||||
2521.11.30={birth=yes}
|
||||
|
|
@ -2987,7 +2987,7 @@ klaus_dworschak={
|
|||
name="Klaus"
|
||||
dynasty=dworschak_dynasty #Dworschak
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=meinhard_i_of_hausruckviertel
|
||||
mother=helga_dworschak
|
||||
2528.11.7={birth=yes}
|
||||
|
|
@ -2997,7 +2997,7 @@ august_dworschak={
|
|||
name="August"
|
||||
dynasty=dworschak_dynasty #Dworschak
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=meinhard_i_of_hausruckviertel
|
||||
mother=helga_dworschak
|
||||
2536.12.4={birth=yes}
|
||||
|
|
@ -3010,7 +3010,7 @@ radegund_i_of_muhlviertel={
|
|||
female=yes
|
||||
dynasty=jager_dynasty #Jäger
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=zealous
|
||||
trait=brave
|
||||
trait=humble
|
||||
|
|
@ -3025,7 +3025,7 @@ gunther_i_of_hausruckviertel={
|
|||
name="G_u_uml_nther"
|
||||
dynasty=werndl_dynasty #Werndl
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2320.5.28={birth=yes}
|
||||
2349.2.17={add_spouse=monika_i_of_salzburg}
|
||||
2380.1.4={death=yes}
|
||||
|
|
@ -3034,7 +3034,7 @@ leopold_i_of_hausruckviertel={
|
|||
name="Leopold"
|
||||
dynasty=werndl_dynasty #Werndl
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=gunther_i_of_hausruckviertel
|
||||
mother=monika_i_of_salzburg
|
||||
2351.5.9={birth=yes}
|
||||
|
|
@ -3044,7 +3044,7 @@ gottlieb_i_of_salzburg={
|
|||
name="Gottlieb"
|
||||
dynasty=werndl_dynasty #Werndl
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=leopold_i_of_hausruckviertel
|
||||
2369.1.27={birth=yes}
|
||||
2404.12.5={death=yes}
|
||||
|
|
@ -3053,7 +3053,7 @@ dietmar_i_of_salzburg={
|
|||
name="Dietmar"
|
||||
dynasty=werndl_dynasty #Werndl
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=gottlieb_i_of_salzburg
|
||||
2397.10.14={birth=yes}
|
||||
2489.1.31={death=yes}
|
||||
|
|
@ -3062,7 +3062,7 @@ erich_maria_i_of_salzburg={
|
|||
name="Erich_spc_Maria"
|
||||
dynasty=werndl_dynasty #Werndl
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=dietmar_i_of_salzburg
|
||||
2436.6.8={birth=yes}
|
||||
2490.12.25={death=yes}
|
||||
|
|
@ -3071,7 +3071,7 @@ gottfried_i_of_salzburg={
|
|||
name="Gottfried"
|
||||
dynasty=werndl_dynasty #Werndl
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=erich_maria_i_of_salzburg
|
||||
2468.3.9={birth=yes}
|
||||
2508.5.25={death=yes}
|
||||
|
|
@ -3080,7 +3080,7 @@ paul_johannes_i_of_salzburg={
|
|||
name="Paul_spc_Johannes"
|
||||
dynasty=werndl_dynasty #Werndl
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=gottfried_i_of_salzburg
|
||||
2497.3.14={birth=yes}
|
||||
2552.2.8={death=yes}
|
||||
|
|
@ -3089,7 +3089,7 @@ sebastian_i_of_salzburg={
|
|||
name="Sebastian"
|
||||
dynasty=werndl_dynasty #Werndl
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=paul_johannes_i_of_salzburg
|
||||
trait=education_stewardship_3
|
||||
trait=gregarious
|
||||
|
|
@ -3103,7 +3103,7 @@ norbert_i_of_hausruckviertel={
|
|||
name="Norbert"
|
||||
dynasty=werndl_dynasty #Werndl
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=leopold_i_of_hausruckviertel
|
||||
2373.9.4={birth=yes}
|
||||
2416.6.27={death=yes}
|
||||
|
|
@ -3113,7 +3113,7 @@ katharina_i_of_hausruckviertel={
|
|||
female=yes
|
||||
dynasty=werndl_dynasty #Werndl
|
||||
culture=austrian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
father=norbert_i_of_hausruckviertel
|
||||
2394.8.10={birth=yes}
|
||||
2414.2.1={add_spouse=manuel_i_of_upper_austria}
|
||||
|
|
@ -3134,7 +3134,7 @@ konstantin_i_of_kraichgau={
|
|||
name="Konstantin"
|
||||
dynasty=bruderle_dynasty #Brüderle
|
||||
culture=palatine
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2283.12.25={birth=yes}
|
||||
2338.1.8={death=yes}
|
||||
}
|
||||
|
|
@ -3143,7 +3143,7 @@ simon_i_of_kraichgau={
|
|||
dynasty=bruderle_dynasty #Brüderle
|
||||
father=konstantin_i_of_kraichgau
|
||||
culture=palatine
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2309.8.20={birth=yes}
|
||||
2340.1.27={death=yes}
|
||||
}
|
||||
|
|
@ -3152,7 +3152,7 @@ heinrich_i_of_kraichgau={
|
|||
dynasty=bruderle_dynasty #Brüderle
|
||||
father=simon_i_of_kraichgau
|
||||
culture=palatine
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2330.3.1={birth=yes}
|
||||
2356.1.1={add_spouse=lydia_wendlenger}
|
||||
2399.5.27={death=yes}
|
||||
|
|
@ -3163,7 +3163,7 @@ simon_i_of_swabia={
|
|||
father=heinrich_i_of_kraichgau
|
||||
mother=lydia_wendlenger
|
||||
culture=palatine
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2361.3.1={birth=yes}
|
||||
2427.2.4={death={death_reason=death_battle killer=burkhard_iii_of_swabia}}
|
||||
}
|
||||
|
|
@ -3174,7 +3174,7 @@ tina_bruderle={
|
|||
father=heinrich_i_of_kraichgau
|
||||
mother=lydia_wendlenger
|
||||
culture=palatine
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2362.3.17={birth=yes}
|
||||
2422.6.26={death=yes}
|
||||
}
|
||||
|
|
@ -3184,7 +3184,7 @@ benedikt_bruderle={
|
|||
father=heinrich_i_of_kraichgau
|
||||
mother=lydia_wendlenger
|
||||
culture=palatine
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2366.5.31={birth=yes}
|
||||
2391.12.12={death=yes}
|
||||
}
|
||||
|
|
@ -3193,7 +3193,7 @@ volker_bruderle={
|
|||
dynasty=bruderle_dynasty #Brüderle
|
||||
father=benedikt_bruderle
|
||||
culture=palatine
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2387.4.9={birth=yes}
|
||||
2440.5.20={death={death_reason=death_duel killer=jochem_i_of_karlsruhe}}
|
||||
}
|
||||
|
|
@ -3203,7 +3203,7 @@ vera_bruderle={
|
|||
dynasty=bruderle_dynasty #Brüderle
|
||||
father=volker_bruderle
|
||||
culture=palatine
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2418.4.30={birth=yes}
|
||||
2475.9.18={death=yes}
|
||||
}
|
||||
|
|
@ -3257,7 +3257,7 @@ marlene_kreile={
|
|||
father=albrecht_iii_of_bavaria
|
||||
mother=adelgund_leeb
|
||||
culture=franconian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2142.1.3={birth=yes}
|
||||
2190.12.14={death=yes}
|
||||
}
|
||||
|
|
@ -3267,7 +3267,7 @@ albrecht_iv_of_bavaria={
|
|||
father=albrecht_iii_of_bavaria
|
||||
mother=adelgund_leeb
|
||||
culture=franconian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2145.10.4={birth=yes}
|
||||
2163.9.29={death=yes}
|
||||
}
|
||||
|
|
@ -3276,7 +3276,7 @@ albrecht_v_of_bavaria={
|
|||
dynasty=kreile_dynasty #Kreile
|
||||
father=albrecht_iv_of_bavaria
|
||||
culture=franconian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=consumption
|
||||
2163.8.12={birth=yes}
|
||||
2174.9.1={death=yes}
|
||||
|
|
@ -3480,7 +3480,7 @@ karl_heinz_i_of_schwandorf={
|
|||
dynasty=kreile_dynasty #Kreile
|
||||
father=albrecht_viii_of_the_upper_palatinate
|
||||
culture=franconian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=bastard
|
||||
2499.3.8={birth=yes}
|
||||
2519.11.22={add_spouse=emmy_von_lechge}
|
||||
|
|
@ -3492,7 +3492,7 @@ albrecht_v_of_schwandorf={
|
|||
father=karl_heinz_i_of_schwandorf
|
||||
mother=emmy_von_lechge
|
||||
culture=franconian
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
2527.12.21={birth=yes}
|
||||
2554.1.1={
|
||||
effect={
|
||||
|
|
@ -3556,7 +3556,7 @@ eduard_nguyen_bloch_alsace={
|
|||
name="Eduard"
|
||||
dynasty=nguyen_bloch_dynasty #Nguyen-Bloch
|
||||
culture=elsasse
|
||||
religion=teutonic
|
||||
religion=roman_catholic
|
||||
trait=education_martial_3
|
||||
trait=just
|
||||
trait=greedy
|
||||
|
|
|
|||
|
|
@ -380,4 +380,133 @@ scandinavia0020 = {
|
|||
2600.1.1 = {
|
||||
death = yes
|
||||
}
|
||||
}
|
||||
|
||||
scandinavia0021 = {
|
||||
name = "Halla"
|
||||
dynasty = wrede_dynasty
|
||||
religion = "nobelian"
|
||||
culture = ostsk
|
||||
female = yes
|
||||
trait = education_diplomacy_1
|
||||
trait = family_first
|
||||
trait = trusting
|
||||
trait = generous
|
||||
trait = lazy
|
||||
2526.5.1 = {
|
||||
birth = yes
|
||||
}
|
||||
2600.1.1 = {
|
||||
death = yes
|
||||
}
|
||||
}
|
||||
|
||||
scandinavia0022 = {
|
||||
name = "Tyke"
|
||||
dynasty = benkestokk_dynasty
|
||||
religion = "nobelian"
|
||||
culture = ostsk
|
||||
trait = education_stewardship_2
|
||||
trait = administrator
|
||||
trait = paranoid
|
||||
trait = lustful
|
||||
trait = stubborn
|
||||
2510.2.13 = {
|
||||
birth = yes
|
||||
}
|
||||
2600.1.1 = {
|
||||
death = yes
|
||||
}
|
||||
}
|
||||
|
||||
scandinavia0023 = {
|
||||
name = "Yrsa"
|
||||
dynasty = aspa_dynasty
|
||||
religion = "nobelian"
|
||||
culture = vestsk
|
||||
female = yes
|
||||
trait = education_diplomacy_3
|
||||
trait = paranoid
|
||||
trait = honest
|
||||
trait = temperate
|
||||
2519.10.19 = {
|
||||
birth = yes
|
||||
}
|
||||
2600.1.1 = {
|
||||
death = yes
|
||||
}
|
||||
}
|
||||
|
||||
scandinavia0024 = {
|
||||
name = "þóra"
|
||||
dynasty = hjerne_dynasty
|
||||
religion = "viking"
|
||||
culture = vestsk
|
||||
female = yes
|
||||
trait = education_stewardship_2
|
||||
trait = administrator
|
||||
trait = zealous
|
||||
trait = shy
|
||||
trait = lazy
|
||||
2512.3.12 = {
|
||||
birth = yes
|
||||
}
|
||||
2600.1.1 = {
|
||||
death = yes
|
||||
}
|
||||
}
|
||||
|
||||
scandinavia0025 = {
|
||||
name = "Vigdís"
|
||||
dynasty = traette_dynasty
|
||||
religion = "viking"
|
||||
culture = vestsk
|
||||
female = yes
|
||||
trait = education_intrigue_4
|
||||
trait = schemer
|
||||
trait = seducer
|
||||
trait = patient
|
||||
trait = gregarious
|
||||
trait = greedy
|
||||
2505.7.5 = {
|
||||
birth = yes
|
||||
}
|
||||
2600.1.1 = {
|
||||
death = yes
|
||||
}
|
||||
}
|
||||
|
||||
scandinavia0026 = {
|
||||
name = "Ölvir"
|
||||
dynasty = nott_dynasty
|
||||
religion = "viking"
|
||||
culture = vestsk
|
||||
trait = education_diplomacy_3
|
||||
trait = diligent
|
||||
trait = brave
|
||||
trait = fickle
|
||||
2529.12.3 = {
|
||||
birth = yes
|
||||
}
|
||||
2600.1.1 = {
|
||||
death = yes
|
||||
}
|
||||
}
|
||||
|
||||
scandinavia0027 = {
|
||||
name = "Álfgeir"
|
||||
dynasty = ulfhilde_dynasty
|
||||
religion = "viking"
|
||||
culture = vestsk
|
||||
trait = education_diplomacy_2
|
||||
trait = august
|
||||
trait = ambitious
|
||||
trait = trusting
|
||||
trait = fickle
|
||||
2519.8.13 = {
|
||||
birth = yes
|
||||
}
|
||||
2600.1.1 = {
|
||||
death = yes
|
||||
}
|
||||
}
|
||||
|
|
@ -134,7 +134,7 @@
|
|||
###c_vorarlberg
|
||||
2787 = {
|
||||
culture = aleman
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = tribal_holding
|
||||
}
|
||||
2790 = {
|
||||
|
|
@ -144,14 +144,14 @@
|
|||
###c_innsbruck
|
||||
2950 = {
|
||||
culture = austrian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
special_building_slot = schwaz_mines_01
|
||||
}
|
||||
2953 = {
|
||||
holding = tribal_holding
|
||||
culture = austrian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
}
|
||||
2976 = {
|
||||
holding = city_holding
|
||||
|
|
@ -165,7 +165,7 @@
|
|||
###c_imst
|
||||
2782 = {
|
||||
culture = aleman
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = none
|
||||
}
|
||||
9706 = {
|
||||
|
|
@ -174,7 +174,7 @@
|
|||
2781 = {
|
||||
holding = tribal_holding
|
||||
culture = aleman
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
}
|
||||
9705 = {
|
||||
holding = none
|
||||
|
|
@ -182,7 +182,7 @@
|
|||
###c_lienz
|
||||
3134 = {
|
||||
culture = austrian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2951 = {
|
||||
|
|
@ -216,7 +216,7 @@
|
|||
###c_bozan
|
||||
2498 = {
|
||||
culture = austrian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2954 = {
|
||||
|
|
@ -224,7 +224,7 @@
|
|||
}
|
||||
2955 = {
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2952 = {
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@
|
|||
holding = city_holding
|
||||
}
|
||||
##d_gelre
|
||||
###c_guelders
|
||||
###c_nijmegen
|
||||
2103 = {
|
||||
culture = dutch
|
||||
religion = concordianist
|
||||
|
|
@ -286,7 +286,7 @@
|
|||
holding = city_holding
|
||||
}
|
||||
}
|
||||
##d_julich
|
||||
##d_cologne
|
||||
###c_aachen
|
||||
2092 = {
|
||||
culture = rhinelander
|
||||
|
|
|
|||
|
|
@ -573,7 +573,7 @@
|
|||
###c_salzburg
|
||||
2975 = {
|
||||
culture = austrian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2978 = {
|
||||
|
|
@ -587,14 +587,14 @@
|
|||
}
|
||||
2985 = {
|
||||
culture = austrian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
##d_upper_austria
|
||||
###c_linz
|
||||
3131 = {
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
867.1.1 = {
|
||||
buildings = {
|
||||
|
|
@ -611,23 +611,23 @@
|
|||
3132 = {
|
||||
holding = castle_holding
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
}
|
||||
###c_muhlviertel
|
||||
3072 = {
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
3073 = {
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
###c_innviertel
|
||||
2973 = {
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2972 = {
|
||||
|
|
@ -642,7 +642,7 @@
|
|||
###c_hausruckviertel
|
||||
3133 = {
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2971 = {
|
||||
|
|
@ -655,7 +655,7 @@
|
|||
###c_graz
|
||||
3117 = {
|
||||
culture = NEOW_carantanian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
950.1.1 = {
|
||||
culture = austrian
|
||||
|
|
@ -685,7 +685,7 @@
|
|||
###c_murzzuschlag
|
||||
3121 = {
|
||||
culture = NEOW_carantanian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
950.1.1 = {
|
||||
culture = austrian
|
||||
|
|
@ -697,7 +697,7 @@
|
|||
###c_murau
|
||||
3114 = {
|
||||
culture = NEOW_carantanian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
950.1.1 = {
|
||||
culture = austrian
|
||||
|
|
@ -709,7 +709,7 @@
|
|||
###c_knittelfeld
|
||||
3125 = {
|
||||
culture = NEOW_carantanian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
950.1.1 = {
|
||||
culture = austrian
|
||||
|
|
@ -724,7 +724,7 @@
|
|||
###c_liezen
|
||||
3130 = {
|
||||
culture = austrian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
3126 = {
|
||||
|
|
@ -752,7 +752,7 @@
|
|||
###c_vienna
|
||||
3086 = {
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
3085 = {
|
||||
|
|
@ -773,7 +773,7 @@
|
|||
###c_wiener_neustadt
|
||||
3092 = {
|
||||
culture = NEOW_carantanian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
950.1.1 = {
|
||||
culture = bavarian
|
||||
|
|
@ -781,7 +781,7 @@
|
|||
}
|
||||
3091 = {
|
||||
culture = NEOW_carantanian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
950.1.1 = {
|
||||
culture = bavarian
|
||||
|
|
@ -802,7 +802,7 @@
|
|||
###c_hohenau
|
||||
3081 = {
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
3079 = {
|
||||
|
|
@ -820,7 +820,7 @@
|
|||
###c_sankt_polten
|
||||
3089 = {
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = church_holding
|
||||
}
|
||||
3122 = {
|
||||
|
|
@ -835,7 +835,7 @@
|
|||
###c_spitz
|
||||
3090 = {
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
3076 = {
|
||||
|
|
@ -850,7 +850,7 @@
|
|||
###c_amstetten
|
||||
3093 = {
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
3124 = {
|
||||
|
|
@ -859,7 +859,7 @@
|
|||
###c_krems
|
||||
3088 = {
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
3075 = {
|
||||
|
|
@ -874,7 +874,7 @@
|
|||
###c_burgenland
|
||||
9778 = {
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
9779 = {
|
||||
|
|
@ -936,7 +936,7 @@
|
|||
###c_strassburg
|
||||
2721 = {
|
||||
culture = elsasse
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2719 = {
|
||||
|
|
@ -948,7 +948,7 @@
|
|||
###c_haguenau
|
||||
2722 = {
|
||||
culture = elsasse
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = city_holding
|
||||
}
|
||||
2724 = {
|
||||
|
|
@ -960,12 +960,12 @@
|
|||
###c_sundgau
|
||||
2717 = {
|
||||
culture = elsasse
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2058 = {
|
||||
culture = elsasse
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2720 = {
|
||||
|
|
@ -983,7 +983,7 @@
|
|||
###c_puttlingen
|
||||
2710 = {
|
||||
culture = kuhjung
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2725 = {
|
||||
|
|
@ -996,7 +996,7 @@
|
|||
###c_cologne
|
||||
2088 = {
|
||||
culture = rhinelander
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
special_building_slot = holy_site_cologne_cathedral_01
|
||||
867.1.1 = {
|
||||
|
|
@ -1040,7 +1040,7 @@
|
|||
###c_dusseldorf
|
||||
2433 = {
|
||||
culture = rhinelander
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2679 = {
|
||||
|
|
@ -1113,7 +1113,7 @@
|
|||
###c_saarbrucken
|
||||
2704 = {
|
||||
culture = palatine
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2726 = {
|
||||
|
|
@ -1135,7 +1135,7 @@
|
|||
###c_mainz
|
||||
2694 = {
|
||||
culture = palatine
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
1066.1.1 = {
|
||||
buildings = {
|
||||
|
|
@ -1187,7 +1187,7 @@
|
|||
###c_mannheim
|
||||
2732 = {
|
||||
culture = palatine
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2730 = {
|
||||
|
|
@ -1196,12 +1196,12 @@
|
|||
###c_kaiserslautern
|
||||
2731 = {
|
||||
culture = palatine
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2729 = {
|
||||
culture = kuhjung
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2728 = {
|
||||
|
|
@ -1521,7 +1521,7 @@
|
|||
###c_sigmaringen
|
||||
2767 = {
|
||||
culture = swabian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2773 = {
|
||||
|
|
@ -1557,7 +1557,7 @@
|
|||
###c_ravensburg
|
||||
2786 = {
|
||||
culture = aleman
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2785 = {
|
||||
|
|
@ -1582,7 +1582,7 @@
|
|||
###c_karlsruhe
|
||||
9775 = {
|
||||
culture = swabian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2746 = {
|
||||
|
|
@ -1594,7 +1594,7 @@
|
|||
###c_heidelberg
|
||||
2733 = {
|
||||
culture = palatine
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2735 = {
|
||||
|
|
@ -1615,7 +1615,7 @@
|
|||
###c_kraichgau
|
||||
9776 = {
|
||||
culture = swabian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2747 = {
|
||||
|
|
@ -1628,7 +1628,7 @@
|
|||
###c_breisgau
|
||||
2751 = {
|
||||
culture = elsasse
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2750 = {
|
||||
|
|
@ -1673,7 +1673,7 @@
|
|||
###c_munchen
|
||||
2945 = {
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2946 = {
|
||||
|
|
@ -1724,7 +1724,7 @@
|
|||
###c_muhldorf
|
||||
2981 = {
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2984 = {
|
||||
|
|
@ -1739,7 +1739,7 @@
|
|||
###c_erding
|
||||
2956 = {
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2958 = {
|
||||
|
|
@ -1748,7 +1748,7 @@
|
|||
###c_traunstein
|
||||
2983 = {
|
||||
culture = austrian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2977 = {
|
||||
|
|
@ -1782,7 +1782,7 @@
|
|||
###c_allgau
|
||||
2783 = {
|
||||
culture = aleman
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2784 = {
|
||||
|
|
@ -1853,7 +1853,7 @@
|
|||
###c_landshut
|
||||
2957 = {
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2959 = {
|
||||
|
|
@ -1871,7 +1871,7 @@
|
|||
###c_passau
|
||||
2960 = {
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
2961 = {
|
||||
|
|
@ -1886,7 +1886,7 @@
|
|||
###c_deggendorf
|
||||
2968 = {
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = city_holding
|
||||
}
|
||||
2969 = {
|
||||
|
|
@ -1897,7 +1897,7 @@
|
|||
###c_straubing
|
||||
2963 = {
|
||||
culture = bavarian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = none
|
||||
1230.1.1 = {
|
||||
holding = city_holding
|
||||
|
|
@ -2489,7 +2489,7 @@
|
|||
###c_jihlava
|
||||
4162 = {
|
||||
culture = NEOW_moravian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
4155 = {
|
||||
|
|
@ -2498,7 +2498,7 @@
|
|||
###c_znojmo
|
||||
4166 = {
|
||||
culture = NEOW_moravian
|
||||
religion = teutonic
|
||||
religion = roman_catholic
|
||||
holding = castle_holding
|
||||
}
|
||||
4164 = {
|
||||
|
|
|
|||
|
|
@ -19,13 +19,6 @@ e_britannia = {
|
|||
holder = britannia_cyflymarhyan_frydyryk #Frydyryk Cyflymarhyan
|
||||
government = administrative_government
|
||||
effect = {
|
||||
if = {
|
||||
limit = {
|
||||
exists = holder
|
||||
holder = { has_government = administrative_government }
|
||||
}
|
||||
set_state_faith = faith:victorian
|
||||
}
|
||||
if = {
|
||||
limit = {
|
||||
exists = holder
|
||||
|
|
|
|||
|
|
@ -131,7 +131,7 @@ c_zutphen = {
|
|||
holder = benelux_oranje_nassau_weilburg_hugo #
|
||||
}
|
||||
}
|
||||
c_guelders = {
|
||||
c_nijmegen = {
|
||||
2471.2.7 = {
|
||||
holder = benelux_jaan_zolt_2
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,20 +7,77 @@ k_norway = {
|
|||
}
|
||||
}
|
||||
|
||||
d_vestlandi = {
|
||||
2553.1.1 = {
|
||||
holder = scandinavia0022
|
||||
liege = k_norway
|
||||
}
|
||||
}
|
||||
|
||||
c_sogn = {
|
||||
2553.1.1 = {
|
||||
holder = scandinavia0023
|
||||
liege = d_vestlandi
|
||||
}
|
||||
}
|
||||
|
||||
c_firdafylki = {
|
||||
2553.1.1 = {
|
||||
holder = scandinavia0023
|
||||
liege = d_vestlandi
|
||||
}
|
||||
}
|
||||
|
||||
c_nedenes = {
|
||||
2553.1.1 = {
|
||||
holder = scandinavia0021
|
||||
liege = k_norway
|
||||
}
|
||||
}
|
||||
|
||||
c_agdeside = {
|
||||
2553.1.1 = {
|
||||
holder = scandinavia0021
|
||||
liege = k_norway
|
||||
}
|
||||
}
|
||||
|
||||
d_dalir = {
|
||||
2552.1.1 = {
|
||||
holder = scandinavia0004
|
||||
}
|
||||
}
|
||||
|
||||
d_trandalog= {
|
||||
d_trandalog = {
|
||||
2552.1.1 = {
|
||||
holder = scandinavia0007
|
||||
}
|
||||
}
|
||||
|
||||
d_halogaland= {
|
||||
c_orkdala = {
|
||||
2552.1.1 = {
|
||||
holder = scandinavia0007
|
||||
holder = scandinavia0024
|
||||
liege = d_trandalog
|
||||
}
|
||||
}
|
||||
|
||||
c_gauldala = {
|
||||
2552.1.1 = {
|
||||
holder = scandinavia0025
|
||||
liege = d_trandalog
|
||||
}
|
||||
}
|
||||
|
||||
c_bothin = {
|
||||
2552.1.1 = {
|
||||
holder = scandinavia0026
|
||||
liege = d_trandalog
|
||||
}
|
||||
}
|
||||
|
||||
c_vastvag = {
|
||||
2552.1.1 = {
|
||||
holder = scandinavia0027
|
||||
liege = d_trandalog
|
||||
}
|
||||
}
|
||||
|
|
@ -134,6 +134,18 @@
|
|||
Estanislau:0 "Estanislau"
|
||||
F_e_grv_lis:0 "Fèlis"
|
||||
Fernand:0 "Fernand"
|
||||
Benedikta:0 "Benedikta"
|
||||
Odilia:0 "Odilia"
|
||||
Wiltrud:0 "Wiltrud"
|
||||
Dietlinde:0 "Dietlinde"
|
||||
Gundelinde:0 "Gundelinde"
|
||||
Amalie:0 "Amalie"
|
||||
Helmtrud:0 "Helmtrud"
|
||||
Notburga:0 "Notburga"
|
||||
Tim:0 "Tim"
|
||||
Sanne:0 "Sanne"
|
||||
Willibrord:0 "Willibrord"
|
||||
Flavia:0 "Flavia"
|
||||
Flavian:0 "Flavian"
|
||||
Flour_e_grv_ns:0 "Flourèns"
|
||||
Flourian:0 "Flourian"
|
||||
|
|
@ -318,6 +330,34 @@
|
|||
Laur_e_grv_n_c_ced_o:0 "Laurènço"
|
||||
Lauro_female:0 "Lauro"
|
||||
Lid_i_grv_o:0 "Lidìo"
|
||||
Lilian_female:0 "Lilian"
|
||||
Almuth:0 "Almuth"
|
||||
Birgit:0 "Birgit"
|
||||
Aloisia:0 "Aloisia"
|
||||
Cornelia:0 "Cornelia"
|
||||
Selina:0 "Selina"
|
||||
Stefanie:0 "Stefanie"
|
||||
Maria_spc_Anna:0 "Maria Anna"
|
||||
Marie_spc_Charlotte:0 "Marie Charlotte"
|
||||
Auguste_female:0 "Auguste"
|
||||
Philippa:0 "Philippa"
|
||||
Alice:0 "Alice"
|
||||
Ludwiga:0 "Ludwiga"
|
||||
Editha:0 "Editha"
|
||||
Hilda:0 "Hilda"
|
||||
Helene:0 "Helene"
|
||||
Daniela:0 "Daniela"
|
||||
Theodelinde:0 "Theodelinde"
|
||||
Jasmin:0 "Jasmin"
|
||||
Tamara:0 "Tamara"
|
||||
Kerstin:0 "Kerstin"
|
||||
Carina:0 "Carina"
|
||||
Denise:0 "Denise"
|
||||
Victoria:0 "Victoria"
|
||||
Angelika:0 "Angelika"
|
||||
Roswitha:0 "Roswitha"
|
||||
Mechthild:0 "Mechthild"
|
||||
Michaele:0 "Michaele"
|
||||
Liliano:0 "Liliano"
|
||||
Lou_i_uml_so_female:0 "Louïso"
|
||||
Madalen:0 "Madalen"
|
||||
|
|
@ -747,6 +787,14 @@
|
|||
P_e_hat_r-Erwan:0 "Pêr-Erwan"
|
||||
Emil:0 "Emil"
|
||||
Maria:0 "Maria"
|
||||
Marlene:0 "Marlene"
|
||||
Mathilda:0 "Mathilda"
|
||||
Ute:0 "Ute"
|
||||
Elisa:0 "Elisa"
|
||||
Olivia:0 "Olivia"
|
||||
Paulina:0 "Paulina"
|
||||
Sara:0 "Sara"
|
||||
Valentina:0 "Valentina"
|
||||
Cyril:0 "Cyril"
|
||||
Bernadette:0 "Bernadette"
|
||||
Marie-France:0 "Marie-France"
|
||||
|
|
@ -1645,6 +1693,9 @@
|
|||
Christina:0 "Christina"
|
||||
Christine:0 "Christine"
|
||||
Claudia:0 "Claudia"
|
||||
Sinaida:0 "Sinaida"
|
||||
Eleonore:0 "Eleonore"
|
||||
Diana:0 "Diana"
|
||||
Doris:0 "Doris"
|
||||
Edith:0 "Edith"
|
||||
Elisabeth:0 "Elisabeth"
|
||||
|
|
@ -1729,6 +1780,14 @@
|
|||
Jeannette:0 "Jeannette"
|
||||
Jessica:0 "Jessica"
|
||||
Lisa:0 "Lisa"
|
||||
Vanessa:0 "Vanessa"
|
||||
Theresa:0 "Theresa"
|
||||
Ida:0 "Ida"
|
||||
Romy:0 "Romy"
|
||||
Amelie:0 "Amelie"
|
||||
Emma:0 "Emma"
|
||||
Emilia:0 "Emilia"
|
||||
Luisa:0 "Luisa"
|
||||
Hannah:0 "Hannah"
|
||||
Lea:0 "Lea"
|
||||
Josefine:0 "Josefine"
|
||||
|
|
@ -1741,6 +1800,7 @@
|
|||
Leonie:0 "Leonie"
|
||||
Liane:0 "Liane"
|
||||
Liesel:0 "Liesel"
|
||||
Helena:0 "Helena"
|
||||
Liselotte:0 "Liselotte"
|
||||
Lore:0 "Lore"
|
||||
Lydia:0 "Lydia"
|
||||
|
|
@ -1757,6 +1817,8 @@
|
|||
Tabea:0 "Tabea"
|
||||
Tatjana:0 "Tatjana"
|
||||
Thekla:0 "Thekla"
|
||||
Maria_spc_Theresia:0 "Maria Theresia"
|
||||
Constanze:0 "Constanze"
|
||||
Theresia:0 "Theresia"
|
||||
Ursel:0 "Ursel"
|
||||
Veronika:0 "Veronika"
|
||||
|
|
|
|||
|
|
@ -37,10 +37,6 @@
|
|||
#jurchen:0 "Jurchen"
|
||||
#jurchen_collective_noun:0 "Jurchens"
|
||||
#Arabic group
|
||||
icelander:0 "Icelander"
|
||||
doggerlander:0 "Doggerlander"
|
||||
icelander_collective_noun:1 "Icelanders"
|
||||
doggerlander_collective_noun:1 "Doggerlanders"
|
||||
arabic_group:0 "Arabic"
|
||||
arabic_group_collective_noun:1 "Arabs"
|
||||
bedouin:0 "Bedouin"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
language_french_name:0 "French"
|
||||
language_sarphatique_name:0 "Sarphatique"
|
||||
language_english_name:0 "English"
|
||||
language_brittannic_name:0 "Britannic-Welsh"
|
||||
language_brittannic_name:0 "Britannic"
|
||||
language_scots_name:0 "Scots"
|
||||
language_anglo_irish_name:0 "Anglo-Irish"
|
||||
language_frisian_name:0 "Frisian"
|
||||
|
|
|
|||
|
|
@ -84,17 +84,17 @@
|
|||
patoues_collective_noun:0 "Arpetans"
|
||||
patoues_prefix:0 "Arpetano"
|
||||
#brittannic
|
||||
soueyrneg:0 "Soufyrneg"
|
||||
soueyrneg_collective_noun:0 "Soufyrneg"
|
||||
soueyrneg_prefix:0 "Soufyrnego"
|
||||
prytoneg:0 "Prytoneg"
|
||||
prytoneg_collective_noun:0 "Prytonegs"
|
||||
soueyrneg:0 "Soufyrniwr"
|
||||
soueyrneg_collective_noun:0 "Soufyrniwrs"
|
||||
soueyrneg_prefix:0 "Soufyrno-"
|
||||
prytoneg:0 "Prydeinig"
|
||||
prytoneg_collective_noun:0 "Prydeinigs"
|
||||
prytoneg_prefix:0 "Prytono"
|
||||
scouseg:0 "Scouseg"
|
||||
scouseg_collective_noun:0 "Scousegs"
|
||||
scouseg:0 "Scousig"
|
||||
scouseg_collective_noun:0 "Scousigs"
|
||||
scouseg_prefix:0 "Scouso"
|
||||
strafclideg:0 "Strafclideg"
|
||||
strafclideg_collective_noun:0 "Strafclidegs"
|
||||
strafclideg:0 "Strafclider"
|
||||
strafclideg_collective_noun:0 "Strafcliders"
|
||||
strafclideg_prefix:0 "Strafclido"
|
||||
#Goidelic
|
||||
atlantannach:0 "Atlantannach"
|
||||
|
|
@ -200,6 +200,12 @@
|
|||
griko_collective_noun:0 "Griko"
|
||||
griko_prefix:0 "Griko"
|
||||
#German
|
||||
icelander:0 "Íslendingur"
|
||||
icelander_collective_noun:1 "Íslendingurs"
|
||||
icelander_prefix:0 "Icelando"
|
||||
doggerlander:0 "Doggersker"
|
||||
doggerlander_collective_noun:1 "Doggerskers"
|
||||
doggerlander_prefix:0 "Doggo-"
|
||||
faerosk:0 "Faerosk"
|
||||
faerosk_collective_noun:0 "Faerosk"
|
||||
faerosk_prefix:0 "Faerosk"
|
||||
|
|
|
|||
|
|
@ -487,6 +487,13 @@
|
|||
dynn_tresjoblas:0 "Tre Sjöblas"
|
||||
dynn_rothen:0 "Rothén"
|
||||
dynn_bolt:0 "Bolt"
|
||||
dynn_wrede:0 "Wrede"
|
||||
dynn_benkestokk:0 "Benkestokk"
|
||||
dynn_aspa:0 "Aspa"
|
||||
dynn_hjerne:0 "Hjerne"
|
||||
dynn_traette:0 "Trætte"
|
||||
dynn_nott:0 "Nótt"
|
||||
dynn_ulfhilde:0 "Ulfhilde"
|
||||
|
||||
# PATRONYMS — PREFIXES AND SUFFIXES
|
||||
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
doctrine_parameter_can_raid_at_sea_even_if_feudal:0 "[duchy|E]-[title_tier|E] and lower [rulers|E] may [raid|E] over seas, regardless of [government|E]"
|
||||
doctrine_parameter_piety_for_forced_conversions_active:0 "Forced conversions earn [piety|E]"
|
||||
doctrine_parameter_unlock_varangian_adventurer_cb:0 "Unlocks the Varangian Adventurer casus belli"
|
||||
doctrine_parameter_unlock_varangian_adventurer_cb:0 "Unlocks the Varangian Adventurer [casus_belli|E]"
|
||||
|
||||
tenet_communal_possessions_oceanic_name:0 "All Hands on Deck"
|
||||
tenet_communal_possessions_oceanic_desc:0 "As life on water is difficult, everyone is expected to contribute as much as they can to their community. Taking more than one's fair share of plunder and hoarding wealth while others suffer is greatly frowned upon, and mob justice is a frequent form of punishment for the rich and avaricious."
|
||||
|
|
|
|||
|
|
@ -949,8 +949,8 @@
|
|||
d_napoli_adj:0 "Campanian"
|
||||
b_noordoostpolder:0 "Noordoostpolder"
|
||||
b_flevoland:0 "Flevoland"
|
||||
c_duren:0 "Duren"
|
||||
c_duren_adj:0 "Durenian"
|
||||
c_duren:0 "Düren"
|
||||
c_duren_adj:0 "Dürener"
|
||||
b_aalts:0 "Aalts"
|
||||
d_trier:0 "Trier"
|
||||
d_trier_adj:0 "Trierean"
|
||||
|
|
@ -13020,8 +13020,8 @@
|
|||
c_grunningen_adj:0 "Grünninger"
|
||||
c_gudbrandsdalir:1 "Gudbrandsdalen"
|
||||
c_gudbrandsdalir_adj:0 "Gudbrandsdalenian"
|
||||
c_guelders:0 "Guelders"
|
||||
c_guelders_adj:0 "Gueldrian"
|
||||
c_nijmegen:0 "Nijmegen"
|
||||
c_nijmegen_adj:0 "Nijmegenaar"
|
||||
c_guines:1 "Nord"
|
||||
c_guines_adj:1 "Nordian"
|
||||
c_gurgan:0 "Gurgan"
|
||||
|
|
@ -15765,8 +15765,6 @@
|
|||
d_jharkand_adj:0 "Jharkandi"
|
||||
d_jomsvikings:0 "Jomsvikings"
|
||||
d_jomsvikings_adj:0 "Jomsviking"
|
||||
d_julich:0 "Jülich"
|
||||
d_julich_adj:0 "Jülichen"
|
||||
d_jylland:0 "Jylland"
|
||||
d_jylland_adj:0 "Jyllander"
|
||||
d_kabul:0 "Kabulistan"
|
||||
|
|
@ -16250,8 +16248,6 @@
|
|||
d_sutiya:0 "Sutiya"
|
||||
d_svealand:1 "Uppland"
|
||||
d_svealand_adj:0 "Upplander"
|
||||
d_swabia:0 "Swabia"
|
||||
d_swabia_adj:0 "Swabian"
|
||||
d_sweden:0 "Svithjod"
|
||||
d_sweden_adj:0 "Swedish"
|
||||
d_swiss:0 "Switzerland"
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ po_river_region = { # Po River
|
|||
}
|
||||
rhine_river_region = { # Rhine River
|
||||
counties = {
|
||||
c_koblenz c_neuwied c_cologne c_dusseldorf c_cleves c_dortmund c_zutphen c_guelders c_antwerpen c_holland c_maastricht c_zeeland
|
||||
c_koblenz c_neuwied c_cologne c_dusseldorf c_cleves c_dortmund c_zutphen c_nijmegen c_antwerpen c_holland c_maastricht c_zeeland
|
||||
}
|
||||
}
|
||||
elbe_river_region = { # Elbe River
|
||||
|
|
|
|||
|
|
@ -127,7 +127,7 @@ world_europe_west_germania = {
|
|||
# Frisia
|
||||
d_holland d_gelre d_utrecht d_frisia d_flanders
|
||||
# Lotharingia
|
||||
d_luxembourg d_brabant d_julich d_upper_lorraine d_lower_lorraine
|
||||
d_luxembourg d_brabant d_cologne d_upper_lorraine d_lower_lorraine
|
||||
# Bavaria
|
||||
d_bavaria d_nordgau d_salzburg d_augsburg d_steyermark d_lower_austria d_upper_austria d_tyrol d_carinthia
|
||||
# East Francia
|
||||
|
|
@ -1259,7 +1259,7 @@ custom_latvia = {
|
|||
}
|
||||
custom_lotharingia = {
|
||||
duchies = {
|
||||
d_luxembourg d_brabant d_julich d_upper_lorraine d_lower_lorraine
|
||||
d_luxembourg d_brabant d_cologne d_upper_lorraine d_lower_lorraine
|
||||
}
|
||||
}
|
||||
custom_bavaria = {
|
||||
|
|
@ -1274,7 +1274,7 @@ custom_germany = {
|
|||
}
|
||||
custom_rhineland = {
|
||||
duchies = {
|
||||
d_luxembourg d_brabant d_julich d_upper_lorraine d_lower_lorraine d_alsace d_west_franconia d_swabia
|
||||
d_luxembourg d_brabant d_cologne d_upper_lorraine d_lower_lorraine d_alsace d_west_franconia d_swabia
|
||||
}
|
||||
}
|
||||
custom_northern_italy = {
|
||||
|
|
@ -1589,7 +1589,7 @@ custom_carpathia = {
|
|||
custom_europe_western_germany = {
|
||||
duchies = {
|
||||
# Lotharingia
|
||||
d_luxembourg d_brabant d_julich d_upper_lorraine d_lower_lorraine
|
||||
d_luxembourg d_brabant d_cologne d_upper_lorraine d_lower_lorraine
|
||||
# East Francia
|
||||
d_westfalen d_angria d_ostfalen d_anhalt
|
||||
d_west_franconia d_east_franconia d_hesse d_thuringia
|
||||
|
|
@ -2984,7 +2984,7 @@ ghw_region_germanic = {
|
|||
#Frisia
|
||||
d_holland d_gelre d_utrecht d_frisia
|
||||
#Lotharingia
|
||||
d_luxembourg d_brabant d_julich d_upper_lorraine d_lower_lorraine
|
||||
d_luxembourg d_brabant d_cologne d_upper_lorraine d_lower_lorraine
|
||||
}
|
||||
}
|
||||
ghw_region_central_european = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue