Merge branch 'main' of https://gitlab.com/new-era-team/N3OW
This commit is contained in:
commit
5b6839eb35
19 changed files with 11244 additions and 0 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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
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 = {
|
||||
}
|
||||
}
|
||||
703
N3OW/common/culture/name_lists/NEOW_french.txt
Normal file
703
N3OW/common/culture/name_lists/NEOW_french.txt
Normal file
|
|
@ -0,0 +1,703 @@
|
|||
name_list_NEOW_french = {
|
||||
|
||||
cadet_dynasty_names = {
|
||||
"dynn_Andr_e_act_"
|
||||
"dynn_Arnaud"
|
||||
"dynn_Aubert"
|
||||
"dynn_Barbier"
|
||||
"dynn_Beno_i_hat_t"
|
||||
"dynn_Bernard"
|
||||
"dynn_Bertrand"
|
||||
"dynn_Blanc"
|
||||
"dynn_Blanchard"
|
||||
"dynn_Bonnet"
|
||||
"dynn_Bourgeois"
|
||||
"dynn_Boyer"
|
||||
"dynn_Brun"
|
||||
"dynn_Brunet"
|
||||
"dynn_Caron"
|
||||
"dynn_Chevalier"
|
||||
"dynn_Cl_e_act_ment"
|
||||
"dynn_Colin"
|
||||
"dynn_David"
|
||||
"dynn_Denis"
|
||||
"dynn_Dubois"
|
||||
"dynn_Dufour"
|
||||
"dynn_Dumas"
|
||||
"dynn_Dumont"
|
||||
"dynn_Dupont"
|
||||
"dynn_Durand"
|
||||
"dynn_Duval"
|
||||
"dynn_Fabre"
|
||||
"dynn_Faure"
|
||||
"dynn_Fontaine"
|
||||
"dynn_Fournier"
|
||||
"dynn_Francois"
|
||||
"dynn_G_e_act_rard"
|
||||
"dynn_Gaillard"
|
||||
"dynn_Garcia"
|
||||
"dynn_Garnier"
|
||||
"dynn_Gauthier"
|
||||
"dynn_Gautier"
|
||||
"dynn_Girard"
|
||||
"dynn_Giraud"
|
||||
"dynn_Gu_e_act_rin"
|
||||
"dynn_Guillaume"
|
||||
"dynn_Henry"
|
||||
"dynn_Joly"
|
||||
"dynn_L_e_act_cuyer"
|
||||
"dynn_Lacroix"
|
||||
"dynn_Lambert"
|
||||
"dynn_Laurent"
|
||||
"dynn_Leclerc"
|
||||
"dynn_Leclercq"
|
||||
"dynn_Lecomte"
|
||||
"dynn_Lef_e_grv_vre"
|
||||
"dynn_Lefebvre"
|
||||
"dynn_Legrand"
|
||||
"dynn_Lemaire"
|
||||
"dynn_Lemoine"
|
||||
"dynn_Leroux"
|
||||
"dynn_Leroy"
|
||||
"dynn_Lucas"
|
||||
"dynn_Marchand"
|
||||
"dynn_Marie"
|
||||
"dynn_Martin"
|
||||
"dynn_Martinez"
|
||||
"dynn_Masson"
|
||||
"dynn_Mathieu"
|
||||
"dynn_Mercier"
|
||||
"dynn_Meunier"
|
||||
"dynn_Meyer"
|
||||
"dynn_Michel"
|
||||
"dynn_Moreau"
|
||||
"dynn_Morel"
|
||||
"dynn_Morin"
|
||||
"dynn_Muller"
|
||||
"dynn_Nguyen"
|
||||
"dynn_Nicolas"
|
||||
"dynn_No_e_uml_l"
|
||||
"dynn_Olivier"
|
||||
"dynn_Payet"
|
||||
"dynn_Perrin"
|
||||
"dynn_Petit"
|
||||
"dynn_Philippe"
|
||||
"dynn_Picard"
|
||||
"dynn_Pierre"
|
||||
"dynn_Renard"
|
||||
"dynn_Renaud"
|
||||
"dynn_Rey"
|
||||
"dynn_Richard"
|
||||
"dynn_Rivi_e_grv_re"
|
||||
"dynn_Robert"
|
||||
"dynn_Robin"
|
||||
"dynn_Roche"
|
||||
"dynn_Roger"
|
||||
"dynn_Rolland"
|
||||
"dynn_Rousseau"
|
||||
"dynn_Roussel"
|
||||
"dynn_Roux"
|
||||
"dynn_Roy"
|
||||
"dynn_Schmitt"
|
||||
"dynn_Simon"
|
||||
"dynn_Thomas"
|
||||
"dynn_Vidal"
|
||||
"dynn_Vincent"
|
||||
}
|
||||
|
||||
dynasty_names = {
|
||||
"dynn_Andr_e_act_"
|
||||
"dynn_Arnaud"
|
||||
"dynn_Aubert"
|
||||
"dynn_Barbier"
|
||||
"dynn_Beno_i_hat_t"
|
||||
"dynn_Bernard"
|
||||
"dynn_Bertrand"
|
||||
"dynn_Blanc"
|
||||
"dynn_Blanchard"
|
||||
"dynn_Bonnet"
|
||||
"dynn_Bourgeois"
|
||||
"dynn_Boyer"
|
||||
"dynn_Brun"
|
||||
"dynn_Brunet"
|
||||
"dynn_Caron"
|
||||
"dynn_Chevalier"
|
||||
"dynn_Cl_e_act_ment"
|
||||
"dynn_Colin"
|
||||
"dynn_David"
|
||||
"dynn_Denis"
|
||||
"dynn_Dubois"
|
||||
"dynn_Dufour"
|
||||
"dynn_Dumas"
|
||||
"dynn_Dumont"
|
||||
"dynn_Dupont"
|
||||
"dynn_Durand"
|
||||
"dynn_Duval"
|
||||
"dynn_Fabre"
|
||||
"dynn_Faure"
|
||||
"dynn_Fontaine"
|
||||
"dynn_Fournier"
|
||||
"dynn_Francois"
|
||||
"dynn_G_e_act_rard"
|
||||
"dynn_Gaillard"
|
||||
"dynn_Garcia"
|
||||
"dynn_Garnier"
|
||||
"dynn_Gauthier"
|
||||
"dynn_Gautier"
|
||||
"dynn_Girard"
|
||||
"dynn_Giraud"
|
||||
"dynn_Gu_e_act_rin"
|
||||
"dynn_Guillaume"
|
||||
"dynn_Henry"
|
||||
"dynn_Joly"
|
||||
"dynn_L_e_act_cuyer"
|
||||
"dynn_Lacroix"
|
||||
"dynn_Lambert"
|
||||
"dynn_Laurent"
|
||||
"dynn_Leclerc"
|
||||
"dynn_Leclercq"
|
||||
"dynn_Lecomte"
|
||||
"dynn_Lef_e_grv_vre"
|
||||
"dynn_Lefebvre"
|
||||
"dynn_Legrand"
|
||||
"dynn_Lemaire"
|
||||
"dynn_Lemoine"
|
||||
"dynn_Leroux"
|
||||
"dynn_Leroy"
|
||||
"dynn_Lucas"
|
||||
"dynn_Marchand"
|
||||
"dynn_Marie"
|
||||
"dynn_Martin"
|
||||
"dynn_Martinez"
|
||||
"dynn_Masson"
|
||||
"dynn_Mathieu"
|
||||
"dynn_Mercier"
|
||||
"dynn_Meunier"
|
||||
"dynn_Meyer"
|
||||
"dynn_Michel"
|
||||
"dynn_Moreau"
|
||||
"dynn_Morel"
|
||||
"dynn_Morin"
|
||||
"dynn_Muller"
|
||||
"dynn_Nguyen"
|
||||
"dynn_Nicolas"
|
||||
"dynn_No_e_uml_l"
|
||||
"dynn_Olivier"
|
||||
"dynn_Payet"
|
||||
"dynn_Perrin"
|
||||
"dynn_Petit"
|
||||
"dynn_Philippe"
|
||||
"dynn_Picard"
|
||||
"dynn_Pierre"
|
||||
"dynn_Renard"
|
||||
"dynn_Renaud"
|
||||
"dynn_Rey"
|
||||
"dynn_Richard"
|
||||
"dynn_Rivi_e_grv_re"
|
||||
"dynn_Robert"
|
||||
"dynn_Robin"
|
||||
"dynn_Roche"
|
||||
"dynn_Roger"
|
||||
"dynn_Rolland"
|
||||
"dynn_Rousseau"
|
||||
"dynn_Roussel"
|
||||
"dynn_Roux"
|
||||
"dynn_Roy"
|
||||
"dynn_Schmitt"
|
||||
"dynn_Simon"
|
||||
"dynn_Thomas"
|
||||
"dynn_Vidal"
|
||||
"dynn_Vincent"
|
||||
}
|
||||
|
||||
male_names = {
|
||||
### Novelist names
|
||||
_E_act_omer
|
||||
Abb_e_act_-Faria Abraracourcix Aiwendil Alatar Aldarion Amandil Amroth An_a_act_rion Arador Aragorn Aramis Arathorn Aronnax Arvedui Ast_e_act_rix Atanamir Atanatar Athos Azagh_a_hat_l
|
||||
B_e_uml_or B_o_act_r Balin Bandobras Barahir Barbicane Bard Beaufort Beleg Beorn Beregond Beren Bifur Bilbon Bill Bofur Bombur Boromir Brandir Bree Brego
|
||||
Caderousse Calogrenant Caspian Celebrimbor Celeborn Chasseur-de-Truffes Cirion Ciryatan Clerval Clopin Conseil Coriakin Curumo
|
||||
D_a_act_in D_pst_Artagnan Dakkar Dant_e_grv_s Denethor Digory Dior Dori Drinian Durin Dwalin
|
||||
E_a_uml_rendil E_a_uml_rnil E_a_uml_rnur Ecthelion Egalmoth Eldacar Eldarion Elendil Elfhelm Elrond Elros Enjolras Eorl Erkenbrand
|
||||
|
||||
### Normal names
|
||||
_E_act_douard _E_act_mile _E_act_ric _E_act_tienne
|
||||
Adrien Aimery Alain Albert Alexandre Alexis Alphonse Am_e_act_d_e_act_e Amaury Andr_e_act_ Anthony Antoine Arnaud Arnault Arthur Aubry Axel
|
||||
B_e_act_renger Barth_e_act_l_e_act_my Baudouin Benjamin Beno_i_hat_t Bernard Bertrand Bruno
|
||||
C_e_act_dric Charles Christian Christophe Cl_e_act_ment Claude_male Clotaire Clovis Cyrus
|
||||
Damien Daniel David Denis Didier Dimitri Dominique_male
|
||||
Edmond Emmanuel Enzo Eudes Eustache
|
||||
|
||||
Fabien
|
||||
Fabrice
|
||||
Fantasio
|
||||
Faramir
|
||||
Fauchelevent
|
||||
Fëanor
|
||||
Felaróf
|
||||
Félix-Faure
|
||||
Fernand
|
||||
Fíli
|
||||
Finarfin
|
||||
Fingolfin
|
||||
Fingon
|
||||
Flopin
|
||||
Florian
|
||||
Franck
|
||||
François
|
||||
Frédégar
|
||||
Frédéric
|
||||
Frodon
|
||||
Gabriel
|
||||
Galdor
|
||||
Gandalf
|
||||
Gargamel
|
||||
Gaston
|
||||
Gauthier
|
||||
Gavroche
|
||||
Geoffroy
|
||||
Georges
|
||||
Gérard
|
||||
Géraud
|
||||
Gerontius
|
||||
Gilbert
|
||||
Gil-galad
|
||||
Gilles
|
||||
Gimli
|
||||
Glóin
|
||||
Glorfindel
|
||||
Godefroy
|
||||
Gringoire
|
||||
Gripoil
|
||||
Grougaloragran
|
||||
Guillaume
|
||||
Guy
|
||||
Gwaihir
|
||||
Haddock
|
||||
Halbarad
|
||||
Haldir
|
||||
Háma
|
||||
Harbert
|
||||
Helm
|
||||
Henri
|
||||
Herbert
|
||||
Hervé
|
||||
Horn
|
||||
Huan
|
||||
Hugo
|
||||
Huor
|
||||
Húrin
|
||||
Hyarmendacil
|
||||
|
||||
Idéfix
|
||||
Imrahil
|
||||
Isildur
|
||||
J_e_act_r_o_hat_me
|
||||
Jacques
|
||||
Jacques-Yves
|
||||
Jaspert
|
||||
Jean
|
||||
Jean-Baptiste
|
||||
Jean-Claude
|
||||
Jean-Luc
|
||||
Jean-Pierre
|
||||
Jeanvaljean
|
||||
Jérémy
|
||||
Jérôme
|
||||
Joël
|
||||
Joseph
|
||||
Jules
|
||||
J-T-Maston
|
||||
Jules-César
|
||||
Julien
|
||||
|
||||
Kenzo
|
||||
Kévin
|
||||
Kíli
|
||||
|
||||
Lafayette
|
||||
Lanfeust
|
||||
Laurent
|
||||
Legolas
|
||||
Lidenbrock
|
||||
Léon
|
||||
Léonard
|
||||
Lothaire
|
||||
Louis
|
||||
Lucas
|
||||
Lucien
|
||||
Ludovic
|
||||
Mablung
|
||||
Maedhros
|
||||
Marc
|
||||
Marcel
|
||||
Marius
|
||||
Marquais
|
||||
Mathieu
|
||||
Maurice
|
||||
Maxime
|
||||
Meriadoc
|
||||
Michel
|
||||
Minastir
|
||||
Mitterrand
|
||||
Mohammed
|
||||
Molière
|
||||
Montaigne
|
||||
Montesquieu
|
||||
Morrel
|
||||
Myriel
|
||||
Napoléon
|
||||
Ned-Land
|
||||
Némo
|
||||
Nicéphore
|
||||
Nicolas
|
||||
Nicholl
|
||||
Nivacrin
|
||||
Noirtier-de-Villefort
|
||||
Norbert
|
||||
Numérobis
|
||||
|
||||
Obélix
|
||||
Ocatarinetabellatchitchix
|
||||
Odoacer
|
||||
Óin
|
||||
Olivier
|
||||
Olórin
|
||||
Orodreth
|
||||
Orophin
|
||||
Oscar
|
||||
Ostoher
|
||||
Paladin
|
||||
Pallando
|
||||
Panoramix
|
||||
Passepartout
|
||||
Pasteur
|
||||
Patrice
|
||||
Paul
|
||||
Pencroff
|
||||
Peregrïn
|
||||
Phileas-Fogg
|
||||
Philippe
|
||||
Phoebus
|
||||
Picsou
|
||||
Pierre
|
||||
Pompidou
|
||||
Pontmercy
|
||||
Porthos
|
||||
Quasimodo
|
||||
Quentin
|
||||
Radagast
|
||||
Ramandu
|
||||
Raoul
|
||||
Raphaël
|
||||
Raymond
|
||||
Raynaud
|
||||
Renaud
|
||||
Renard
|
||||
René
|
||||
Richard
|
||||
Rillian
|
||||
Ripitchip
|
||||
Roland
|
||||
Robert
|
||||
Robin
|
||||
Robur
|
||||
Roger
|
||||
Roheryn
|
||||
Romain
|
||||
Rousseau
|
||||
Ruel
|
||||
Saint-Just
|
||||
Salomon
|
||||
Samsagace
|
||||
Sartre
|
||||
Sébastien
|
||||
Serge
|
||||
Siéyès
|
||||
Simon
|
||||
Sméagol
|
||||
Spirou
|
||||
Stéphane
|
||||
Sylvain
|
||||
Sylvebarbe
|
||||
Thengel
|
||||
Théo
|
||||
Théoden
|
||||
Théodred
|
||||
Thibault
|
||||
Thierry
|
||||
Thingol
|
||||
Thomas
|
||||
Thorgal
|
||||
Thorin
|
||||
Thorondor
|
||||
Thráin
|
||||
Thranduil
|
||||
Thrór
|
||||
Timothé
|
||||
Tintin
|
||||
Tirian
|
||||
Tocqueville
|
||||
Tom-Bombadil
|
||||
Tréville
|
||||
Tristepin
|
||||
Trompillon
|
||||
Tumnus
|
||||
Tuor
|
||||
Turgon
|
||||
Túrin
|
||||
Valacar
|
||||
Valéry-Giscard-d'Estaing
|
||||
Vercingétorix
|
||||
Victor
|
||||
Vincent
|
||||
Vlad
|
||||
Voltaire
|
||||
Waldman
|
||||
Walton
|
||||
Wiglaf
|
||||
Xavier
|
||||
Yugo
|
||||
Yves
|
||||
Zain
|
||||
Zidane
|
||||
Zinédine
|
||||
Zola
|
||||
}
|
||||
female_names = {
|
||||
Aaricia
|
||||
Adèle
|
||||
Aerin
|
||||
Agathe
|
||||
Agnès
|
||||
Alice
|
||||
Alberta
|
||||
Aliénor
|
||||
Alix
|
||||
Amalie
|
||||
Amarië
|
||||
Amélie
|
||||
Anaïs
|
||||
Anastasie
|
||||
Ancalimë
|
||||
Andrée
|
||||
Anne
|
||||
Annick
|
||||
Annie
|
||||
Antoinette
|
||||
Aouda
|
||||
Aredhel
|
||||
Arwen
|
||||
Audrey
|
||||
Aurélie
|
||||
Aurore
|
||||
Baie-d'Or
|
||||
Béatrice
|
||||
Belladonna
|
||||
Benoîte
|
||||
Bérengère
|
||||
Bernadette
|
||||
Blanche
|
||||
Bonemine
|
||||
Brigitte
|
||||
|
||||
Camilla
|
||||
Caroline
|
||||
Catherine
|
||||
Cécile
|
||||
Celebrían
|
||||
Céline
|
||||
Cendrillon
|
||||
Chantal
|
||||
Charlotte
|
||||
Chloé
|
||||
Christelle
|
||||
Christiane
|
||||
Christine
|
||||
Cixi
|
||||
Claire
|
||||
Claudette
|
||||
Claudine
|
||||
Cléopâtre
|
||||
Clotilde
|
||||
Colette
|
||||
Constance
|
||||
Corinne
|
||||
Cosette
|
||||
Dalida
|
||||
Danielle
|
||||
Delphine
|
||||
Denise
|
||||
Dís
|
||||
Dominique
|
||||
Eärwen
|
||||
Edith
|
||||
Éléonore
|
||||
Elely
|
||||
Elenwë
|
||||
Eliane
|
||||
Elisabeth
|
||||
Elise
|
||||
Élodie
|
||||
Elwing
|
||||
Emma
|
||||
Emmanuelle
|
||||
Émilie
|
||||
Éowyn
|
||||
Éponine
|
||||
Erendis
|
||||
Esméralda
|
||||
Estella
|
||||
Eugénie
|
||||
Eve
|
||||
Evangelyne
|
||||
Evelyne
|
||||
Falbala
|
||||
Fantine
|
||||
Fatima
|
||||
Finduilas
|
||||
Fleur-de-Lys
|
||||
Florence
|
||||
Françoise
|
||||
Galadriel
|
||||
Geneviève
|
||||
Germaine
|
||||
Georgette
|
||||
Gilraen
|
||||
Ginette
|
||||
Gisèle
|
||||
Gwendolen
|
||||
Haleth
|
||||
Haydée
|
||||
Hélène
|
||||
Héloise
|
||||
Henriette
|
||||
Hermione
|
||||
Hild
|
||||
Hwin
|
||||
Idril
|
||||
Indis
|
||||
Ioreth
|
||||
Isabelle
|
||||
|
||||
Jacqueline
|
||||
Javotte
|
||||
Jeanne
|
||||
Jeanne-d'Arc
|
||||
Jeannine
|
||||
Jill
|
||||
Joséphine
|
||||
Josette
|
||||
Josiane
|
||||
Judith
|
||||
Julie
|
||||
Julienne
|
||||
Juliette
|
||||
Justine
|
||||
|
||||
Karine
|
||||
Laetitia
|
||||
Lalaith
|
||||
Laura
|
||||
Laurence
|
||||
Laurette
|
||||
Léa
|
||||
Lilliandil
|
||||
Lobelia
|
||||
Lothíriel
|
||||
Louise
|
||||
Louve
|
||||
Lucie
|
||||
Lucienne
|
||||
Lucy
|
||||
Lúthien
|
||||
Madeleine
|
||||
Malefique
|
||||
Manon
|
||||
Marcelle
|
||||
Marine
|
||||
Marion
|
||||
Margot
|
||||
Marguerite
|
||||
Maria
|
||||
Marie
|
||||
Marie-Antoinette
|
||||
Marie-Curie
|
||||
Marie-Louise
|
||||
Marie-Thérèse
|
||||
Martine
|
||||
Mathilde
|
||||
Meg
|
||||
Mélanie
|
||||
Melian
|
||||
Mélusine
|
||||
Mercédès
|
||||
Michèle
|
||||
Miranda
|
||||
Mireille
|
||||
Monique
|
||||
Nadia
|
||||
Nadine
|
||||
Nathalie
|
||||
Nerdanel
|
||||
Nicole
|
||||
Nienor
|
||||
Níniel
|
||||
|
||||
Odette
|
||||
Patricia
|
||||
Paulette
|
||||
Pauline
|
||||
Polly
|
||||
Primula
|
||||
Prunaprismia
|
||||
Raymonde
|
||||
Renée
|
||||
Rían
|
||||
Rose
|
||||
Sandrine
|
||||
Sarah
|
||||
Ségolène
|
||||
Silmarien
|
||||
Simone
|
||||
Solène
|
||||
Sophie
|
||||
Stéphanie
|
||||
Suzanne
|
||||
Sybille
|
||||
Sylvie
|
||||
Telperien
|
||||
Théodwyn
|
||||
Thérèse
|
||||
Tinúviel
|
||||
Vairë
|
||||
Valérie
|
||||
Vanimeldë
|
||||
Varda
|
||||
Véronique
|
||||
Virginie
|
||||
Yavanna
|
||||
Yvette
|
||||
Yvonne
|
||||
}
|
||||
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 = "mercenary_company_tard_venus_1" }
|
||||
{ name = "mercenary_company_french_band_1" }
|
||||
{ name = "mercenary_company_routiers_1" }
|
||||
{ name = "mercenary_company_french_band_2" }
|
||||
}
|
||||
}
|
||||
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 = {
|
||||
}
|
||||
}
|
||||
609
N3OW/common/culture/traditions/NEOW_traditions.txt
Normal file
609
N3OW/common/culture/traditions/NEOW_traditions.txt
Normal file
|
|
@ -0,0 +1,609 @@
|
|||
###########################
|
||||
# NEOW CULTURAL TRADITIONS
|
||||
###########################
|
||||
|
||||
#######################
|
||||
# Generic
|
||||
#######################
|
||||
|
||||
tradition_british_armoires = {
|
||||
category = regional
|
||||
|
||||
layers = {
|
||||
0 = martial
|
||||
1 = western
|
||||
4 = bow.dds
|
||||
}
|
||||
|
||||
is_shown = {
|
||||
OR = {
|
||||
has_cultural_pillar = heritage_anglo_frisian
|
||||
has_cultural_pillar = heritage_brythonic
|
||||
}
|
||||
}
|
||||
can_pick = {
|
||||
OR = {
|
||||
has_cultural_pillar = heritage_anglo_frisian
|
||||
has_cultural_pillar = heritage_brythonic
|
||||
}
|
||||
}
|
||||
|
||||
character_modifier = {
|
||||
archers_max_size_add = 2
|
||||
}
|
||||
|
||||
parameters = {
|
||||
unlock_maa_handgonners = yes
|
||||
}
|
||||
|
||||
cost = {
|
||||
prestige = {
|
||||
add = {
|
||||
value = tradition_base_cost
|
||||
desc = BASE
|
||||
format = "BASE_VALUE_FORMAT"
|
||||
}
|
||||
# Ethos requirement.
|
||||
if = {
|
||||
limit = {
|
||||
NOR = {
|
||||
culture_pillar:ethos_stoic = { is_in_list = traits }
|
||||
culture_pillar:ethos_bureaucratic = { is_in_list = traits }
|
||||
}
|
||||
}
|
||||
add = {
|
||||
value = tradition_incompatible_ethos_penalty
|
||||
desc = not_stoic_or_bureaucratic_desc
|
||||
}
|
||||
}
|
||||
# Certain number of archer MaA requirement.
|
||||
if = {
|
||||
limit = {
|
||||
scope:character = {
|
||||
number_maa_soldiers_of_base_type = {
|
||||
type = archers
|
||||
# Remember to sync the below with longbow_competitions_minimum_archer_maa_value.
|
||||
value < 1200
|
||||
}
|
||||
}
|
||||
}
|
||||
add = {
|
||||
value = tradition_unfulfilled_criteria_penalty
|
||||
desc = culture_head_lacks_archer_maa_desc
|
||||
}
|
||||
}
|
||||
|
||||
multiply = tradition_replacement_cost_if_relevant
|
||||
}
|
||||
}
|
||||
|
||||
ai_will_do = {
|
||||
value = 800
|
||||
if = {
|
||||
limit = {
|
||||
OR = {
|
||||
culture_has_pikemen_maa = yes
|
||||
culture_has_heavy_cavalry_maa = yes
|
||||
}
|
||||
}
|
||||
multiply = 0
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
tradition_british_palace_politics = {
|
||||
category = regional
|
||||
|
||||
layers = {
|
||||
0 = intrigue
|
||||
1 = western
|
||||
4 = palace_politics.dds
|
||||
}
|
||||
|
||||
is_shown = {
|
||||
OR = {
|
||||
has_cultural_pillar = heritage_anglo_frisian
|
||||
has_cultural_pillar = heritage_scottish
|
||||
this = culture:prytoneg
|
||||
any_parent_culture_or_above = {
|
||||
this = culture:prytoneg
|
||||
}
|
||||
}
|
||||
scope:character = {
|
||||
OR = {
|
||||
has_title = title:e_brittania
|
||||
}
|
||||
}
|
||||
# DLC check.
|
||||
has_ep3_dlc_trigger = yes
|
||||
NOT = {
|
||||
has_cultural_tradition = tradition_byzantine_succession
|
||||
}
|
||||
}
|
||||
can_pick = {
|
||||
custom_tooltip = {
|
||||
text = cannot_have_tradition_court_eunuchs
|
||||
NOT = { culture_tradition:tradition_court_eunuchs = { is_in_list = traits } }
|
||||
}
|
||||
custom_tooltip = {
|
||||
text = cannot_have_tradition_merciful_blindings
|
||||
NOT = { culture_tradition:tradition_merciful_blindings = { is_in_list = traits } }
|
||||
}
|
||||
}
|
||||
|
||||
parameters = {
|
||||
#unlock_maa_conrois = yes
|
||||
unlock_voluntary_laampdom = yes
|
||||
#much_more_likely_to_be_laamps = yes
|
||||
ambitious_trait_more_common = yes
|
||||
wanderers_gain_extra_combat_skills = yes
|
||||
mercenary_courtiers_gain_extra_skills = yes
|
||||
#more_likely_to_leave_court = yes
|
||||
enable_garden_duchy_building = yes
|
||||
can_appoint_court_gardener = yes
|
||||
can_recruit_gardeners = yes
|
||||
vengeful_trait_more_common = yes
|
||||
vengeful_positive_forgiving_negative = yes
|
||||
rivalries_more_common = yes
|
||||
hostile_action_vs_rival_bonuses = yes
|
||||
bonuses_from_patriarch_matriarch_trait = yes
|
||||
#cultural_house_personal_scheme_success_chance = yes
|
||||
landing_house_members_gives_renown = yes
|
||||
penalty_for_revoking_titles_from_house_members = yes
|
||||
loyal_trait_more_common = yes
|
||||
}
|
||||
character_modifier = {
|
||||
dynasty_house_opinion = 15
|
||||
opinion_of_liege = -10
|
||||
monthly_court_grandeur_change_mult = 0.2
|
||||
political_scheme_phase_duration_add = minor_scheme_phase_duration_bonus_value
|
||||
personal_scheme_phase_duration_add = minor_scheme_phase_duration_bonus_value
|
||||
ai_honor = -20
|
||||
ai_war_chance = 0.5
|
||||
ai_war_cooldown = -0.25
|
||||
same_culture_mercenary_hire_cost_mult = -0.15
|
||||
character_travel_speed_mult = 0.1
|
||||
character_travel_safety_mult = 0.1
|
||||
tyranny_gain_mult = 0.5
|
||||
accolade_glory_gain_mult = 0.1
|
||||
}
|
||||
|
||||
cost = {
|
||||
prestige = {
|
||||
add = {
|
||||
value = tradition_base_cost
|
||||
desc = BASE
|
||||
format = "BASE_VALUE_FORMAT"
|
||||
}
|
||||
if = {
|
||||
limit = {
|
||||
NOR = {
|
||||
culture_pillar:ethos_bureaucratic = { is_in_list = traits }
|
||||
culture_pillar:ethos_courtly = { is_in_list = traits }
|
||||
culture_pillar:ethos_spiritual = { is_in_list = traits }
|
||||
}
|
||||
}
|
||||
add = {
|
||||
value = tradition_incompatible_ethos_penalty
|
||||
desc = not_bureaucratic_courtly_or_spiritual_desc
|
||||
}
|
||||
}
|
||||
if = {
|
||||
limit = {
|
||||
has_dlc_feature = royal_court
|
||||
OR = {
|
||||
scope:character = { has_royal_court = no }
|
||||
NOT = {
|
||||
scope:character = {
|
||||
court_grandeur_current_level >= very_high_court_grandeur_level
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
add = {
|
||||
value = tradition_unfulfilled_criteria_penalty
|
||||
desc = culture_head_court_grandeur_desc
|
||||
}
|
||||
}
|
||||
|
||||
multiply = tradition_replacement_cost_if_relevant
|
||||
}
|
||||
}
|
||||
|
||||
ai_will_do = {
|
||||
value = 200
|
||||
if = {
|
||||
limit = { # Admin should be more into this
|
||||
scope:character = {
|
||||
has_government = administrative_government
|
||||
}
|
||||
}
|
||||
multiply = 2
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
tradition_swords_of_freedom = {
|
||||
category = regional
|
||||
|
||||
layers = {
|
||||
0 = martial
|
||||
1 = western
|
||||
4 = swords.dds
|
||||
}
|
||||
|
||||
is_shown = {
|
||||
OR = {
|
||||
this = culture:kuhjung
|
||||
any_parent_culture_or_above = {
|
||||
this = culture:kuhjung
|
||||
}
|
||||
}
|
||||
}
|
||||
can_pick = {
|
||||
culture_not_pacifistic_trigger = yes
|
||||
}
|
||||
|
||||
parameters = {
|
||||
unlock_maa_kuhjung = yes
|
||||
strong_traits_more_common = yes
|
||||
}
|
||||
character_modifier = {
|
||||
maa_damage_mult = 0.05
|
||||
men_at_arms_limit = 1
|
||||
county_opinion_add = -10
|
||||
}
|
||||
|
||||
cost = {
|
||||
prestige = {
|
||||
add = {
|
||||
value = tradition_base_cost
|
||||
desc = BASE
|
||||
format = "BASE_VALUE_FORMAT"
|
||||
}
|
||||
if = {
|
||||
limit = {
|
||||
NOR = {
|
||||
culture_pillar:ethos_bellicose = { is_in_list = traits }
|
||||
culture_pillar:ethos_stoic = { is_in_list = traits }
|
||||
culture_pillar:ethos_communal = { is_in_list = traits }
|
||||
}
|
||||
}
|
||||
add = {
|
||||
value = tradition_incompatible_ethos_penalty
|
||||
desc = not_bellicose_stoic_or_communal_desc
|
||||
}
|
||||
}
|
||||
if = {
|
||||
limit = {
|
||||
scope:character = {
|
||||
NOR = { # Culture Head need to have a 8 sized regiment of either Light/Heavy/Archer Cavalry
|
||||
number_maa_soldiers_of_base_type = {
|
||||
type = light_cavalry
|
||||
value >= 800
|
||||
}
|
||||
number_maa_soldiers_of_base_type = {
|
||||
type = heavy_cavalry
|
||||
value >= 400
|
||||
}
|
||||
number_maa_soldiers_of_base_type = {
|
||||
type = archer_cavalry
|
||||
value >= 800
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
add = {
|
||||
value = tradition_unfulfilled_criteria_penalty
|
||||
desc = culture_head_cavalry_desc
|
||||
}
|
||||
}
|
||||
|
||||
multiply = tradition_replacement_cost_if_relevant
|
||||
}
|
||||
}
|
||||
|
||||
ai_will_do = {
|
||||
value = 200
|
||||
if = {
|
||||
limit = { # Reduce chance slightly if the culture has access to other "cavalry" types
|
||||
OR = {
|
||||
has_innovation = innovation_war_camels
|
||||
has_innovation = innovation_elephantry
|
||||
}
|
||||
}
|
||||
multiply = 0.4
|
||||
}
|
||||
else_if = {
|
||||
limit = {
|
||||
scope:character ?= {
|
||||
ai_has_warlike_personality = yes
|
||||
}
|
||||
}
|
||||
multiply = 4
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
tradition_british_meritocracy = { # Offshoot of tradition_philosopher_culture
|
||||
category = societal
|
||||
|
||||
layers = {
|
||||
0 = learning
|
||||
1 = western
|
||||
4 = beacon_of_learning.dds
|
||||
}
|
||||
|
||||
is_shown = {
|
||||
has_fp3_dlc_trigger = yes
|
||||
OR = {
|
||||
has_cultural_pillar = heritage_anglo_frisian
|
||||
has_cultural_pillar = heritage_brythonic
|
||||
}
|
||||
NOT = { has_cultural_tradition = tradition_philosopher_culture } # Replaces Philosopher Culture
|
||||
}
|
||||
|
||||
can_pick = {
|
||||
custom_description = {
|
||||
text = culture_not_bellicose
|
||||
NOT = {
|
||||
culture_pillar:ethos_bellicose = { is_in_list = traits }
|
||||
}
|
||||
}
|
||||
OR = {
|
||||
has_cultural_pillar = heritage_anglo_frisian
|
||||
has_cultural_pillar = heritage_brythonic
|
||||
}
|
||||
NOT = { has_cultural_tradition = tradition_warrior_culture }
|
||||
NOT = { has_cultural_tradition = tradition_philosopher_culture }
|
||||
}
|
||||
can_pick_for_hybridization = {
|
||||
custom_tooltip = {
|
||||
text = no_warrior_culture
|
||||
NOT = { # Only blocks polygamous to avoid duplicate warnings, but is blocked by concubines
|
||||
culture_tradition:tradition_warrior_culture = { is_in_list = traits }
|
||||
}
|
||||
}
|
||||
custom_tooltip = {
|
||||
text = no_philosopher_culture
|
||||
NOT = { # Only blocks polygamous to avoid duplicate warnings, but is blocked by concubines
|
||||
culture_tradition:tradition_philosopher_culture = { is_in_list = traits }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
parameters = {
|
||||
#pensive_trait_more_common = yes
|
||||
#rowdy_trait_less_common = yes
|
||||
innovation_from_learning_traits = yes
|
||||
can_appoint_court_scholar = yes
|
||||
guardian_education_better_outcomes = yes
|
||||
}
|
||||
|
||||
character_modifier = {
|
||||
stress_gain_mult = 0.25
|
||||
monthly_lifestyle_xp_gain_mult = 0.2
|
||||
learning_per_fame_level = 1
|
||||
}
|
||||
|
||||
cost = {
|
||||
prestige = {
|
||||
add = {
|
||||
value = tradition_base_cost
|
||||
desc = BASE
|
||||
format = "BASE_VALUE_FORMAT"
|
||||
}
|
||||
if = {
|
||||
limit = {
|
||||
NOR = {
|
||||
culture_pillar:ethos_courtly = { is_in_list = traits }
|
||||
culture_pillar:ethos_communal = { is_in_list = traits }
|
||||
culture_pillar:ethos_spiritual = { is_in_list = traits }
|
||||
}
|
||||
}
|
||||
add = {
|
||||
value = tradition_incompatible_ethos_penalty
|
||||
desc = not_courtly_communal_or_spiritual_desc
|
||||
}
|
||||
}
|
||||
if = {
|
||||
limit = {
|
||||
trigger_if = {
|
||||
limit = {
|
||||
scope:character = {
|
||||
is_ai = no
|
||||
}
|
||||
}
|
||||
NOT = {
|
||||
any_ruler = {
|
||||
count >= 5
|
||||
culture = prev
|
||||
primary_title.tier >= tier_county
|
||||
has_trait = scholar
|
||||
}
|
||||
}
|
||||
}
|
||||
trigger_else = {
|
||||
always = no
|
||||
}
|
||||
}
|
||||
add = {
|
||||
value = tradition_unfulfilled_criteria_penalty
|
||||
desc = rulers_with_scholar_desc
|
||||
}
|
||||
}
|
||||
|
||||
if = {
|
||||
limit = {
|
||||
culture_tradition_reduction_trigger = { TRADITION = tradition_fp3_beacon_of_learning }
|
||||
}
|
||||
multiply = {
|
||||
value = 0.5
|
||||
desc = inspired_by_culture_desc
|
||||
}
|
||||
}
|
||||
|
||||
multiply = tradition_replacement_cost_if_relevant
|
||||
}
|
||||
}
|
||||
|
||||
ai_will_do = {
|
||||
value = 200
|
||||
if = {
|
||||
limit = {
|
||||
NOR = {
|
||||
culture_pillar:ethos_courtly = { is_in_list = traits }
|
||||
culture_pillar:ethos_communal = { is_in_list = traits }
|
||||
culture_pillar:ethos_spiritual = { is_in_list = traits }
|
||||
}
|
||||
}
|
||||
multiply = 0
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
tradition_heirs_of_numenor = { # Offshoot of tradition_philosopher_culture
|
||||
category = societal
|
||||
|
||||
layers = {
|
||||
0 = diplo
|
||||
1 = western
|
||||
4 = crown.dds
|
||||
}
|
||||
|
||||
is_shown = {
|
||||
OR = {
|
||||
has_cultural_pillar = heritage_french
|
||||
has_cultural_pillar = heritage_mosellic
|
||||
has_cultural_pillar = heritage_west_germanic
|
||||
this = culture:rottisch
|
||||
this = culture:rhinelander
|
||||
any_parent_culture_or_above = {
|
||||
OR = {
|
||||
this = culture:rottisch
|
||||
this = culture:rhinelander
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
parameters = {
|
||||
can_use_conquest_cbs = yes
|
||||
cb_lower_prestige_level_requirement = yes
|
||||
cheaper_cbs = yes
|
||||
}
|
||||
|
||||
character_modifier = {
|
||||
dread_gain_mult = -0.5
|
||||
tyranny_gain_mult = 0.5
|
||||
monthly_piety_gain_mult = 0.2
|
||||
}
|
||||
|
||||
cost = {
|
||||
prestige = {
|
||||
add = {
|
||||
value = tradition_base_cost
|
||||
desc = BASE
|
||||
format = "BASE_VALUE_FORMAT"
|
||||
}
|
||||
multiply = tradition_replacement_cost_if_relevant
|
||||
}
|
||||
}
|
||||
|
||||
ai_will_do = {
|
||||
value = 0
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
tradition_landstinget = {
|
||||
category = regional
|
||||
|
||||
layers = {
|
||||
0 = learning
|
||||
1 = western
|
||||
4 = council.dds
|
||||
}
|
||||
|
||||
is_shown = {
|
||||
has_cultural_pillar = heritage_north_germanic
|
||||
}
|
||||
can_pick = {
|
||||
has_cultural_pillar = heritage_north_germanic
|
||||
}
|
||||
|
||||
parameters = {
|
||||
scandinavian_elective_enabled = yes
|
||||
trait_county_opinion_modifiers = yes
|
||||
grants_to_lowborns_bonuses = yes
|
||||
collective_lands_farms_bonuses = yes
|
||||
peasant_leader_is_inherited = yes
|
||||
}
|
||||
county_modifier = {
|
||||
development_growth_factor = 0.1
|
||||
monthly_county_control_growth_factor = -0.2
|
||||
build_speed = 0.2
|
||||
}
|
||||
|
||||
cost = {
|
||||
prestige = {
|
||||
add = {
|
||||
value = tradition_base_cost
|
||||
desc = BASE
|
||||
format = "BASE_VALUE_FORMAT"
|
||||
}
|
||||
if = {
|
||||
limit = {
|
||||
NOR = {
|
||||
culture_pillar:ethos_bureaucratic = { is_in_list = traits }
|
||||
culture_pillar:ethos_bellicose = { is_in_list = traits }
|
||||
}
|
||||
}
|
||||
add = {
|
||||
value = tradition_incompatible_ethos_penalty
|
||||
desc = not_bellicose_or_bureaucratic_desc
|
||||
}
|
||||
}
|
||||
if = {
|
||||
limit = {
|
||||
NOT = {
|
||||
scope:character = {
|
||||
any_sub_realm_county = {
|
||||
county_opinion < 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
add = {
|
||||
value = tradition_unfulfilled_criteria_penalty
|
||||
desc = counties_with_low_county_opinion_desc
|
||||
}
|
||||
}
|
||||
|
||||
if = {
|
||||
limit = {
|
||||
culture_tradition_reduction_trigger = { TRADITION = tradition_things }
|
||||
}
|
||||
multiply = {
|
||||
value = 0.5
|
||||
desc = inspired_by_culture_desc
|
||||
}
|
||||
}
|
||||
|
||||
multiply = tradition_replacement_cost_if_relevant
|
||||
}
|
||||
}
|
||||
|
||||
ai_will_do = {
|
||||
value = 200
|
||||
if = {
|
||||
limit = {
|
||||
OR = {
|
||||
culture_tradition:tradition_the_witenagemot = { is_in_list = traits }
|
||||
culture_tradition:tradition_fp3_jirga = { is_in_list = traits }
|
||||
}
|
||||
}
|
||||
multiply = 0
|
||||
}
|
||||
}
|
||||
}
|
||||
1486
N3OW/common/decisions/80_major_decisions_roman.txt
Normal file
1486
N3OW/common/decisions/80_major_decisions_roman.txt
Normal file
File diff suppressed because it is too large
Load diff
309
N3OW/common/decisions/major_decisions_NEOW.txt
Normal file
309
N3OW/common/decisions/major_decisions_NEOW.txt
Normal file
|
|
@ -0,0 +1,309 @@
|
|||
restore_european_union_decision = {
|
||||
picture = {
|
||||
reference = "gfx/interface/illustrations/decisions/found_european_union.dds"
|
||||
}
|
||||
desc = restore_european_union_decision_desc
|
||||
selection_tooltip = restore_european_union_decision_tooltip
|
||||
decision_group_type = major
|
||||
|
||||
ai_check_interval = 120
|
||||
|
||||
is_shown = {
|
||||
is_ruler = yes
|
||||
is_playable_character = yes
|
||||
OR = {
|
||||
culture = { has_cultural_pillar = heritage_brythonic }
|
||||
culture = { has_cultural_pillar = heritage_goidelic }
|
||||
culture = { has_cultural_pillar = heritage_anglo_frisian }
|
||||
culture = { has_cultural_pillar = heritage_french }
|
||||
culture = { has_cultural_pillar = heritage_mosellic }
|
||||
culture = { has_cultural_pillar = heritage_west_germanic }
|
||||
}
|
||||
NOT = { #Can only do it once.
|
||||
is_target_in_global_variable_list = {
|
||||
name = unavailable_unique_decisions
|
||||
target = flag:flag_restored_european_union
|
||||
}
|
||||
}
|
||||
OR = {
|
||||
government_has_flag = government_is_feudal
|
||||
government_has_flag = government_is_republic
|
||||
government_has_flag = government_is_clan
|
||||
has_government = administrative_government
|
||||
}
|
||||
}
|
||||
|
||||
is_valid = {
|
||||
prestige_level >= max_prestige_level
|
||||
|
||||
completely_controls = title:d_meath
|
||||
completely_controls = title:d_london
|
||||
completely_controls = title:d_ile_de_france
|
||||
completely_controls = title:d_toledo
|
||||
completely_controls = title:d_beja
|
||||
completely_controls = title:d_brabant
|
||||
completely_controls = title:d_holland
|
||||
completely_controls = title:d_luxembourg
|
||||
completely_controls = title:d_transjurania
|
||||
completely_controls = title:d_latium
|
||||
completely_controls = title:d_ostmark
|
||||
}
|
||||
|
||||
is_valid_showing_failures_only = {
|
||||
is_landed = yes
|
||||
is_capable_adult = yes
|
||||
is_imprisoned = no
|
||||
is_independent_ruler = yes
|
||||
}
|
||||
|
||||
effect = {
|
||||
custom_tooltip = restore_european_union_decision_effect_tooltip
|
||||
#Create Roman Empire, shift dejure/history/laws, destroy e_byzantium.
|
||||
|
||||
|
||||
hidden_effect = {
|
||||
every_held_title = { #Should shift all dejure of all Empires owned at the time.
|
||||
limit = {
|
||||
tier = tier_empire
|
||||
}
|
||||
every_in_de_jure_hierarchy = {
|
||||
limit = {
|
||||
tier = tier_kingdom
|
||||
}
|
||||
set_de_jure_liege_title = title:e_european_union
|
||||
|
||||
}
|
||||
}
|
||||
every_held_title = { #Completely Controlled Kingdoms as well.
|
||||
limit = {
|
||||
tier = tier_kingdom
|
||||
root = { completely_controls = prev }
|
||||
}
|
||||
set_de_jure_liege_title = title:e_european_union
|
||||
}
|
||||
}
|
||||
get_title = title:e_european_union
|
||||
create_title_and_vassal_change = {
|
||||
type = created
|
||||
save_scope_as = change
|
||||
add_claim_on_loss = no
|
||||
}
|
||||
resolve_title_and_vassal_change = scope:change
|
||||
if = { # Move your Title MaAs to your new title if you have any
|
||||
limit = {
|
||||
government_has_flag = government_is_administrative
|
||||
primary_title = {
|
||||
any_title_maa_regiment = { count >= 1 }
|
||||
}
|
||||
}
|
||||
hidden_effect = {
|
||||
primary_title = { transfer_title_maa_ownership = title:e_european_union }
|
||||
}
|
||||
}
|
||||
hidden_effect = { set_primary_title_to = title:e_european_union }
|
||||
every_held_title = { #Should destroy all other Empires owned at the time.
|
||||
limit = {
|
||||
tier = tier_empire
|
||||
NOT = { this = title:e_european_union }
|
||||
}
|
||||
root = { destroy_title = prev }
|
||||
}
|
||||
if = { #Automatically move capital to Constantinople, unless it's been set to Rome.
|
||||
limit = {
|
||||
NOT = { capital_county = { this = title:c_brabant } }
|
||||
}
|
||||
hidden_effect = {
|
||||
if = { #Usurp if not held personally.
|
||||
limit = {
|
||||
NOT = { this = title:c_brabant.holder }
|
||||
}
|
||||
create_title_and_vassal_change = {
|
||||
type = returned
|
||||
save_scope_as = change
|
||||
add_claim_on_loss = no
|
||||
}
|
||||
title:c_brabant = {
|
||||
change_title_holder = {
|
||||
holder = root
|
||||
change = scope:change
|
||||
}
|
||||
}
|
||||
resolve_title_and_vassal_change = scope:change
|
||||
}
|
||||
}
|
||||
root = { set_realm_capital = title:c_brabant }
|
||||
}
|
||||
#hidden_effect = {
|
||||
# add_character_flag = flag_restorer_of_rome #used for Eulogy.
|
||||
# title:e_roman_empire = {
|
||||
# set_variable = rome_was_restored_by_byzantium
|
||||
# }
|
||||
#}
|
||||
#trigger_event = roman_restoration.0001 ###to do later
|
||||
hidden_effect = {
|
||||
add_to_global_variable_list = {
|
||||
name = unavailable_unique_decisions
|
||||
target = flag:flag_restored_european_union
|
||||
}
|
||||
set_global_variable = {
|
||||
name = flag_restored_european_union
|
||||
value = root
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ai_potential = {
|
||||
always = yes
|
||||
}
|
||||
|
||||
ai_will_do = {
|
||||
base = 100
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
form_the_kingdom_of_rhineland_decision = {
|
||||
picture = {
|
||||
reference = "gfx/interface/illustrations/decisions/decision_found_kingdom.dds"
|
||||
}
|
||||
decision_group_type = major
|
||||
|
||||
ai_check_interval_by_tier = {
|
||||
barony = 0
|
||||
county = 60
|
||||
duchy = 60
|
||||
kingdom = 0
|
||||
empire = 0
|
||||
hegemony = 0
|
||||
}
|
||||
|
||||
desc = form_the_kingdom_of_rhineland_decision_desc
|
||||
selection_tooltip = form_the_kingdom_of_rhineland_decision_tooltip
|
||||
|
||||
is_shown = {
|
||||
is_playable_character = yes
|
||||
highest_held_title_tier <= tier_duchy
|
||||
NOT = {
|
||||
is_target_in_global_variable_list = {
|
||||
name = unavailable_unique_decisions
|
||||
target = flag:flag_formed_kingdom_of_rhineland
|
||||
}
|
||||
}
|
||||
OR = {
|
||||
culture = culture:palatine
|
||||
culture = culture:rhinelander
|
||||
culture = culture:turkisch
|
||||
culture = culture:elsasse
|
||||
culture = culture:kleverlandish
|
||||
}
|
||||
}
|
||||
|
||||
is_valid = {
|
||||
top_liege = this
|
||||
has_title = title:d_lower_lorraine
|
||||
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_cologne
|
||||
completely_controls = title:d_trier
|
||||
}
|
||||
|
||||
is_valid_showing_failures_only = {
|
||||
is_landed = yes
|
||||
}
|
||||
|
||||
effect = {
|
||||
gain_heroic_legend_seed_tooltip_effect = yes
|
||||
save_scope_as = founder
|
||||
culture = { save_scope_as = founder_culture }
|
||||
title:k_rhineland = { save_scope_as = k_rhineland }
|
||||
title:d_trier = { save_scope_as = d_trier }
|
||||
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 }
|
||||
title:c_nassau = { save_scope_as = c_nassau }
|
||||
create_title_and_vassal_change = {
|
||||
type = created
|
||||
save_scope_as = change
|
||||
}
|
||||
title:k_rhineland = {
|
||||
change_title_holder = {
|
||||
holder = scope:founder
|
||||
change = scope:change
|
||||
}
|
||||
}
|
||||
resolve_title_and_vassal_change = scope:change
|
||||
add_prestige = major_prestige_gain
|
||||
custom_tooltip = form_the_kingdom_of_rhineland_decision_decision.tt.form_rhineland
|
||||
trigger_event = iberia_north_africa.0131
|
||||
# De jure shifts.
|
||||
## Take care of the preferred empire.
|
||||
if = {
|
||||
limit = { NOT = { title:k_rhineland.empire = title:d_lower_lorraine.empire } }
|
||||
title:k_rhineland = { set_de_jure_liege_title = title:d_lower_lorraine.empire }
|
||||
}
|
||||
## The heartlands drift over.
|
||||
title:d_lower_lorraine = { set_de_jure_liege_title = title:k_rhineland }
|
||||
## Various neighbouring duchies can be preemptively integrated.
|
||||
if = {
|
||||
limit = { completely_controls = title:d_alsace }
|
||||
title:d_alsace = { set_de_jure_liege_title = title:k_rhineland }
|
||||
}
|
||||
else = { custom_tooltip = form_the_kingdom_of_rhineland_decision.tt.drift.d_alsace }
|
||||
if = {
|
||||
limit = { completely_controls = title:c_bitburg }
|
||||
title:c_bitburg = { set_de_jure_liege_title = title:d_trier }
|
||||
}
|
||||
else = { custom_tooltip = form_the_kingdom_of_rhineland_decision.tt.drift.c_bitburg }
|
||||
if = {
|
||||
limit = { completely_controls = title:c_nassau }
|
||||
title:d_navarra = { set_de_jure_liege_title = title:d_lower_lorraine }
|
||||
}
|
||||
else = { custom_tooltip = form_the_kingdom_of_rhineland_decision.tt.drift.c_nassau }
|
||||
# Once per game.
|
||||
add_to_global_variable_list = {
|
||||
name = unavailable_unique_decisions
|
||||
target = flag:flag_formed_kingdom_of_rhineland
|
||||
}
|
||||
# Note this for books and such.
|
||||
set_global_variable = {
|
||||
name = flag_formed_kingdom_of_rhineland
|
||||
value = scope:founder
|
||||
}
|
||||
}
|
||||
|
||||
cost = {
|
||||
gold = {
|
||||
# Since we want this to happen, it free for the AI...
|
||||
value = 0
|
||||
# ... but costs for players
|
||||
if = {
|
||||
limit = {
|
||||
has_treasury = no
|
||||
is_ai = no
|
||||
}
|
||||
add = 200
|
||||
}
|
||||
}
|
||||
treasury = {
|
||||
value = 0
|
||||
if = {
|
||||
limit = {
|
||||
has_treasury = yes
|
||||
is_ai = no
|
||||
}
|
||||
add = 200
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ai_potential = {
|
||||
any_held_title = {
|
||||
this = title:d_lower_lorraine
|
||||
}
|
||||
}
|
||||
|
||||
ai_will_do = { base = 100 }
|
||||
}
|
||||
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.
|
|
@ -0,0 +1,161 @@
|
|||
# Emblems used in the CoA designer.
|
||||
# The order defines the order in which they are listed.
|
||||
#
|
||||
# Format:
|
||||
# filename = {
|
||||
# # How many colors options to show for this emblem. Optional, will assume maximum number of colors if missing
|
||||
# colors = 3
|
||||
#
|
||||
# # Whether to show the emblem in the CoA designer. Default yes.
|
||||
# # Add an entry with no to allow specifying number of colors for emblems used in adjusted mode
|
||||
# visible = no
|
||||
# }
|
||||
#
|
||||
#
|
||||
# Use the count_unique_emblem_colors console command to generate this instead of manually doing the tedium
|
||||
# Note that the command does NOT preserve your visible definitions, so you'll want to add them back in yourself, use a diff tool to make it easier
|
||||
|
||||
# Possible categories:
|
||||
# abstract
|
||||
# animals
|
||||
# circles_spirals
|
||||
# crosses_and_knots
|
||||
# faiths
|
||||
# manmade
|
||||
# nature
|
||||
# patterns
|
||||
# tribal_seal
|
||||
# writing
|
||||
# figures
|
||||
|
||||
# Double underscore intentional to make it the first option in the list
|
||||
|
||||
|
||||
###ABSTRACT
|
||||
NEOW_ce_heart.dds = { colors = 1 category = abstract }
|
||||
|
||||
###ANIMALS
|
||||
NEOW_ce_alerion.dds = { colors = 3 category = animals }
|
||||
NEOW_ce_archaeopteryx.dds = { colors = 3 category = animals }
|
||||
NEOW_ce_blackadder.dds = { colors = 3 category = animals }
|
||||
NEOW_ce_borz.dds = { colors = 2 category = animals }
|
||||
NEOW_ce_cow.dds = { colors = 3 category = animals }
|
||||
NEOW_ce_dragon_rampant.dds = { colors = 3 category = animals }
|
||||
NEOW_ce_dragon_rampant.dds = { colors = 3 category = animals }
|
||||
NEOW_ce_eagle_albania.dds = { colors = 1 category = animals }
|
||||
NEOW_ce_eagle_boned.dds = { colors = 3 category = animals }
|
||||
NEOW_ce_eagle_modern.dds = { colors = 3 category = animals }
|
||||
NEOW_ce_eagle_quraish.dds = { colors = 2 category = animals}
|
||||
NEOW_ce_eagle_romania.dds = { colors = 3 category = animals }
|
||||
NEOW_ce_eagle_russia.dds = { colors = 3 category = animals }
|
||||
NEOW_ce_gaul_boar.dds = { colors = 2 category = animals }
|
||||
NEOW_ce_goat_rampant.dds = { colors = 3 category = animals }
|
||||
NEOW_ce_griffin_head_crowned.dds = { colors = 3 category = animals }
|
||||
NEOW_ce_kulindadromeus.dds = { colors = 3 category = animals }
|
||||
NEOW_ce_lindwurm.dds = { colors = 3 category = animals }
|
||||
NEOW_ce_microraptor.dds = { colors = 3 category = animals }
|
||||
NEOW_ce_nap_eagle.dds = { colors = 1 category = animals }
|
||||
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
|
||||
NEOW_ce_arevakhach.dds = { colors = 1 category = crosses_and_knots }
|
||||
NEOW_ce_baltriskele.dds = { colors = 1 category = crosses_and_knots }
|
||||
NEOW_ce_celtic_union.dds = { colors = 2 category = crosses_and_knots }
|
||||
NEOW_ce_coeur_sacre.dds = { colors = 1 category = crosses_and_knots }
|
||||
NEOW_ce_cross_burgundian.dds = { colors = 1 category = crosses_and_knots }
|
||||
NEOW_ce_cross_camargue.dds = { colors = 1 category = crosses_and_knots }
|
||||
NEOW_ce_cross_carolignian.dds = { colors = 2 category = crosses_and_knots }
|
||||
NEOW_ce_cross_nordic.dds = { colors = 2 category = crosses_and_knots }
|
||||
NEOW_ce_burgundy_cross_spain.dds = { colors = 1 category = crosses_and_knots }
|
||||
|
||||
###FAITHS
|
||||
NEOW_ce_gondor_star.dds = { colors = 1 category = faiths }
|
||||
NEOW_ce_gondor_tree.dds = { colors = 1 category = faiths }
|
||||
NEOW_ce_juche.dds = { colors = 1 category = faiths }
|
||||
NEOW_ce_numenor_tree.dds = { colors = 1 category = faiths }
|
||||
NEOW_ce_spatstone.dds = { colors = 1 category = faiths }
|
||||
|
||||
###FIGURES
|
||||
NEOW_ce_head_blindfolded.dds = { colors = 3 category = figures }
|
||||
NEOW_ce_harpy.dds = { colors = 3 category = figures }
|
||||
NEOW_ce_harpy_crowned.dds = { colors = 3 category = figures }
|
||||
NEOW_ce_horse_tuva.dds = { colors = 2 category = figures }
|
||||
NEOW_ce_knight_02.dds = { colors = 3 category = figures }
|
||||
NEOW_ce_mao.dds = { colors = 1 category = figures }
|
||||
NEOW_ce_monk.dds.dds = { colors = 1 category = figures }
|
||||
NEOW_ce_saint_peter.dds = { colors = 3 category = figures }
|
||||
NEOW_ce_woman_01.dds = { colors = 3 category = manmade }
|
||||
|
||||
###MANMADE
|
||||
NEOW_ce_armillary_sphere.dds = { colors = 1 category = manmade }
|
||||
NEOW_ce_arnor_crown.dds = { colors = 1 category = manmade }
|
||||
NEOW_ce_arnor_sceptre.dds = { colors = 1 category = manmade }
|
||||
NEOW_ce_barrel.dds = { colors = 2 category = manmade }
|
||||
NEOW_ce_bishops_mitre.dds = { colors = 3 category = manmade }
|
||||
NEOW_ce_bohemia_crown.dds = { colors = 3 category = manmade }
|
||||
NEOW_ce_boot.dds = { colors = 1 category = manmade }
|
||||
NEOW_ce_bosphorus.dds = { colors = 1 category = manmade }
|
||||
NEOW_ce_bridge_3.dds = { colors = 1 category = manmade }
|
||||
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 }
|
||||
NEOW_ce_guinness_logo.dds = { colors = 1 category = manmade }
|
||||
NEOW_ce_hammer.dds = { colors = 2 category = manmade }
|
||||
NEOW_ce_hamsick_china.dds = { colors = 1 category = manmade }
|
||||
NEOW_ce_hamsick_soviet.dds = { colors = 1 category = manmade }
|
||||
NEOW_ce_helm_of_skanderbeg.dds = { colors = 1 category = manmade }
|
||||
NEOW_ce_iron_hat.dds = { colors = 2 category = manmade }
|
||||
NEOW_ce_jugotorch.dds = { colors = 2 category = manmade }
|
||||
NEOW_ce_lantern.dds = { colors = 3 category = manmade }
|
||||
NEOW_ce_millrind.dds = { colors = 1 category = manmade }
|
||||
NEOW_ce_millwheel.dds = { colors = 1 category = manmade }
|
||||
NEOW_ce_plough.dds = { colors = 2 category = manmade }
|
||||
NEOW_ce_plowshare.dds = { colors = 1 category = manmade }
|
||||
NEOW_ce_scythe_blade.dds = { colors = 1 category = manmade }
|
||||
NEOW_ce_ship_trimast.dds = { colors = 1 category = manmade }
|
||||
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
|
||||
NEOW_ce_acorn.dds = { colors = 1 category = nature }
|
||||
NEOW_ce_cedar.dds = { colors = 2 category = nature }
|
||||
NEOW_ce_drop.dds = { colors = 2 category = nature }
|
||||
NEOW_ce_flower_star.dds = { colors = 2 category = nature }
|
||||
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 }
|
||||
NEOW_ce_taiwan_star.dds = { colors = 1 category = nature }
|
||||
NEOW_ce_tree_fir.dds = { colors = 2 category = nature }
|
||||
NEOW_ce_trefoil.dds = { colors = 1 category = nature }
|
||||
NEOW_ce_vergina.dds = { colors = 1 category = nature }
|
||||
NEOW_ce_zanzibar.dds = { colors = 1 category = nature }
|
||||
|
||||
###PATTERNS
|
||||
NEOW_ce_bend_alsace.dds = { colors = 1 category = patterns }
|
||||
NEOW_ce_border_shield_embattled.dds = { colors = 1 category = patterns }
|
||||
NEOW_ce_inescutcheon_lozengy.dds = { colors = 2 category = patterns }
|
||||
NEOW_ce_wave_single.dds = { colors = 1 category = patterns }
|
||||
NEOW_ce_waves_05.dds = { colors = 2 category = patterns }
|
||||
|
||||
###TRIBAL SEALS
|
||||
NEOW_ce_giray.dds = { colors = 1 category = tribal_seal }
|
||||
NEOW_ce_tryzub.dds = { colors = 1 category = tribal_seal }
|
||||
85
N3OW/history/titles/NEOW_other_titles.txt
Normal file
85
N3OW/history/titles/NEOW_other_titles.txt
Normal file
|
|
@ -0,0 +1,85 @@
|
|||
e_britannia = {
|
||||
|
||||
2212.1.1={
|
||||
holder = britannia_arthur_crowtemple # Arthwr Crowtemple
|
||||
}
|
||||
2236.8.4={
|
||||
holder = britannia_kate_crowtemple # Kate Crowtemple
|
||||
}
|
||||
2251.7.16={
|
||||
holder = britannia_mordred_crowtemple # Mordred "the Cruel" Crowtemple, end of the Crowtemple dynasty
|
||||
}
|
||||
2498.1.1 = {
|
||||
holder = britannia_cyflymarhyan_elyan #Elyan Cyflymarhyan
|
||||
}
|
||||
2527.1.1 = {
|
||||
holder = britannia_cyflymarhyan_islymo #Isylmo Cyflymarhyan
|
||||
}
|
||||
2530.1.1 = {
|
||||
holder = britannia_cyflymarhyan_frydyryk #Frydyryk Cyflymarhyan
|
||||
government = administrative_government
|
||||
effect = {
|
||||
if = {
|
||||
limit = {
|
||||
exists = holder
|
||||
has_dlc_feature = royal_court
|
||||
}
|
||||
holder = {
|
||||
set_court_type = court_administrative
|
||||
}
|
||||
}
|
||||
if = {
|
||||
limit = {
|
||||
exists = holder
|
||||
NOT = { has_dlc_feature = roads_to_power }
|
||||
}
|
||||
holder = {
|
||||
change_government = feudal_government
|
||||
add_realm_law_skip_effects = single_heir_succession_law
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
e_europa = {
|
||||
2499.1.1 = {
|
||||
holder = benelux_oranje_nassau_weilburg_leopold #Leopold BONW
|
||||
succession_laws = {
|
||||
feudal_elective_succession_law
|
||||
}
|
||||
}
|
||||
2554.1.1 = {
|
||||
holder = benelux_oranje_nassau_weilburg_hendrick #Hendrik BONW
|
||||
}
|
||||
}
|
||||
|
||||
e_france = {
|
||||
2222.1.1 = {
|
||||
holder = france_bonaparte_isildur_i #Isildur I Bonaparte
|
||||
}
|
||||
2350.12.1 = {
|
||||
holder = france_bonaparte_erendis
|
||||
}
|
||||
2372.3.13 = {
|
||||
holder = france_bonaparte_elendil_3
|
||||
}
|
||||
2378.4.9 = {
|
||||
holder = france_bonaparte_ostoher
|
||||
}
|
||||
2403.8.16 = {
|
||||
holder = france_bonaparte_isildur_3
|
||||
}
|
||||
2419.8.16 = {
|
||||
holder = france_bonaparte_anarion
|
||||
}
|
||||
2429.12.13 = {
|
||||
holder = 0
|
||||
}
|
||||
}
|
||||
|
||||
#e_europa = { # idk why putting it on NEOW_other_titles won't make it work, but it won't, so here it is - ProHunter
|
||||
# 2554.1.1 = {
|
||||
# holder = benelux_oranje_nassau_weilburg_hendrick #Hendrik BONW
|
||||
# }
|
||||
#}
|
||||
223
N3OW/history/titles/k_netherlands.txt
Normal file
223
N3OW/history/titles/k_netherlands.txt
Normal file
|
|
@ -0,0 +1,223 @@
|
|||
k_frisia = { #rename to k_netherlands later
|
||||
2100.1.1 = {
|
||||
succession_laws = {
|
||||
feudal_elective_succession_law
|
||||
}
|
||||
}
|
||||
2505.1.1 = {
|
||||
change_development_level = 7
|
||||
}
|
||||
2471.2.7 = {
|
||||
holder = benelux_jaan_zolt_2
|
||||
}
|
||||
2519.1.1 = {
|
||||
holder = benelux_jaan_zolt_1
|
||||
}
|
||||
2523.1.1 = {
|
||||
holder = benelux_oranje_nassau_weilburg_leopold #Leopold III BONW
|
||||
}
|
||||
2554.1.1 = {
|
||||
holder = benelux_oranje_nassau_weilburg_hendrick #Hendrik BONW
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
d_utrecht = {
|
||||
2500.1.1 = {
|
||||
holder = benelux_zwolle_charlotte #
|
||||
}
|
||||
2519.1.1 = {
|
||||
holder = benelux_oranje_nassau_weilburg_leopold #
|
||||
}
|
||||
2550.1.1 = {
|
||||
holder = benelux_oranje_nassau_weilburg_philippe #
|
||||
}
|
||||
}
|
||||
|
||||
c_oversticht = {
|
||||
2500.1.1 = {
|
||||
holder = benelux_zwolle_charlotte #
|
||||
}
|
||||
2519.1.1 = {
|
||||
holder = benelux_oranje_nassau_weilburg_leopold #
|
||||
}
|
||||
2550.1.1 = {
|
||||
holder = benelux_oranje_nassau_weilburg_philippe #
|
||||
}
|
||||
}
|
||||
|
||||
c_groningen = {
|
||||
2500.1.1 = {
|
||||
holder = benelux_zwolle_charlotte #
|
||||
}
|
||||
2519.1.1 = {
|
||||
holder = benelux_oranje_nassau_weilburg_leopold #
|
||||
}
|
||||
2550.1.1 = {
|
||||
holder = benelux_oranje_nassau_weilburg_philippe #
|
||||
}
|
||||
}
|
||||
|
||||
d_holland = {
|
||||
2471.2.7 = {
|
||||
holder = benelux_jaan_zolt_2
|
||||
}
|
||||
2519.1.1 = {
|
||||
holder = benelux_jaan_zolt_1 #
|
||||
liege = k_frisia
|
||||
}
|
||||
2523.1.1 = {
|
||||
holder = benelux_zolt_josephine #
|
||||
}
|
||||
2552.1.1 = {
|
||||
holder = benelux_oranje_nassau_weilburg_hendrick #
|
||||
}
|
||||
}
|
||||
|
||||
c_holland = {
|
||||
2471.2.7 = {
|
||||
holder = benelux_jaan_zolt_2
|
||||
}
|
||||
2519.1.1 = {
|
||||
holder = benelux_zolt_josephine #
|
||||
liege = k_frisia
|
||||
}
|
||||
2552.1.1 = {
|
||||
holder = benelux_oranje_nassau_weilburg_hendrick #
|
||||
}
|
||||
}
|
||||
c_westfriesland = {
|
||||
2471.2.7 = {
|
||||
holder = benelux_jaan_zolt_2
|
||||
}
|
||||
2519.1.1 = {
|
||||
holder = benelux_zolt_josephine #
|
||||
liege = k_frisia
|
||||
}
|
||||
2552.1.1 = {
|
||||
holder = benelux_oranje_nassau_weilburg_hendrick #
|
||||
}
|
||||
}
|
||||
|
||||
d_gelre = {
|
||||
2471.2.7 = {
|
||||
holder = benelux_jaan_zolt_2
|
||||
}
|
||||
2519.1.1 = {
|
||||
holder = benelux_jaan_zolt_1 #
|
||||
liege = k_frisia
|
||||
}
|
||||
2523.1.1 = {
|
||||
holder = benelux_zolt_josephine #
|
||||
}
|
||||
2552.1.1 = {
|
||||
holder = benelux_oranje_nassau_weilburg_hugo #
|
||||
}
|
||||
}
|
||||
|
||||
c_zutphen = {
|
||||
2471.2.7 = {
|
||||
holder = benelux_jaan_zolt_2
|
||||
}
|
||||
2519.1.1 = {
|
||||
holder = benelux_jaan_zolt_1 #
|
||||
liege = k_frisia
|
||||
}
|
||||
2523.1.1 = {
|
||||
holder = benelux_zolt_josephine #
|
||||
}
|
||||
2552.1.1 = {
|
||||
holder = benelux_oranje_nassau_weilburg_hugo #
|
||||
}
|
||||
}
|
||||
c_nijmegen = {
|
||||
2471.2.7 = {
|
||||
holder = benelux_jaan_zolt_2
|
||||
}
|
||||
2519.1.1 = {
|
||||
holder = benelux_jaan_zolt_1 #
|
||||
liege = k_frisia
|
||||
}
|
||||
2523.1.1 = {
|
||||
holder = benelux_zolt_josephine #
|
||||
}
|
||||
2552.1.1 = {
|
||||
holder = benelux_oranje_nassau_weilburg_hugo #
|
||||
}
|
||||
}
|
||||
|
||||
c_arnhem = {
|
||||
2471.2.7 = {
|
||||
holder = benelux_jaan_zolt_2
|
||||
}
|
||||
2519.1.1 = {
|
||||
holder = benelux_jaan_zolt_1 #
|
||||
liege = k_frisia
|
||||
}
|
||||
2523.1.1 = {
|
||||
holder = benelux_zolt_josephine #
|
||||
}
|
||||
2552.1.1 = {
|
||||
holder = benelux_oranje_nassau_weilburg_hugo #
|
||||
}
|
||||
}
|
||||
|
||||
c_flevoland = {
|
||||
2546.1.1 = {
|
||||
holder = benelux_cartwright_neville #Neville Cartwright
|
||||
liege = d_utrecht
|
||||
}
|
||||
}
|
||||
|
||||
c_frisia = {
|
||||
2546.1.1 = {
|
||||
holder = benelux_ryt_vos
|
||||
liege = k_frisia
|
||||
}
|
||||
}
|
||||
|
||||
c_dokkum = {
|
||||
2546.1.1 = {
|
||||
holder = benelux_ryt_vos
|
||||
liege = k_frisia
|
||||
}
|
||||
}
|
||||
c_ostfriesland = {
|
||||
2546.1.1 = {
|
||||
holder = benelux_lieme_jonker
|
||||
liege = k_frisia
|
||||
}
|
||||
}
|
||||
c_oldenburg = {
|
||||
2546.1.1 = {
|
||||
holder = benelux_lieme_jonker
|
||||
liege = k_frisia
|
||||
}
|
||||
}
|
||||
c_osnabruck = {
|
||||
2546.1.1 = {
|
||||
holder = benelux_victor_katzen
|
||||
liege = k_frisia
|
||||
}
|
||||
}
|
||||
|
||||
c_zeeland = {
|
||||
2554.1.1 = {
|
||||
holder = benelux_albert_middelburg #Guillem BONW
|
||||
liege = k_frisia
|
||||
}
|
||||
}
|
||||
|
||||
c_terschelling = {
|
||||
2519.1.1 = {
|
||||
holder = benelux_jaan_zolt_1 #
|
||||
liege = k_frisia
|
||||
}
|
||||
2523.1.1 = {
|
||||
holder = benelux_zolt_josephine #
|
||||
}
|
||||
2552.1.1 = {
|
||||
holder = benelux_oranje_nassau_weilburg_hendrick #
|
||||
}
|
||||
}
|
||||
83
N3OW/history/titles/k_norway.txt
Normal file
83
N3OW/history/titles/k_norway.txt
Normal file
|
|
@ -0,0 +1,83 @@
|
|||
k_norway = {
|
||||
2553.1.1 = {
|
||||
holder = scandinavia0002
|
||||
}
|
||||
2505.1.1 = {
|
||||
change_development_level = 7
|
||||
}
|
||||
}
|
||||
|
||||
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 = {
|
||||
2552.1.1 = {
|
||||
holder = scandinavia0007
|
||||
}
|
||||
}
|
||||
|
||||
c_orkdala = {
|
||||
2552.1.1 = {
|
||||
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
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
l_english:
|
||||
language_french_name:0 "French"
|
||||
language_sarphatique_name:0 "Sarphatique"
|
||||
language_english_name:0 "English"
|
||||
language_brittannic_name:0 "Britannic"
|
||||
language_scots_name:0 "Scots"
|
||||
language_anglo_irish_name:0 "Anglo-Irish"
|
||||
language_frisian_name:0 "Frisian"
|
||||
language_mosellic_name:0 "Mosellic"
|
||||
language_sardinian_name:0 "Sardic"
|
||||
language_cisalpine_name:0 "Gallo-Italian"
|
||||
language_italo_dalmatian_name:0 "Italo-Dalmatian"
|
||||
language_lusophonic_name:0 "Lusophone"
|
||||
language_hispanophonic_name:0 "Hispanophone"
|
||||
language_nordic_name:0 "Nordic"
|
||||
language_calo_name:0 "Caló"
|
||||
|
|
@ -0,0 +1,109 @@
|
|||
l_english:
|
||||
|
||||
#Adonist Tenets
|
||||
tenet_righteous_fury_name:0 "Righteous Fury"
|
||||
tenet_righteous_fury_desc:0 "It is our holy duty to ride forth against the forces of Moloch, in the name of our true chosen creator."
|
||||
|
||||
#Hermetic Tenets
|
||||
tenet_scientific_discourse_name:0 "Scientific Discourse"
|
||||
tenet_scientific_discourse_desc:0 "Our faith is fundamentally built on the logical pursuit of truth. Only through rigorous study can we seek to understand the failures of the old world."
|
||||
#Europeanist Tenets
|
||||
tenet_wandering_bards_name:0 "Wandering Bards"
|
||||
tenet_wandering_bards_desc:0 "The glory days of our Europa have long since passed. We must reignite the spirit of pan-Europeanism if we wish to herald a second Belle Époque."
|
||||
|
||||
tenet_five_maxims_name:0 "Five Maxims"
|
||||
tenet_five_maxims_desc:0 "All nobles are expected to adhere to the maxims laid down by our greatest thinkers - Placeholder, Placeholder, Placeholder, Placeholder, and Placeholder. Only through great effort can we seek to understand our great Creator, and they lay the foundations of the path to wisdom."
|
||||
|
||||
#Druidic Tenets
|
||||
tenet_druidry_name:0 "Druidry"
|
||||
tenet_druidry_desc:0 "Druids have ruled the bridge between our world and the spirit world since the beginning of time, and we recognise them as a powerful priestly class."
|
||||
|
||||
#Pirate Tenets
|
||||
tenet_terror_of_the_seas_name:0 "Terrors of the Seas"
|
||||
tenet_terror_of_the_seas_desc:0 "[ROOT.Faith.HighGodNameAlternate] gifted the world to only the strongest of [ROOT.Faith.HighGodHerHis|U] flock, and it is our divine duty to take what is rightfully ours. We will raze and plunder across the seas in order to prove our strength to the gods."
|
||||
|
||||
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|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."
|
||||
|
||||
|
||||
#Abrahamic Tenets
|
||||
rf_antediluvianist:0 "Antediluvianist"
|
||||
rf_esoteric:0 "Esoteric"
|
||||
tenet_alexandrian_catechism_name:0 "Scholasticism"
|
||||
tenet_alexandrian_catechism_desc:0 "Our faith has a long tradition of encouraging theologians to think critically and question the status quo."
|
||||
tenet_islamic_rationalism_name: "$tenet_alexandrian_catechism_name$"
|
||||
tenet_islamic_rationalism_desc: "$tenet_alexandrian_catechism_desc$"
|
||||
tenet_love_under_will_name:0 "Love Under Will"
|
||||
tenet_do_what_thou_wilt_name:0 "Do What Thou Wilt"
|
||||
tenet_rule_the_waves_name:0 "Rule The Waves"
|
||||
tenet_true_will_name:0 "True Will"
|
||||
tenet_love_under_will_desc:0 "One of the core tenets of Thelema is that of love. To love, and to love freely, is one of the greatest freedoms that man can experience."
|
||||
tenet_do_what_thou_wilt_desc:0 ""Do what thou wilt shall be the whole of the Law" are the words spoken by the prophet Crowley. Thus, all Thelemites are to act according to their True Will, their spiritual destiny."
|
||||
tenet_rule_the_waves_desc:0 "Our immortal Queen has bestowed upon us the waves of the Earth. As such, it is our divine duty to spread her flag to all corners of the Earth."
|
||||
tenet_true_will_desc:0 "The Thelemite is beholden to no liege or empire, only himself and the stars."
|
||||
tenet_catholic_communion_name:0 "Reformed Communion"
|
||||
tenet_catholic_communion_desc:0 "Our Church has undertaken many reforms throughout its history in order to keep up with the times, from the days of the Reformation to the post-Event era."
|
||||
doctrine_parameter_next_level_fortification: "The #V Fortification#! lines of [buildings|E] can be built one [era|E] earlier"
|
||||
doctrine_parameter_less_plague_spread_culture: "[characters|E] of this [religion|E] have a higher chance of [epidemics|E] not spreading into their lands"
|
||||
doctrine_parameter_trade_ports_give_control_growth:0 "The #V $building_type_common_tradeport_01$#! line of [buildings|E] will increase #V Control Growth#! in [counties|E] of this [faith|E]"
|
||||
doctrine_parameter_trade_ports_give_levies:0 "The #V $building_type_common_tradeport_01$#! line of [buildings|E] increase #V Levies#! and #V Size of [men_at_arms|E] [regiments|E]#! in [counties|E] of this [faith|E]"
|
||||
doctrine_parameter_can_travel_along_rivers:0 "$unlocks_sailable_major_rivers$"
|
||||
doctrine_parameter_can_build_pyramids:0 "Can Build Pyramids"
|
||||
doctrine_parameter_has_access_to_runestones:1 "[rulers|E] may raise runestones to commemorate certain major life events, earning [prestige_i][prestige|E] #weak (Before the #color_white $culture_era_high_medieval$#! [era|E])#!"
|
||||
doctrine_parameter_divine_the_stars_active:0 "Allows adherents to Divine the Stars and predict their future"
|
||||
doctrine_parameter_durandal_restoration_active:0 "Rulers may seek to restore Durendal"
|
||||
doctrine_parameter_novelist_title_replace_active:0 "Replaces most kingdom and empire titles in Western Europe"
|
||||
doctrine_parameter_easier_to_convert_faith_in_hills_forests:0 "[convert_county|E] speed in Forest and Hill [terrain|E]: #P +[EmptyScope.ScriptValue('easier_to_convert_faith_in_hills_forests_bonus_loc_control')|0]%#!"
|
||||
doctrine_parameter_easier_to_convert_culture_in_same_faith_hills_forests:0 "[promote_culture|E] speed in same-[faith|E] Forest and Hill [terrain|E]: #P +[EmptyScope.ScriptValue('promote_culture_easier_to_convert_culture_in_same_faith_hills_forests_bonus_loc_control')|0]%#!"
|
||||
doctrine_parameter_harder_to_convert_faith_away_in_hills_forests:0 "Hostile [convert_county|E] speed in Forest and Hill [terrain|E]: #P [EmptyScope.ScriptValue('harder_to_convert_faith_away_in_hills_forests_malus_loc_control')|0]%#!"
|
||||
|
||||
tenet_lorekeepers_name:0 "Lorekeepers"
|
||||
tenet_lorekeepers_desc:0 "It is the duty of every Novelist to delve deep into the secrets of the world, seeking to unfold the illustrious Author's hidden meanings."
|
||||
tenet_the_first_age_name:0 "The First Age"
|
||||
tenet_the_first_age_desc:0 "We must strive to restore the balance of order as it was during the golden age of man. Though many years have passed, our resolve has not yet been lost."
|
||||
tenet_songs_of_roland_name:0 "Songs of Roland"
|
||||
tenet_songs_of_roland_desc:0 "Just as during the gallant knights of yore, our court bards and wandering troubadours recite the songs of heroic knights, inspiring many to seek faith and fortune in distant lands."
|
||||
tenet_inner_journey_simurghi_name: "The Semorgh"
|
||||
tenet_inner_journey_simurghi_desc: "We hold that life is a journey to discover the unity between one and God. As the Birds lost themselves like shade in the Sun's light, men who wish for eternal rest lose themselves in He, like waves in the Sea."
|
||||
tenet_songs_of_roland_simurghi_name: "Futuwa"
|
||||
tenet_songs_of_roland_simurghi_desc: "We believe that Futuwa, as an Attribute of the Caliph Ali, is an integral part of faith. Heirs are expected to organize themselves within lodges of youths and prove themselves on the battlefield and in life through adventuring and questing, as well as mastery of martial arts. These Fityan have nine initiatory degrees, and are rather secretive."
|
||||
tenet_esotericism_simurghi_name: "Self-Taught Philosophy"
|
||||
tenet_esotericism_simurghi_desc: "Hayy Ibn Yadhan shows us that humans are all capable of reaching completeness through ascetic life and self-contemplation of their true divine essence. We should strive to reach the absolute like he did, living along among the animals, for we have been given every tool to grasp the One by Fitra."
|
||||
tenet_restore_the_crown_name:0 "Restore the Crown"
|
||||
tenet_restore_the_crown_desc:0 "Our eternal Emperor sought to unite whole world under one banner. We must continue where we left off, restoring the Crowns of Carolingia."
|
||||
tenet_universal_scripture_name:0 "Universal Scripture"
|
||||
tenet_universal_scripture_desc:0 "All people are but misguided followers of the one Author. Our attempts to guide them to the truth has merely led to more hostility from those who cannot see it."
|
||||
tenet_people_of_the_book_name:0 "People of the Book"
|
||||
tenet_people_of_the_book_desc:0 "We wish for nothing less than to bring our brothers and sisters back into the fold of our faith. Our preachers travel far and wide, spreading the good word of Aslan to all those willing to listen."
|
||||
one_king_to_rule_them_all_name:0 "One King to Rule Them All"
|
||||
one_king_to_rule_them_all_desc:0 "The Lion rules not just over Heaven, but also over Earth and the men he died to save. The least we can do is enforce the laws of Heaven upon our worldly realms"
|
||||
the_book_of_shadows_name:0 "The Book of Shadows"
|
||||
the_book_of_shadows_desc:0 "Since time immemorial, our high priests and grand wizards have always been chosen from among the best. Only through diligent study and practice may one master our Craft."
|
||||
king_of_winter_name:0 "King of Winter"
|
||||
king_of_winter_desc:0 "Our King protects us from the harshness of the winter, and all our priests and laymen value the honourable knight's protection more than any fat king's laws."
|
||||
the_queen_of_summer_name:0 "The Queen of Summer"
|
||||
the_queen_of_summer_desc:0 "Our Queen gave us all the wonders of the world to enjoy, and enjoy it we will in her name."
|
||||
last_knights_of_britain_name:0 "Last Knights of Britain"
|
||||
last_knights_of_britain_desc:0 "Our brave knights have valiantly held on to the last Christian forts in England for many years. Letting them fall would be our death."
|
||||
against_all_odds_name:0 "Against All Odds"
|
||||
against_all_odds_desc:0 "Just as the first Christians outlived the pagans of Rome, so too will we outlive all the pagans who wish to see us erased. Though Anglicans are forced to exist in secret, our resistance is a well known reality to all in Britain."
|
||||
for_king_and_country_name:0 "For King and Country"
|
||||
for_king_and_country_desc:0 "The King of England has been the head of our Church since its inception. Though the old throne was abolished, and in its place was built a brothel, we will ride forth with our King once he returns to save England."
|
||||
core_tenet_belle_epoque_name:0 "Belle Époque"
|
||||
core_tenet_belle_epoque_desc:0 "Though the end of unified Europe permeates throughout the lands to this very day, we will go through great efforts to reunite the continent. Not through war, but through words."
|
||||
|
||||
core_tenet_lest_we_forget_name:0 "Lest We Forget"
|
||||
core_tenet_lest_we_forget_desc:0 "We must never forget all those warriors who died in vain. Should we stop reminding people of the horrors of war, the world may yet end again - this time for good."
|
||||
|
||||
tenet_let_the_poppies_grow_name:0 "Let the Poppies Grow"
|
||||
tenet_let_the_poppies_grow_desc:0 "The old battlefields lie restless to this day, dampened with the bodies of countless men and their instruments of death. We must safeguard these lands from unwary travellers, both for their own good and to let the dead lie."
|
||||
tenet_liberte_name:0 "Liberté"
|
||||
tenet_liberte_desc:0 "It is the duty of every ruler to put the rights and liberties of his people in his first plan. The only thing a tyrant is good for is overthrowing."
|
||||
tenet_egalite_name:0 "Egalité"
|
||||
tenet_egalite_desc:0 "There is no such thing as the divine right to rule. One is only a ruler for as long as the Third Estate permits him to be, as the state exists for the people, and is made by the people."
|
||||
tenet_fraternite_name:0 "Fraternité"
|
||||
tenet_fraternite_desc:0 "All people are born the same, and must be taught to view other people as brothers. Division and discord caused nothing less than the end of the world, after all."
|
||||
179
N3OW/map_data/geographical_regions/10_natural_disaster_regions.txt
Executable file
179
N3OW/map_data/geographical_regions/10_natural_disaster_regions.txt
Executable file
|
|
@ -0,0 +1,179 @@
|
|||
# Geographical regions for Natural Disasters
|
||||
|
||||
global_flood_region = {
|
||||
regions = {
|
||||
### ASIA
|
||||
yellow_river_region yangtze_river_region pearl_river_region tigris_river_region irrawaddy_river_region mekong_river_region amur_river_region
|
||||
# AFRICA
|
||||
nile_river_region niger_river_region
|
||||
### EUROPE
|
||||
po_river_region rhine_river_region elbe_river_region rhone_river_region garonne_river_region seine_river_region loire_river_region vistula_river_region danube_river_region dniester_river_region dnieper_river_region daugava_river_region lovat_river_region volga_river_region don_river_region guadiana_river_region guadalquivir_river_region
|
||||
### INDIA
|
||||
ganges_river_region indus_river_region kaveri_river_region godavari_river_region mahanadi_river_region tapti_river_region
|
||||
}
|
||||
}
|
||||
### ASIA
|
||||
yellow_river_region = { # Yellow River
|
||||
counties = {
|
||||
c_dizhou c_dezhou c_bozhou_1 c_weizhou c_xiangzhou c_weizhou_1 c_huaizhou c_hezhong c_tongzhou c_guozhou c_shanzhou_2 c_henan c_zhengzhou c_huazhou c_puzhou_2 c_yunzhou c_qizhou c_zichuan c_qingzhou
|
||||
}
|
||||
}
|
||||
yangtze_river_region = { # Yangtze River
|
||||
counties = {
|
||||
c_taizhou_1 c_yangzhou c_chuzhou_2 c_liyang_2 c_lujiang c_shuzhou c_qizhou_1 c_huangzhou c_hanyang c_fuzhou_3 c_jiangling c_xiazhou_1 c_liyang c_langzhou c_tanzhou c_yuezhou_1 c_ezhou c_yunyang c_hongzhou c_raozhou c_nankang c_chizhou c_xuanzhou c_jiangning c_runzhou c_changzhou
|
||||
}
|
||||
}
|
||||
pearl_river_region = { # Pearl River
|
||||
counties = {
|
||||
c_guangzhou_1 c_duanzhou c_kangzhou c_wuzhou_1 c_zhaozhou_1 c_gongzhou c_tengzhou c_shuangzhou c_xinzhou_1
|
||||
}
|
||||
}
|
||||
tigris_river_region = { # Tigris River
|
||||
counties = {
|
||||
c_baghdad c_iskaf c_wasit c_batiha c_rusafa c_akhadid c_ubulla c_abbadan c_basra
|
||||
}
|
||||
}
|
||||
irrawaddy_river_region = { # Irrawaddy River
|
||||
counties = {
|
||||
c_dagon c_kusumi c_hinthada c_sriksetra c_pegu c_magwe c_minbu c_yamethin c_pagan c_ava c_sagaing c_madaya c_takon
|
||||
}
|
||||
}
|
||||
mekong_river_region = { # Mekong River
|
||||
counties = {
|
||||
c_ca_mau c_binh_dai c_vyadhapura c_angkor_borey c_sambhupura c_kracheh_nokor c_stung_treng c_koh_ker c_prea_vihear c_ubon_ratchathani c_sanasomboon c_luang_prabang
|
||||
}
|
||||
}
|
||||
amur_river_region = { # Amur River
|
||||
counties = {
|
||||
c_SW_heiergun c_SW_heiheguo c_SW_heilonghean c_SW_heilonglin c_BAL_dazhou c_eman_boli c_eman_mohean c_eman_choripi c_eman_molihewen c_eman_tudali c_eman_kerin c_eman_beihean c_eman_nurgan c_eman_amgun
|
||||
}
|
||||
}
|
||||
### AFRICA
|
||||
nile_river_region = { # Nile River
|
||||
counties = {
|
||||
c_kalabsha c_aswan c_qus c_asyut c_ushmun c_bahnasa c_cairo c_giza c_sharkiya c_al-gharbiya c_al-buhaira c_damietta
|
||||
}
|
||||
}
|
||||
niger_river_region = { # Niger River
|
||||
counties = {
|
||||
c_dodugu c_massina c_bindugu c_jenne c_kurmina c_kouga c_tirakka c_upper_gurma c_gao c_ansongo c_oudalan c_kukiya c_bura c_say c_dyamare c_zarma c_dendi c_ilo c_yauri c_nupe c_bussa c_ilorin c_igbomina c_kyadya c_opanda c_igala c_edo c_igbo c_ijaw
|
||||
}
|
||||
}
|
||||
### EUROPE
|
||||
po_river_region = { # Po River
|
||||
counties = {
|
||||
c_pavia c_tortona c_cremona c_mantua c_verona c_polesine c_ferrara c_parma c_bologna
|
||||
}
|
||||
}
|
||||
rhine_river_region = { # Rhine River
|
||||
counties = {
|
||||
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
|
||||
counties = {
|
||||
c_dessau c_magdeburg c_stendal c_potsdam c_havelberg c_dannenberg c_schwerin c_luneburg c_hamburg c_stade c_ditmarschen
|
||||
}
|
||||
}
|
||||
rhone_river_region = { # Rhone River
|
||||
counties = {
|
||||
c_montpellier c_uses c_ardeche c_lyon c_viennois c_valentinois c_venaissin
|
||||
}
|
||||
}
|
||||
garonne_river_region = { # Garonne River
|
||||
counties = {
|
||||
c_agenais c_armagnac c_marsan c_albret c_bordeaux c_saintonge c_toulouse
|
||||
}
|
||||
}
|
||||
seine_river_region = { # Seine River
|
||||
counties = {
|
||||
c_eu c_rouen c_evreux c_beaumont c_ile_de_france
|
||||
}
|
||||
}
|
||||
loire_river_region = { # Loire River
|
||||
counties = {
|
||||
c_nantes c_anjou c_saumur c_tourraine
|
||||
}
|
||||
}
|
||||
vistula_river_region = { # Vistula River
|
||||
counties = {
|
||||
c_radomska c_stezycka c_czerska c_zakroczymska c_gostyninska c_plocka c_kujawy c_dobrzynska c_torun c_berent c_malbork c_danzig
|
||||
}
|
||||
}
|
||||
danube_river_region = { # Danube River
|
||||
counties = {
|
||||
c_poszony c_gyor c_komarom c_esztergom c_visegrad c_hont c_szekesfehervar c_tolna c_bodrog c_baranya c_bacs c_vukovar c_szerem c_keve c_beograd c_branicevo c_krasso c_severin c_vidin c_calafat c_vratsa c_craiova c_nikopolis c_giurgiu c_turnovo c_dorostorum c_calarasi c_constanta c_braila c_galati c_tigheci c_chilia
|
||||
}
|
||||
}
|
||||
dniester_river_region = { # Dniester River
|
||||
counties = {
|
||||
c_odessa c_cetatea_alba c_lapusna c_orhei c_ladyzyn c_soroca c_ushytsia c_hotin c_terebovl c_halych c_lviv
|
||||
}
|
||||
}
|
||||
dnieper_river_region = { # Dnieper River
|
||||
counties = {
|
||||
c_kherson c_oleshye c_lower_dniepr c_khortytsia c_dnipro c_samar c_hradyzk c_cherkassy c_voin c_kiev c_pereyaslavl c_chornobyl c_chernigov c_babruysk c_roslavl c_orsha c_smolensk c_gnezdovo
|
||||
}
|
||||
}
|
||||
daugava_river_region = { # Daugava River
|
||||
counties = {
|
||||
c_vitebsk c_lukoml c_polotsk c_braslau c_jersika c_selpils c_kokenois c_zemigalians c_vidzeme
|
||||
}
|
||||
}
|
||||
lovat_river_region = { # Lovat River
|
||||
counties = {
|
||||
c_sebezh c_luki c_rusa c_novgorod c_tikhvin
|
||||
}
|
||||
}
|
||||
volga_river_region = { # Volga River
|
||||
counties = {
|
||||
c_valdai c_toropets c_mozhaysk c_tver c_yaroslavl c_suzdal c_vologda c_plyos c_manturovo c_nizhny_novgorod c_murom c_rakcha c_cykma c_lachyk-uba c_yoshkar-ola c_cheboksary c_mari-turek c_kazan c_ashli c_bolghar c_karabolam c_samar_VB c_saratov c_jambalar c_ukek c_sarysyn c_itil c_beksima c_astrakhan c_saqsin
|
||||
}
|
||||
}
|
||||
don_river_region = { # Don River
|
||||
counties = {
|
||||
c_voronezh c_khursa c_karatayak c_oskol c_khopyor c_kazanskaya c_golden_hills c_sarkel c_tana c_azov
|
||||
}
|
||||
}
|
||||
guadiana_river_region = { # Guadiana River
|
||||
counties = {
|
||||
c_faro c_beja c_elvas c_caceres c_merida c_medellin c_badajoz c_moura c_niebla
|
||||
}
|
||||
}
|
||||
guadalquivir_river_region = { # Guadalquivir River
|
||||
counties = {
|
||||
c_cadiz c_sevilla c_cabra c_cordoba c_andujar
|
||||
}
|
||||
}
|
||||
### INDIA
|
||||
ganges_river_region = { # Ganges River
|
||||
counties = {
|
||||
c_manikpur c_asni c_prayaga c_chunar c_varanasi c_jaunpur c_sasaram c_kusinagara c_magadha c_mithila c_bangaon c_mudgagiri c_laksmanavati c_gauda c_madhupur c_bikrampur c_candradvipa c_samatata c_nabadwipa c_saptagrama c_tamralipti
|
||||
}
|
||||
}
|
||||
indus_river_region = { # Indus River
|
||||
counties = {
|
||||
c_debul c_ranikot c_sonda c_mansura c_siwistan c_bhakkar c_aror c_vijnot c_rajanpur c_uch c_multan c_kafirkot c_karor c_bannu c_nandana
|
||||
}
|
||||
}
|
||||
kaveri_river_region = { # Kaveri River
|
||||
counties = {
|
||||
c_navasarika c_thalner c_mandapika c_burhanpur
|
||||
}
|
||||
}
|
||||
godavari_river_region = { # Godavari River
|
||||
counties = {
|
||||
c_vengipura c_mosala c_barasuru c_katukuru c_mahur c_balkonda
|
||||
}
|
||||
}
|
||||
mahanadi_river_region = { # Mahanadi River
|
||||
counties = {
|
||||
c_suvarnapura c_kodalaka_mandala c_khinjali_mandala c_kataka c_viraja
|
||||
}
|
||||
}
|
||||
tapti_river_region = { # Tapti River
|
||||
counties = {
|
||||
c_cholamandalam c_uraiyur c_tagadur c_kongu
|
||||
}
|
||||
}
|
||||
|
||||
5971
N3OW/map_data/geographical_regions/geographical_region.txt
Executable file
5971
N3OW/map_data/geographical_regions/geographical_region.txt
Executable file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue