Merge branch 'next-version-dev' of https://forgejo.damimani-alex.org/damimani/N3OW into next-version-dev
This commit is contained in:
commit
8b59239015
57 changed files with 11119 additions and 607 deletions
59
common/artifacts/templates/NEOW_templates.txt
Normal file
59
common/artifacts/templates/NEOW_templates.txt
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
# New Era Old World Artifacts Templates
|
||||
|
||||
codex_template = {
|
||||
can_equip = {
|
||||
always = yes
|
||||
}
|
||||
|
||||
can_benefit = {
|
||||
NEOW_christian_book_artifact_trigger = yes
|
||||
}
|
||||
|
||||
can_reforge = {
|
||||
NEOW_christian_book_artifact_trigger = yes
|
||||
}
|
||||
|
||||
can_repair = {
|
||||
always = yes
|
||||
}
|
||||
|
||||
fallback = {
|
||||
learning = 2
|
||||
stress_gain_mult = 0.15
|
||||
negate_health_penalty_add = 0.10
|
||||
catholic_religion_opinion = 20
|
||||
}
|
||||
|
||||
ai_score = {
|
||||
value = 100
|
||||
}
|
||||
|
||||
unique = yes
|
||||
}
|
||||
|
||||
sword_wenceslas_template = {
|
||||
|
||||
can_equip = {
|
||||
always = yes
|
||||
}
|
||||
|
||||
can_benefit = {
|
||||
#NEOW_is_czech_king_trigger = yes
|
||||
}
|
||||
|
||||
can_reforge = {
|
||||
#NEOW_is_czech_king_trigger = yes
|
||||
}
|
||||
|
||||
fallback = {
|
||||
monthly_piety = 0.35
|
||||
court_grandeur_baseline_add = 5
|
||||
courtier_and_guest_opinion = 5
|
||||
}
|
||||
|
||||
ai_score = {
|
||||
value = 100
|
||||
}
|
||||
|
||||
unique = yes
|
||||
}
|
||||
40
common/artifacts/templates/_templates.info
Normal file
40
common/artifacts/templates/_templates.info
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
# The optional scripted base component of an artifact containing triggers and effects that cannot be read during artifact creation.
|
||||
# Determines for example if a given character can wield an artifact or get its full benefits.
|
||||
# Root scope is character for all triggers, but the artifact can be accessed via scope:artifact
|
||||
|
||||
example_template = {
|
||||
|
||||
# can this character equip this artifact?
|
||||
can_equip = {
|
||||
always = yes
|
||||
}
|
||||
|
||||
# can this character benefit from the full modifiers of the artifact?
|
||||
can_benefit = {
|
||||
is_christian_trigger = yes
|
||||
}
|
||||
|
||||
# can this character reforge this artifact (turn this artifact into another)
|
||||
can_reforge = {
|
||||
is_christian_trigger = yes
|
||||
}
|
||||
|
||||
# can this character repair this artifact (restore its durability)
|
||||
can_repair = {
|
||||
always = no
|
||||
}
|
||||
|
||||
# if a given character does not pass the "can_benefit" trigger then this modifier will be applied instead.
|
||||
fallback = {
|
||||
monthly_prestige = 0.3
|
||||
}
|
||||
|
||||
# Adds the final value to the AI equipping score, note the can_benefit takes precedence over the score when AI equipping
|
||||
# artifact_ai_will_equip_score in game/common/scripted_values/00_artifact_values.txt also effect the final score
|
||||
ai_score = {
|
||||
value = 100
|
||||
}
|
||||
|
||||
# Artifacts with this templates show as unique, default = no
|
||||
unique = yes
|
||||
}
|
||||
460
common/artifacts/types/00_types.txt
Normal file
460
common/artifacts/types/00_types.txt
Normal file
|
|
@ -0,0 +1,460 @@
|
|||
#########################
|
||||
# Personal Artifacts #
|
||||
#########################
|
||||
|
||||
# Crowns
|
||||
helmet = {
|
||||
slot = helmet
|
||||
required_features = { crown_decoration decoration_material_wire }
|
||||
optional_features = { decoration_material_gem }
|
||||
}
|
||||
|
||||
helmet_simple = {
|
||||
slot = helmet
|
||||
}
|
||||
|
||||
# Regalia/Crown Jewels
|
||||
regalia = {
|
||||
slot = regalia
|
||||
required_features = {
|
||||
# Core regalia components:
|
||||
regalia_scepter regalia_clothes regalia_accessory
|
||||
|
||||
# Necessary regalia materials:
|
||||
decoration_material_wire # Base material for the scepter and accessory
|
||||
decoration_material_gem # Gems decorating the scepter and accessory
|
||||
generic_material_cloth # Base textile for the robe/cape.
|
||||
decoration_material_embroidery # Thread for embroidering the robe/cape.
|
||||
}
|
||||
}
|
||||
|
||||
regalia_simple = {
|
||||
slot = regalia
|
||||
}
|
||||
|
||||
seal_of_investiture = {
|
||||
slot = regalia
|
||||
required_features = {
|
||||
decoration_material_slate # Base material for seal's foundation
|
||||
decoration_material_ink # Ink required for the calligraphy
|
||||
}
|
||||
}
|
||||
|
||||
seal_of_investiture_court = {
|
||||
slot = pedestal
|
||||
required_features = {
|
||||
decoration_material_slate # Base material for seal's foundation
|
||||
decoration_material_ink # Ink required for the calligraphy
|
||||
}
|
||||
}
|
||||
|
||||
# Armor
|
||||
armor_mail = {
|
||||
slot = armor
|
||||
required_features = { armor_material armor_helmet }
|
||||
optional_features = {
|
||||
# Armor-specific
|
||||
armor_decoration generic_material_cloth
|
||||
# General decorations
|
||||
decoration_pattern decoration_material_inlay decoration_material_wire armor_property
|
||||
}
|
||||
}
|
||||
|
||||
armor_plate = {
|
||||
slot = armor
|
||||
required_features = { armor_material armor_helmet }
|
||||
optional_features = {
|
||||
# Armor-specific
|
||||
armor_decoration generic_material_cloth
|
||||
# General decorations
|
||||
decoration_pattern decoration_material_inlay decoration_material_wire armor_property
|
||||
}
|
||||
}
|
||||
|
||||
armor_scale = {
|
||||
slot = armor
|
||||
required_features = { armor_material armor_helmet }
|
||||
optional_features = {
|
||||
# Armor-specific
|
||||
armor_decoration generic_material_cloth
|
||||
# General decorations
|
||||
decoration_pattern decoration_material_inlay decoration_material_wire armor_property
|
||||
}
|
||||
}
|
||||
|
||||
armor_lamellar = {
|
||||
slot = armor
|
||||
required_features = { armor_material generic_material_cordage generic_material_cloth armor_helmet}
|
||||
optional_features = {
|
||||
# Armor-specific
|
||||
armor_decoration
|
||||
# General decorations
|
||||
decoration_pattern decoration_material_inlay decoration_material_wire armor_property
|
||||
}
|
||||
}
|
||||
|
||||
armor_laminar = {
|
||||
slot = armor
|
||||
required_features = { armor_material generic_material_cordage generic_material_cloth armor_helmet }
|
||||
optional_features = {
|
||||
# Armor-specific
|
||||
armor_decoration
|
||||
# General decorations
|
||||
decoration_pattern decoration_material_inlay decoration_material_wire armor_property
|
||||
}
|
||||
}
|
||||
|
||||
armor_brigandine = {
|
||||
slot = armor
|
||||
required_features = { armor_material generic_material_cloth armor_helmet }
|
||||
optional_features = {
|
||||
# Armor-specific
|
||||
armor_decoration
|
||||
# General decorations
|
||||
decoration_pattern decoration_material_inlay decoration_material_wire armor_property
|
||||
}
|
||||
}
|
||||
|
||||
# Weapons
|
||||
axe = {
|
||||
slot = primary_armament
|
||||
required_features = { head_metal shaft_wood }
|
||||
optional_features = {
|
||||
# Axe-specific:
|
||||
head_decoration shaft_decoration
|
||||
# General decorations:
|
||||
decoration_pattern decoration_material_inlay decoration_material_inlay_HSB decoration_material_wire
|
||||
}
|
||||
}
|
||||
|
||||
hammer = {
|
||||
slot = primary_armament
|
||||
required_features = { head_metal shaft_wood }
|
||||
optional_features = {
|
||||
# Hammer-specific:
|
||||
head_decoration shaft_decoration
|
||||
# General decorations:
|
||||
decoration_pattern decoration_material_inlay decoration_material_inlay_HSB decoration_material_wire
|
||||
}
|
||||
}
|
||||
|
||||
mace = {
|
||||
slot = primary_armament
|
||||
required_features = { head_metal handle_metal }
|
||||
optional_features = {
|
||||
# Mace-specific:
|
||||
head_decoration metal_handle_decoration
|
||||
# General decorations:
|
||||
decoration_pattern decoration_material_inlay decoration_material_wire
|
||||
}
|
||||
}
|
||||
|
||||
spear = {
|
||||
slot = primary_armament
|
||||
required_features = { head_metal shaft_wood }
|
||||
optional_features = {
|
||||
# Spear-specific:
|
||||
head_decoration shaft_decoration
|
||||
# General decorations:
|
||||
decoration_pattern decoration_material_inlay decoration_material_inlay_HSB decoration_material_wire
|
||||
}
|
||||
}
|
||||
|
||||
sword = {
|
||||
slot = primary_armament
|
||||
required_features = { blade_metal }
|
||||
optional_features = {
|
||||
# Sword-specific:
|
||||
blade_decoration hilt_decoration
|
||||
# General decorations:
|
||||
decoration_pattern decoration_material_inlay decoration_material_wire
|
||||
}
|
||||
}
|
||||
|
||||
dagger = {
|
||||
slot = primary_armament
|
||||
required_features = { blade_metal }
|
||||
optional_features = {
|
||||
# Dagger-specific:
|
||||
blade_decoration hilt_decoration
|
||||
# General decorations:
|
||||
decoration_pattern decoration_material_inlay decoration_material_wire
|
||||
}
|
||||
}
|
||||
|
||||
# Trinkets
|
||||
miscellaneous = {
|
||||
slot = miscellaneous
|
||||
optional_features = { book_subject book_cover_material book_topic book_title book_decoration decoration_pattern generic_material_wood decoration_material_gem decoration_material_inlay_HSB }
|
||||
can_reforge = no
|
||||
}
|
||||
|
||||
# Journals
|
||||
journal = {
|
||||
slot = journal
|
||||
optional_features = { book_subject book_cover_material book_topic book_title book_decoration decoration_pattern generic_material_wood decoration_material_gem decoration_material_inlay_HSB }
|
||||
can_reforge = no
|
||||
}
|
||||
|
||||
|
||||
# For artefacts that we *don't* want to start as court artefacts, because you might not have Royal Court, but which will generally be expected to convert into one at the earliest opportunity.
|
||||
miscellaneous_when_not_court = {
|
||||
slot = miscellaneous
|
||||
# Just add to this list as new DLC court artefacts are designed.
|
||||
optional_features = { sculpture_material generic_material_wood decoration_material_inlay goblet_material }
|
||||
}
|
||||
|
||||
brooch = {
|
||||
slot = miscellaneous
|
||||
required_features = { brooch_decoration decoration_material_wire }
|
||||
optional_features = { brooch_centerpiece brooch_adornment decoration_material_gem }
|
||||
can_reforge = no
|
||||
}
|
||||
|
||||
necklace = {
|
||||
slot = miscellaneous
|
||||
required_features = { decoration_material_wire decoration_material_gem }
|
||||
can_reforge = no
|
||||
}
|
||||
|
||||
ring = {
|
||||
slot = miscellaneous
|
||||
required_features = { ring_decoration generic_material_metal }
|
||||
optional_features = { ring_centerpiece ring_adornment decoration_material_wire decoration_material_gem }
|
||||
can_reforge = no
|
||||
}
|
||||
|
||||
animal_trinket = {
|
||||
slot = miscellaneous
|
||||
required_features = { animal_trinket_type }
|
||||
can_reforge = no
|
||||
}
|
||||
|
||||
bird_feather = {
|
||||
slot = miscellaneous
|
||||
required_features = { bird_feather_type }
|
||||
can_reforge = no
|
||||
}
|
||||
|
||||
#########################
|
||||
# Court Artifacts #
|
||||
#########################
|
||||
|
||||
# 'Sculptures', or large free-standing artifacts including statues, chests, cabinets, etc.
|
||||
sculpture = {
|
||||
slot = sculpture
|
||||
default_visuals = statue
|
||||
required_features = { sculpture_material }
|
||||
optional_features = { generic_material_wood }
|
||||
}
|
||||
|
||||
chest = {
|
||||
slot = sculpture
|
||||
required_features = { generic_material_wood wood_decoration }
|
||||
optional_features = { decoration_pattern decoration_material_inlay_HSB }
|
||||
}
|
||||
|
||||
box = {
|
||||
slot = pedestal
|
||||
required_features = { box_material box_decoration }
|
||||
optional_features = { decoration_pattern decoration_material_inlay }
|
||||
}
|
||||
|
||||
cabinet = {
|
||||
slot = sculpture
|
||||
required_features = { generic_material_wood wood_decoration }
|
||||
optional_features = { decoration_pattern decoration_material_inlay_HSB}
|
||||
}
|
||||
|
||||
goblet = {
|
||||
slot = pedestal
|
||||
required_features = { goblet_material decoration_material_gem }
|
||||
}
|
||||
|
||||
scientific_apparatus = {
|
||||
slot = sculpture
|
||||
default_visuals = statue
|
||||
required_features = { sculpture_material }
|
||||
optional_features = { generic_material_wood decoration_material_inlay }
|
||||
}
|
||||
|
||||
jug = {
|
||||
slot = pedestal
|
||||
required_features = { goblet_material decoration_material_inlay }
|
||||
}
|
||||
|
||||
brooch_pedestal = {
|
||||
slot = pedestal
|
||||
required_features = { brooch_decoration decoration_material_wire }
|
||||
optional_features = { brooch_centerpiece brooch_adornment decoration_material_gem }
|
||||
}
|
||||
|
||||
necklace_pedestal = {
|
||||
slot = pedestal
|
||||
required_features = { decoration_material_wire decoration_material_gem }
|
||||
}
|
||||
|
||||
bowl = {
|
||||
slot = pedestal
|
||||
required_features = { generic_material_metal decoration_pattern }
|
||||
}
|
||||
|
||||
plate = {
|
||||
slot = pedestal
|
||||
required_features = { generic_material_metal decoration_pattern }
|
||||
}
|
||||
|
||||
urn = {
|
||||
slot = pedestal
|
||||
required_features = { generic_material_earthware decoration_pattern }
|
||||
}
|
||||
|
||||
tun_barrel = {
|
||||
slot = sculpture
|
||||
required_features = { generic_material_wood }
|
||||
}
|
||||
|
||||
scepter_pedestal = {
|
||||
slot = pedestal
|
||||
}
|
||||
|
||||
# Small artifacts which should be displayed on a pedestal including goblets, large gemstones, reliquaries, etc.
|
||||
pedestal = {
|
||||
slot = pedestal
|
||||
default_visuals = rock
|
||||
}
|
||||
|
||||
# Wall decorations, including tapestries, animal hides, weapon displays, etc.
|
||||
tapestry = {
|
||||
slot = wall_big
|
||||
required_features = { generic_material_cloth tapestry_scene }
|
||||
}
|
||||
|
||||
animal_skull = {
|
||||
slot = wall_small
|
||||
required_features = { animal_skull_type generic_material_wood }
|
||||
}
|
||||
|
||||
animal_hide = {
|
||||
slot = wall_small
|
||||
required_features = { animal_hide_type }
|
||||
}
|
||||
|
||||
animal_hide_big = {
|
||||
slot = wall_big
|
||||
required_features = { animal_hide_type }
|
||||
}
|
||||
|
||||
wall_big = {
|
||||
slot = wall_big
|
||||
default_visuals = wall_shield
|
||||
}
|
||||
|
||||
wall_small = {
|
||||
slot = wall_small
|
||||
default_visuals = animal_trophy
|
||||
}
|
||||
|
||||
wall_shield = {
|
||||
slot = wall_small
|
||||
default_visuals = wall_shield
|
||||
required_features = { head_metal shaft_wood decoration_pattern decoration_material_inlay_HSB }
|
||||
}
|
||||
|
||||
# kite shields are too big for wall_small
|
||||
wall_shield_special = {
|
||||
slot = wall_big
|
||||
default_visuals = wall_shield
|
||||
required_features = { head_metal shaft_wood decoration_pattern decoration_material_inlay_HSB }
|
||||
}
|
||||
|
||||
wall_icon_court_large = {
|
||||
slot = wall_big
|
||||
default_visuals = icon_court_large
|
||||
required_features = { icon_decoration }
|
||||
}
|
||||
|
||||
wall_icon_court_small = {
|
||||
slot = wall_small
|
||||
default_visuals = icon_court_small
|
||||
required_features = { icon_decoration }
|
||||
}
|
||||
|
||||
# Thrones
|
||||
throne = { # Any throne created mid-game through Inspirations must have these:
|
||||
slot = throne
|
||||
required_features = { generic_material_wood generic_material_cloth }
|
||||
}
|
||||
|
||||
throne_special = { # Special historical thrones, such as Solomon's or Charlemagne's, do not enforce the material requirements due to their unique construction.
|
||||
slot = throne
|
||||
optional_features = { generic_material_wood generic_material_cloth }
|
||||
}
|
||||
|
||||
# Books
|
||||
book = {
|
||||
slot = book
|
||||
required_features = { book_subject book_cover_material }
|
||||
optional_features = { book_topic book_title book_decoration decoration_pattern generic_material_wood decoration_material_gem decoration_material_inlay_HSB }
|
||||
}
|
||||
|
||||
chronicle = {
|
||||
slot = book
|
||||
optional_features = { book_topic book_title book_decoration decoration_pattern generic_material_wood decoration_material_gem decoration_material_inlay_HSB }
|
||||
}
|
||||
|
||||
# Alchemy
|
||||
elixir = {
|
||||
slot = pedestal
|
||||
required_features = { decoration_pattern glass_decoration }
|
||||
optional_features = { elixir_type decoration_material_inlay decoration_material_wire }
|
||||
}
|
||||
|
||||
panacea = {
|
||||
slot = pedestal
|
||||
required_features = { box_material box_decoration }
|
||||
optional_features = { decoration_pattern decoration_material_inlay }
|
||||
}
|
||||
|
||||
philosophers_stone = {
|
||||
slot = pedestal
|
||||
required_features = { box_material box_decoration }
|
||||
optional_features = { decoration_pattern decoration_material_inlay }
|
||||
}
|
||||
|
||||
# Tournaments
|
||||
pas_darmes_token = {
|
||||
slot = miscellaneous
|
||||
required_features = { generic_material_cloth decoration_pattern }
|
||||
}
|
||||
|
||||
pas_darmes_spurs = {
|
||||
slot = miscellaneous
|
||||
required_features = { generic_material_metal }
|
||||
}
|
||||
|
||||
tournament_favor = {
|
||||
slot = miscellaneous
|
||||
required_features = { generic_material_cloth decoration_pattern }
|
||||
}
|
||||
|
||||
# Bows
|
||||
longbow = {
|
||||
slot = primary_armament
|
||||
required_features = { longbow_wood bow_string }
|
||||
}
|
||||
|
||||
composite = {
|
||||
slot = primary_armament
|
||||
required_features = { composite_wood composite_horn bow_string }
|
||||
}
|
||||
|
||||
bow = {
|
||||
slot = primary_armament
|
||||
required_features = { bow_wood bow_string }
|
||||
}
|
||||
|
||||
crossbow = {
|
||||
slot = primary_armament
|
||||
required_features = { bow_wood bow_string }
|
||||
}
|
||||
13
common/artifacts/types/_types.info
Normal file
13
common/artifacts/types/_types.info
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
Structure:
|
||||
|
||||
key = {
|
||||
slot = inventory slot type
|
||||
# A feature from each of these groups will be assigned automatically on creation
|
||||
required_features = { group group group }
|
||||
# These feature groups can be added after creation in script
|
||||
optional_features = { group group group }
|
||||
# optional field with no gameplay effect. Only needed for automatic test artifact generation
|
||||
default_visuals = visuals_key
|
||||
}
|
||||
|
||||
The artifact_KEY is also used as a loc key in some contexts. E.G., "artifact_helmet"
|
||||
5
common/artifacts/visuals/NEOW_artifacts_visuals.txt
Normal file
5
common/artifacts/visuals/NEOW_artifacts_visuals.txt
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
sword_wenceslas = {
|
||||
default_type = pedestal
|
||||
icon = { reference = artifact_sword_wenceslas.dds }
|
||||
asset = { reference = ep1_northern_sword_01_a_entity }
|
||||
}
|
||||
26
common/artifacts/visuals/_visuals.info
Normal file
26
common/artifacts/visuals/_visuals.info
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# Determines the visuals of an artifact and ties together 2d and 3d visuals
|
||||
# Picks a random valid one based on the triggers, passes in the scopes from the creation/reforge like the text does
|
||||
|
||||
example = {
|
||||
icon = "icon_name.dds"
|
||||
asset = "asset_name"
|
||||
|
||||
# optional field with no gameplay effect. Only needed for automatic test artifact generation
|
||||
default_type = type_key
|
||||
|
||||
icon = {
|
||||
trigger = {
|
||||
<trigger>
|
||||
#root scope is the owner
|
||||
#scope:artifact is the artifact being made
|
||||
#scope:artifact.creator is how to access the creator when different from the owner
|
||||
}
|
||||
reference = "icon_name.dds"
|
||||
}
|
||||
asset = {
|
||||
trigger = {
|
||||
<trigger>
|
||||
}
|
||||
reference = "asset_name"
|
||||
}
|
||||
}
|
||||
|
|
@ -8798,6 +8798,907 @@ k_macedonia={
|
|||
|
||||
}
|
||||
|
||||
e_france_communist={
|
||||
pattern="pattern_solid.dds"
|
||||
color1=red
|
||||
color2=white
|
||||
color3=red
|
||||
colored_emblem={
|
||||
color1=black
|
||||
texture="ce_letter_a.dds"
|
||||
instance={
|
||||
position={ 0.585000 0.500000 }
|
||||
scale={ 0.305000 0.305000 }
|
||||
depth=7.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=black
|
||||
texture="ce_letter_v.dds"
|
||||
instance={
|
||||
position={ 0.595000 0.260000 }
|
||||
scale={ 0.420000 0.420000 }
|
||||
depth=10.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.210000 0.265000 }
|
||||
scale={ 0.420000 0.420000 }
|
||||
depth=12.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=black
|
||||
texture="ce_letter_o.dds"
|
||||
instance={
|
||||
position={ 0.240000 0.700000 }
|
||||
scale={ 0.220000 0.220000 }
|
||||
depth=5.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=black
|
||||
texture="ce_letter_m.dds"
|
||||
instance={
|
||||
position={ 0.535000 0.700000 }
|
||||
scale={ 0.220000 0.220000 }
|
||||
depth=3.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.375000 0.700000 }
|
||||
scale={ 0.220000 0.220000 }
|
||||
depth=4.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=black
|
||||
texture="ce_letter_l.dds"
|
||||
instance={
|
||||
position={ 0.405000 0.500000 }
|
||||
scale={ 0.305000 0.305000 }
|
||||
depth=8.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=black
|
||||
texture="ce_letter_n.dds"
|
||||
instance={
|
||||
position={ 0.795000 0.700000 }
|
||||
scale={ 0.220000 0.220000 }
|
||||
depth=1.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=black
|
||||
texture="ce_letter_e.dds"
|
||||
instance={
|
||||
position={ 0.900000 0.700000 }
|
||||
scale={ 0.220000 0.220000 }
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.830000 0.255000 }
|
||||
scale={ 0.420000 0.420000 }
|
||||
depth=9.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=black
|
||||
texture="ce_letter_c.dds"
|
||||
instance={
|
||||
position={ 0.130000 0.700000 }
|
||||
scale={ 0.220000 0.220000 }
|
||||
depth=6.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=black
|
||||
texture="ce_letter_u.dds"
|
||||
instance={
|
||||
position={ 0.675000 0.700000 }
|
||||
scale={ 0.220000 0.220000 }
|
||||
depth=2.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=black
|
||||
texture="ce_letter_i.dds"
|
||||
instance={
|
||||
position={ 0.415000 0.260000 }
|
||||
scale={ 0.420000 0.420000 }
|
||||
depth=11.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
e_france_jacobin={
|
||||
custom=yes
|
||||
pattern="pattern_vertical_split_01.dds"
|
||||
color1=blue
|
||||
color2=red
|
||||
color3=red
|
||||
colored_emblem={
|
||||
color1=white
|
||||
texture="ce_block_02.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.530000 }
|
||||
scale={ 0.035000 0.805000 }
|
||||
depth=6.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=red
|
||||
texture="ce_circle_mask.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.530000 }
|
||||
scale={ 0.500000 0.630000 }
|
||||
depth=2.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=white
|
||||
texture="ce_circle_mask.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.530000 }
|
||||
scale={ 0.515000 0.645000 }
|
||||
depth=3.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=red
|
||||
color2=white
|
||||
color3=blue
|
||||
texture="NEOW_ce_jacobinhat.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.175000 }
|
||||
scale={ 0.230000 0.230000 }
|
||||
depth=4.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=white
|
||||
texture="ce_wreath_circle.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.525000 }
|
||||
scale={ 0.465000 0.590000 }
|
||||
depth=1.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=white
|
||||
color2=rgb { 169 169 169 }
|
||||
color3=white
|
||||
texture="NEOW_ce_jacobinhat.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.180000 }
|
||||
scale={ 0.260000 0.260000 }
|
||||
depth=5.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=white
|
||||
texture="NEOW_ce_guillotine.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.510000 }
|
||||
scale={ 0.340000 0.335000 }
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
e_france_johannic={
|
||||
custom=yes
|
||||
pattern="pattern_solid.dds"
|
||||
color1=white
|
||||
color2=white
|
||||
color3=blue
|
||||
colored_emblem={
|
||||
color1=yellow
|
||||
texture="ce_cross_potenty_random.dds"
|
||||
instance={
|
||||
position={ 0.635000 0.430000 }
|
||||
scale={ 0.080000 0.080000 }
|
||||
depth=10.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=yellow
|
||||
texture="ce_circle_mask.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.585000 }
|
||||
scale={ 1.000000 0.525000 }
|
||||
depth=24.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=red
|
||||
texture="ce_circle_mask.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.620000 }
|
||||
scale={ 1.000000 0.525000 }
|
||||
depth=22.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=blue
|
||||
color2=yellow
|
||||
color3=red
|
||||
texture="NEOW_ce_johansus1.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.560000 }
|
||||
depth=20.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=green
|
||||
texture="ce_circle_mask.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.605000 }
|
||||
scale={ 1.000000 0.525000 }
|
||||
depth=23.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=white
|
||||
texture="ce_circle_mask.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.635000 }
|
||||
scale={ 1.000000 0.525000 }
|
||||
depth=21.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=blue
|
||||
texture="ce_circle_mask.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.565000 }
|
||||
scale={ 1.000000 0.525000 }
|
||||
depth=25.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=yellow
|
||||
texture="ce_fleur.dds"
|
||||
instance={
|
||||
position={ 0.760000 0.900000 }
|
||||
scale={ 0.130000 0.130000 }
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.850000 0.800000 }
|
||||
scale={ 0.130000 0.130000 }
|
||||
depth=1.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.760000 0.700000 }
|
||||
scale={ 0.130000 0.130000 }
|
||||
depth=2.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.850000 0.600000 }
|
||||
scale={ 0.130000 0.130000 }
|
||||
depth=3.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.760000 0.500000 }
|
||||
scale={ 0.130000 0.130000 }
|
||||
depth=4.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.250000 0.900000 }
|
||||
scale={ 0.130000 0.130000 }
|
||||
depth=5.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.150000 0.800000 }
|
||||
scale={ 0.130000 0.130000 }
|
||||
depth=6.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.250000 0.700000 }
|
||||
scale={ 0.130000 0.130000 }
|
||||
depth=7.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.150000 0.600000 }
|
||||
scale={ 0.130000 0.130000 }
|
||||
depth=8.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.250000 0.500000 }
|
||||
scale={ 0.130000 0.130000 }
|
||||
depth=9.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.850000 0.100000 }
|
||||
scale={ 0.130000 0.130000 }
|
||||
depth=11.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.850000 0.300000 }
|
||||
scale={ 0.130000 0.130000 }
|
||||
depth=12.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.660000 0.100000 }
|
||||
scale={ 0.130000 0.130000 }
|
||||
depth=13.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.760000 0.200000 }
|
||||
scale={ 0.130000 0.130000 }
|
||||
depth=14.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.150000 0.300000 }
|
||||
scale={ 0.130000 0.130000 }
|
||||
depth=15.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.350000 0.100000 }
|
||||
scale={ 0.130000 0.130000 }
|
||||
depth=16.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.250000 0.200000 }
|
||||
scale={ 0.130000 0.130000 }
|
||||
depth=17.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.150000 0.100000 }
|
||||
scale={ 0.130000 0.130000 }
|
||||
depth=18.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=rgb { 226 205 144 }
|
||||
color2=yellow
|
||||
color3=red
|
||||
texture="NEOW_ce_johansus2.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.560000 }
|
||||
depth=19.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
e_france_carolingian={
|
||||
custom=yes
|
||||
pattern="pattern__solid_designer.dds"
|
||||
color1=red
|
||||
color2=yellow
|
||||
color3=red
|
||||
colored_emblem={
|
||||
color1=yellow
|
||||
color2=yellow
|
||||
texture="ce_mena_sun.dds"
|
||||
instance={
|
||||
scale={ 0.760000 0.760000 }
|
||||
depth=18.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=yellow
|
||||
texture="ce_circle_mask.dds"
|
||||
instance={
|
||||
scale={ 0.215000 0.215000 }
|
||||
depth=17.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=yellow
|
||||
texture="NEOW_ce_flame.dds"
|
||||
instance={
|
||||
position={ 0.850000 0.650000 }
|
||||
scale={ 0.195000 0.195000 }
|
||||
depth=1.010000
|
||||
rotation=115
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.650000 0.850000 }
|
||||
scale={ 0.195000 0.195000 }
|
||||
depth=2.010000
|
||||
rotation=155
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.350000 0.850000 }
|
||||
scale={ 0.195000 0.195000 }
|
||||
depth=3.010000
|
||||
rotation=25
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.150000 0.650000 }
|
||||
scale={ 0.195000 0.195000 }
|
||||
depth=4.010000
|
||||
rotation=65
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.850000 0.350000 }
|
||||
scale={ 0.195000 0.195000 }
|
||||
depth=5.010000
|
||||
rotation=65
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.150000 0.350000 }
|
||||
scale={ 0.195000 0.195000 }
|
||||
depth=6.010000
|
||||
rotation=110
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.650000 0.150000 }
|
||||
scale={ 0.195000 0.195000 }
|
||||
depth=7.010000
|
||||
rotation=30
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.350000 0.150000 }
|
||||
scale={ 0.195000 0.195000 }
|
||||
depth=8.010000
|
||||
rotation=160
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.800000 0.800000 }
|
||||
scale={ 0.195000 0.195000 }
|
||||
depth=9.010000
|
||||
rotation=135
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.200000 0.790000 }
|
||||
scale={ 0.195000 0.195000 }
|
||||
depth=10.010000
|
||||
rotation=45
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.800000 0.200000 }
|
||||
scale={ 0.195000 0.195000 }
|
||||
depth=11.010000
|
||||
rotation=45
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.200000 0.200000 }
|
||||
scale={ 0.195000 0.195000 }
|
||||
depth=12.010000
|
||||
rotation=135
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.885000 0.500000 }
|
||||
scale={ 0.195000 0.195000 }
|
||||
depth=13.010000
|
||||
rotation=90
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.115000 0.500000 }
|
||||
scale={ 0.195000 0.195000 }
|
||||
depth=14.010000
|
||||
rotation=90
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.500000 0.125000 }
|
||||
scale={ 0.195000 0.195000 }
|
||||
depth=15.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.500000 0.880000 }
|
||||
scale={ 0.195000 0.195000 }
|
||||
depth=16.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=red
|
||||
texture="ce_pagan_wotan_cross.dds"
|
||||
instance={
|
||||
scale={ 0.255000 0.255000 }
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
e_france_soleil_royal={
|
||||
custom=yes
|
||||
pattern="pattern__solid_designer.dds"
|
||||
color1=red
|
||||
color2=yellow
|
||||
color3=red
|
||||
colored_emblem={
|
||||
color1=rgb { 144 97 27 }
|
||||
texture="ce_star_16.dds"
|
||||
instance={
|
||||
depth=6.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=yellow
|
||||
texture="ce_fleur.dds"
|
||||
instance={
|
||||
position={ 0.150000 0.850000 }
|
||||
scale={ 0.270000 0.270000 }
|
||||
rotation=225
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.850000 0.850000 }
|
||||
scale={ 0.270000 0.270000 }
|
||||
depth=1.010000
|
||||
rotation=135
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.150000 0.150000 }
|
||||
scale={ 0.270000 0.270000 }
|
||||
depth=2.010000
|
||||
rotation=315
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.850000 0.150000 }
|
||||
scale={ 0.270000 0.270000 }
|
||||
depth=3.010000
|
||||
rotation=45
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=rgb { 100 69 23 }
|
||||
color2=rgb { 178 122 39 }
|
||||
texture="NEOW_ce_louis.dds"
|
||||
instance={
|
||||
scale={ 0.565000 0.565000 }
|
||||
depth=4.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=yellow
|
||||
color2=yellow
|
||||
texture="ce_star_16.dds"
|
||||
instance={
|
||||
scale={ 0.870000 0.870000 }
|
||||
depth=5.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
c_lauenberg={
|
||||
pattern="pattern_solid.dds"
|
||||
color1=white
|
||||
color2=white
|
||||
color3=black
|
||||
colored_emblem={
|
||||
color1=red
|
||||
texture="ce_block_03.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.995000 }
|
||||
scale={ 0.570000 -0.030000 }
|
||||
depth=4.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=black
|
||||
texture="ce_border_shield.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.225000 }
|
||||
scale={ 0.385000 0.385000 }
|
||||
depth=11.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=white
|
||||
texture="ce_border_shield.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.225000 }
|
||||
scale={ 0.405000 0.405000 }
|
||||
depth=10.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=red
|
||||
color2=black
|
||||
texture="NEOW_ce_tower_02.dds"
|
||||
instance={
|
||||
position={ 0.820000 0.640000 }
|
||||
scale={ 0.750000 1.000000 }
|
||||
depth=6.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.180000 0.640000 }
|
||||
scale={ 0.750000 1.000000 }
|
||||
depth=7.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=blue
|
||||
texture="ce_ordinary_pile_03_inverted.dds"
|
||||
instance={
|
||||
position={ 0.180000 0.100000 }
|
||||
scale={ -0.380000 0.280000 }
|
||||
depth=2.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.820000 0.100000 }
|
||||
scale={ 0.380000 0.280000 }
|
||||
depth=3.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=black
|
||||
color2=yellow_light
|
||||
texture="ce_barruly_10.dds"
|
||||
instance={
|
||||
position={ 0.575000 0.220000 }
|
||||
scale={ 0.160000 0.315000 }
|
||||
depth=13.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=green_light
|
||||
color2=green_light
|
||||
color3=green_light
|
||||
texture="ce_crancelin.dds"
|
||||
instance={
|
||||
position={ 0.570000 0.235000 }
|
||||
scale={ 0.200000 0.200000 }
|
||||
depth=12.010000
|
||||
rotation=15
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=yellow_light
|
||||
texture="ce_circle_mask.dds"
|
||||
instance={
|
||||
position={ 0.180000 0.050000 }
|
||||
scale={ 0.060000 0.060000 }
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.820000 0.050000 }
|
||||
scale={ 0.060000 0.060000 }
|
||||
depth=1.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=red
|
||||
color2=yellow
|
||||
color3=red
|
||||
texture="ce_eagle_double.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.215000 }
|
||||
scale={ 0.280000 0.280000 }
|
||||
depth=14.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=red
|
||||
color2=yellow_light
|
||||
texture="NEOW_ce_wall.dds"
|
||||
instance={
|
||||
position={ 0.500000 0.800000 }
|
||||
depth=5.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=black
|
||||
texture="ce_block_02.dds"
|
||||
instance={
|
||||
position={ 0.185000 0.290000 }
|
||||
scale={ 0.205000 0.105000 }
|
||||
depth=8.010000
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.820000 0.290000 }
|
||||
scale={ 0.195000 0.115000 }
|
||||
depth=9.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
c_north_frisia={
|
||||
pattern="pattern_solid.dds"
|
||||
color1=yellow_light
|
||||
color2=white
|
||||
color3=green
|
||||
colored_emblem={
|
||||
color1=black
|
||||
texture="ce_block_05.dds"
|
||||
instance={
|
||||
scale={ 0.500000 1.000000 }
|
||||
depth=2.010000
|
||||
rotation=90
|
||||
}
|
||||
|
||||
instance={
|
||||
position={ 0.000000 0.420000 }
|
||||
scale={ 1.000000 0.500000 }
|
||||
depth=3.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=black
|
||||
color2=red
|
||||
color3=white
|
||||
texture="ce_eagle_double.dds"
|
||||
instance={
|
||||
position={ 0.505000 0.500000 }
|
||||
depth=6.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=blue_light
|
||||
texture="ce_block_02.dds"
|
||||
instance={
|
||||
position={ 0.220000 0.205000 }
|
||||
scale={ 0.580000 0.420000 }
|
||||
depth=4.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=red
|
||||
texture="ce_block_02.dds"
|
||||
instance={
|
||||
position={ 0.215000 0.730000 }
|
||||
scale={ 0.560000 0.645000 }
|
||||
depth=5.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=black
|
||||
color2=black
|
||||
color3=black
|
||||
texture="ce_pot.dds"
|
||||
instance={
|
||||
position={ 0.250000 0.680000 }
|
||||
scale={ 0.475000 0.475000 }
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
colored_emblem={
|
||||
color1=yellow_light
|
||||
color2=red
|
||||
texture="NEOW_ce_crown_french_closed.dds"
|
||||
instance={
|
||||
position={ 0.250000 0.190000 }
|
||||
scale={ 0.620000 0.620000 }
|
||||
depth=1.010000
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
k_transylvania={
|
||||
pattern="pattern__solid_designer.dds"
|
||||
color1=rgb { 32 75 115 }
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -7,4 +7,13 @@
|
|||
}
|
||||
coat_of_arms = d_lucania_albanian
|
||||
}
|
||||
}
|
||||
|
||||
e_france = {
|
||||
item = {
|
||||
trigger = {
|
||||
holder.faith = faith:soleil_royal
|
||||
}
|
||||
coat_of_arms = e_france_soleil_royal
|
||||
}
|
||||
}
|
||||
|
|
@ -114,7 +114,7 @@ brandenburger = { #Brandenburgisch
|
|||
tradition_life_is_just_a_joke
|
||||
}
|
||||
|
||||
name_list = name_list_brandenburger
|
||||
name_list = name_list_NEOW_brandenburger
|
||||
|
||||
coa_gfx = { german_group_coa_gfx western_coa_gfx }
|
||||
building_gfx = { western_building_gfx }
|
||||
|
|
@ -263,7 +263,7 @@ low_saxon = { #Platdüütsch
|
|||
tradition_hunters
|
||||
}
|
||||
|
||||
name_list = name_list_low_saxon
|
||||
name_list = name_list_NEOW_low_saxon
|
||||
|
||||
coa_gfx = { german_group_coa_gfx western_coa_gfx }
|
||||
building_gfx = { western_building_gfx }
|
||||
|
|
@ -298,7 +298,7 @@ NEOW_pomeranian = { #Pomeranian
|
|||
tradition_city_keepers
|
||||
}
|
||||
|
||||
name_list = name_list_low_saxon
|
||||
name_list = name_list_NEOW_low_saxon
|
||||
|
||||
coa_gfx = { german_group_coa_gfx western_coa_gfx }
|
||||
building_gfx = { western_building_gfx }
|
||||
|
|
@ -440,7 +440,7 @@ saxon = { #Sächsisch
|
|||
tradition_quarrelsome
|
||||
}
|
||||
|
||||
name_list = name_list_brandenburger
|
||||
name_list = name_list_NEOW_brandenburger
|
||||
|
||||
coa_gfx = { german_group_coa_gfx western_coa_gfx }
|
||||
building_gfx = { western_building_gfx }
|
||||
|
|
|
|||
|
|
@ -437,7 +437,7 @@ slesvigsk = {
|
|||
}
|
||||
|
||||
name_list = name_list_danish
|
||||
name_list = name_list_low_saxon
|
||||
name_list = name_list_NEOW_low_saxon
|
||||
|
||||
coa_gfx = { danish_coa_gfx western_coa_gfx }
|
||||
building_gfx = { western_building_gfx }
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
tradition_astute_diplomats
|
||||
}
|
||||
|
||||
name_list = name_list_dutch
|
||||
name_list = name_list_NEOW_dutch
|
||||
|
||||
coa_gfx = { frisian_coa_gfx german_group_coa_gfx western_coa_gfx }
|
||||
building_gfx = { western_building_gfx }
|
||||
|
|
@ -53,7 +53,7 @@ frisian = { #Represented the "old frisians" in vanilla, actually playable here #
|
|||
tradition_modest
|
||||
}
|
||||
|
||||
name_list = name_list_dutch
|
||||
name_list = name_list_NEOW_dutch
|
||||
|
||||
coa_gfx = { frisian_coa_gfx german_group_coa_gfx western_coa_gfx }
|
||||
building_gfx = { western_building_gfx }
|
||||
|
|
@ -87,7 +87,7 @@ kleverlandish = {
|
|||
tradition_parochialism
|
||||
}
|
||||
|
||||
name_list = name_list_dutch
|
||||
name_list = name_list_NEOW_dutch
|
||||
|
||||
coa_gfx = { frisian_coa_gfx german_group_coa_gfx western_coa_gfx }
|
||||
building_gfx = { western_building_gfx }
|
||||
|
|
@ -125,7 +125,7 @@ limburgisch = {
|
|||
requires_dlc_flag = hybridize_culture
|
||||
fallback = tradition_hereditary_hierarchy
|
||||
}
|
||||
name_list = name_list_dutch
|
||||
name_list = name_list_NEOW_dutch
|
||||
|
||||
coa_gfx = { frisian_coa_gfx german_group_coa_gfx western_coa_gfx }
|
||||
building_gfx = { western_building_gfx }
|
||||
|
|
|
|||
|
|
@ -29,11 +29,13 @@ amira_female = { Amira }
|
|||
anahid_female = { Anahyta }
|
||||
anastasia_female = { Anast_a_act_zie Anastasi_e_act_ Anastasia Anastasie Stacey }
|
||||
andrea_female = { Andere Andr_e_act_e Andra Andrea Andreia Andreja Andreua Andrine Andriveto }
|
||||
andreamaria_female = { Andreua_spc_Mar_i_act_a }
|
||||
angela_female = { _A_act_nchela _A_grv_ngela _A_hat_ngela Aela Aelia Aelig And_e_crn_la Ang_e_grv_lo_female Angela Angelina Angelita Angjelina Angyla Anxhela Engelina Gotzone }
|
||||
angeles_female = { _A_grv_ngels }
|
||||
angelica_female = { Ang_e_act_lica Angelica Angelico_female Angelika Angelique Lieke }
|
||||
anisa_female = { Anesa Anisa }
|
||||
anna_female = { Aina Ainne Ana Ana_i_uml_s Anais Ane Anet Aneta Aneto Anette Anika Anila Anita Anja Anka Anke Ann Anna Annaig Anne Anneke Anneken Annette Anni Annica Annick Annicka Annie Annigje Annika Anniken Anny Ano Anouk Antje Anu Hana Hanah Hanka Hanna Hannah Hanne Naig Nu_s_crn_a }
|
||||
annabelen_female = { Ana_spc_Bel_e_act_na }
|
||||
annabella_female = { Anabela Annabel Annabell Annabella }
|
||||
annacatherine_female = { Anna-Karin Annekatrin }
|
||||
annacharlotte_female = { Ann-Charlotte }
|
||||
|
|
@ -42,10 +44,11 @@ annaclara_female = { Ano-Claro }
|
|||
annahelena_female = { Anna-Lena }
|
||||
annaeleonora_female = { Hannelore }
|
||||
annaelizabeth_female = { Ane_spc_Elixabete Ana_spc_Isabela Anna_spc_Isabel }
|
||||
annalaura_female = { Anne-Laure Ano-Lauro }
|
||||
annalaura_female = { Ana_spc_Laura Anne-Laure Ano-Lauro }
|
||||
annalisa_female = { Anneli Anneliese Annelise Annely Ano-Liso }
|
||||
annamargaret_female = { Ana_spc_Mar_i_act_a Annarita Annegret Anne-Gret Anne-Margrete Anne-Mette }
|
||||
annamaria_female = { Amei Ane_spc_Miren Anna_spc_Maria Annamaria Anna-Vari Annemarie Anne-Marie Annemie Annemieke Ann-Marie Ano-Mar_i_grv_o }
|
||||
annapilar_female = { Ana_spc_Pilar }
|
||||
annarosa_female = { Annerose Anne-Rose }
|
||||
annasophia_female = { Anne-Sophie Ano-Souf_i_grv_o }
|
||||
antonia_female = { Ant_o_grv_nia Antoinette Antonella Antoneta Antonetta Antonia Antonieta Antonietta Antonija Antouneto Antoynytty T_o_grv_nio_female Teuntje Tounieto }
|
||||
|
|
@ -53,7 +56,7 @@ anunciacion_female = { Anuntxi }
|
|||
aphrodite_female = { Af_e_uml_rdita Aferdita Affrhodyty }
|
||||
apollonia_female = { Apol_o_act_nia Lone Polona Poul_o_grv_nio }
|
||||
april_female = { Abri_e_act_u Abril Ebrel }
|
||||
aranzazu_female = { Arantxa Arantza Arantzazu Aranzazu }
|
||||
aranzazu_female = { Arancha Arantxa Arantza Arantzazu Aranzazu }
|
||||
ariadne_female = { Ariadna Ariana Ariane }
|
||||
arlette_female = { Arleto }
|
||||
asa_female = { _A_rng_sa _A_rng_se }
|
||||
|
|
@ -75,6 +78,7 @@ bartholomea_female = { Jerneja Neja }
|
|||
basilisa_female = { Vasilisa Vasilka }
|
||||
beata_female = { Be_a_act_ta Beata Beate }
|
||||
beatrice_female = { B_e_act_atrice B_e_act_atrissa Beaitrice Beatrice Beatris Beatriu Beatrix Beatriz Betrys Byatrhyks Byatrycy Byatrysy }
|
||||
begonia_female = { Bego_n_tld_a Begonia }
|
||||
belen_female = { Bel_e_act_n Belen Betlem }
|
||||
benedicta_female = { Benedikta Benedito_female Benita Beno_i_hat_te Bente }
|
||||
berengaria_female = { B_e_act_reng_e_grv_re Berenguiero }
|
||||
|
|
@ -99,7 +103,7 @@ carolina_female = { Carolina Caroline Carolyn Caroulino Karol_i_act_na Karolina
|
|||
cassandra_female = { Cassandra Cassandro Kasyy }
|
||||
catherine_female = { C_a_act_tia Cadi Cafyryny Caiterine Caitlin Carin Carina Catarina Catarino Caterina Catharina Catherine Cathy Cathyrhyny Cati Catrin Catyy Caytllyn Ekatherina K_a_uml_te K_a_uml_the K_a_uml_tlin Kaciaryna Kadi Kadri_Catherine Kafyryny Kaia Kaiterine Kaitrin Kajsa Karen Kari Karin Karina Karine Karyn Katalin Katar_i_act_na Katarina Kate Kate_r_crn_ina Katell Katharina Katharine Katherina Katherine Kathleen Kathrin Kathryn Kati Katia Katie Katixa Katja Katka Katr_i_act_n Katre Katri Katrin Katrina Katrine Kattalin Katy Kaytlyn Keit Keiu Keti Nienke Riin Riina Triin Trijntje Trine Triinu }
|
||||
catherinemaria_female = { Kairi }
|
||||
cecilia_female = { C_e_act_cile Cec_i_act_lia Cecilia Ceciliai Cecilie Cecilo Cicely Cilly Cycyllya Cycylya Sesselja Sheila Sheyla Silja Silje Silke Sille Sisse Sissel Sysylya Xixili }
|
||||
cecilia_female = { C_e_act_cile Cec_i_act_lia Cecilia Ceciliai Cecilie Cecilo Cicely Cilly Cycyllya Cycylya Sesselja Sheila Sheyla Silja Silje Silke Sille Sisse Sissel Sysylya Xixili Zezilia }
|
||||
celestina_female = { Celeste Celestina Celestino_female Celesto_female }
|
||||
celia_female = { C_e_grv_lia Celi_a_grv_ Celia Zilia }
|
||||
celine_female = { C_e_act_line Celina Celino Selina Sylyna }
|
||||
|
|
@ -112,13 +116,14 @@ christelle_female = { Christel Christelle Kristel Kristell }
|
|||
christina_female = { Carsta Chesten Chrissie Christa Christiane Christina Christine Crestina Crestino Cristina Cristyn Kersten_female Kersti Kerstin Kirsten Kirsti Kirstine Kirsty Krist_i_act_n Krist_y_act_na Krista Kristen Kristi Kristiina Kristiine Kristin Kristina Kristine Kristjana Kristy Stina Stine Tiina Tine }
|
||||
chun_female = { Chun Shun }
|
||||
claire_female = { Argi_n_tld_e Clair Claire Clara Clare Clarha Clarisse Clarisso Claro_female Kl_a_act_ra Kl_a_uml_rchen Klara Kler Sklaerenn }
|
||||
clairemaria_female = { Clara_spc_Mar_i_act_a }
|
||||
claudia_female = { Cl_a_act_udia Cl_a_grv_udia Claudette Claudia Claudine Gladys Glaudeto Glaudino Glaudo_female Gwladdys Gwladys Klaoda Klaodina Klaudia Klavdija Klodeta }
|
||||
clementia_female = { Clem_e_grv_nci Clem_e_grv_ncia Clementia Clementina Clementino_female Clymyntyny Klementina }
|
||||
cleopatra_female = { Cl_e_act_op_a_hat_tre Cleiopatra Cleopatra Kl_ae_apatra Kliapetra Cleopaitrai }
|
||||
clorinda_female = { Clehrinduh Clohrinduh Clorinda Clorinde Clorinduh Clorynder Clourindo }
|
||||
clotilda_female = { Clotilde Cloutido Klotylda }
|
||||
colette_female = { Colette Coul_e_grv_to }
|
||||
concepcion_female = { Concei_c_ced__a_tld_o Concepci_o_act_ Concetta Conxita Sorkunde }
|
||||
concepcion_female = { Concei_c_ced__a_tld_o Concepci_o_act_ Concepci_o_act_n Concetta Conxita Sorkunde }
|
||||
constance_female = { Constaince Constance Constancy Constanze Coustan_c_ced_o Konstanse }
|
||||
coralie_female = { Coral_i_act_ Coural_i_grv_o }
|
||||
cordelia_female = { Corhddylya }
|
||||
|
|
@ -126,13 +131,13 @@ corinne_female = { Corina Corinna Corinne Courino }
|
|||
cornelia_female = { Corn_e_act_lia Cornelia Kornelia Neeltje Nele }
|
||||
cruz_female = { Gurutze }
|
||||
crystal_female = { Chrystal Cristail Crystall }
|
||||
cynthia_female = { Cynfya Cynthia }
|
||||
cynthia_female = { Cintia Cynfya Cynthia }
|
||||
dagmar_female = { D_a_act__s_crn_a Dagmar }
|
||||
dalia_female = { Ddahlya Ddalya }
|
||||
daniela_female = { Ddainni Dana Dani_e_uml_lle Daniela Danielle Danielo_female Danique Ddainielle Ddanny Ddanylly Ddanyylly }
|
||||
daphne_female = { Dafina Daphne Daun_e_grv_ }
|
||||
darya_female = { Darija Darja }
|
||||
debora_female = { Debbie Debora Deborah Debra Devorah }
|
||||
debora_female = { D_e_act_bora Debbie Debora Deborah Debra Devorah }
|
||||
delphine_female = { D_o_act_ufino Delfina Delphine }
|
||||
demetria_female = { Demi }
|
||||
denise_female = { Daniso Ddynysy Deneza Denisa Denise }
|
||||
|
|
@ -153,9 +158,9 @@ eliana_female = { _E_act_liane Eliano }
|
|||
elisa_female = { _E_act_lise Elisa Elise Eliso Eliza }
|
||||
elizabeth_female = { _E_act_lisabeth _S_crn_pela Al_z_crn_b_e_crn_ta Bab_e_grv_u_female Babette Bessie Bethan Bettina Betty Eisab_e_grv_u El_i_act_sabet Elesbed Eli_s_crn_ka Elisabet Elisabete Elisabeth Elixabet Elixabete Elizabeta Elizabeth Elizaibet Elizavetha Ellyzabyf Elsbeth Elsebeth Elsie Elspet Elysabyf Elyzabyf Ilsabe Liesel Lill Lis Lisbeth Lisen Lisette Liz Lizavetha Lizzie Llyzzyy Lyzzyy }
|
||||
elizabethcharlotte_female = { Lieselott Lieselotte Liselotte }
|
||||
elodie_female = { _E_act_lodie Eloud_i_grv_o }
|
||||
elodie_female = { _E_act_lodie Alodia Eloud_i_grv_o }
|
||||
elsa_female = { Els_a_grv_ Elsa Else Elza Ilse Telse }
|
||||
elvira_female = { Elvi Elvira Elvy Elwyrha }
|
||||
elvira_female = { Albira Elvi Elvira Elvy Elwyrha }
|
||||
emeline_female = { Emblyn Emelino }
|
||||
emerald_female = { Emerald Esmeraudo }
|
||||
emily_female = { _E_act_milie Em_i_act_lia Em_i_act_lie Emelie Emil_i_act_a Emil_i_grv_o_female Emili_female Emilia Emiliano_female Emilie Emily Emmy Emylly Emyly Emylyy }
|
||||
|
|
@ -173,14 +178,14 @@ eulalia_female = { _E_act_ul_a_grv_lio Eul_a_act_lia Eul_a_grv_lia Laia Olaia }
|
|||
euphemia_female = { Euphemia Yufimia }
|
||||
eurydice_female = { Eur_i_act_dice }
|
||||
eva_female = { _E_grv_ve _E_grv_vo Eevi Efa Eva Evi Ewa Ewya Ieva }
|
||||
evamaria_female = { Eva_spc_Maria Eva-Maria }
|
||||
evamaria_female = { Eva_spc_Mar_i_act_a Eva_spc_Maria Eva-Maria }
|
||||
evelyn_female = { _E_act_velyne Evaline Evelien Evelin Evelina Eveline Evelino Evelyn }
|
||||
fabiana_female = { Fabiano_female Fabienne }
|
||||
faith_female = { Fayf }
|
||||
farah_female = { Farah Ffarrah }
|
||||
farida_female = { Farida Feride }
|
||||
fatiha_female = { Fatiha }
|
||||
fatima_female = { F_a_act_tima F_a_grv_tima Fadime Fatima Fatime Fatma Ffatymah }
|
||||
fatima_female = { F_a_act_tima F_a_grv_tima Fadime Fat_i_act_ma Fatima Fatime Fatma Ffatymah }
|
||||
fatina_female = { Fatine }
|
||||
faustina_female = { Faustino_female }
|
||||
fawzia_female = { Fawzia Fevzije }
|
||||
|
|
@ -194,14 +199,14 @@ florence_female = { Florence Flour_e_grv_n_c_ced_o }
|
|||
floriana_female = { Flouriano }
|
||||
fortuna_female = { Furtuna }
|
||||
france_female = { Fran_c_ced_o_female }
|
||||
frances_female = { Chichoueso Ffrhancys_female Fra_n_tld_seza Fran_c_ced_oise Fran_c_crn_i_s_crn_ka Franca Frances Francesca Franceso Francina Francino Francisca Franti_s_crn_ka Frantsyska Frantziska Franziska Franziske Soazig Soizic Soizick }
|
||||
frances_female = { Chichoueso Ffrhancys_female Fra_n_tld_seza Fran_c_ced_oise Fran_c_crn_i_s_crn_ka Franca Frances Francesca Franceso Francha Francina Francino Francisca Franti_s_crn_ka Frantsyska Frantziska Franziska Franziske Soazig Soizic Soizick }
|
||||
frederica_female = { Bed_r_crn_i_s_crn_ka Frederico_female Frederika Frederikke Fredrika Friederike Rikke }
|
||||
freya_female = { Freja }
|
||||
frida_female = { Frida Frieda }
|
||||
gabriela_female = { Gabi Gabriela Gabriele Gabriella Gabrielle Gabrielo_female Gabrijela Gaby }
|
||||
gael_female = { Ga_e_grv_lo Ga_e_uml_lle }
|
||||
gaia_female = { Kaja_Gaia }
|
||||
gemma_female = { Gema Gemma Gemmai Gymma Jemma }
|
||||
gemma_female = { Chema Gema Gemma Gemmai Gymma Jemma }
|
||||
genevieve_female = { Genevi_e_grv_ve Genevivo Gineto }
|
||||
georgia_female = { Georgette Georgia Georgiana Georgina Gyorhgya Ji_r_crn_ina Jordina Jourgeto Yuria }
|
||||
geralda_female = { Geraldina Geraldine Geraldino_female Gyrhalddyny }
|
||||
|
|
@ -211,7 +216,7 @@ gertrude_female = { Geertje Geertruida Gerd_female Gerda Gerdi Gerta Gertraud Ge
|
|||
gesine_female = { S_u_uml_nje S_u_uml_nne }
|
||||
ghislaine_female = { Guisl_e_grv_no }
|
||||
gilberta_female = { Giliberto_female }
|
||||
gisela_female = { Giesela Gis_e_grv_le Gis_e_grv_lo Gisa Gisela }
|
||||
gisela_female = { Chisela Giesela Gis_e_grv_le Gis_e_grv_lo Gisa Gisela }
|
||||
gloria_female = { Aintzane Gl_o_act_ria Gl_o_grv_ria Glorhyana Gloria }
|
||||
grace_female = { Garazi Gra_c_ced_a Grace Gracy Graxi Grazia }
|
||||
gudrun_female = { Gu_eth_r_u_act_n }
|
||||
|
|
@ -247,7 +252,7 @@ huberta_female = { Hubertina }
|
|||
huguette_female = { Ugueto }
|
||||
hurriya_female = { Houria Hourya }
|
||||
ida_female = { _I_act_da I_eth_a Ida Ido }
|
||||
immaculata_female = { Garbi_n_tld_e Imma Immacolata Immaculada }
|
||||
immaculata_female = { Garbi_n_tld_e Imma Immacolata Immaculada Immaculata }
|
||||
inga_female = { Inga Inge }
|
||||
ingeborg_female = { Ingebj_o_stk_rg Ingeborg Ingibj_o_uml_rg }
|
||||
ingegerd_female = { Ingegerd Ingela }
|
||||
|
|
@ -276,7 +281,7 @@ joanamaria_female = { Jano-Mar_i_grv_o Johanna-Maria Jone_spc_Miren }
|
|||
jocelyn_female = { Joceline Jocelyne Joucelino_female }
|
||||
joelle_female = { Jo_e_uml_lle Jouelo_female }
|
||||
jordana_female = { Jordan_female }
|
||||
josepha_female = { Giuseppina Gjyzepina J_o_act_usefino Jo_z_crn_efa Jo_z_crn_ica Jos_e_act_phine Josebe Josef_i_act_na Josefa Josefin Josefina Josefine Josepa Josepha Josephina Josephine Josipina Josyffyny Pepita }
|
||||
josepha_female = { Chusefina Chusepa Giuseppina Gjyzepina J_o_act_usefino Jo_z_crn_efa Jo_z_crn_ica Jos_e_act_phine Josebe Josef_i_act_na Josefa Josefin Josefina Josefine Josepa Josepha Josephina Josephine Josipina Josyffyny Pepita }
|
||||
josette_female = { Josette Jouseto_female }
|
||||
josiane_female = { Josiane Jousiano }
|
||||
judith_female = { Chudit Jitka Juddit Judit Judita Judite Judith Judyf Jutta Jwdy Jytte Yuditha }
|
||||
|
|
@ -311,7 +316,7 @@ linnea_female = { Linn Linn_e_act_a Linnea }
|
|||
lisa_female = { Liis Liisa Lisa Lise Liseto Liso_female Liza }
|
||||
lorraine_female = { Laiuren Lauren Laurhyn Lauryn Llauryn Lorena Lorhrhayny Lorraine Lourreno }
|
||||
louise_female = { Aloisia Aloisie Alojzija Lizig Llu_i_uml_sa Lo_i_uml_za Loeiza Lois Lou_i_uml_so_female Lou_i_uml_sono Louisa Louise Lova Loviise Lovisa Lowysy Lu_i_act_sa Lu_i_act_za Ludwiga Luigia Luisa Luise Luiza Lwuysy Zaig }
|
||||
lourdes_female = { Lourdes Lourdina Lurdes }
|
||||
lourdes_female = { Lorda Lourdes Lourdina Lurdes }
|
||||
lubna_female = { Lobna }
|
||||
lucia_female = { L_u_act_cia L_u_grv_ci Llucia Llucy Lu_c_ced_ie Luci Lucia Lucie Lucija Lucy Lucya Lusy Lusya Luz_i_act_a Luzia }
|
||||
lucille_female = { Luc_i_act_lia }
|
||||
|
|
@ -333,13 +338,13 @@ marcella_female = { Marcela Marcelino_female Marcelle Marcello_female }
|
|||
margaret_female = { Gaid Gr_e_act_ta Greta Grete Gretel Grethe Grietje Grit M_e_act_gane Mairgairet Mared Maret Margaret Margareta Margarete Margaretha Margarethe Margarido Margarita Margaritta Margaryt Margaux Marge Marged Margery Margit Margita Margitta Margot Margr_e_act_t Margrete Margrethe Margrit Marguerite Marhgarhyt Marit Marite Marjorie Marjour_i_grv_o Mark_e_act_ta Meeta Megain Megano Mererid Merete Merethe Metka Mette Mygan Peggy Reet Rita }
|
||||
maria_female = { M_a_act_ria M_a_grv_riam M_i_act_riam Ma_s_crn_a Maaike Maarja Maddi Mai Maie Maiken Maila Maili Mair Maire Mairi Maive Maj Maja Majken Mali Manca Manon Manoun Mar_i_act_a Mar_i_grv_o_female Mare Marhya Marhyy Mari Mari_e_uml_lle Maria Mariam Mariama Marie Mariechen Marieke Mariella Marija Marije Marijke Marika Marion Mariona Marioun Maris Mariska Mariso_female Marita Marja Marjeta Marju Maru_s_crn_a Mary Maureen May Maya Megan Meryem Meta Mia Mie Mija Miren Mirene Miriam Mirian Mirjam Miryam Moirai Molli Mollie Molly My Myriam Polly Ria }
|
||||
mariaangel_female = { Mar_i_grv_o-Ange Mariangela }
|
||||
mariaangeles_female = { Maria_spc__A_grv_ngels }
|
||||
mariaangeles_female = { Mar_i_act_a_spc__A_act_nchels Maria_spc__A_grv_ngels }
|
||||
mariaanna_female = { Mar_i_grv_o-Ano Maria_spc_Anna Mariannick Marie-Annick Maryannick Rianne }
|
||||
mariaantonia_female = { Mar_i_grv_o-Antouneto Maria_spc_Antonieta Maria_spc_Antonietta Marie-Antoinette }
|
||||
mariaascension_female = { Miren_spc_Jasone }
|
||||
mariaassumpcion_female = { Maria_spc_Assumpci_o_act_ Maria_spc_Assunta Maria_spc_de_spc_Assun_c_ced__a_tld_o }
|
||||
mariabegonia_female = { Miren_spc_Bego_n_tld_a }
|
||||
mariabelen_female = { Maria_spc_de_spc_Bel_e_act_m }
|
||||
mariabelen_female = { Mar_i_act_a_spc_Bel_e_act_n Maria_spc_de_spc_Bel_e_act_m }
|
||||
mariablanca_female = { Maria_spc_Blanca }
|
||||
mariabrigitta_female = { Majbritt Maj-Britt }
|
||||
mariacarmen_female = { Maika Mar_i_act_a_spc_Carmen Maria_spc_Carme Maria_spc_do_spc_Carmo Miren_spc_Karmele }
|
||||
|
|
@ -350,26 +355,26 @@ mariacinta_female = { Maria_spc_Cinta }
|
|||
mariaclara_female = { Mar_i_grv_o-Claro Marie-Claire }
|
||||
mariaclaudia_female = { Mar_i_grv_o-Glaudo }
|
||||
mariaconcepcion_female = { Maria_spc_da_spc_Concei_c_ced__a_tld_o Miren_spc_Sorkunde }
|
||||
mariadolores_female = { Maria_spc_Dolors Miren_spc_Nekane }
|
||||
mariadolores_female = { Mar_i_act_a_spc_Dolors Maria_spc_Dolors Miren_spc_Nekane }
|
||||
mariadominica_female = { Mar_i_grv_o-Doumenico }
|
||||
mariaelizabeth_female = { Mailis Mar_i_act_a_spc_Isabela Maria_spc_Elisabet Mari-Liis Marlies Marliese Marlis Miren_spc_Elixabete }
|
||||
mariaeugenia_female = { Maria_spc_Eug_e_grv_nia Miren_spc_Eukene }
|
||||
mariaeugenia_female = { Mar_i_act_a_spc_Uchenia Maria_spc_Eug_e_grv_nia Miren_spc_Eukene }
|
||||
mariafatima_female = { Maria_spc_de_spc_F_a_act_tima }
|
||||
mariafrance_female = { Mar_i_grv_o-Fran_c_ced_o Marie-France }
|
||||
mariafrancesca_female = { Mar_i_grv_o-Franceso }
|
||||
mariagrace_female = { Maria_spc_da_spc_Gra_c_ced_a Maria_spc_Grazia }
|
||||
mariagwen_female = { Ma_i_uml_wenn Maewenn Maiwen Maiwenn Mari-Gwenn }
|
||||
mariahelena_female = { Mar_i_grv_o-Eleno Marilena May-Helen Miren_spc_Elene }
|
||||
mariajesus_female = { Maria_spc_Jes_u_act_s Miren_spc_Josune }
|
||||
mariahelena_female = { Mar_i_act_a_spc_Lena Mar_i_grv_o-Eleno Marilena May-Helen Miren_spc_Elene }
|
||||
mariajesus_female = { Mar_i_act_a_spc_Ches_u_act_s Maria_spc_Jes_u_act_s Miren_spc_Josune }
|
||||
mariajoanna_female = { Mar_i_grv_o-Jano }
|
||||
mariajoseph_female = { Mar_i_act_a_spc_Chus_e_act_ Mar_i_grv_o-J_o_act_us_e_grv_ Maria_spc_Jos_e_act_ Maria_spc_Josep Mari-Jozeb }
|
||||
mariajosepha_female = { Maria_spc_Josefa Maria_spc_Josepa }
|
||||
marialaura_female = { Mar_i_grv_o-Lauro }
|
||||
marialouisa_female = { Malou Mar_i_grv_o-Louiso Maria_spc_Llu_i_uml_sa Maria_spc_Luigia Maria_spc_Luisa Marie-Louise Marie-Luise Mari-Loeiza Marloes Milou Miren_spc_Koldobike }
|
||||
marialouisa_female = { Malou Mar_i_act_a_spc_Lo_i_act_sa Mar_i_grv_o-Louiso Maria_spc_Llu_i_uml_sa Maria_spc_Luigia Maria_spc_Luisa Marie-Louise Marie-Luise Mari-Loeiza Marloes Milou Miren_spc_Koldobike }
|
||||
marialourdes_female = { Maria_spc_de_spc_Lourdes Maria_spc_de_spc_Lurdes }
|
||||
marialuz_female = { Maria_spc_da_spc_Luz }
|
||||
mariamagdalena_female = { Mar_i_grv_o-Madaleno Maria_spc_Magdalena Marie-Magdalena Marl_e_grv_no Marleen Marlene Marlenka }
|
||||
mariamar_female = { Maria_spc_Mar Miren_spc_Itxaso }
|
||||
mariamar_female = { Mar_i_act_a_spc_Mar Maria_spc_Mar Miren_spc_Itxaso }
|
||||
mariamercedes_female = { Maria_spc_Merc_e_grv_ }
|
||||
mariamilagros_female = { Miren_spc_Alazne }
|
||||
marianne_female = { Marian Mariana Mariann Marianne Mariano_female Marjan_female Marjana Marjanca Meiriona }
|
||||
|
|
@ -381,8 +386,8 @@ mariapilar_female = { Mar_i_act_a_spc_Pilar Maria_spc_do_spc_Pilar Maria_spc_Pil
|
|||
mariapurification_female = { Maria_spc_da_spc_Purifica_c_ced__a_tld_o }
|
||||
mariarosa_female = { Mari-Rose Mari-Rouz Mar_i_grv_o-Roso Maria_spc_Rosa }
|
||||
mariasoledad_female = { Marisol Miren_spc_Bakarne }
|
||||
mariatheresa_female = { Maite Mar_i_grv_o-Ter_e_grv_so Maria_spc_Teresa Maria_spc_Theresia Maria-Tereza Marie-Th_e_act_r_e_grv_se Marie-Theresa Miren_spc_Teresa }
|
||||
mariavictoria_female = { Maria_spc_Vict_o_grv_ria }
|
||||
mariatheresa_female = { Maite Mar_i_act_a_spc_Tresa Mar_i_grv_o-Ter_e_grv_so Maria_spc_Teresa Maria_spc_Theresia Maria-Tereza Marie-Th_e_act_r_e_grv_se Marie-Theresa Miren_spc_Teresa }
|
||||
mariavictoria_female = { Mar_i_act_a_spc_Vitoria Maria_spc_Vict_o_grv_ria }
|
||||
mariayvonne_female = { Marivon Marivono }
|
||||
marilyn_female = { Maril_e_grv_no_female }
|
||||
marina_female = { Itsasne Itxasne Mar_i_act_n Maren Mari_n_tld_e Marina Marine Marino_female }
|
||||
|
|
@ -394,7 +399,7 @@ maximiliana_female = { Massimiliano Maximiliane }
|
|||
melania_female = { M_e_act_lanie Melan_i_grv_o Melani Melania Melanie }
|
||||
melinda_female = { M_e_act_linda }
|
||||
melissa_female = { Melisa Melissai Melisso Myllyssa Mylyssa }
|
||||
mercedes_female = { Eskarne Merc_e_act_d_e_grv_s Merc_e_grv_ Merc_e_hat_s Mercedes Mertxe Tregereth }
|
||||
mercedes_female = { Eskarne Merc_e_act_d_e_grv_s Merc_e_grv_ Merc_e_hat_s Mercedes Mertxe Merz_e_act_ Tregereth }
|
||||
michelle_female = { M_i_act__s_crn_a Mich_e_grv_le Michaela Michaele Michala Michela Michele_female Micheleto_female Michelle Michello_female Mihaela Mikaela Mikele Miquelina }
|
||||
milagros_female = { Alazne Miracle Mirari }
|
||||
mila_female = { Milanka Milu_s_crn_e Milu_s_crn_ka }
|
||||
|
|
@ -421,7 +426,7 @@ nazareth_female = { Natzaret }
|
|||
nazira_female = { Nazire }
|
||||
nefertiti_female = { Nefertiti Nyffyrtyty Nyffyrhtyty }
|
||||
nicole_female = { Clasina Klazina Nichola Nicleto Nicol_female Nicola Nicole Nicoline Nicolo_female Niek Nika Nikalina Nikki Nikol_female Nikola_female Nikoleta Nikolina Nycoly }
|
||||
nieves_female = { Edurne Neus Nives }
|
||||
nieves_female = { Edurne Neus Nieus Nives }
|
||||
nimue_female = { Nimue Nymuy }
|
||||
noelle_female = { Jaione No_e_grv_lia Noel_female Noelia Nouelo_female }
|
||||
nolwenn_female = { Newlyn Noalig Nolwen Nolwenn }
|
||||
|
|
@ -441,6 +446,7 @@ parvin_female = { Pervin }
|
|||
pascala_female = { Pascale Pascaleto Pascalo_female }
|
||||
patricia_female = { Patrhycya Patr_i_act_cia Patricia Patricie Patricio_female Patrizia Trish }
|
||||
paula_female = { Pabla Paiulai Paola Paula Paule Pauleto_female Paulette Paulina Pauline Paulino_female Paulo_female Pavl_i_act_na Pavla Pavlina Polina }
|
||||
paulamaria_female = { Paula_spc_Mar_i_act_a }
|
||||
paz_female = { Gentzane }
|
||||
penelope_female = { Penelope }
|
||||
petra_female = { Peireto Peirounello Peirouno Pernilla Pernille Petra Petrai Petronella Piera Pieternella Pytra Pytrha }
|
||||
|
|
@ -474,7 +480,7 @@ rosa_female = { R_o_act_sa R_u_rng__z_crn_ena Rhosyn Rosa Rose Rosi Rosie Rosina
|
|||
rosaanna_female = { Rosanna }
|
||||
rosalia_female = { Rosaali Rosalia Rosalie Rosely Rousal_i_grv_o Roz_a_act_lie Zala }
|
||||
rosalyn_female = { Rosalina Rosalind Roselyne Rousselino }
|
||||
rosamaria_female = { Romy Rosa_spc_Maria Rosamaria Rosemarie Rose-Marie Rosemary Roso-Mar_i_grv_o }
|
||||
rosamaria_female = { Romy Rosa_spc_Mar_i_act_a Rosa_spc_Maria Rosamaria Rosemarie Rose-Marie Rosemary Roso-Mar_i_grv_o }
|
||||
rosario_female = { Agurne Agurtzane Ros_a_act_rio Rosaria Roser }
|
||||
roxana_female = { Rossana Roxanne }
|
||||
ruqqayah_female = { Ruki }
|
||||
|
|
@ -510,7 +516,7 @@ sophronia_female = { Soffrhonya Soffronya }
|
|||
soraya_female = { Soraia Soraya }
|
||||
stanislava_female = { Stanislava }
|
||||
stella_female = { Estel Estela Estelle Estello Izar Izarne Seren Stela Stella Steren Sterenn Sterre }
|
||||
stephanie_female = { _S_crn_t_e_crn_p_a_act_nka _S_crn_tefanija Estefania Esteveneto Fan_i_grv_ St_e_act_phanie Stefan_i_act_a Stefania Stefanie Steffi Stephainie Stephanie Styffanyy }
|
||||
stephanie_female = { _S_crn_t_e_crn_p_a_act_nka _S_crn_tefanija Estefania Estevan_i_act_a Esteveneto Fan_i_grv_ St_e_act_phanie Stefan_i_act_a Stefania Stefanie Steffi Stephainie Stephanie Styffanyy }
|
||||
suad_female = { Souad }
|
||||
sultana_female = { Sultan }
|
||||
summer_female = { Haf Summyr }
|
||||
|
|
|
|||
|
|
@ -58,18 +58,19 @@ name_list_NEOW_aragonese = {
|
|||
female_names = {
|
||||
2 = {
|
||||
_A_act_nchela
|
||||
A_i_act_da Adriana Ain_e_act_s Ainhoa Aitana Alba Alba_spc_Mar_i_act_a Alexandra Alizia Almudena Ana Ana_spc_Isabela Ana_spc_Mar_i_act_a Andreua
|
||||
A_i_act_da Adriana Ain_e_act_s Ainhoa Aitana Alba Alba_spc_Mar_i_act_a Alexandra Alizia Almudena Amanda Ana Ana_spc_Bel_e_act_n Ana_spc_Isabela Ana_spc_Mar_i_act_a Andreua Ariadna
|
||||
B_a_act_rbara Beatriz Bel_e_act_n Berta Blanga
|
||||
Carla Carlota Carmen Carolina Chudit Chulia Clara Claudia Crestina
|
||||
Elisa Estela Ester Esther Eva
|
||||
Carla Carlota Carmen Carolina Chema Chudit Chulia Clara Claudia Crestina
|
||||
Elisa Estela Ester Estevan_i_act_a Esther Eva
|
||||
Helena
|
||||
Irene Iris Isabela Izarbe
|
||||
Jara Jennifer
|
||||
Jara Jennifer Jessica
|
||||
Lara Laura Lena Letizia Leyre Lidia Lorena Loreto Luz_i_act_a
|
||||
M_i_act_riam Mar_i_act_a Mar_i_act_a_spc_Carmen Mar_i_act_a_spc_Chus_e_act_ Mar_i_act_a_spc_Isabela Mar_i_act_a_spc_Pilar Marina Marta Monica
|
||||
M_i_act_riam Mar_i_act_a Mar_i_act_a_spc_Carmen Mar_i_act_a_spc_Chus_e_act_ Mar_i_act_a_spc_Isabela Mar_i_act_a_spc_Pilar Mar_i_act_a_spc_Tresa Marina Marta Mireya Monica
|
||||
Natalia Nerea Noelia Noem_i_act_ Nuria
|
||||
Olga
|
||||
Pabla Paloma Paula Patrizia Pilar
|
||||
Raquel Rebeca Roc_i_act_o
|
||||
Raquel Rebeca Roc_i_act_o Rosa
|
||||
Sandra Sara Sheila Silvia Sof_i_act_a Sonia Susana
|
||||
Tamara Tania Tresa
|
||||
Vanesa Veronica Virchinia Vitoria
|
||||
|
|
@ -77,6 +78,26 @@ name_list_NEOW_aragonese = {
|
|||
Zilia
|
||||
}
|
||||
1 = {
|
||||
_A_act_frica
|
||||
Adela Ainoa Albira Alegr_i_act_a Alodia Ana_spc_Carmen Ana_spc_Laura Ana_spc_Pilar Andreua_spc_Mar_i_act_a Arancha Arantxa Aurora
|
||||
Begonia Brenda
|
||||
Candela Caterina Chisela Chusefina Chusepa Cintia Clara_spc_Mar_i_act_a Concepci_o_act_n Coral
|
||||
D_e_act_bora Diana
|
||||
Elisabet Elsa Emma Erika Eva_spc_Mar_i_act_a
|
||||
Fat_i_act_ma Francha
|
||||
Idoia Immaculata Itziar
|
||||
Jenifer
|
||||
Gloria
|
||||
Laura_spc_Mar_i_act_a Laura_spc_Pilar Lorda
|
||||
Malena Mar Mar_i_act_a_spc__A_act_nchels Mar_i_act_a_spc_Bel_e_act_n Mar_i_act_a_spc_Ches_u_act_s Mar_i_act_a_spc_Dolors Mar_i_act_a_spc_Lena Mar_i_act_a_spc_Lo_i_act_sa Mar_i_act_a_spc_Mar Mar_i_act_a_spc_Uchenia Mar_i_act_a_spc_Vitoria Martina Merz_e_act_ Montserrat
|
||||
Nadia Nieus
|
||||
Paula_spc_Mar_i_act_a
|
||||
Raquel_spc_Mar_i_act_a Reyes Rosa_spc_Mar_i_act_a Ruth
|
||||
Samara Saray Soraya
|
||||
Tatiana
|
||||
Violeta
|
||||
Yasmina
|
||||
Zezilia
|
||||
}
|
||||
}
|
||||
dynasty_of_location_prefix = "dynnp_de"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
name_list_brandenburger = {
|
||||
name_list_NEOW_brandenburger = {
|
||||
|
||||
cadet_dynasty_names = {
|
||||
"dynn_Albrecht"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
name_list_dutch = {
|
||||
name_list_NEOW_dutch = {
|
||||
|
||||
cadet_dynasty_names = {
|
||||
"dynn_Bakker"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
name_list_low_saxon = {
|
||||
name_list_NEOW_low_saxon = {
|
||||
|
||||
cadet_dynasty_names = {
|
||||
"dynn_Adam"
|
||||
|
|
|
|||
|
|
@ -2066,27 +2066,27 @@ CulturalCurse = {
|
|||
|
||||
#Dutch
|
||||
text = {
|
||||
trigger = { culture = { has_name_list = name_list_dutch } }
|
||||
trigger = { culture = { has_name_list = name_list_NEOW_dutch } }
|
||||
localization_key = curse_godver
|
||||
}
|
||||
text = {
|
||||
trigger = { culture = { has_name_list = name_list_dutch } }
|
||||
trigger = { culture = { has_name_list = name_list_NEOW_dutch } }
|
||||
localization_key = curse_godverdomme
|
||||
}
|
||||
text = {
|
||||
trigger = { culture = { has_name_list = name_list_dutch } }
|
||||
trigger = { culture = { has_name_list = name_list_NEOW_dutch } }
|
||||
localization_key = curse_tering
|
||||
}
|
||||
text = {
|
||||
trigger = { culture = { has_name_list = name_list_dutch } }
|
||||
trigger = { culture = { has_name_list = name_list_NEOW_dutch } }
|
||||
localization_key = curse_godgloeiende
|
||||
}
|
||||
text = {
|
||||
trigger = { culture = { has_name_list = name_list_dutch } }
|
||||
trigger = { culture = { has_name_list = name_list_NEOW_dutch } }
|
||||
localization_key = curse_kanker
|
||||
}
|
||||
text = {
|
||||
trigger = { culture = { has_name_list = name_list_dutch } }
|
||||
trigger = { culture = { has_name_list = name_list_NEOW_dutch } }
|
||||
localization_key = curse_vervloekt
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -3,15 +3,26 @@
|
|||
@always_primary_score = 1000
|
||||
@never_primary_score = -1000
|
||||
|
||||
e_europa = {
|
||||
e_europa = { # Benelux
|
||||
color = { 0 51 153 }
|
||||
|
||||
capital = c_holland
|
||||
capital = c_holland # The Hague
|
||||
|
||||
k_frisia = {
|
||||
k_frisia = { # The Netherlands
|
||||
color = { 242 88 12 }
|
||||
capital = c_westfriesland # Amsterdam
|
||||
|
||||
capital = c_westfriesland #Holland
|
||||
cultural_names = {
|
||||
name_list_limburgish = cn_nederland
|
||||
name_list_NEOW_dutch = cn_nederland
|
||||
name_list_frisian = cn_nederl_a_hat_n
|
||||
name_list_NEOW_french = cn_pays_bas
|
||||
name_list_NEOW_low_saxon = cn_nedderlannen
|
||||
name_list_NEOW_bavarian = cn_niedalande
|
||||
name_list_NEOW_palatine = cn_niedalonde
|
||||
name_list_NEOW_rhinelander = cn_neddel_a_uml_ng
|
||||
name_list_NEOW_brandenburger = cn_niederlande
|
||||
name_list_NEOW_swabian = cn_niderlande
|
||||
}
|
||||
|
||||
can_create = {
|
||||
trigger_if = {
|
||||
|
|
@ -39,282 +50,520 @@ e_europa = {
|
|||
|
||||
d_holland = {
|
||||
color = { 235 80 30 }
|
||||
capital = c_westfriesland # Amsterdam
|
||||
|
||||
capital = c_westfriesland #Amsterdam
|
||||
cultural_names = {
|
||||
name_list_frisian = cn_holl_a_hat_n
|
||||
name_list_NEOW_french = cn_hollande
|
||||
}
|
||||
|
||||
c_holland = { # South Holland
|
||||
color = { 235 85 30 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_limburgish = cn_zuid_holland
|
||||
name_list_NEOW_dutch = cn_zuid_holland
|
||||
name_list_frisian = cn_s_u_act_holl_a_hat_n
|
||||
name_list_NEOW_french = cn_hollande_m_e_act_ridionale
|
||||
name_list_NEOW_low_saxon = cn_s_u_uml__u_uml_d_hollaand
|
||||
name_list_NEOW_bavarian = cn_s_u_uml_dholland
|
||||
name_list_NEOW_palatine = cn_s_u_uml_dholland
|
||||
name_list_NEOW_rhinelander = cn_s_u_uml_dholland
|
||||
name_list_NEOW_brandenburger = cn_s_u_uml_dholland
|
||||
name_list_NEOW_swabian = cn_s_u_uml_dholland
|
||||
}
|
||||
|
||||
b_delft = { # The Hague
|
||||
province = 2404
|
||||
|
||||
color = { 235 85 30 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_NEOW_dutch = cn_den_haag
|
||||
name_list_frisian = cn_de_haach
|
||||
name_list_NEOW_french = cn_la_haye
|
||||
name_list_NEOW_low_saxon = cn_den_haag
|
||||
name_list_NEOW_bavarian = cn_den_haag
|
||||
name_list_NEOW_palatine = cn_den_haag
|
||||
name_list_NEOW_rhinelander = cn_den_haag
|
||||
name_list_NEOW_brandenburger = cn_den_haag
|
||||
name_list_NEOW_swabian = cn_den_haag
|
||||
name_list_limburgish = cn_d_pst_n_haag
|
||||
}
|
||||
}
|
||||
b_rotterdam = {
|
||||
b_rotterdam = { # Rotterdam
|
||||
province = 2403
|
||||
|
||||
color = { 235 85 30 }
|
||||
}
|
||||
b_dort = {
|
||||
b_dort = { # Ridderkerk
|
||||
province = 2402
|
||||
|
||||
color = { 235 85 30 }
|
||||
}
|
||||
b_utrecth = {
|
||||
province = 2424
|
||||
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn_ridderkarke
|
||||
}
|
||||
}
|
||||
b_utrecth = { # Gouda
|
||||
province = 2424
|
||||
color = { 160 100 10 }
|
||||
}
|
||||
b_brielle = {
|
||||
b_brielle = { # Brielle
|
||||
province = 2401
|
||||
|
||||
color = { 200 100 30 }
|
||||
}
|
||||
}
|
||||
c_zeeland = {
|
||||
c_zeeland = { # Zeeland
|
||||
color = { 200 100 30 }
|
||||
|
||||
b_middelburg = {
|
||||
cultural_names = {
|
||||
name_list_frisian = cn_seel_a_hat_n
|
||||
name_list_NEOW_french = cn_z_e_act_lande
|
||||
name_list_NEOW_low_saxon = cn_seeland
|
||||
name_list_NEOW_bavarian = cn_seeland
|
||||
name_list_NEOW_palatine = cn_seeland
|
||||
name_list_NEOW_brandenburger = cn_seeland
|
||||
name_list_NEOW_swabian = cn_seeland
|
||||
name_list_limburgish = cn_zieland
|
||||
}
|
||||
|
||||
b_middelburg = { # Middelburg
|
||||
province = 2112
|
||||
|
||||
color = { 200 100 30 }
|
||||
}
|
||||
|
||||
b_bergen_op_zoom = {
|
||||
cultural_names = {
|
||||
name_list_frisian = cn_middelburch
|
||||
name_list_NEOW_french = cn_middelbourg
|
||||
}
|
||||
}
|
||||
b_bergen_op_zoom = { # Schouwen-Duiveland
|
||||
province = 2113
|
||||
|
||||
color = { 200 100 30 }
|
||||
}
|
||||
|
||||
cultural_names = {
|
||||
name_list_frisian = cn_skouwen_duvel_a_hat_n
|
||||
name_list_NEOW_low_saxon = cn_skouwen_doewenlaand
|
||||
}
|
||||
}
|
||||
}
|
||||
c_westfriesland = { # North Holland
|
||||
color = { 245 99 50 }
|
||||
b_amsterdam = {
|
||||
province = 2406
|
||||
|
||||
cultural_names = {
|
||||
name_list_NEOW_dutch = cn_noord_holland
|
||||
name_list_NEOW_low_saxon = cn_noord_hollaand
|
||||
name_list_limburgish = cn_noord_holland
|
||||
name_list_frisian = cn_noard_holl_a_hat_n
|
||||
name_list_NEOW_french = cn_hollande_septentrionale
|
||||
name_list_NEOW_bavarian = cn_nordholland
|
||||
name_list_NEOW_palatine = cn_nordholland
|
||||
name_list_NEOW_rhinelander = cn_nordholland
|
||||
name_list_NEOW_brandenburger = cn_nordholland
|
||||
name_list_NEOW_swabian = cn_nordholland
|
||||
}
|
||||
|
||||
b_amsterdam = { # Amsterdam
|
||||
province = 2406
|
||||
color = { 235 85 30 }
|
||||
}
|
||||
b_haarlem = {
|
||||
b_haarlem = { # Haarlem
|
||||
province = 2405
|
||||
|
||||
color = { 245 99 50 }
|
||||
}
|
||||
|
||||
b_edam = {
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn_haorlem
|
||||
name_list_frisian = cn_haarlim
|
||||
}
|
||||
}
|
||||
b_edam = { # Purmerend
|
||||
province = 2408
|
||||
|
||||
color = { 245 99 50 }
|
||||
}
|
||||
|
||||
b_medemblik = {
|
||||
cultural_names = {
|
||||
name_list_frisian = cn_purmerein
|
||||
}
|
||||
}
|
||||
b_medemblik = { # Hoorn
|
||||
province = 2409
|
||||
|
||||
color = { 245 99 50 }
|
||||
}
|
||||
|
||||
b_aalkmar = {
|
||||
b_aalkmar = { # Alkmaar
|
||||
province = 2407
|
||||
|
||||
color = { 245 99 50 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_frisian = cn_alkmare
|
||||
name_list_NEOW_french = cn_alcmaer
|
||||
name_list_NEOW_bavarian = cn_alkmar
|
||||
name_list_NEOW_palatine = cn_alkmar
|
||||
name_list_NEOW_rhinelander = cn_alkmar
|
||||
name_list_NEOW_brandenburger = cn_alkmar
|
||||
name_list_NEOW_swabian = cn_alkmar
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
d_gelre = {
|
||||
d_gelre = { # Gelderland
|
||||
color = { 200 60 40 }
|
||||
|
||||
capital = c_zutphen # Arnhem
|
||||
|
||||
c_nijmegen = {
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn_gelderlaand
|
||||
name_list_frisian = cn_gelderl_a_hat_n
|
||||
name_list_NEOW_french = cn_gueldre
|
||||
}
|
||||
|
||||
c_nijmegen = { # Nijmegen
|
||||
color = { 200 60 40 }
|
||||
|
||||
b_nijmegen = {
|
||||
b_nijmegen = { # Nijmegen
|
||||
province = 2103
|
||||
|
||||
color = { 200 60 40 }
|
||||
}
|
||||
b_tiel = {
|
||||
province = 2425
|
||||
|
||||
cultural_names = {
|
||||
name_list_kleverlandish = cn_nimw_e_act__e_hat_ge
|
||||
name_list_NEOW_low_saxon = cn_nimwaege
|
||||
name_list_limburgish = cn_nimwege
|
||||
name_list_frisian = cn_nimwegen
|
||||
name_list_NEOW_french = cn_nimw_e_grv_gue
|
||||
name_list_NEOW_bavarian = cn_nimwegen
|
||||
name_list_NEOW_palatine = cn_nimwegen
|
||||
name_list_NEOW_rhinelander = cn_nimwegen
|
||||
name_list_NEOW_brandenburger = cn_nimwegen
|
||||
name_list_NEOW_swabian = cn_nimwegen
|
||||
}
|
||||
}
|
||||
b_tiel = { # Tiel
|
||||
province = 2425
|
||||
color = { 200 60 40 }
|
||||
}
|
||||
}
|
||||
|
||||
c_arnhem = { # Utrecht
|
||||
color = { 235 45 30 }
|
||||
|
||||
b_arnhem = {
|
||||
province = 2428
|
||||
|
||||
color = { 235 45 30 }
|
||||
cultural_names = {
|
||||
name_list_limburgish = cn_utrech
|
||||
name_list_frisian = cn_utert
|
||||
}
|
||||
b_apeldoorn = {
|
||||
province = 2427
|
||||
|
||||
color = { 235 45 30}
|
||||
}
|
||||
b_harderwijk = {
|
||||
province = 2426
|
||||
|
||||
color = { 235 45 30 }
|
||||
}
|
||||
b_amersfoort = {
|
||||
b_amersfoort = { # Utrecht
|
||||
province = 2451
|
||||
|
||||
color = { 160 100 10 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_limburgish = cn_utrech
|
||||
name_list_frisian = cn_utert
|
||||
}
|
||||
}
|
||||
b_arnhem = { # Apeldoorn
|
||||
province = 2428
|
||||
color = { 235 45 30 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn_apeldoorne
|
||||
name_list_frisian = cn_apeldoarn
|
||||
}
|
||||
}
|
||||
b_apeldoorn = { # Amersfoort
|
||||
province = 2427
|
||||
color = { 235 45 30}
|
||||
|
||||
cultural_names = {
|
||||
name_list_frisian = cn_amersfoart
|
||||
}
|
||||
}
|
||||
b_harderwijk = { # Harderwijk
|
||||
province = 2426
|
||||
color = { 235 45 30 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn_harderwiek
|
||||
name_list_frisian = b_harderwyk
|
||||
name_list_NEOW_french = b_hardervic
|
||||
}
|
||||
}
|
||||
}
|
||||
c_zutphen = { # Arnhem
|
||||
color = { 195 30 5 }
|
||||
|
||||
b_zutphen = {
|
||||
b_zutphen = { # Arnhem
|
||||
province = 2429
|
||||
|
||||
color = { 195 30 5 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn_arnem
|
||||
name_list_kleverlandish = cn_ernem
|
||||
name_list_frisian = cn_arnhim
|
||||
name_list_NEOW_bavarian = cn_arnheim
|
||||
name_list_NEOW_palatine = cn_arnheim
|
||||
name_list_NEOW_rhinelander = cn_arnheim
|
||||
name_list_NEOW_brandenburger = cn_arnheim
|
||||
name_list_NEOW_swabian = cn_arnheim
|
||||
}
|
||||
}
|
||||
b_borculo = {
|
||||
b_borculo = { # Zutphen
|
||||
province = 2432
|
||||
|
||||
color = { 195 30 5 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn_zutfent
|
||||
name_list_frisian = cn_sutfen
|
||||
name_list_NEOW_bavarian = cn_z_u_uml_tphen
|
||||
name_list_NEOW_palatine = cn_z_u_uml_tphen
|
||||
name_list_NEOW_rhinelander = cn_z_u_uml_tphen
|
||||
name_list_NEOW_brandenburger = cn_z_u_uml_tphen
|
||||
name_list_NEOW_swabian = cn_z_u_uml_tphen
|
||||
}
|
||||
}
|
||||
b_bredevoort = {
|
||||
b_bredevoort = { # Winterswikj
|
||||
province = 2434
|
||||
|
||||
color = { 195 30 5 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn_wenters
|
||||
name_list_frisian = cn_winterswyk
|
||||
name_list_NEOW_bavarian = cn_winterswick
|
||||
name_list_NEOW_palatine = cn_winterswick
|
||||
name_list_NEOW_rhinelander = cn_winterswick
|
||||
name_list_NEOW_brandenburger = cn_winterswick
|
||||
name_list_NEOW_swabian = cn_winterswick
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
d_utrecht = { # Overijssel
|
||||
color = { 170 100 10 }
|
||||
capital = c_oversticht # Zwolle
|
||||
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn_oaveriessel
|
||||
name_list_limburgish = cn_euverijssel
|
||||
name_list_frisian = cn_oerisel
|
||||
name_list_NEOW_french = cn_outre_yssel
|
||||
name_list_NEOW_bavarian = cn_oberyssel
|
||||
name_list_NEOW_palatine = cn_oberyssel
|
||||
name_list_NEOW_rhinelander = cn_oberyssel
|
||||
name_list_NEOW_brandenburger = cn_oberyssel
|
||||
name_list_NEOW_swabian = cn_oberyssel
|
||||
}
|
||||
|
||||
c_oversticht = { # Overijssel
|
||||
color = { 180 120 10 }
|
||||
|
||||
b_zwolle = {
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn_oaveriessel
|
||||
name_list_limburgish = cn_euverijssel
|
||||
name_list_frisian = cn_oerisel
|
||||
name_list_NEOW_french = cn_outre_yssel
|
||||
name_list_NEOW_bavarian = cn_oberyssel
|
||||
name_list_NEOW_palatine = cn_oberyssel
|
||||
name_list_NEOW_rhinelander = cn_oberyssel
|
||||
name_list_NEOW_brandenburger = cn_oberyssel
|
||||
name_list_NEOW_swabian = cn_oberyssel
|
||||
}
|
||||
|
||||
b_zwolle = { # Zwolle
|
||||
province = 2421
|
||||
|
||||
color = { 180 120 10 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_frisian = cn_swol
|
||||
}
|
||||
}
|
||||
b_kampen = {
|
||||
b_kampen = { # Steenwijk
|
||||
province = 2416
|
||||
|
||||
color = { 180 120 10 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn_stienwiek
|
||||
name_list_frisian = cn_stienwyk
|
||||
}
|
||||
}
|
||||
b_ommen = {
|
||||
b_ommen = { # Deventer
|
||||
province = 2423
|
||||
|
||||
color = { 180 120 10 }
|
||||
}
|
||||
b_almelo = {
|
||||
province = 2431
|
||||
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn_daeventer
|
||||
name_list_frisian = cn_dimter
|
||||
}
|
||||
}
|
||||
b_almelo = { # Almelo
|
||||
province = 2431
|
||||
color = { 180 120 10 }
|
||||
}
|
||||
}
|
||||
c_flevoland = {
|
||||
color = { 235 45 30 }
|
||||
b_flevoland = {
|
||||
province = 9698
|
||||
|
||||
color = { 235 45 30 }
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn_flevolaand
|
||||
name_list_frisian = cn_flevol_a_hat_n
|
||||
}
|
||||
b_noordoostpolder = {
|
||||
province = 9699
|
||||
|
||||
b_flevoland = { # Flevoland
|
||||
province = 9698
|
||||
color = { 235 45 30 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn_flevolaand
|
||||
name_list_frisian = cn_flevol_a_hat_n
|
||||
}
|
||||
}
|
||||
b_noordoostpolder = { # Noordoostpolder
|
||||
province = 9699
|
||||
color = { 175 70 20 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_limburgish = cn_noordoospolder
|
||||
name_list_frisian = cn_noardeastpolder
|
||||
}
|
||||
}
|
||||
}
|
||||
c_groningen = { # Drenthe
|
||||
color = { 200 145 40 }
|
||||
|
||||
b_groningen = {
|
||||
cultural_names = {
|
||||
name_list_frisian = cn_drinte
|
||||
}
|
||||
|
||||
b_groningen = { # Assen
|
||||
province = 2417
|
||||
|
||||
color = { 200 145 40 }
|
||||
}
|
||||
b_assen = {
|
||||
b_assen = { # Hoogeveen
|
||||
province = 2420
|
||||
|
||||
color = { 200 145 40 }
|
||||
}
|
||||
b_coevorden = {
|
||||
province = 2422
|
||||
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn__pst_t_ogeveine
|
||||
}
|
||||
}
|
||||
b_coevorden = { # Emmen
|
||||
province = 2422
|
||||
color = { 180 120 10 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
d_frisia = {
|
||||
color = { 190 90 10 }
|
||||
|
||||
capital = c_dokkum # Groningen
|
||||
|
||||
cultural_names = {
|
||||
name_list_NEOW_dutch = cn_friesland
|
||||
name_list_NEOW_low_saxon = cn_fraislaand
|
||||
name_list_limburgish = cn_friesland
|
||||
name_list_frisian = cn_frysl_a_hat_n
|
||||
name_list_NEOW_french = cn_frise
|
||||
name_list_NEOW_bavarian = cn_friesland
|
||||
name_list_NEOW_palatine = cn_friesland
|
||||
name_list_NEOW_rhinelander = cn_friesland
|
||||
name_list_NEOW_brandenburger = cn_friesland
|
||||
name_list_NEOW_swabian = cn_friesland
|
||||
}
|
||||
|
||||
c_dokkum = { # Groningen
|
||||
color = { 190 90 10 }
|
||||
|
||||
b_appingedam = {
|
||||
b_appingedam = { # Groningen
|
||||
province = 2415
|
||||
|
||||
color = { 190 90 10 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn_grunnen
|
||||
name_list_limburgish = cn_groninge
|
||||
name_list_frisian = cn_grins
|
||||
name_list_NEOW_french = cn_groningue
|
||||
name_list_NEOW_bavarian = cn_gr_o_uml_ningen
|
||||
name_list_NEOW_palatine = cn_gr_o_uml_ningen
|
||||
name_list_NEOW_rhinelander = cn_gr_o_uml_ningen
|
||||
name_list_NEOW_brandenburger = cn_gr_o_uml_ningen
|
||||
name_list_NEOW_swabian = cn_gr_o_uml_ningen
|
||||
}
|
||||
}
|
||||
b_delfzijl = {
|
||||
b_delfzijl = { # Appingedam
|
||||
province = 2453
|
||||
|
||||
color = { 190 90 10 }
|
||||
}
|
||||
b_emmen = {
|
||||
province = 2419
|
||||
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn_n_daam
|
||||
name_list_frisian = cn_appingedaam
|
||||
}
|
||||
}
|
||||
b_emmen = { # Veendam
|
||||
province = 2419
|
||||
color = { 200 145 40 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn_veendaam
|
||||
name_list_frisian = cn_feandam
|
||||
}
|
||||
}
|
||||
}
|
||||
c_frisia = { # Friesland
|
||||
color = { 175 70 20 }
|
||||
|
||||
b_leeuwarden = {
|
||||
province = 2413
|
||||
|
||||
color = { 175 70 20 }
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn_fraislaand
|
||||
name_list_limburgish = cn_friesland
|
||||
name_list_frisian = cn_frysl_a_hat_n
|
||||
name_list_NEOW_french = cn_frise
|
||||
}
|
||||
b_steenwijk = {
|
||||
province = 2452
|
||||
|
||||
b_leeuwarden = { # Leeuwarden
|
||||
province = 2413
|
||||
color = { 175 70 20 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn_liwwadden
|
||||
name_list_frisian = cn_ljouwert
|
||||
}
|
||||
}
|
||||
b_steenwijk = { # Drachten
|
||||
province = 2452
|
||||
color = { 200 145 40 }
|
||||
}
|
||||
b_staveren = {
|
||||
province = 2410
|
||||
|
||||
color = { 175 70 20 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_frisian = cn_snits
|
||||
}
|
||||
}
|
||||
b_harlingen = {
|
||||
b_harlingen = { # Harlingen
|
||||
province = 2411
|
||||
|
||||
color = { 175 70 20 }
|
||||
}
|
||||
b_dokkum = {
|
||||
province = 2414
|
||||
|
||||
cultural_names = {
|
||||
name_list_NEOW_low_saxon = cn_harns
|
||||
name_list_frisian = cn_harns
|
||||
}
|
||||
}
|
||||
b_dokkum = { # Dokkum
|
||||
province = 2414
|
||||
color = { 190 90 10 }
|
||||
}
|
||||
}
|
||||
c_terschelling = {
|
||||
c_terschelling = { # Terschelling
|
||||
color = { 175 65 30 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_frisian = cn_skylge
|
||||
}
|
||||
|
||||
b_wadeilannen = {
|
||||
province = 2412
|
||||
|
||||
color = { 175 70 20 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_frisian = cn_skylge
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
k_westphalia = {
|
||||
color = { 229 22 22 }
|
||||
|
||||
capital = c_munster
|
||||
capital = c_munster # Münster
|
||||
|
||||
d_weserems = {
|
||||
color = { 191 24 9 }
|
||||
|
|
|
|||
|
|
@ -1946,23 +1946,16 @@ e_iberia = {
|
|||
province = 1863
|
||||
color = { 170 115 110 }
|
||||
}
|
||||
b_olot = {
|
||||
b_olot = { # Olot
|
||||
province = 1867
|
||||
color = { 170 115 110 }
|
||||
}
|
||||
b_roses = {
|
||||
b_roses = { # Roses
|
||||
province = 1865
|
||||
color = { 176 95 88 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_castilian = cn_al_andalus
|
||||
name_list_NEOW_portuguese = cn_al_andalus
|
||||
name_list_NEOW_basque = cn_al_andalus
|
||||
name_list_NEOW_catalan = cn_al_andalus
|
||||
name_list_occitan = cn_al_andalus
|
||||
name_list_aragonese = cn_al_andalus
|
||||
name_list_asturleonese = cn_al_andalus
|
||||
name_list_galician = cn_al_andalus
|
||||
name_list_castilian = cn_rosas
|
||||
}
|
||||
}
|
||||
b_llivia = { # Ripoll
|
||||
|
|
@ -2537,6 +2530,11 @@ e_iberia = {
|
|||
c_asturias_de_oviedo = { # Oviedo
|
||||
color = { 20 167 204 }
|
||||
|
||||
cultural_names = {
|
||||
name_list_occitan = cn_uvi_e_act_u
|
||||
name_list_asturleonese = cn_uvi_e_act_u
|
||||
}
|
||||
|
||||
b_oviedo = { # Oviedo
|
||||
province = 1797
|
||||
color = { 207 104 0 }
|
||||
|
|
|
|||
1614
common/landed_titles/russia.txt
Normal file
1614
common/landed_titles/russia.txt
Normal file
File diff suppressed because it is too large
Load diff
23
common/modifiers/NEOW_historical_artifact_modifiers.txt
Normal file
23
common/modifiers/NEOW_historical_artifact_modifiers.txt
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
crown_wenceslas_modifier = {
|
||||
court_grandeur_baseline_add = 5
|
||||
monthly_piety_gain_mult = 0.10
|
||||
monthly_dynasty_prestige_mult = 0.02
|
||||
monthly_prestige_gain_mult = 0.02
|
||||
vassal_limit = 5
|
||||
}
|
||||
|
||||
codex_gigas_modifier = {
|
||||
learning = 3
|
||||
monthly_lifestyle_xp_gain_mult = 0.10
|
||||
stress_gain_mult = 0.10
|
||||
negate_health_penalty_add = 0.10
|
||||
health = 0.10
|
||||
}
|
||||
|
||||
sword_wenceslas_modifier = {
|
||||
court_grandeur_baseline_add = 5
|
||||
monthly_piety = 0.5
|
||||
monthly_dynasty_prestige_mult = 0.05
|
||||
courtier_and_guest_opinion = 5
|
||||
legitimacy_gain_mult = 0.05
|
||||
}
|
||||
5
common/on_action/NEOW_game_start.txt
Normal file
5
common/on_action/NEOW_game_start.txt
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
on_game_start = {
|
||||
events = {
|
||||
historical_artifacts.999
|
||||
}
|
||||
}
|
||||
|
|
@ -6,7 +6,7 @@ finnic_religion = { #placeholder
|
|||
doctrine = pagan_hostility_doctrine
|
||||
|
||||
#Main Group | placeholder
|
||||
doctrine = doctrine_monotheist
|
||||
doctrine = doctrine_polytheist
|
||||
doctrine = doctrine_temporal_head
|
||||
doctrine = doctrine_gender_equal
|
||||
doctrine = doctrine_pluralism_righteous
|
||||
|
|
@ -265,62 +265,51 @@ finnic_religion = { #placeholder
|
|||
fallback_doctrine = tenet_ancestor_worship
|
||||
}
|
||||
|
||||
doctrine = doctrine_spiritual_head
|
||||
doctrine = doctrine_pilgrimage_local_rites
|
||||
doctrine = unreformed_faith_doctrine
|
||||
}
|
||||
sami_pagan = {
|
||||
color = { 204 195 102 }
|
||||
icon = sami_pagan
|
||||
|
||||
holy_site = jerusalem
|
||||
holy_site = constantinople
|
||||
holy_site = rome
|
||||
holy_site = alexandria
|
||||
holy_site = antioch
|
||||
|
||||
holy_order_names = {
|
||||
{ name = "holy_order_brotherhood_of_the_holy_sepulchre" }
|
||||
{ name = "holy_order_knights_of_the_first_patrirchate" }
|
||||
{ name = "holy_order_order_of_the_holy_virgin" }
|
||||
#Special Tolerance
|
||||
|
||||
#Tenets
|
||||
doctrine = tenet_communal_identity
|
||||
doctrine = tenet_druidry
|
||||
doctrine_selection_pair = {
|
||||
requires_dlc_flag = all_under_heaven
|
||||
doctrine = tenet_takamin
|
||||
fallback_doctrine = tenet_ancestor_worship
|
||||
}
|
||||
|
||||
localization = { # Utilizes the 'West Christian' Saints, shared by Catholics and Orthodox
|
||||
#FertilityGod
|
||||
FertilityGodName = west_christian_fertility_god_name
|
||||
FertilityGodNamePossessive = west_christian_fertility_god_name_possessive
|
||||
FertilityGodSheHe = CHARACTER_SHEHE_SHE
|
||||
FertilityGodHerHis = CHARACTER_HERHIS_HER
|
||||
FertilityGodHerHim = CHARACTER_HERHIM_HER
|
||||
doctrine = doctrine_pilgrimage_local_rites
|
||||
doctrine = unreformed_faith_doctrine
|
||||
}
|
||||
sisuist = {
|
||||
color = { 173 190 216 }
|
||||
icon = sisuist
|
||||
|
||||
holy_site = jerusalem
|
||||
holy_site = constantinople
|
||||
holy_site = rome
|
||||
holy_site = alexandria
|
||||
holy_site = antioch
|
||||
|
||||
#WealthGod
|
||||
WealthGodName = west_christian_wealth_god_name
|
||||
WealthGodNamePossessive = west_christian_wealth_god_name_possessive
|
||||
WealthGodSheHe = CHARACTER_SHEHE_HE
|
||||
WealthGodHerHis = CHARACTER_HERHIS_HIS
|
||||
WealthGodHerHim = CHARACTER_HERHIM_HIM
|
||||
#Special Tolerance
|
||||
|
||||
#HouseholdGod
|
||||
HouseholdGodName = west_christian_household_god_name
|
||||
HouseholdGodNamePossessive = west_christian_household_god_name_possessive
|
||||
HouseholdGodSheHe = CHARACTER_SHEHE_HE
|
||||
HouseholdGodHerHis = CHARACTER_HERHIS_HIS
|
||||
HouseholdGodHerHim = CHARACTER_HERHIM_HIM
|
||||
#Tenets
|
||||
doctrine = tenet_communal_identity
|
||||
doctrine = tenet_no_mind
|
||||
doctrine = tenet_militant_vows
|
||||
|
||||
#KnowledgeGod
|
||||
KnowledgeGodName = west_christian_knowledge_god_name
|
||||
KnowledgeGodNamePossessive = west_christian_knowledge_god_name_possessive
|
||||
KnowledgeGodSheHe = CHARACTER_SHEHE_SHE
|
||||
KnowledgeGodHerHis = CHARACTER_HERHIS_HER
|
||||
KnowledgeGodHerHim = CHARACTER_HERHIM_HER
|
||||
|
||||
#WarGod
|
||||
WarGodName = west_christian_war_god_name
|
||||
WarGodNamePossessive = west_christian_war_god_name_possessive
|
||||
WarGodSheHe = CHARACTER_SHEHE_HE
|
||||
WarGodHerHis = CHARACTER_HERHIS_HIS
|
||||
WarGodHerHim = CHARACTER_HERHIM_HIM
|
||||
|
||||
#WaterGod
|
||||
WaterGodName = west_christian_water_god_name
|
||||
WaterGodNamePossessive = west_christian_water_god_name_possessive
|
||||
WaterGodSheHe = CHARACTER_SHEHE_HE
|
||||
WaterGodHerHis = CHARACTER_HERHIS_HIS
|
||||
WaterGodHerHim = CHARACTER_HERHIM_HIM
|
||||
|
||||
# Patriarchs instead of Popes
|
||||
ReligiousHeadName = orthodox_religious_head_title
|
||||
ReligiousHeadTitleName = orthodox_religious_head_title_name
|
||||
}
|
||||
doctrine = doctrine_pilgrimage_local_rites
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -399,6 +399,78 @@
|
|||
ReligiousHeadTitleName = lutheran_england_religious_head_title_name
|
||||
}
|
||||
}
|
||||
laestadian = {
|
||||
color = { 41 34 114 }
|
||||
icon = laestadian
|
||||
|
||||
#placeholder holy sites
|
||||
holy_site = eisenach
|
||||
holy_site = wittenberg
|
||||
holy_site = lund
|
||||
holy_site = geneva
|
||||
#holy_site = belfast
|
||||
#holy_site = leath
|
||||
#holy_site = segrada_familia
|
||||
|
||||
#Special Tolerance | placeholder
|
||||
doctrine = special_doctrine_established_church
|
||||
doctrine = doctrine_theocracy_lay_clergy
|
||||
|
||||
#Tenets | placeholder
|
||||
doctrine = tenet_asceticism
|
||||
doctrine = tenet_ritual_celebrations
|
||||
doctrine = tenet_literalism
|
||||
|
||||
holy_order_names = { #placeholder
|
||||
}
|
||||
|
||||
localization = { # placeholder
|
||||
#FertilityGod
|
||||
FertilityGodName = west_christian_fertility_god_name
|
||||
FertilityGodNamePossessive = west_christian_fertility_god_name_possessive
|
||||
FertilityGodSheHe = CHARACTER_SHEHE_SHE
|
||||
FertilityGodHerHis = CHARACTER_HERHIS_HER
|
||||
FertilityGodHerHim = CHARACTER_HERHIM_HER
|
||||
|
||||
#WealthGod
|
||||
WealthGodName = west_christian_wealth_god_name
|
||||
WealthGodNamePossessive = west_christian_wealth_god_name_possessive
|
||||
WealthGodSheHe = CHARACTER_SHEHE_HE
|
||||
WealthGodHerHis = CHARACTER_HERHIS_HIS
|
||||
WealthGodHerHim = CHARACTER_HERHIM_HIM
|
||||
|
||||
#HouseholdGod
|
||||
HouseholdGodName = west_christian_household_god_name
|
||||
HouseholdGodNamePossessive = west_christian_household_god_name_possessive
|
||||
HouseholdGodSheHe = CHARACTER_SHEHE_HE
|
||||
HouseholdGodHerHis = CHARACTER_HERHIS_HIS
|
||||
HouseholdGodHerHim = CHARACTER_HERHIM_HIM
|
||||
|
||||
#KnowledgeGod
|
||||
KnowledgeGodName = west_christian_knowledge_god_name
|
||||
KnowledgeGodNamePossessive = west_christian_knowledge_god_name_possessive
|
||||
KnowledgeGodSheHe = CHARACTER_SHEHE_SHE
|
||||
KnowledgeGodHerHis = CHARACTER_HERHIS_HER
|
||||
KnowledgeGodHerHim = CHARACTER_HERHIM_HER
|
||||
|
||||
#WarGod
|
||||
WarGodName = west_christian_war_god_name
|
||||
WarGodNamePossessive = west_christian_war_god_name_possessive
|
||||
WarGodSheHe = CHARACTER_SHEHE_HE
|
||||
WarGodHerHis = CHARACTER_HERHIS_HIS
|
||||
WarGodHerHim = CHARACTER_HERHIM_HIM
|
||||
|
||||
#WaterGod
|
||||
WaterGodName = west_christian_water_god_name
|
||||
WaterGodNamePossessive = west_christian_water_god_name_possessive
|
||||
WaterGodSheHe = CHARACTER_SHEHE_HE
|
||||
WaterGodHerHis = CHARACTER_HERHIS_HIS
|
||||
WaterGodHerHim = CHARACTER_HERHIM_HIM
|
||||
|
||||
ReligiousHeadName = lutheran_england_religious_head_title
|
||||
ReligiousHeadTitleName = lutheran_england_religious_head_title_name
|
||||
}
|
||||
}
|
||||
grundtvigian = {
|
||||
color = { 226 152 164 }
|
||||
icon = grundtvigian
|
||||
|
|
|
|||
|
|
@ -319,7 +319,7 @@ slavic_religion = { #placeholder
|
|||
}
|
||||
}
|
||||
chernobozhye = {
|
||||
color = { 209 226 22 }
|
||||
color = { 53 35 89 }
|
||||
icon = chernobozhye
|
||||
|
||||
holy_site = jerusalem
|
||||
|
|
|
|||
|
|
@ -25,4 +25,119 @@
|
|||
set_variable = excalibur
|
||||
save_scope_as = epic
|
||||
}
|
||||
}
|
||||
|
||||
create_artifact_crown_wenceslas_effect = { # Crown of Saint Wenceslas
|
||||
# Get the character the artifact is being made for.
|
||||
$OWNER$ = { save_scope_as = owner }
|
||||
# Not really used, but if we don't set the scopes we get errors in the feature selection
|
||||
set_artifact_rarity_famed = yes
|
||||
|
||||
# Create the artifact
|
||||
create_artifact = {
|
||||
name = crown_wenceslas_name
|
||||
description = crown_wenceslas_description
|
||||
modifier = crown_wenceslas_modifier
|
||||
template = crown_iron_template
|
||||
type = pedestal
|
||||
visuals = crown_court
|
||||
wealth = scope:wealth
|
||||
quality = scope:quality
|
||||
decaying = no
|
||||
save_scope_as = newly_created_artifact
|
||||
history = {
|
||||
type = created_before_history
|
||||
date = 1346.1.1
|
||||
location = province:4125 #Praha
|
||||
}
|
||||
}
|
||||
|
||||
scope:newly_created_artifact = {
|
||||
set_variable = { name = historical_unique_artifact value = yes }
|
||||
set_variable = crown_wenceslas
|
||||
save_scope_as = epic
|
||||
add_artifact_history = {
|
||||
type = given
|
||||
date = 2521.4.3
|
||||
recipient = character:zapadoslavia0003 # Dalibor Karlovec
|
||||
}
|
||||
add_artifact_history = {
|
||||
type = given
|
||||
date = 2546.4.11
|
||||
recipient = character:zapadoslavia0001 # Bedrich Karlovec
|
||||
}
|
||||
add_artifact_history = {
|
||||
type = stolen
|
||||
date = 2552.4.12
|
||||
recipient = character:zapadoslavia0002 # Bedrich Karlovec
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
create_artifact_sword_wenceslas_effect = { # Ceremonial Czech Sword
|
||||
$OWNER$ = { save_scope_as = owner }
|
||||
set_artifact_rarity_famed = yes
|
||||
|
||||
create_artifact = {
|
||||
name = sword_wenceslas_name
|
||||
description = sword_wenceslas_description
|
||||
modifier = sword_wenceslas_modifier
|
||||
template = sword_wenceslas_template
|
||||
type = pedestal
|
||||
visuals = sword_wenceslas
|
||||
wealth = scope:wealth
|
||||
quality = scope:quality
|
||||
decaying = no
|
||||
save_scope_as = newly_created_artifact
|
||||
history = {
|
||||
type = created_before_history
|
||||
date = 950.1.1
|
||||
location = province:4125 #Praha
|
||||
}
|
||||
}
|
||||
|
||||
scope:newly_created_artifact = {
|
||||
set_variable = { name = historical_unique_artifact value = yes }
|
||||
set_variable = sword_wenceslas
|
||||
save_scope_as = epic
|
||||
add_artifact_history = {
|
||||
type = given
|
||||
date = 2521.4.3
|
||||
recipient = character:zapadoslavia0003 # Dalibor Karlovec
|
||||
}
|
||||
add_artifact_history = {
|
||||
type = given
|
||||
date = 2546.4.11
|
||||
recipient = character:zapadoslavia0001 # Bedrich Karlovec
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
create_artifact_codex_gigas_effect = { # Codex Gigas - largest medieval manuscript
|
||||
$OWNER$ = { save_scope_as = owner }
|
||||
set_artifact_rarity_illustrious = yes
|
||||
|
||||
create_artifact = {
|
||||
name = codex_gigas_name
|
||||
description = codex_gigas_description
|
||||
modifier = codex_gigas_modifier
|
||||
template = codex_template
|
||||
type = chronicle
|
||||
visuals = chronicle
|
||||
wealth = scope:wealth
|
||||
quality = scope:quality
|
||||
decaying = no
|
||||
save_scope_as = newly_created_artifact
|
||||
history = {
|
||||
type = created_before_history
|
||||
date = 1215.1.1
|
||||
location = province:4160 #Pardubice
|
||||
}
|
||||
}
|
||||
|
||||
scope:newly_created_artifact = {
|
||||
set_variable = { name = historical_unique_artifact value = yes }
|
||||
set_variable = codex_gigas
|
||||
save_scope_as = epic
|
||||
}
|
||||
}
|
||||
13
common/scripted_triggers/NEOW_artifact_triggers.txt
Normal file
13
common/scripted_triggers/NEOW_artifact_triggers.txt
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
NEOW_christian_book_artifact_trigger = {
|
||||
OR = {
|
||||
religion = religion:catholic_religion
|
||||
religion = religion:protestant_religion
|
||||
religion = religion:eastern_orthodox_religion
|
||||
religion = religion:novelist_religion
|
||||
faith = { has_doctrine = tenet_christian_syncretism }
|
||||
}
|
||||
}
|
||||
|
||||
NEOW_is_czech_king_trigger = {
|
||||
scope:owner = { has_title = title:k_bohemia }
|
||||
}
|
||||
6
common/scripted_triggers/NEOW_coa_triggers.txt
Normal file
6
common/scripted_triggers/NEOW_coa_triggers.txt
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
NEOW_coa_soleil_royal_trigger = {
|
||||
OR = {
|
||||
scope:faith = faith:soleil_royal
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1,19 +1,6 @@
|
|||
NEOW_is_catholic_or_catholic_adjacent_trigger = {
|
||||
faith = {
|
||||
OR = {
|
||||
faith = faith:roman_catholic
|
||||
faith = faith:sevillian
|
||||
faith = faith:celtic
|
||||
faith = faith:orleaniste
|
||||
faith = faith:sebastianist
|
||||
faith = faith:luminarian
|
||||
faith = faith:penitente
|
||||
faith = faith:illuminated
|
||||
faith = faith:fraticelli
|
||||
faith = faith:cadaverist
|
||||
faith = faith:teutonic
|
||||
faith = faith:iberian
|
||||
}
|
||||
OR = {
|
||||
faith = faith:orleaniste
|
||||
religion = religion:catholic_religion
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
40
events/artifacts/NEOW_historical_artifacts_events.txt
Normal file
40
events/artifacts/NEOW_historical_artifacts_events.txt
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
historical_artifacts.999 = {
|
||||
scope = none
|
||||
hidden = yes
|
||||
|
||||
immediate = {
|
||||
if = {
|
||||
limit = {
|
||||
has_dlc_feature = royal_court
|
||||
exists = title:d_moravia.holder
|
||||
}
|
||||
title:d_moravia.holder = {
|
||||
create_artifact_crown_wenceslas_effect = { OWNER = this }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
immediate = {
|
||||
if = {
|
||||
limit = {
|
||||
has_dlc_feature = royal_court
|
||||
exists = title:k_sweden.holder
|
||||
}
|
||||
title:k_sweden.holder = {
|
||||
create_artifact_codex_gigas_effect = { OWNER = this }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
immediate = {
|
||||
if = {
|
||||
limit = {
|
||||
has_dlc_feature = royal_court
|
||||
exists = title:d_bohemia.holder
|
||||
}
|
||||
title:d_bohemia.holder = {
|
||||
create_artifact_sword_wenceslas_effect = { OWNER = this }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
gfx/coat_of_arms/colored_emblems/NEOW_ce_jacobinhat.dds
(Stored with Git LFS)
Normal file
BIN
gfx/coat_of_arms/colored_emblems/NEOW_ce_jacobinhat.dds
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
gfx/coat_of_arms/colored_emblems/NEOW_ce_johansus1.dds
(Stored with Git LFS)
Normal file
BIN
gfx/coat_of_arms/colored_emblems/NEOW_ce_johansus1.dds
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
gfx/coat_of_arms/colored_emblems/NEOW_ce_johansus2.dds
(Stored with Git LFS)
Normal file
BIN
gfx/coat_of_arms/colored_emblems/NEOW_ce_johansus2.dds
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
gfx/coat_of_arms/colored_emblems/NEOW_ce_louis.dds
(Stored with Git LFS)
Normal file
BIN
gfx/coat_of_arms/colored_emblems/NEOW_ce_louis.dds
(Stored with Git LFS)
Normal file
Binary file not shown.
|
|
@ -108,6 +108,9 @@ NEOW_ce_saint_peter.dds = { colors = 3 category = figures }
|
|||
NEOW_ce_woman_01.dds = { colors = 3 category = manmade }
|
||||
NEOW_ce_orion.dds = { colors = 2 category = figures }
|
||||
NEOW_ce_head_w_adrian_helmet.dds = { colors = 2 category = figures }
|
||||
NEOW_ce_johansus1.dds = { colors = 3 category = figures }
|
||||
NEOW_ce_johansus2.dds = { colors = 3 category = figures }
|
||||
NEOW_ce_louis.dds = { colors = 2 category = figures }
|
||||
|
||||
###MANMADE
|
||||
NEOW_ce_armillary_sphere.dds = { colors = 1 category = manmade }
|
||||
|
|
@ -149,6 +152,7 @@ NEOW_ce_wall.dds = { colors = 2 category = manmade }
|
|||
NEOW_ce_whip.dds = { colors = 1 category = manmade }
|
||||
ce_book_open.dds = { colors = 2 category = manmade }
|
||||
NEOW_ce_papal_tiara.dds = { colors = 3 category = manmade }
|
||||
NEOW_ce_jacobinhat.dds = { colors = 3 category = manmade }
|
||||
|
||||
###NATURE
|
||||
NEOW_ce_acorn.dds = { colors = 1 category = nature }
|
||||
|
|
|
|||
BIN
gfx/interface/icons/artifact/artifact_sword_wenceslas.dds
(Stored with Git LFS)
Normal file
BIN
gfx/interface/icons/artifact/artifact_sword_wenceslas.dds
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
gfx/interface/icons/faith/laestadian.dds
(Stored with Git LFS)
Normal file
BIN
gfx/interface/icons/faith/laestadian.dds
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
gfx/interface/icons/faith/sami_pagan.dds
(Stored with Git LFS)
Normal file
BIN
gfx/interface/icons/faith/sami_pagan.dds
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
gfx/interface/icons/faith/sisuist.dds
(Stored with Git LFS)
Normal file
BIN
gfx/interface/icons/faith/sisuist.dds
(Stored with Git LFS)
Normal file
Binary file not shown.
|
|
@ -382,6 +382,7 @@ germany0024 = {
|
|||
trait = flagellant
|
||||
trait = strong
|
||||
trait = depressed_1
|
||||
father = alexander_alexanderwelt
|
||||
2536.1.1 = {
|
||||
birth = yes
|
||||
}
|
||||
|
|
@ -390,6 +391,23 @@ germany0024 = {
|
|||
}
|
||||
}
|
||||
|
||||
alexander_alexanderwelt = {
|
||||
name = "Alexander"
|
||||
dynasty = alexanderwelt_dynasty
|
||||
religion = "einblicker"
|
||||
culture = saxon
|
||||
trait = education_martial_3
|
||||
trait = zealous
|
||||
trait = strong
|
||||
trait = conqueror
|
||||
2500.1.1 = {
|
||||
birth = yes
|
||||
}
|
||||
2554.1.1 = {
|
||||
death = yes
|
||||
}
|
||||
}
|
||||
|
||||
germany0025 = {
|
||||
name = "Rogal"
|
||||
dynasty = dorn_dynasty
|
||||
|
|
|
|||
|
|
@ -300,7 +300,7 @@ albania0002 = { #North Epiros
|
|||
}
|
||||
}
|
||||
albania0003 = { #Kastriota
|
||||
name = "Lluka"
|
||||
name = "Enkelejd"
|
||||
dynasty = kastrioti_dynasty
|
||||
religion = "alevi"
|
||||
culture = NEOW_albanian
|
||||
|
|
|
|||
|
|
@ -226,7 +226,7 @@
|
|||
101 = { # 101 - LEMISELE
|
||||
|
||||
culture = latgalian
|
||||
religion = hiisalka
|
||||
religion = lutheran
|
||||
|
||||
holding = tribal_holding
|
||||
|
||||
|
|
@ -297,7 +297,7 @@
|
|||
94 = { # tallin / REVAL
|
||||
|
||||
culture = estonian
|
||||
religion = lutheran
|
||||
religion = hiisalka
|
||||
|
||||
holding = castle_holding
|
||||
|
||||
|
|
@ -388,7 +388,7 @@
|
|||
91 = { # kaina / dago
|
||||
|
||||
culture = estonian
|
||||
religion = hiisalka
|
||||
religion = lutheran
|
||||
|
||||
holding = tribal_holding
|
||||
}
|
||||
|
|
|
|||
|
|
@ -79,11 +79,14 @@
|
|||
holding = none
|
||||
}
|
||||
###c_arnhem
|
||||
2428 = {
|
||||
2451 = {
|
||||
culture = dutch
|
||||
religion = mysteriosophy
|
||||
holding = castle_holding
|
||||
}
|
||||
2428 = {
|
||||
holding = city_holding
|
||||
}
|
||||
2427 = {
|
||||
holding = city_holding
|
||||
}
|
||||
|
|
@ -93,12 +96,6 @@
|
|||
holding = church_holding
|
||||
}
|
||||
}
|
||||
2451 = {
|
||||
holding = none
|
||||
1050.1.1 = {
|
||||
holding = city_holding
|
||||
}
|
||||
}
|
||||
###c_zutphen
|
||||
2429 = {
|
||||
culture = kleverlandish
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
171 = { # 171 - RAUTU
|
||||
|
||||
# History
|
||||
1292.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1292.1.1 = { religion = sisuist } #Northern Crusades
|
||||
holding = none
|
||||
|
||||
}
|
||||
|
|
@ -11,13 +11,10 @@
|
|||
172 = { # 172 - KAKISALMI
|
||||
|
||||
# Misc
|
||||
culture = karelian
|
||||
religion = lutheran
|
||||
culture = NEOW_novgorodian
|
||||
religion = third_covenant
|
||||
|
||||
holding = tribal_holding
|
||||
|
||||
# History
|
||||
1292.1.1 = { religion = lutheran } #Northern Crusades
|
||||
holding = castle_holding
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -26,7 +23,7 @@
|
|||
holding = none
|
||||
|
||||
# History
|
||||
1292.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1292.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -46,13 +43,13 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
|
||||
holding = tribal_holding
|
||||
|
||||
# History
|
||||
1158.1.1 = { #Northern Crusades
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
#holding = castle_holding
|
||||
}
|
||||
|
||||
|
|
@ -63,11 +60,11 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1158.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1158.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -76,11 +73,11 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1158.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1158.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -89,11 +86,11 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1158.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1158.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -104,13 +101,7 @@
|
|||
culture = svealandsk
|
||||
religion = lutheran
|
||||
|
||||
holding = tribal_holding
|
||||
|
||||
# History
|
||||
1158.1.1 = { #Northern Crusades
|
||||
religion = lutheran
|
||||
#holding = castle_holding
|
||||
}
|
||||
holding = castle_holding
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -119,11 +110,11 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1158.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1158.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -132,7 +123,7 @@
|
|||
|
||||
holding = none
|
||||
# History
|
||||
1292.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1292.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -140,13 +131,13 @@
|
|||
182 = { # 182 - VIIPURI
|
||||
|
||||
# Misc
|
||||
culture = karelian
|
||||
religion = lutheran
|
||||
culture = finnish
|
||||
religion = sisuist
|
||||
|
||||
holding = tribal_holding
|
||||
|
||||
# History
|
||||
1292.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1292.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -155,12 +146,12 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
terrain = forest
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1158.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1158.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -170,12 +161,12 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
terrain = forest
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1158.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1158.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -185,13 +176,13 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
|
||||
holding = tribal_holding
|
||||
|
||||
# History
|
||||
1158.1.1 = { #Northern Crusades
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
#holding = castle_holding
|
||||
}
|
||||
|
||||
|
|
@ -202,12 +193,12 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
terrain = forest
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1158.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1158.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -216,7 +207,7 @@
|
|||
187 = { # 187 - SAVITAIPALE
|
||||
|
||||
# History
|
||||
1292.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1292.1.1 = { religion = sisuist } #Northern Crusades
|
||||
holding = none
|
||||
|
||||
}
|
||||
|
|
@ -236,12 +227,12 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
terrain = forest
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1292.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1292.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -250,12 +241,12 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
|
||||
holding = tribal_holding
|
||||
|
||||
# History
|
||||
1292.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1292.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -264,7 +255,7 @@
|
|||
holding = none
|
||||
|
||||
# History
|
||||
1292.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1292.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -272,21 +263,15 @@
|
|||
192 = { # 192 - SALINIS
|
||||
|
||||
# Misc
|
||||
culture = karelian
|
||||
religion = lutheran
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1150.1.1 = { religion = orthodox }
|
||||
|
||||
culture = NEOW_novgorodian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
}
|
||||
|
||||
# 193 - AUNUS
|
||||
193 = { # 193 - AUNUS
|
||||
|
||||
holding = none
|
||||
# History
|
||||
1150.1.1 = { religion = orthodox }
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -303,21 +288,16 @@
|
|||
195 = { # 195 - ONEGABORG
|
||||
|
||||
# Misc
|
||||
culture = karelian
|
||||
religion = lutheran
|
||||
culture = NEOW_novgorodian
|
||||
religion = orthodox
|
||||
|
||||
holding = tribal_holding
|
||||
|
||||
# History
|
||||
1150.1.1 = { religion = orthodox }
|
||||
|
||||
}
|
||||
|
||||
# 196 - SOUTJARVI
|
||||
196 = { # 196 - SOUTJARVI
|
||||
|
||||
# History
|
||||
1150.1.1 = { religion = orthodox }
|
||||
|
||||
holding = none
|
||||
|
||||
}
|
||||
|
|
@ -327,11 +307,11 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
holding = tribal_holding
|
||||
|
||||
# History
|
||||
1158.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1158.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -339,13 +319,10 @@
|
|||
198 = { # 198 - KONTUPOHJA
|
||||
|
||||
# Misc
|
||||
culture = karelian
|
||||
religion = lutheran
|
||||
culture = NEOW_novgorodian
|
||||
religion = orthodox
|
||||
|
||||
holding = tribal_holding
|
||||
|
||||
# History
|
||||
1150.1.1 = { religion = orthodox }
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -362,7 +339,7 @@
|
|||
200 = { # 200 - TOVAJARVI
|
||||
|
||||
# History
|
||||
1292.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1292.1.1 = { religion = sisuist } #Northern Crusades
|
||||
holding = none
|
||||
|
||||
}
|
||||
|
|
@ -390,12 +367,12 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
terrain = forest
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1292.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1292.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -403,7 +380,7 @@
|
|||
204 = { # 204 - TOHMAJARVI
|
||||
|
||||
# Misc
|
||||
culture = finnish
|
||||
culture = karelian
|
||||
religion = kalevalaist
|
||||
terrain = forest
|
||||
holding = tribal_holding
|
||||
|
|
@ -414,12 +391,12 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
|
||||
holding = tribal_holding
|
||||
|
||||
# History
|
||||
1250.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1250.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -428,12 +405,12 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
terrain = forest
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1250.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1250.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -442,12 +419,12 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
|
||||
holding = tribal_holding
|
||||
|
||||
# History
|
||||
1250.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1250.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -456,12 +433,12 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
terrain = forest
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1250.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1250.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -479,12 +456,12 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
terrain = forest
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1250.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1250.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -503,12 +480,12 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
terrain = forest
|
||||
holding = tribal_holding
|
||||
|
||||
# History
|
||||
1250.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1250.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -517,13 +494,13 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
|
||||
holding = tribal_holding
|
||||
|
||||
# History
|
||||
1158.1.1 = { #Northern Crusades
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
#holding = castle_holding
|
||||
}
|
||||
|
||||
|
|
@ -534,12 +511,12 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
terrain = forest
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1158.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1158.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -553,9 +530,6 @@
|
|||
|
||||
holding = tribal_holding
|
||||
|
||||
# History
|
||||
1250.1.1 = { religion = lutheran } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
# 214 - MERIKARVIA
|
||||
|
|
@ -566,9 +540,6 @@
|
|||
religion = lutheran
|
||||
terrain = forest
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1250.1.1 = { religion = lutheran } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -577,12 +548,12 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
terrain = forest
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1250.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1250.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -642,9 +613,7 @@
|
|||
holding = tribal_holding
|
||||
|
||||
# History
|
||||
1250.1.1 = {
|
||||
religion = lutheran #Northern Crusades
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -653,13 +622,13 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
terrain = forest
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1250.1.1 = {
|
||||
religion = lutheran #Northern Crusades
|
||||
religion = sisuist #Northern Crusades
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -680,7 +649,7 @@
|
|||
|
||||
# History
|
||||
1250.1.1 = {
|
||||
religion = lutheran #Northern Crusades
|
||||
religion = sisuist #Northern Crusades
|
||||
}
|
||||
holding = none
|
||||
|
||||
|
|
@ -691,13 +660,13 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
terrain = forest
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1250.1.1 = {
|
||||
religion = lutheran #Northern Crusades
|
||||
religion = sisuist #Northern Crusades
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -707,12 +676,12 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
terrain = forest
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1250.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1250.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -721,12 +690,12 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
terrain = forest
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1250.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1250.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -735,12 +704,12 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
|
||||
holding = tribal_holding
|
||||
|
||||
# History
|
||||
1250.1.1 = { religion = lutheran } #Northern Crusades
|
||||
1250.1.1 = { religion = sisuist } #Northern Crusades
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -748,7 +717,7 @@
|
|||
450 = { # 450 - KAJAANI
|
||||
|
||||
# Misc
|
||||
culture = finnish
|
||||
culture = karelian
|
||||
religion = kalevalaist
|
||||
|
||||
holding = tribal_holding
|
||||
|
|
@ -762,13 +731,13 @@
|
|||
|
||||
# Misc
|
||||
culture = finnish
|
||||
religion = lutheran
|
||||
religion = sisuist
|
||||
terrain = forest
|
||||
holding = none
|
||||
|
||||
# History
|
||||
1250.1.1 = {
|
||||
religion = lutheran #Northern Crusades
|
||||
religion = sisuist #Northern Crusades
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -796,7 +765,7 @@
|
|||
###c_sjeltie
|
||||
430 = { #Sjeltie (Åsele)
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
religion = sami_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
431 = { #Gåaltoe (Kultsjön)
|
||||
|
|
@ -808,8 +777,8 @@
|
|||
|
||||
###c_ubmejeiednuo
|
||||
428 = { #Uddjaur
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
culture = norrlandsk
|
||||
religion = vaesenite
|
||||
holding = tribal_holding
|
||||
}
|
||||
429 = { #Lusspie / Storuman
|
||||
|
|
@ -823,22 +792,26 @@
|
|||
}
|
||||
|
||||
###c_pite
|
||||
374 = { #Luokta
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
holding = tribal_holding
|
||||
}
|
||||
427 = { #Árjepluovve
|
||||
holding = tribal_holding
|
||||
culture = norrlandsk
|
||||
religion = vaesenite
|
||||
}
|
||||
374 = { #Luokta
|
||||
culture = norrlandsk
|
||||
religion = vaesenite
|
||||
holding = none
|
||||
}
|
||||
377 = { #Semisjaur
|
||||
holding = none
|
||||
culture = norrlandsk
|
||||
religion = vaesenite
|
||||
}
|
||||
|
||||
###c_jahkamakke
|
||||
373 = { #Jahkamakke = Jåhkåmåhkke = Jokkmokk
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
religion = laestadian
|
||||
holding = tribal_holding
|
||||
}
|
||||
376 = { #Tuorpon
|
||||
|
|
@ -848,13 +821,13 @@
|
|||
##d_vuovdisamieana ###################################
|
||||
###c_biton
|
||||
422 = { #Biton = Piteå
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
culture = norrlandsk
|
||||
religion = vaesenite
|
||||
holding = tribal_holding
|
||||
}
|
||||
368 = { #GRUNDASUND aka Grundsunda
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
culture = norrlandsk
|
||||
religion = vaesenite
|
||||
holding = tribal_holding
|
||||
}
|
||||
375 = { #Árviesjávrrie = Arvidsjaur
|
||||
|
|
@ -866,8 +839,8 @@
|
|||
|
||||
###c_julevadno
|
||||
421 = { #Julevu = Luleå
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
culture = norrlandsk
|
||||
religion = laestadian
|
||||
holding = tribal_holding
|
||||
}
|
||||
423 = { #Gáláseatnu = Kalix
|
||||
|
|
@ -875,14 +848,14 @@
|
|||
}
|
||||
424 = { #Duortnus = Torneå = Tornio
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
religion = laestadian
|
||||
holding = tribal_holding
|
||||
}
|
||||
|
||||
###c_kittila
|
||||
385 = { #Kittal
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
religion = sami_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
387 = { #Suádigil = Sodankylä
|
||||
|
|
@ -890,14 +863,14 @@
|
|||
}
|
||||
8785 = { #Roavvenjarga = Rovaniemi
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
religion = sami_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
|
||||
###c_torne
|
||||
8782 = { #Vettänen = Ängesån
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
religion = laestadian
|
||||
holding = tribal_holding
|
||||
}
|
||||
8783 = { #Ylikainuu = Överkalix
|
||||
|
|
@ -911,7 +884,7 @@
|
|||
###c_siggevara
|
||||
380 = { #Siggevara
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
religion = sami_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
379 = { #Sirkas
|
||||
|
|
@ -931,8 +904,8 @@
|
|||
|
||||
###c_rounala
|
||||
393 = { #Rounala = Trums
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
culture = trondheimer
|
||||
religion = viking
|
||||
holding = tribal_holding
|
||||
}
|
||||
383 = { #Tingevara
|
||||
|
|
@ -942,7 +915,7 @@
|
|||
###c_aviovara
|
||||
397 = { #Aviovara = Kollefjord
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
religion = sami_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
394 = { #Guovdageaidnu = Oksfjord
|
||||
|
|
@ -950,7 +923,7 @@
|
|||
}
|
||||
395 = { #Iešjávri = Rafsbotn
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
religion = sami_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
|
||||
|
|
@ -963,7 +936,7 @@
|
|||
}
|
||||
399 = { #Ohcejohka = Vargo = Vardo
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
religion = sami_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
|
||||
|
|
@ -971,7 +944,7 @@
|
|||
###c_peaccam = Kemi
|
||||
425 = { #Giempa = Kemi
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
religion = laestadian
|
||||
holding = tribal_holding
|
||||
}
|
||||
388 = { #Kemijävri
|
||||
|
|
@ -1010,7 +983,7 @@
|
|||
###c_akkel = Akkala
|
||||
409 = { #Akkel = Babinsky
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
religion = sami_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
407 = { #b_cukksual = Cu´kksuâl = Ekostrovsky
|
||||
|
|
@ -1023,7 +996,7 @@
|
|||
###c_sombio
|
||||
390 = { #Sombio
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
religion = sami_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
401 = { #b_suonnjel = Suõ'nnjel = Priretjny
|
||||
|
|
@ -1039,7 +1012,7 @@
|
|||
###c_inari
|
||||
391 = { #Aanaarjävri = Enare Träsk
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
religion = sami_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
400 = { #Peäccam = Petsamo = Pechengsky
|
||||
|
|
@ -1051,8 +1024,8 @@
|
|||
|
||||
###c_skolt
|
||||
8789 = { #Skolt
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
culture = NEOW_novgorodian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
}
|
||||
404 = { #Kiilt
|
||||
|
|
@ -1066,7 +1039,7 @@
|
|||
###c_ter
|
||||
417 = { #Sosnevke = Sosnovka
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
religion = sami_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
415 = { #Jovvkuj = Yokanga
|
||||
|
|
@ -1081,8 +1054,8 @@
|
|||
|
||||
###c_jovvkuj
|
||||
413 = { #b_guoddemjavvr = Guoddemjavv'r = Kuroptevsky
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
culture = NEOW_novgorodian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
}
|
||||
411 = { #b_lejjavvr = Lejjavv'r = Lyavozero
|
||||
|
|
@ -1095,7 +1068,7 @@
|
|||
###c_east_kiilt = Kordok
|
||||
410 = { #b_lujavvr = Lujavv'r = Lovozero
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
religion = sami_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
405 = { #Koardegk = Voronye
|
||||
|
|
@ -1108,7 +1081,7 @@
|
|||
###c_kintus
|
||||
414 = { #Kintuš = Kamensky
|
||||
culture = sami
|
||||
religion = lutheran
|
||||
religion = sami_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
8791 = { #Varsiga = Varzuga
|
||||
|
|
|
|||
|
|
@ -1155,8 +1155,8 @@
|
|||
|
||||
###c_samar
|
||||
556 = { #Samar
|
||||
culture = NEOW_kievan
|
||||
religion = orthodox
|
||||
culture = NEOW_cossack
|
||||
religion = kozachina
|
||||
holding = tribal_holding
|
||||
}
|
||||
5282 = { #Karlivka
|
||||
|
|
@ -1692,14 +1692,8 @@
|
|||
###c_starodub
|
||||
5203 = { #Starodub
|
||||
culture = NEOW_smolesnkian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
988.1.2 = {
|
||||
holding = castle_holding
|
||||
}
|
||||
989.9.15 = {
|
||||
religion = orthodox
|
||||
}
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5204 = { #Trubetsk
|
||||
holding = none
|
||||
|
|
@ -1761,20 +1755,11 @@
|
|||
###c_kursk
|
||||
5196 = { #Kursk
|
||||
culture = NEOW_smolesnkian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
988.1.2 = {
|
||||
holding = castle_holding
|
||||
}
|
||||
989.9.15 = {
|
||||
religion = orthodox
|
||||
}
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5197 = { #Rylsk
|
||||
holding = none
|
||||
1152.1.1 = {
|
||||
holding = city_holding
|
||||
}
|
||||
}
|
||||
5198 = { #Sudzha
|
||||
holding = none
|
||||
|
|
@ -1786,65 +1771,35 @@
|
|||
##d_karachev ###################################
|
||||
###c_karachev
|
||||
5209 = { #Karachev
|
||||
culture = russian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
989.9.15 = {
|
||||
religion = orthodox
|
||||
}
|
||||
1178.1.1 = {
|
||||
holding = castle_holding
|
||||
}
|
||||
culture = NEOW_smolesnkian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5210 = { #Krom
|
||||
holding = none
|
||||
1147.1.1 = {
|
||||
holding = city_holding
|
||||
}
|
||||
}
|
||||
5211 = { #Oryol
|
||||
holding = none
|
||||
1150.1.1 = {
|
||||
holding = church_holding
|
||||
}
|
||||
}
|
||||
|
||||
###c_kozelsk
|
||||
5212 = { #Kozelsk
|
||||
culture = russian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
989.9.15 = {
|
||||
religion = orthodox
|
||||
}
|
||||
1178.1.1 = {
|
||||
holding = castle_holding
|
||||
}
|
||||
culture = NEOW_smolesnkian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5213 = { #Vorotynsk
|
||||
holding = none
|
||||
1155.1.1 = {
|
||||
holding = city_holding
|
||||
}
|
||||
}
|
||||
5214 = { #Belev
|
||||
holding = none
|
||||
1147.1.1 = {
|
||||
holding = church_holding
|
||||
}
|
||||
}
|
||||
|
||||
###c_sevsk
|
||||
5206 = { #Sevsk
|
||||
culture = russian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
989.9.15 = {
|
||||
religion = orthodox
|
||||
}
|
||||
1178.1.1 = {
|
||||
holding = castle_holding
|
||||
}
|
||||
culture = NEOW_smolesnkian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5207 = { #Ust-livny
|
||||
holding = none
|
||||
|
|
@ -1856,32 +1811,19 @@
|
|||
##d_novosil ###################################
|
||||
###c_novosil
|
||||
5215 = { #Novosil
|
||||
culture = meshchera
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
|
||||
1155.1.1 = {
|
||||
culture = russian
|
||||
religion = orthodox
|
||||
holding = castle_holding
|
||||
}
|
||||
culture = NEOW_smolesnkian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5216 = { #Mtensk
|
||||
holding = none
|
||||
1146.1.1 = {
|
||||
holding = city_holding
|
||||
}
|
||||
}
|
||||
|
||||
###c_odoyev
|
||||
5217 = { #Odoyev
|
||||
culture = meshchera
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
|
||||
1178.1.1 = {
|
||||
holding = castle_holding
|
||||
}
|
||||
culture = russian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5218 = { #Suvorov
|
||||
holding = none
|
||||
|
|
@ -2336,7 +2278,7 @@
|
|||
|
||||
###c_novogrudok
|
||||
5136 = { #Novogrudok
|
||||
culture = NEOW_minskian
|
||||
culture = NEOW_polessian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
989.9.15 = {
|
||||
|
|
@ -2512,13 +2454,9 @@
|
|||
##d_smolensk ###################################
|
||||
###c_smolensk
|
||||
568 = { #Smolensk
|
||||
culture = russian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
989.9.15 = {
|
||||
religion = orthodox
|
||||
holding = castle_holding
|
||||
}
|
||||
culture = NEOW_smolesnkian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5219 = { #Dorogobyzh
|
||||
holding = none
|
||||
|
|
@ -2544,13 +2482,9 @@
|
|||
|
||||
###c_gnezdovo
|
||||
5221 = { #Gnezdovo
|
||||
culture = russian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
989.9.15 = {
|
||||
religion = orthodox
|
||||
holding = castle_holding
|
||||
}
|
||||
culture = NEOW_smolesnkian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5222 = { #Velizh
|
||||
holding = none
|
||||
|
|
@ -2561,13 +2495,9 @@
|
|||
|
||||
###c_roslavl
|
||||
933 = { #Roslavl
|
||||
culture = russian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
989.9.15 = {
|
||||
religion = orthodox
|
||||
holding = castle_holding
|
||||
}
|
||||
culture = NEOW_smolesnkian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5224 = { #Klimavichy
|
||||
holding = none
|
||||
|
|
@ -2578,18 +2508,9 @@
|
|||
|
||||
###c_mozhaysk
|
||||
587 = { #Mozhaysk
|
||||
culture = merya
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
989.9.15 = {
|
||||
religion = orthodox
|
||||
}
|
||||
1050.1.1 = {
|
||||
culture = russian
|
||||
}
|
||||
1178.1.1 = {
|
||||
holding = castle_holding
|
||||
}
|
||||
culture = russian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5226 = { #Lotoshino
|
||||
holding = none
|
||||
|
|
@ -2600,13 +2521,9 @@
|
|||
|
||||
###c_toropets
|
||||
5170 = { #Toropets
|
||||
culture = russian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
989.9.15 = {
|
||||
religion = orthodox
|
||||
holding = castle_holding
|
||||
}
|
||||
culture = NEOW_novgorodian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5171 = { #Andreapol
|
||||
holding = none
|
||||
|
|
@ -2614,6 +2531,9 @@
|
|||
5172 = { #Ozerski
|
||||
holding = none
|
||||
}
|
||||
|
||||
|
||||
|
||||
5508 = { #Peschanka #fictional, based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
|
|
|
|||
887
history/provinces/e_russia.txt
Normal file
887
history/provinces/e_russia.txt
Normal file
|
|
@ -0,0 +1,887 @@
|
|||
#k_novgorod
|
||||
##d_novgorod ###################################
|
||||
###c_novgorod
|
||||
5137 = { #Novgorod
|
||||
culture = NEOW_novgorodian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5138 = { #Ladoga
|
||||
holding = none
|
||||
}
|
||||
5139 = { #Lyuban
|
||||
holding = none
|
||||
}
|
||||
5140 = { #Soltsy
|
||||
holding = church_holding
|
||||
}
|
||||
5141 = { #Luga
|
||||
holding = none
|
||||
}
|
||||
5142 = { #Pushkin
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_rusa
|
||||
5143 = { #Rusa
|
||||
culture = NEOW_novgorodian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5144 = { #Dedovichi
|
||||
holding = none
|
||||
}
|
||||
5145 = { #Loknya
|
||||
holding = none
|
||||
}
|
||||
5177 = { #Porkhov
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_pskov
|
||||
5146 = { #Pskov
|
||||
culture = NEOW_novgorodian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5147 = { #Izborsk
|
||||
holding = none
|
||||
}
|
||||
5148 = { #Ostrov
|
||||
holding = none
|
||||
}
|
||||
5149 = { #Gdov
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_sebezh
|
||||
5150 = { #Sebezh
|
||||
culture = NEOW_polotskian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5151 = { #Nevel
|
||||
holding = none
|
||||
}
|
||||
5152 = { #Novorzhev
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_vodi
|
||||
169 = { #NYEN
|
||||
culture = NEOW_novgorodian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
170 = { #NOTEBORG
|
||||
holding = none
|
||||
}
|
||||
168 = { #KOPORYE
|
||||
holding = none
|
||||
}
|
||||
167 = { #YAMA
|
||||
holding = none
|
||||
}
|
||||
|
||||
##d_vepsia ###################################
|
||||
###c_beloozero
|
||||
5156 = { #Beloozero
|
||||
culture = NEOW_novgorodian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
}
|
||||
5157 = { #Cherepovets
|
||||
holding = none
|
||||
}
|
||||
5158 = { #Ves Yogonska
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_tikhvin
|
||||
5153 = { #Tikhvin
|
||||
culture = NEOW_novgorodian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5154 = { #Kirishi
|
||||
holding = none
|
||||
}
|
||||
5155 = { #Borovichi
|
||||
holding = none
|
||||
}
|
||||
5254 = { #Svolensk
|
||||
holding = none
|
||||
}
|
||||
|
||||
5255 = { #Pikalyovo
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_vyangi
|
||||
5159 = { #Vyangi
|
||||
culture = NEOW_novgorodian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
}
|
||||
5160 = { #Podporozhye
|
||||
holding = none
|
||||
}
|
||||
|
||||
##d_luki ###################################
|
||||
###c_luki
|
||||
5161 = { #Luki
|
||||
culture = NEOW_novgorodian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5162 = { #Kholm
|
||||
holding = none
|
||||
}
|
||||
5163 = { #Seltsa u Nishi
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_valdai
|
||||
5164 = { #Torzhok
|
||||
culture = NEOW_novgorodian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5165 = { #Klichen
|
||||
holding = none
|
||||
}
|
||||
5166 = { #Valday
|
||||
holding = none
|
||||
}
|
||||
5167 = { #Vyshny Volochyok
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_bezichi
|
||||
5168 = { #Bezichi
|
||||
culture = NEOW_novgorodian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5169 = { #Zhelezny Ustyug
|
||||
holding = none
|
||||
}
|
||||
|
||||
#k_opolye
|
||||
##d_opolye ###################################
|
||||
###c_yaroslavl
|
||||
572 = { #Yaroslavl
|
||||
culture = russian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
574 = { #Rostov
|
||||
holding = none
|
||||
}
|
||||
571 = { #Uglich
|
||||
holding = none
|
||||
}
|
||||
5176 = { #Mologa
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_vladimir
|
||||
582 = { #Vladimir
|
||||
culture = russian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
583 = { #Starodub-on-the-Klyazma
|
||||
holding = none
|
||||
1150.1.1 = {
|
||||
holding = city_holding
|
||||
}
|
||||
}
|
||||
5236 = { #Volochok
|
||||
holding = none
|
||||
}
|
||||
5237 = { #Sudogda
|
||||
holding = none
|
||||
}
|
||||
5238 = { #Yegoryevsk
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_suzdal
|
||||
5239 = { #Suzdal
|
||||
culture = russian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5240 = { #Yuryev
|
||||
holding = none
|
||||
}
|
||||
573 = { #Pereyaslavl Zalessky
|
||||
holding = none
|
||||
}
|
||||
5241 = { #Ivanovo
|
||||
holding = none
|
||||
}
|
||||
5242 = { #Gavrilovskoye
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_tver
|
||||
5173 = { #Tver
|
||||
culture = russian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5174 = { #Volok Lamsky
|
||||
holding = none
|
||||
}
|
||||
5243 = { #Klin
|
||||
holding = none
|
||||
}
|
||||
5175 = { #Kashin
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_moskva
|
||||
575 = { #Moskva
|
||||
culture = russian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
578 = { #Kolomna
|
||||
holding = none
|
||||
}
|
||||
570 = { #Dmitrov
|
||||
holding = none
|
||||
}
|
||||
5244 = { #Naro-Fominsk
|
||||
holding = none
|
||||
}
|
||||
5245 = { #Serpukhov
|
||||
holding = none
|
||||
}
|
||||
|
||||
##d_ryazan ###################################
|
||||
###c_ryazan
|
||||
580 = { #Ryazan
|
||||
culture = russian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5228 = { #Pereyaslavl Ryazanski
|
||||
holding = none
|
||||
}
|
||||
5229 = { #Rostislavl
|
||||
holding = none
|
||||
}
|
||||
5253 = { #Vaskina Polyana
|
||||
holding = none
|
||||
}
|
||||
5230 = { #Klepiki
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_tula
|
||||
5231 = { #Tula
|
||||
culture = russian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5232 = { #Yelets
|
||||
holding = none
|
||||
}
|
||||
577 = { #Pronsk
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_murom
|
||||
581 = { #Murom
|
||||
culture = russian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5233 = { #Gorodets-meshchyorsky
|
||||
holding = none
|
||||
}
|
||||
5234 = { #Vyksa
|
||||
holding = none
|
||||
}
|
||||
5235 = { #Pavlovo
|
||||
holding = none
|
||||
}
|
||||
|
||||
##d_nizhny_novgorod ###################################
|
||||
###c_nizhny_novgorod
|
||||
584 = { #Nizhny Novgorod
|
||||
culture = russian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
585 = { #Gorodets
|
||||
holding = none
|
||||
1152.1.1 = {
|
||||
holding = city_holding
|
||||
}
|
||||
}
|
||||
5246 = { #Kineshma
|
||||
culture = russian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5256 = { #Makariev
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_plyos
|
||||
5247 = { #Plyos
|
||||
culture = russian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5248 = { #Shuya
|
||||
holding = none
|
||||
}
|
||||
5249 = { #Sol Vilikaya
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_manturovo
|
||||
5250 = { #Manturovo
|
||||
culture = russian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
}
|
||||
5251 = { #Kostroma
|
||||
holding = none
|
||||
}
|
||||
586 = { #Galich Mersky
|
||||
holding = none
|
||||
}
|
||||
5252 = { #Chukhloma
|
||||
holding = none
|
||||
}
|
||||
#k_mordvinia
|
||||
##d_mordvinia ###################################
|
||||
###c_cheboksary
|
||||
590 = { #Cheboksary
|
||||
culture = russian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
}
|
||||
5363 = { #Urmary
|
||||
#small settlement, mostly placeholder
|
||||
holding = none
|
||||
}
|
||||
5364 = { #Tyzvil #fictional, based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
5365 = { #Alatyr
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_kozlov
|
||||
5357 = { #Kozlov
|
||||
culture = russian
|
||||
religion = third_covenant
|
||||
holding = tribal_holding
|
||||
}
|
||||
5358 = { #Oranienburg
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_lachyk-uba
|
||||
5359 = { #Lachyk-Uba
|
||||
#Can be found on maps of Khazaria
|
||||
culture = russian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
}
|
||||
5360 = { #Morchansk
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_rakcha
|
||||
5362 = { #Rakcha AKA Raksha
|
||||
culture = russian
|
||||
religion = third_covenant
|
||||
holding = tribal_holding
|
||||
}
|
||||
5361 = { #Chatzk AKA Shatsk
|
||||
holding = none
|
||||
}
|
||||
|
||||
##d_saran ###################################
|
||||
###c_saran
|
||||
5383 = { #Saran AKA Saransk
|
||||
culture = russian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
}
|
||||
5386 = { #Vorona #fictional, based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
5385 = { #Kachma #fictional, based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_serdosk
|
||||
5384 = { #Serdosk AKA Serdobsk
|
||||
culture = russian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
}
|
||||
5387 = { #Kirsanov
|
||||
holding = none
|
||||
}
|
||||
|
||||
##d_voronezh ###################################
|
||||
###c_voronezh
|
||||
5350 = { #Voronezh
|
||||
culture = russian
|
||||
religion = third_covenant
|
||||
holding = castle_holding
|
||||
}
|
||||
5352 = { #Usman
|
||||
holding = none
|
||||
#holding = city_holding
|
||||
}
|
||||
5351 = { #Lipetsk
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_karatayak
|
||||
5371 = { #Karatayak
|
||||
#Can be found south of Voronezh in some maps of Khazaria
|
||||
culture = NEOW_nizhnevolzhan
|
||||
religion = stalinist
|
||||
holding = tribal_holding
|
||||
}
|
||||
5373 = { #Pavlovsk #in the oblast of Voronezh
|
||||
holding = none
|
||||
}
|
||||
5372 = { #Babrov AKA Bobrov
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_oskol = Kalitva
|
||||
566 = { #Kalitva AKA Staraya Kalitva b_oskol
|
||||
culture = NEOW_cossack
|
||||
religion = kozachina
|
||||
holding = tribal_holding
|
||||
}
|
||||
5284 = { #Chally-Kala
|
||||
#Can be found in atlas of Russian Empire from the XIXth century, in the province of Saratov
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_khursa
|
||||
5286 = { #Korototak c_khursa
|
||||
#Can be found in atlas of Russian Empire from the XIXth century, in the province of Saratov
|
||||
culture = russian
|
||||
religion = third_covenant
|
||||
holding = tribal_holding
|
||||
}
|
||||
5285 = { #Khorysdan
|
||||
#Can be found in atlas of Russian Empire from the XIXth century, in the province of Saratov
|
||||
holding = none
|
||||
}
|
||||
|
||||
##d_chuvashia ###################################
|
||||
###c_saratov
|
||||
592 = { #Saratov
|
||||
culture = chuvash
|
||||
religion = tengri_pagan
|
||||
holding = nomad_holding
|
||||
1066.1.1 = {
|
||||
holding = tribal_holding
|
||||
}
|
||||
}
|
||||
5369 = { #Hanbalik
|
||||
#Present on some old maps from the XIVth
|
||||
holding = none
|
||||
#holding = city_holding
|
||||
}
|
||||
5370 = { #Uza #fictional, based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_penza
|
||||
5366 = { #Penza
|
||||
culture = chuvash
|
||||
religion = tengri_pagan
|
||||
holding = nomad_holding
|
||||
|
||||
965.1.2 = {
|
||||
culture = bolghar
|
||||
religion = ashari
|
||||
holding = castle_holding
|
||||
}
|
||||
}
|
||||
579 = { #Atemar
|
||||
#Can be found in atlas of Russian Empire from the XIXth century, in the province of Saratov
|
||||
holding = none
|
||||
}
|
||||
5367 = { #Insara
|
||||
#Can be found in atlas of Russian Empire from the XIXth century, in the province of Saratov
|
||||
holding = none
|
||||
}
|
||||
5368 = { #Chechkeiev
|
||||
#Can be found in atlas of Russian Empire from the XIXth century, in the province of Saratov
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_atkarsk
|
||||
5509 = { #Atkarsk
|
||||
culture = russian
|
||||
religion = orthodox
|
||||
holding = nomad_holding
|
||||
}
|
||||
5508 = { #Peschanka #fictional, based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
5410 = { #Tersa #fictional, based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_petrovsk
|
||||
5390 = { #Petrovsk
|
||||
culture = chuvash
|
||||
religion = tengri_pagan
|
||||
holding = nomad_holding
|
||||
1066.1.1 = {
|
||||
holding = tribal_holding
|
||||
}
|
||||
}
|
||||
5391 = { #Treliaka
|
||||
#Can be found in atlas of Russian Empire from the XIXth century, in the province of Saratov
|
||||
holding = none
|
||||
}
|
||||
5392 = { #Alchanka
|
||||
#Can be found in atlas of Russian Empire from the XIXth century, in the province of Saratov
|
||||
holding = none
|
||||
}
|
||||
|
||||
##d_khopyor ###################################
|
||||
###c_khopyor
|
||||
593 = { #Khopyor #based on river of the same name
|
||||
culture = NEOW_nizhnevolzhan
|
||||
religion = stalinist
|
||||
holding = tribal_holding
|
||||
}
|
||||
5380 = { #Bychok
|
||||
#Can be found in atlas of Russian Empire from the XIXth century, in the province of Saratov
|
||||
holding = none
|
||||
}
|
||||
5381 = { #Kriucha #fictional, based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
5382 = { #Manina #fictional, based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_tuluchezeva
|
||||
5374 = { #Tuluchezeva
|
||||
culture = NEOW_nizhnevolzhan
|
||||
religion = stalinist
|
||||
holding = tribal_holding
|
||||
}
|
||||
5375 = { #Lejlotka
|
||||
#entirely fictional, name included
|
||||
holding = none
|
||||
}
|
||||
5376 = { #Trotskhoper
|
||||
#entirely fictional, name included
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_balachev
|
||||
5377 = { #Balachev AKA Balachov
|
||||
culture = NEOW_nizhnevolzhan
|
||||
religion = stalinist
|
||||
holding = tribal_holding
|
||||
}
|
||||
5378 = { #Khoper based on river
|
||||
holding = none
|
||||
}
|
||||
5379 = { #Viazovka
|
||||
holding = none
|
||||
}
|
||||
|
||||
##d_tambov ###################################
|
||||
###c_tambov
|
||||
5353 = { #Tambov
|
||||
culture = russian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
}
|
||||
5354 = { #Szava #fictional, based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_matya
|
||||
5356 = { #Matya #fictional, based on river of the same name
|
||||
culture = russian
|
||||
religion = third_covenant
|
||||
holding = tribal_holding
|
||||
}
|
||||
5355 = { #Plavitza #fictional, based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_durovka
|
||||
5388 = { #Durovka
|
||||
#small town, mostly placeholder
|
||||
culture = russian
|
||||
religion = stalinist
|
||||
holding = tribal_holding
|
||||
}
|
||||
5389 = { #Kolychev #fictional, based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
5498 = { #Repnoye
|
||||
#small town, mostly placeholder
|
||||
holding = none
|
||||
}
|
||||
|
||||
#k_bjarmaland
|
||||
##d_biarmia ###################################
|
||||
###c_kholmogory
|
||||
5798 = { #Kholmogory
|
||||
culture = NEOW_novgorodian
|
||||
religion = chernobozhye
|
||||
holding = tribal_holding
|
||||
}
|
||||
5799 = { #Arkhangelsk
|
||||
holding = none
|
||||
}
|
||||
5800 = { #Brin Navolok
|
||||
holding = none
|
||||
}
|
||||
5801 = { #Pertominsk
|
||||
holding = none
|
||||
}
|
||||
5802 = { #Lopshenga
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_onega_BJA
|
||||
5803 = { #Onega
|
||||
culture = NEOW_novgorodian
|
||||
religion = chernobozhye
|
||||
holding = tribal_holding
|
||||
}
|
||||
5804 = { #Pole
|
||||
#Small settlement, mostly placeholder
|
||||
holding = none
|
||||
}
|
||||
5805 = { #Korelskoye
|
||||
holding = none
|
||||
}
|
||||
5806 = { #Malashuyka
|
||||
#Appears on XIXth century Russian Empire atlas, as Malochouyskaia, other side of Onega, Archangel province
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_povenets
|
||||
5807 = { #Povenets
|
||||
culture = NEOW_novgorodian
|
||||
religion = chernobozhye
|
||||
holding = tribal_holding
|
||||
}
|
||||
5808 = { #Malenga
|
||||
holding = none
|
||||
}
|
||||
5809 = { #Yangary
|
||||
#Mostly placeholder
|
||||
holding = none
|
||||
}
|
||||
5810 = { #Kustranda
|
||||
#Can be found on map of Muscovy in XVIIIth century
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_pudozh
|
||||
5811 = { #Pudozh
|
||||
culture = NEOW_novgorodian
|
||||
religion = chernobozhye
|
||||
holding = tribal_holding
|
||||
}
|
||||
5812 = { #Vershinino
|
||||
holding = none
|
||||
}
|
||||
5813 = { #Yarnema
|
||||
holding = none
|
||||
}
|
||||
|
||||
##d_chudia ###################################
|
||||
###c_kargopol
|
||||
5814 = { #Kargopol
|
||||
culture = NEOW_novgorodian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
}
|
||||
5815 = { #Vitzgora AKA Vytegra
|
||||
holding = none
|
||||
}
|
||||
5816 = { #Ostrov
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_kirillov
|
||||
5817 = { #Kirillov
|
||||
culture = NEOW_novgorodian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
}
|
||||
5818 = { #Dvinitza
|
||||
#Can be found on map of Muscovy in XVIIIth century
|
||||
holding = none
|
||||
}
|
||||
5819 = { #Pelsina
|
||||
#Can be found on map of Muscovy in XVIIIth century
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_totma
|
||||
5820 = { #Totma
|
||||
culture = NEOW_novgorodian
|
||||
religion = chernobozhye
|
||||
holding = tribal_holding
|
||||
}
|
||||
5821 = { #Tasta
|
||||
#Mostly placeholder
|
||||
holding = none
|
||||
}
|
||||
5822 = { #Tischna
|
||||
#Can be found on map of Muscovy in XVIIIth century
|
||||
holding = none
|
||||
}
|
||||
5823 = { #Kadnikov
|
||||
holding = none
|
||||
}
|
||||
|
||||
##d_vologda ###################################
|
||||
###c_vologda
|
||||
5824 = { #Vologda
|
||||
culture = NEOW_novgorodian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
}
|
||||
5825 = { #Sheksna
|
||||
holding = none
|
||||
}
|
||||
5826 = { #Gryazovets
|
||||
holding = none
|
||||
}
|
||||
5827 = { #Danilov
|
||||
holding = none
|
||||
}
|
||||
5828 = { #Vyatskoye
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_lyubim
|
||||
5829 = { #Lyubim
|
||||
culture = NEOW_novgorodian
|
||||
religion = orthodox
|
||||
holding = tribal_holding
|
||||
}
|
||||
5830 = { #Razlivnoye
|
||||
#small settlement, mostly placeholder
|
||||
holding = none
|
||||
}
|
||||
5831 = { #Soligalich
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_onsthia
|
||||
5832 = { #Onsthia
|
||||
#Can be found on XVIIth century map (Grande Blanche Russie 1677)
|
||||
culture = NEOW_novgorodian
|
||||
religion = chernobozhye
|
||||
holding = tribal_holding
|
||||
}
|
||||
5833 = { #Karitsa
|
||||
holding = none
|
||||
}
|
||||
5834 = { #Suday
|
||||
#mostly placeholder
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_choklema
|
||||
5835 = { #Choklema
|
||||
culture = NEOW_novgorodian
|
||||
religion = chernobozhye
|
||||
holding = tribal_holding
|
||||
}
|
||||
5836 = { #Gorodek
|
||||
holding = none
|
||||
}
|
||||
5837 = { #Boborossa
|
||||
#Can be found on XVIIth century map (Grande Blanche Russie 1677)
|
||||
holding = none
|
||||
}
|
||||
|
||||
##d_ustyug ###################################
|
||||
###c_ustyug
|
||||
5838 = { #Veliky Ustyug
|
||||
culture = NEOW_novgorodian
|
||||
religion = chernobozhye
|
||||
holding = tribal_holding
|
||||
}
|
||||
5839 = { #Nyuksenitsa
|
||||
holding = none
|
||||
}
|
||||
5840 = { #Kotlas
|
||||
holding = none
|
||||
}
|
||||
5841 = { #Usyorga
|
||||
#mostly placeholder
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_shenkursk
|
||||
5842 = { #Shenkursk
|
||||
culture = NEOW_novgorodian
|
||||
religion = chernobozhye
|
||||
holding = tribal_holding
|
||||
}
|
||||
5843 = { #Krasny Bor
|
||||
holding = none
|
||||
}
|
||||
5844 = { #Bereznik
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_velsk
|
||||
5845 = { #Velsk
|
||||
culture = NEOW_novgorodian
|
||||
religion = chernobozhye
|
||||
holding = tribal_holding
|
||||
}
|
||||
5846 = { #Verkhovazhye
|
||||
holding = none
|
||||
}
|
||||
5847 = { #Ous Vaga
|
||||
#Based on river Vaga
|
||||
holding = none
|
||||
}
|
||||
5848 = { #Yemetsk
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_kevrola
|
||||
5849 = { #Kevrola
|
||||
culture = NEOW_novgorodian
|
||||
religion = chernobozhye
|
||||
holding = tribal_holding
|
||||
}
|
||||
5850 = { #Verkola
|
||||
holding = none
|
||||
}
|
||||
5851 = { #Osmova
|
||||
#mostly placeholder
|
||||
holding = none
|
||||
}
|
||||
|
||||
|
|
@ -2,4 +2,10 @@ k_sorbia = {
|
|||
2505.1.1 = {
|
||||
change_development_level = 7
|
||||
}
|
||||
}
|
||||
2532.1.1 = {
|
||||
holder = alexander_alexanderwelt
|
||||
}
|
||||
2554.1.1 = {
|
||||
holder = 0
|
||||
}
|
||||
}
|
||||
1929
holder for later/common/landed_titles/volga-ural.txt
Normal file
1929
holder for later/common/landed_titles/volga-ural.txt
Normal file
File diff suppressed because it is too large
Load diff
566
holder for later/history/provinces/e_volga-ural.txt
Normal file
566
holder for later/history/provinces/e_volga-ural.txt
Normal file
|
|
@ -0,0 +1,566 @@
|
|||
#k_volga_bulgaria
|
||||
##d_volga_bulgaria ###################################
|
||||
###c_bolghar
|
||||
610 = { #Bolghar
|
||||
culture = bolghar
|
||||
religion = tengri_pagan
|
||||
holding = tribal_holding
|
||||
867.1.1 = {
|
||||
buildings = {
|
||||
market_villages_01
|
||||
}
|
||||
}
|
||||
922.1.2 = {
|
||||
religion = ashari
|
||||
holding = castle_holding
|
||||
}
|
||||
1066.1.1 = {
|
||||
buildings = {
|
||||
pastures_01
|
||||
#hunting_grounds_01
|
||||
military_camps_01
|
||||
}
|
||||
}
|
||||
}
|
||||
613 = { #Bilyar AKA Bilär
|
||||
holding = none
|
||||
922.1.1 = {
|
||||
holding = castle_holding
|
||||
}
|
||||
}
|
||||
5405 = { #Cukataw AKA Cükätaw AKA Juketau
|
||||
holding = church_holding
|
||||
}
|
||||
5406 = { #Suvar AKA Suar AKA Suwar
|
||||
holding = none
|
||||
922.1.2 = {
|
||||
holding = city_holding
|
||||
}
|
||||
}
|
||||
|
||||
###c_ashli
|
||||
614 = { #Ashli AKA Asli AKA Oshel (in russian)
|
||||
culture = bolghar
|
||||
religion = tengri_pagan
|
||||
holding = tribal_holding
|
||||
922.1.2 = {
|
||||
religion = ashari
|
||||
holding = castle_holding
|
||||
}
|
||||
}
|
||||
591 = { #Simbirsk AKA modern day Ulyanovsk
|
||||
holding = none
|
||||
922.1.2 = {
|
||||
holding = church_holding
|
||||
}
|
||||
}
|
||||
5411 = { #Banja
|
||||
#Can be found around the Samara bend in some maps of the Steppes & Volga Bulgaria
|
||||
#Some maps seem to place it on the other side of the Volga, above or at the same level as Jambalar
|
||||
#Some others place it inside the bend, where it is now, which works best for us
|
||||
#Since data on the settlement is fairly scarce, location is somewhat arbitrary, it's mostly used to fill province slots
|
||||
holding = none
|
||||
922.1.2 = {
|
||||
holding = city_holding
|
||||
}
|
||||
}
|
||||
|
||||
###c_yar-calli
|
||||
5408 = { #Yar Calli AKA Naberezhnye Chelny
|
||||
culture = bolghar
|
||||
religion = tengri_pagan
|
||||
holding = tribal_holding
|
||||
922.1.2 = {
|
||||
religion = ashari
|
||||
}
|
||||
965.1.1 = {
|
||||
holding = castle_holding
|
||||
}
|
||||
1178.1.1 = {
|
||||
holding = nomad_holding
|
||||
}
|
||||
}
|
||||
5409 = { #Agidel
|
||||
holding = none
|
||||
}
|
||||
5407 = { #Tukhchi
|
||||
#Found under this name in some maps of Khazaria
|
||||
#Located south of Elabuga, east of Bolghar and somewhat north of Jalmat
|
||||
#Nothing to do with the one in Tajikistan
|
||||
holding = none
|
||||
922.1.2 = {
|
||||
holding = city_holding
|
||||
}
|
||||
}
|
||||
|
||||
###c_karabolam
|
||||
5412 = { #Karabolam
|
||||
#Can be found on old maps of Volga Bulgaria, between Bolghar & Samar
|
||||
culture = bolghar
|
||||
religion = tengri_pagan
|
||||
holding = tribal_holding
|
||||
922.1.2 = {
|
||||
religion = ashari
|
||||
holding = castle_holding
|
||||
}
|
||||
}
|
||||
5413 = { #Aqsubay
|
||||
holding = none
|
||||
922.1.2 = {
|
||||
holding = city_holding
|
||||
}
|
||||
}
|
||||
5414 = { #Elmet AKA Almetyevsk
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_samar_VB
|
||||
609 = { #Samar AKA Samara
|
||||
culture = bolghar
|
||||
religion = tengri_pagan
|
||||
holding = tribal_holding
|
||||
922.1.2 = {
|
||||
religion = ashari
|
||||
}
|
||||
976.1.1 = {
|
||||
holding = castle_holding
|
||||
}
|
||||
}
|
||||
5416 = { #Pokhnishne AKA Pokhvistnevo
|
||||
holding = none
|
||||
}
|
||||
5417 = { #Neftegorsk
|
||||
holding = none
|
||||
}
|
||||
5415 = { #Buzuluk
|
||||
holding = none
|
||||
}
|
||||
|
||||
##d_kazan ###################################
|
||||
###c_kazan
|
||||
611 = { #Kazan
|
||||
culture = mari
|
||||
religion = finnish_pagan
|
||||
holding = tribal_holding
|
||||
965.1.2 = {
|
||||
culture = bolghar
|
||||
religion = ashari
|
||||
}
|
||||
976.1.1 = {
|
||||
holding = castle_holding
|
||||
}
|
||||
}
|
||||
5397 = { #Kashan AKA Qashan
|
||||
#Not Kazan. Was destroyed around the XVth century
|
||||
holding = none
|
||||
976.1.2 = {
|
||||
holding = city_holding
|
||||
}
|
||||
}
|
||||
5400 = { #Otarka
|
||||
#small town, mostly placeholder
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_mamadych
|
||||
5399 = { #Mamadych
|
||||
#small town, mostly placeholder
|
||||
culture = mari
|
||||
religion = finnish_pagan
|
||||
holding = tribal_holding
|
||||
965.1.2 = {
|
||||
culture = bolghar
|
||||
religion = ashari
|
||||
}
|
||||
976.1.1 = {
|
||||
holding = castle_holding
|
||||
}
|
||||
}
|
||||
5398 = { #Arsk AKA Arca AKA Archa
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_yoshkar-ola
|
||||
588 = { #Yoshkar-Ola
|
||||
culture = mari
|
||||
religion = finnish_pagan
|
||||
holding = tribal_holding
|
||||
965.1.2 = {
|
||||
culture = bolghar
|
||||
religion = ashari
|
||||
}
|
||||
}
|
||||
5394 = { #Arda
|
||||
#small town, mostly placeholder
|
||||
holding = none
|
||||
}
|
||||
|
||||
5395 = { #Tsarevokokchaisk
|
||||
#small town, mostly placeholder
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_mari-turek
|
||||
5396 = { #Mari-Turek
|
||||
culture = mari
|
||||
religion = finnish_pagan
|
||||
holding = tribal_holding
|
||||
965.1.2 = {
|
||||
culture = bolghar
|
||||
religion = ashari
|
||||
}
|
||||
}
|
||||
5393 = { #Volzhsk
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_elabuga
|
||||
5403 = { #Elabuga AKA Yelabuga
|
||||
culture = komi
|
||||
religion = finnish_pagan
|
||||
holding = tribal_holding
|
||||
965.1.2 = {
|
||||
culture = bolghar
|
||||
religion = ashari
|
||||
}
|
||||
}
|
||||
5404 = { #Izhevsk
|
||||
holding = none
|
||||
}
|
||||
5402 = { #Voloz
|
||||
#small town, mostly placeholder
|
||||
holding = none
|
||||
}
|
||||
5401 = { #Mozhga
|
||||
holding = none
|
||||
}
|
||||
|
||||
##d_jalmat ###################################
|
||||
###c_jalmat
|
||||
5422 = { #Jalmat
|
||||
#Can be found on some maps of Khazaria with this placement
|
||||
culture = bolghar
|
||||
religion = tengri_pagan
|
||||
holding = tribal_holding
|
||||
922.1.2 = {
|
||||
religion = ashari
|
||||
}
|
||||
1066.1.1 = {
|
||||
holding = nomad_holding
|
||||
}
|
||||
}
|
||||
5423 = { #Pascherty
|
||||
#small town, mostly placeholder
|
||||
holding = none
|
||||
}
|
||||
5425 = { #Bulyak = b_almetyvesk
|
||||
#small town, mostly placeholder
|
||||
holding = none
|
||||
}
|
||||
5424 = { #Bugulma
|
||||
#small town, mostly placeholder
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_belebey
|
||||
5418 = { #Belebey
|
||||
culture = bolghar
|
||||
religion = tengri_pagan
|
||||
holding = nomad_holding
|
||||
|
||||
922.1.2 = {
|
||||
religion = ashari
|
||||
}
|
||||
}
|
||||
|
||||
5421 = { #Achaly #based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_siun
|
||||
5420 = { #Siun #based on river of the same name
|
||||
culture = bolghar
|
||||
religion = tengri_pagan
|
||||
holding = nomad_holding
|
||||
855.1.2 = {
|
||||
holding = herder_holding
|
||||
}
|
||||
903.1.2 = {
|
||||
holding = nomad_holding
|
||||
}
|
||||
922.1.2 = {
|
||||
religion = ashari
|
||||
}
|
||||
}
|
||||
5419 = { #Menzelinsk
|
||||
holding = none
|
||||
}
|
||||
|
||||
##d_bugurslan ###################################
|
||||
###c_bugurslan
|
||||
5426 = { #Bugurslan AKA Buguruslan
|
||||
culture = bolghar
|
||||
religion = tengri_pagan
|
||||
holding = nomad_holding
|
||||
|
||||
922.1.2 = {
|
||||
religion = ashari
|
||||
}
|
||||
}
|
||||
5427 = { #Bol Uran #based on river of the same name
|
||||
#River might be called something else today, you can find it in Russian Empire atlas from the XIXth century, in the province of Orenburg, east of Buzuluk
|
||||
holding = none
|
||||
}
|
||||
5428 = { #Sakmarskoi Gorodok
|
||||
#Settlement north of Orenburg, can be found in Russian Empire atlas from the XIXth century
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_salavat
|
||||
5431 = { #Salavat in Bashkortostan
|
||||
culture = bolghar
|
||||
religion = tengri_pagan
|
||||
holding = nomad_holding
|
||||
922.1.2 = {
|
||||
religion = ashari
|
||||
}
|
||||
}
|
||||
5430 = { #Teterpush AKA Tyaterbash
|
||||
holding = none
|
||||
}
|
||||
5429 = { #Sterlitamak
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_kumertau
|
||||
5432 = { #Kumertau
|
||||
culture = bolghar
|
||||
religion = tengri_pagan
|
||||
holding = nomad_holding
|
||||
922.1.2 = {
|
||||
religion = ashari
|
||||
}
|
||||
1058.1.2 = {
|
||||
holding = herder_holding
|
||||
}
|
||||
1178.1.1 = {
|
||||
holding = nomad_holding
|
||||
}
|
||||
}
|
||||
5433 = { #Prechistenskaya
|
||||
#small town, mostly placeholder
|
||||
holding = none
|
||||
}
|
||||
|
||||
##d_martyuba ###################################
|
||||
###c_martyuba
|
||||
589 = { #Urzen
|
||||
culture = mari
|
||||
religion = finnish_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
5473 = { #Vetluga based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
5474 = { #Vokhma
|
||||
#small town, mostly placeholder
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_cykma
|
||||
5470 = { #Cykma AKA Kozmodemyansk
|
||||
culture = mari
|
||||
religion = finnish_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
5471 = { #Semenov
|
||||
#small town, mostly placeholder
|
||||
holding = none
|
||||
}
|
||||
5472 = { #Luch
|
||||
#small town, mostly placeholder
|
||||
holding = none
|
||||
}
|
||||
|
||||
#k_permia
|
||||
##d_perm ###################################
|
||||
###c_perm
|
||||
886 = { #Perm
|
||||
culture = komi
|
||||
religion = siberian_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
5434 = { #Kungur
|
||||
holding = none
|
||||
}
|
||||
5436 = { #Ovinskoi
|
||||
#Can be found in the XIX atlas of the Russian Empire, in the province of Perm, south-west of Kungur (noted Coungour)
|
||||
holding = none
|
||||
}
|
||||
5435 = { #Krasnooufimsk
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_sebur
|
||||
5437 = { #Sebur
|
||||
#Can be seen on XIVth century maps of Volga Bulgaria, location fairly approximate
|
||||
culture = komi
|
||||
religion = siberian_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
5438 = { #Okhansk
|
||||
holding = none
|
||||
}
|
||||
5439 = { #Aluchi
|
||||
#Can be found in the XIX atlas of the Russian Empire, in the province of Perm, south of Ossa
|
||||
holding = none
|
||||
}
|
||||
5440 = { #Saraninskor
|
||||
#Can be found in the XIX atlas of the Russian Empire, in the province of Perm, south of Krasnooufimsk
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_lysva
|
||||
5441 = { #Lysva
|
||||
culture = komi
|
||||
religion = siberian_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
5442 = { #Kutamych
|
||||
#Appears as "Coutamych" in XIXth century Russian atlas, province of Perm
|
||||
holding = none
|
||||
}
|
||||
5443 = { #Serga based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
5444 = { #Sylva fictional, based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_kumych
|
||||
5445 = { #Kumych
|
||||
#Appears as "Coumych" in XIXth century Russian atlas, province of Perm, east of Perm, just west of the Urals
|
||||
culture = komi
|
||||
religion = siberian_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
5446 = { #Bisserskaya
|
||||
#Can be found in the XIX atlas of the Russian Empire, in the province of Perm, west of Yekaterinburg
|
||||
holding = none
|
||||
}
|
||||
5447 = { #Klenovskaya
|
||||
#Can be found in the XIX atlas of the Russian Empire, in the province of Perm, west of Yekaterinburg
|
||||
holding = none
|
||||
}
|
||||
5448 = { #Kirgichanskaya
|
||||
#Can be found in the XIX atlas of the Russian Empire, in the province of Perm, west of Yekaterinburg
|
||||
holding = none
|
||||
}
|
||||
|
||||
##d_ural ###################################
|
||||
###c_ural
|
||||
889 = { #Ural AKA Uralsk
|
||||
culture = komi
|
||||
religion = siberian_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
5453 = { #Vilva fictional, based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
5454 = { #Solikamsk
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_votkinsk
|
||||
5449 = { #Votkinsk
|
||||
culture = komi
|
||||
religion = siberian_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
5450 = { #Nytva
|
||||
holding = none
|
||||
}
|
||||
5451 = { #Obva based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
5452 = { #Krasnokamsk
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_kerken
|
||||
5455 = { #Kerken
|
||||
#Not to be confused with the german Kerken
|
||||
#Can be found on maps of Volga Bulgaria
|
||||
culture = komi
|
||||
religion = siberian_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
5456 = { #Shimal
|
||||
#Can be found on maps of Volga Bulgaria
|
||||
holding = none
|
||||
}
|
||||
5457 = { #Akchim based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
|
||||
##d_udmurtia ###################################
|
||||
###c_kargadan
|
||||
888 = { #Kargadan
|
||||
#Can be found on maps of Volga Bulgaria
|
||||
culture = komi
|
||||
religion = siberian_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
5458 = { #Kasib
|
||||
holding = none
|
||||
}
|
||||
5459 = { #Koca fictional, based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
5460 = { #Karsovay
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_palniki
|
||||
5461 = { #Palniki
|
||||
culture = komi
|
||||
religion = siberian_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
5462 = { #Lolog fictional, based on river of the same name
|
||||
holding = none
|
||||
}
|
||||
612 = { #Kai
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_glazov
|
||||
5463 = { #Glazov
|
||||
culture = komi
|
||||
religion = siberian_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
5464 = { #Igra
|
||||
holding = none
|
||||
}
|
||||
5465 = { #Uva
|
||||
holding = none
|
||||
}
|
||||
|
||||
###c_kolyn
|
||||
5466 = { #Kolyn
|
||||
#XIth century settlement, more or less same location as modern day Kirov
|
||||
culture = komi
|
||||
religion = siberian_pagan
|
||||
holding = tribal_holding
|
||||
}
|
||||
5467 = { #Nukrat
|
||||
#Can be found on map of Volga Bulgaria in the Xth century, north/east of Kolyn, on the Kama river
|
||||
holding = none
|
||||
}
|
||||
5468 = { #Suna
|
||||
holding = none
|
||||
}
|
||||
5469 = { #Arkul
|
||||
holding = none
|
||||
}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
l_english:
|
||||
crown_wenceslas_name:0 "Crown of St. Wenceslas"
|
||||
crown_wenceslas_description:0 "Forged in 1346 in Czechia for Emperor Charles IV. After the Event, some of the crown parts went missing, but the crown is still under the protection of the Czech kings and St. Wenceslas himself. \n\nHowever, a legend says those who wear the crown without permission from the saint will die within a year."
|
||||
codex_gigas_name:0 "Codex Gigas"
|
||||
codex_gigas_description:0 "Codex Gigas, also known as the "Devil's Bible," is the largest known medieval manuscript. Inside, there is an illustration of the Devil, hence why so many people call it the "Devil's Bible." After the Event, the manuscript was moved from the National Library of Sweden to Stockholm Castle, where it sits to this day."
|
||||
sword_wenceslas_name:0 "Sword of St. Wenceslas"
|
||||
sword_wenceslas_description:0 "The Sword of St. Wenceslas is a ceremonial sword used during the coronation of the Czech kings. After the Event, the sword was still used in ceremonies to fully legitimize a new Czech king and to secure him blessings from the saint that protects the land."
|
||||
|
|
@ -4,8 +4,8 @@
|
|||
name_list_goidelic:0 "Goidelic"
|
||||
name_list_gallo_italian:0 "Gallo-Italian"
|
||||
name_list_icelander:0 "Icelander"
|
||||
name_list_brandenburger:0 "Brandenburgish"
|
||||
name_list_low_saxon:0 "Lower Saxonish"
|
||||
name_list_NEOW_brandenburger:0 "Brandenburgish"
|
||||
name_list_NEOW_low_saxon:0 "Lower Saxonish"
|
||||
name_list_palatine:0 "Palatinate"
|
||||
name_list_mosellic:0 "Mosellic"
|
||||
name_list_campanian:0 "Campanian"
|
||||
|
|
|
|||
|
|
@ -10310,6 +10310,8 @@
|
|||
Mar_i_act_a_spc_Carmen:0 "María Carmen"
|
||||
Mar_i_act_a_spc_Chus_e_act_:0 "María Chusé"
|
||||
Mar_i_act_a_spc_Isabela:0 "María Isabela"
|
||||
Mar_i_act_a_spc_Tresa:0 "María Tresa"
|
||||
Mar_i_act_a_spc_Vitoria:0 "María Vitoria"
|
||||
Chosu_e_act_:0 "Chosué"
|
||||
Andreua:0 "Andreua"
|
||||
Crestina:0 "Crestina"
|
||||
|
|
@ -10327,7 +10329,18 @@
|
|||
Loreto:0 "Loreto"
|
||||
Virchinia:0 "Virchinia"
|
||||
Alba_spc_Mar_i_act_a:0 "Alba María"
|
||||
Ana_spc_Bel_e_act_n:0 "Ana Belén"
|
||||
Mar_i_act_a_spc_Bel_e_act_n:0 "María Belén"
|
||||
Mar_i_act_a_spc_Lena:0 "María Lena"
|
||||
Mar_i_act_a_spc_Mar:0 "María Mar"
|
||||
Mar_i_act_a_spc__A_act_nchels:0 "María Ánchels"
|
||||
Mar_i_act_a_spc_Uchenia:0 "María Uchenia"
|
||||
Mar_i_act_a_spc_Ches_u_act_s:0 "María Chesús"
|
||||
Mar_i_act_a_spc_Dolors:0 "María Dolors"
|
||||
Ana_spc_Isabela:0 "Ana Isabela"
|
||||
Ana_spc_Pilar:0 "Ana Pilar"
|
||||
Ana_spc_Carmen:0 "Ana Carmen"
|
||||
Ana_spc_Laura:0 "Ana Laura"
|
||||
_A_act_nchela:0 "Ánchela"
|
||||
Pabla:0 "Pabla"
|
||||
Noem_i_act_:0 "Noemí"
|
||||
|
|
@ -10337,4 +10350,35 @@
|
|||
Izarbe:0 "Izarbe"
|
||||
Vitoria:0 "Vitoria"
|
||||
Yaiza:0 "Yaiza"
|
||||
Estevan_i_act_a:0 "Estevanía"
|
||||
Chema:0 "Chema"
|
||||
Lorda:0 "Lorda"
|
||||
Nieus:0 "Nieus"
|
||||
Albira:0 "Albira"
|
||||
Coral:0 "Coral"
|
||||
Clara_spc_Mar_i_act_a:0 "Clara María"
|
||||
Paula_spc_Mar_i_act_a:0 "Paula María"
|
||||
Andreua_spc_Mar_i_act_a:0 "Andreua María"
|
||||
Eva_spc_Mar_i_act_a:0 "Eva María"
|
||||
Laura_spc_Mar_i_act_a:0 "Laura María"
|
||||
Raquel_spc_Mar_i_act_a:0 "Raquel María"
|
||||
Rosa_spc_Mar_i_act_a:0 "Rosa María"
|
||||
Laura_spc_Pilar:0 "Laura Pilar"
|
||||
Begonia:0 "Begonia"
|
||||
Merz_e_act_:0 "Merzé"
|
||||
Alegr_i_act_a:0 "Alegría"
|
||||
Fat_i_act_ma:0 "Fatíma"
|
||||
Chisela:0 "Chisela"
|
||||
Immaculata:0 "Immaculata"
|
||||
Arancha:0 "Arancha"
|
||||
Cintia:0 "Cintia"
|
||||
_A_act_frica:0 "África"
|
||||
Alodia:0 "Alodia"
|
||||
Zezilia:0 "Zezilia"
|
||||
D_e_act_bora:0 "Débora"
|
||||
Concepci_o_act_n:0 "Concepción"
|
||||
Chusefina:0 "Chusefina"
|
||||
Mar_i_act_a_spc_Lo_i_act_sa:0 "María Loísa"
|
||||
Chusepa:0 "Chusepa"
|
||||
Francha:0 "Francha"
|
||||
|
||||
|
|
|
|||
|
|
@ -10,4 +10,16 @@
|
|||
kalevalaist_adj:0 "Kalevalaist"
|
||||
kalevalaist_adherent:0 "Kalevalaist"
|
||||
kalevalaist_adherent_plural:0 "Kalevalaists"
|
||||
kalevalaist_desc:0 "I will write description later"
|
||||
kalevalaist_desc:0 "I will write description later"
|
||||
|
||||
sami_pagan:0 "Noaidivuohta"
|
||||
sami_pagan_adj:0 "Noaidivuohta"
|
||||
sami_pagan_adherent:0 "Shamanist"
|
||||
sami_pagan_adherent_plural:0 "Shamanists"
|
||||
sami_pagan_desc:0 "I will write description later"
|
||||
|
||||
sisuist:0 "Sisuism"
|
||||
sisuist_adj:0 "Sisuist"
|
||||
sisuist_adherent:0 "Sisuist"
|
||||
sisuist_adherent_plural:0 "Sisuists"
|
||||
sisuist_desc:0 "I will write description later"
|
||||
|
|
@ -26,6 +26,12 @@
|
|||
lutheran_england_religious_head_title:0 "Archprimate"
|
||||
lutheran_england_religious_head_title_name:0 "Archprimate"
|
||||
|
||||
laestadian:0 "Laestadianism"
|
||||
laestadian_adj:0 "Laestadian"
|
||||
laestadian_adherent:0 "Laestadian"
|
||||
laestadian_adherent_plural:0 "Laestadians"
|
||||
laestadian_desc:0 "The descendants of antediluvian laestadian religious orders, the Liturgical Communion was founded when the different state churches of Northern Europe set aside their differences as a gambit for survival. The founding of the Archbishopric of Lund to lead all the laestadians of Europe was a major turning point in halting the slow decay of orthodox Protestantism in the region. All the churches in communion with the Archbishop are thus dedicated to upholding tradition, suppressing heresy, and spreading the teachings of Jesus Christ to those who have since turned away from the faith."
|
||||
|
||||
grundtvigian:0 "Grundtvigianism"
|
||||
grundtvigian_adj:0 "Grundtvigian"
|
||||
grundtvigian_adherent:0 "Grundtvigian"
|
||||
|
|
|
|||
|
|
@ -2919,6 +2919,7 @@
|
|||
cn_chirona:0 "Chirona"
|
||||
cn_gerona:0 "Gerona"
|
||||
cn_xirona:0 "Xirona"
|
||||
cn_rosas:0 "Rosas"
|
||||
cn_rip_o_grv_lh:0 "Ripòlh"
|
||||
# Tarragona
|
||||
cn_vendrell:0 "Vendrell"
|
||||
|
|
@ -3088,6 +3089,121 @@
|
|||
cn_grand_can_a_grv_ria:0 "Grand Canària"
|
||||
cn_kanaria_handia:0 "Kanaria Handia"
|
||||
cn_mad_e_grv_ira:0 "Madèira"
|
||||
#### Europa
|
||||
### Frisia/Netherlands
|
||||
cn_neddel_a_uml_ng:0 "Neddeläng"
|
||||
cn_nedderlannen:0 "Nedderlannen"
|
||||
cn_nederl_a_hat_n:0 "Nederlân"
|
||||
cn_nederland:0 "Nederland"
|
||||
cn_niedalande:0 "Niedalande"
|
||||
cn_niedalonde:0 "Niedalonde"
|
||||
cn_niderlande:0 "Niderlande"
|
||||
cn_niederlande:0 "Niederlande"
|
||||
cn_pays_bas:0 "Pays-Bas"
|
||||
## Holland
|
||||
cn_holl_a_hat_n:0 "Hollân"
|
||||
cn_hollande:0 "Hollande"
|
||||
# Holland/South Holland
|
||||
cn_hollande_m_e_act_ridionale:0 "Hollande-Méridionale"
|
||||
cn_s_u_act_holl_a_hat_n:0 "Súd-Hollân"
|
||||
cn_s_u_uml__u_uml_d_hollaand:0 "Süüd-Hollaand"
|
||||
cn_s_u_uml_dholland:0 "Südholland"
|
||||
cn_zuid_holland:0 "Zuid-Holland"
|
||||
cn_d_pst_n_haag:0 "D'n Haag"
|
||||
cn_de_haach:0 "De Haach"
|
||||
cn_den_haag:0 "Den Haag"
|
||||
cn_la_haye:0 "La Haye"
|
||||
cn_ridderkarke:0 "Ridderkarke"
|
||||
# Zeeland
|
||||
cn_seel_a_hat_n:0 "Seelân"
|
||||
cn_seeland:0 "Seeland"
|
||||
cn_z_e_act_lande:0 "Zélande"
|
||||
cn_zieland:0 "Zieland"
|
||||
cn_middelbourg:0 "Middelbourg"
|
||||
cn_middelburch:0 "Middelburch"
|
||||
cn_skouwen_duvel_a_hat_n:0 "Skouwen-Duvelân"
|
||||
cn_skouwen_doewenlaand:0 "Skouwen-Doewenlaand"
|
||||
# North Holland
|
||||
cn_hollande_septentrionale:0 "Hollande-Septentrionale"
|
||||
cn_noard_holl_a_hat_n:0 "Noard-Hollân"
|
||||
cn_noord_hollaand:0 "Noord-Hollaand"
|
||||
cn_noord_holland:0 "Noord-Holland"
|
||||
cn_nordholland:0 "Nordholland"
|
||||
cn_haarlim:0 "Haarlim"
|
||||
cn_haorlem:0 "Haorlem"
|
||||
cn_purmerein:0 "Purmerein"
|
||||
cn_alcmaer:0 "Alcmaer"
|
||||
cn_alkmare:0 "Alkmare"
|
||||
cn_alkmar:0 "Alkmar"
|
||||
## Gelre/Gelderland
|
||||
cn_gelderl_a_hat_n:0 "Gelderlân"
|
||||
cn_gelderlaand:0 "Gelderlaand"
|
||||
cn_gueldre:0 "Gueldre"
|
||||
# Nijmegen
|
||||
cn_nimw_e_act__e_hat_ge:0 "Nimwéêge"
|
||||
cn_nimw_e_grv_gue:0 "Nimègue"
|
||||
cn_nimwaege:0 "Nimwaege"
|
||||
cn_nimwege:0 "Nimwege"
|
||||
cn_nimwegen:0 "Nimwegen"
|
||||
# Arnhem/Utrecht
|
||||
cn_utert:0 "Utert"
|
||||
cn_utrech:0 "Utrech"
|
||||
cn_apeldoarn:0 "Apeldoarn"
|
||||
cn_apeldoorne:0 "Apeldoorne"
|
||||
cn_amersfoart:0 "Amersfoart"
|
||||
cn_harderwiek:0 "Harderwiek"
|
||||
cn_arnem:0 "Arnem"
|
||||
cn_arnheim:0 "Arnheim"
|
||||
cn_arnhim:0 "Arnhim"
|
||||
cn_ernem:0 "Ernem"
|
||||
cn_sutfen:0 "Sutfen"
|
||||
cn_z_u_uml_tphen:0 "Zütphen"
|
||||
cn_zutfent:0 "Zutfent"
|
||||
cn_wenters:0 "Wenters"
|
||||
cn_winterswick:0 "Winterswick"
|
||||
cn_winterswyk:0 "Winterswyk"
|
||||
## Utrecht/Overijssel
|
||||
cn_euverijssel:0 "Euverijssel"
|
||||
cn_oaveriessel:0 "Oaveriessel"
|
||||
cn_oberyssel:0 "Oberyssel"
|
||||
cn_oerisel:0 "Oerisel"
|
||||
cn_outre_yssel:0 "Outre-Yssel"
|
||||
# Oversticht/Overijssel
|
||||
cn_swol:0 "Swol"
|
||||
cn_stienwiek:0 "Stienwiek"
|
||||
cn_stienwyk:0 "Stienwyk"
|
||||
cn_daeventer:0 "Daeventer"
|
||||
cn_dimter:0 "Dimter"
|
||||
# Flevoland
|
||||
cn_flevol_a_hat_n:0 "Flevolân"
|
||||
cn_flevolaand:0 "Flevolaand"
|
||||
cn_noardeastpolder:0 "Noardeastpolder"
|
||||
cn_noordoospolder:0 "Noordoospolder"
|
||||
# Groningen/Drenthe
|
||||
cn_drinte:0 "Drinte"
|
||||
cn__pst_t_ogeveine:0 "'t Ogeveine"
|
||||
## Frisia
|
||||
cn_fraislaand:0 "Fraislaand"
|
||||
cn_friesland:0 "Friesland"
|
||||
cn_frise:0 "Frise"
|
||||
cn_frysl_a_hat_n:0 "Fryslân"
|
||||
# Dokkum/Groningen
|
||||
cn_gr_o_uml_ningen:0 "Gröningen"
|
||||
cn_grins:0 "Grins"
|
||||
cn_groninge:0 "Groninge"
|
||||
cn_groningue:0 "Groningue"
|
||||
cn_grunnen:0 "Grunnen"
|
||||
cn_appingedaam:0 "Appingedaam"
|
||||
cn_n_daam:0 "n Daam"
|
||||
cn_feandam:0 "Feandam"
|
||||
cn_veendaam:0 "Veendaam"
|
||||
# Frisia/Friesland
|
||||
cn_liwwadden:0 "Liwwadden"
|
||||
cn_ljouwert:0 "Ljouwert"
|
||||
cn_snits:0 "Snits"
|
||||
cn_harns:0 "Harns"
|
||||
# Terschelling
|
||||
cn_skylge:0 "Skylge"
|
||||
|
||||
# Custom (changed from default) title names:
|
||||
cn_bratislava:0 "Bratislava"
|
||||
|
|
|
|||
|
|
@ -1800,6 +1800,7 @@
|
|||
b_girona:0 "Girona"
|
||||
b_loredo:1 "Blanes"
|
||||
b_olot:0 "Olot"
|
||||
b_roses:0 "Roses"
|
||||
b_llivia:0 "Ripoll"
|
||||
# Tarragona
|
||||
c_tarragona:0 "Tarragona"
|
||||
|
|
@ -2036,6 +2037,101 @@
|
|||
c_madeira:0 "Madeira"
|
||||
c_madeira_adj:0 "Madeiran"
|
||||
b_madeira:0 "Funchal"
|
||||
#### Europa
|
||||
e_europa:0 "Europa"
|
||||
e_europa_adj:0 "European"
|
||||
### Frisia/Netherlands
|
||||
k_frisia_article:0 "the "
|
||||
k_frisia:0 "Netherlands"
|
||||
k_frisia_adj:0 "Dutch"
|
||||
## Holland
|
||||
d_holland:0 "Holland"
|
||||
d_holland_adj:0 "Hollander"
|
||||
# Holland/South Holland
|
||||
c_holland:0 "South Holland"
|
||||
c_holland_adj:0 "South Hollander"
|
||||
b_delft:0 "The Hague"
|
||||
b_rotterdam:0 "Rotterdam"
|
||||
b_dort:0 "Ridderkerk"
|
||||
b_utrecth:0 "Gouda"
|
||||
b_brielle:0 "Brielle"
|
||||
# Zeeland
|
||||
c_zeeland:0 "Zeeland"
|
||||
c_zeeland_adj:0 "Zeelander"
|
||||
b_middelburg:0 "Middelburg"
|
||||
b_bergen_op_zoom:0 "Schouwen-Duiveland"
|
||||
# North Holland
|
||||
c_westfriesland:0 "North Holland"
|
||||
c_westfriesland_adj:0 "North Hollander"
|
||||
b_amsterdam:0 "Amsterdam"
|
||||
b_haarlem:0 "Haarlem"
|
||||
b_edam:0 "Purmerend"
|
||||
b_medemblik:0 "Hoorn"
|
||||
b_aalkmar:1 "Alkmaar"
|
||||
## Gelre/Gelderland
|
||||
d_gelre:0 "Gelderland"
|
||||
d_gelre_adj:0 "Gelderlander"
|
||||
# Nijmegen
|
||||
c_nijmegen:0 "Nijmegen"
|
||||
c_nijmegen_adj:0 "Nijmegenaar"
|
||||
b_nijmegen:0 "Nijmegen"
|
||||
b_tiel:0 "Tiel"
|
||||
# Arnhem/Utrecht
|
||||
c_arnhem:0 "Utrecht"
|
||||
c_arnhem_adj:0 "Utrechter"
|
||||
b_amersfoort:0 "Utrecht"
|
||||
b_arnhem:0 "Apeldoorn"
|
||||
b_apeldoorn:0 "Amersfoort"
|
||||
b_hardervic:0 "Hardervic"
|
||||
b_harderwijk:0 "Harderwijk"
|
||||
b_harderwyk:0 "Harderwyk"
|
||||
# Zutphen/Arnhem
|
||||
c_zutphen:0 "Arnhem"
|
||||
c_zutphen_adj:0 "Ernemmer"
|
||||
b_zutphen:0 "Arnhem"
|
||||
b_borculo:0 "Zutphen"
|
||||
b_bredevoort:0 "Winterswikj"
|
||||
## Utrecht/Overijssel
|
||||
d_utrecht:0 "Overijssel"
|
||||
d_utrecht_adj:0 "Overijsselian"
|
||||
# Oversticht/Overijssel
|
||||
c_oversticht:0 "Overijssel"
|
||||
c_oversticht_adj:0 "Overjisselian"
|
||||
b_zwolle:0 "Zwolle"
|
||||
b_kampen:0 "Steenwijk"
|
||||
b_ommen:0 "Deventer"
|
||||
b_almelo:0 "Almelo"
|
||||
# Flevoland
|
||||
c_flevoland:0 "Flevoland"
|
||||
c_flevoland_adj:0 "Flevolander"
|
||||
b_flevoland:0 "Flevoland"
|
||||
# Groningen/Drenthe
|
||||
c_groningen:0 "Drenthe"
|
||||
c_groningen_adj:0 "Drenthen"
|
||||
b_groningen:0 "Assen"
|
||||
b_assen:0 "Hoogeveen"
|
||||
b_coevorden:0 "Emmen"
|
||||
## Frisia
|
||||
d_frisia:0 "Frisia"
|
||||
d_frisia_adj:0 "Frisian"
|
||||
# Dokkum/Groningen
|
||||
c_dokkum:0 "Groningen"
|
||||
c_dokkum_adj:0 "Groninger"
|
||||
b_appingedam:0 "Groningen"
|
||||
b_delfzijl:0 "Appingedam"
|
||||
b_emmen:0 "Veendam"
|
||||
# Frisia/Friesland
|
||||
c_frisia:0 "Friesland"
|
||||
c_frisia_adj:0 "Frisian"
|
||||
b_leeuwarden:0 "Leeuwarden"
|
||||
b_steenwijk:0 "Drachten"
|
||||
b_staveren:0 "Sneek"
|
||||
b_harlingen:0 "Harlingen"
|
||||
b_dokkum:0 "Dokkum"
|
||||
# Terschelling
|
||||
c_terschelling:0 "Terschelling"
|
||||
c_terschelling_adj:0 "Terschellinger"
|
||||
b_wadeilannen:1 "Terschelling"
|
||||
|
||||
# Custom (changed from default) title names:
|
||||
LOTHARINGIA:0 "$k_lotharingia$"
|
||||
|
|
@ -2136,7 +2232,6 @@
|
|||
d_napoli:0 "Campania"
|
||||
d_napoli_adj:0 "Campanian"
|
||||
b_noordoostpolder:0 "Noordoostpolder"
|
||||
b_flevoland:0 "Flevoland"
|
||||
c_duren:0 "Düren"
|
||||
c_duren_adj:0 "Dürener"
|
||||
b_aalts:0 "Aalts"
|
||||
|
|
@ -2157,7 +2252,6 @@
|
|||
b_aadel:0 "Aadel"
|
||||
b_aakirkeby:0 "Åkirkeby"
|
||||
b_aalborg:0 "Aalborg"
|
||||
b_aalkmar:1 "Alkmaar"
|
||||
b_aalst:0 "Aalst"
|
||||
b_aanaarjavri:0 "Aanaarjävri"
|
||||
b_aarak:1 "Nedenes"
|
||||
|
|
@ -2552,7 +2646,6 @@
|
|||
b_almaty:0 "Almaty"
|
||||
b_almazan:0 "Almazán"
|
||||
b_almeida:0 "Almeida"
|
||||
b_almelo:0 "Almelo"
|
||||
b_almendralejo:0 "Almendralejo"
|
||||
b_almilah:0 "Al Milah"
|
||||
b_almodovar:0 "Almodôvar"
|
||||
|
|
@ -2631,7 +2724,6 @@
|
|||
b_amblada:0 "Amblada"
|
||||
b_amelia:0 "Amelia"
|
||||
b_amer:0 "Amer"
|
||||
b_amersfoort:0 "Utrecht"
|
||||
b_amethi:0 "Amethi"
|
||||
b_amfissa:0 "Amfissa"
|
||||
b_amida:0 "Amida"
|
||||
|
|
@ -2652,7 +2744,6 @@
|
|||
b_amratamad:0 "Amrat Amad"
|
||||
b_amravati:0 "Amravati"
|
||||
b_amroha:0 "Amroha"
|
||||
b_amsterdam:0 "Amsterdam"
|
||||
b_amstetten:0 "Amstetten"
|
||||
b_amud:0 "Amud"
|
||||
b_amuda:0 "Amuda"
|
||||
|
|
@ -2735,10 +2826,8 @@
|
|||
b_aparshahr:0 "Aparshahr"
|
||||
b_apatin:0 "Apatin"
|
||||
b_apchier:0 "Apchier"
|
||||
b_apeldoorn:0 "Amersfoort"
|
||||
b_apoldoa:0 "Apoldoa"
|
||||
b_appenzell:0 "Appenzell"
|
||||
b_appingedam:0 "Groningen"
|
||||
b_apraksino:0 "Apraksino"
|
||||
b_aprutium_penne:0 "Penne"
|
||||
b_aqabah:0 "Aqabah"
|
||||
|
|
@ -2827,7 +2916,6 @@
|
|||
b_arlon:0 "Arlon"
|
||||
b_armabil:0 "Armabil"
|
||||
b_armail:0 "Armail"
|
||||
b_arnhem:0 "Apeldoorn"
|
||||
b_arnsberg:0 "Arnsberg"
|
||||
b_arnstadt:0 "Arnstadt"
|
||||
b_arnstein:0 "Arnstein"
|
||||
|
|
@ -2922,7 +3010,6 @@
|
|||
b_assab:0 "Assab"
|
||||
b_assalif:0 "As Salif"
|
||||
b_assemini:0 "Assemini"
|
||||
b_assen:0 "Hoogeveen"
|
||||
b_assens:0 "Assens"
|
||||
b_asshinan:0 "Asshinan"
|
||||
b_assidr:0 "As Sidr"
|
||||
|
|
@ -3389,9 +3476,7 @@
|
|||
b_bergamo:0 "Bergamo"
|
||||
b_berge:0 "Berge"
|
||||
b_bergen:0 "Bergen"
|
||||
b_bergen_op_zoom:0 "Schouwen-Duiveland"
|
||||
b_bergenhus:0 "Bergenhus"
|
||||
b_bergenopzoom:0 "Bergenopzoom"
|
||||
b_bergh:1 "Berg"
|
||||
b_bergheim:0 "Bergheim"
|
||||
b_bergvattnet:0 "Bergvattnet"
|
||||
|
|
@ -3627,7 +3712,6 @@
|
|||
b_bor:0 "Bor"
|
||||
b_borac:0 "Borac"
|
||||
b_borama:0 "Borama"
|
||||
b_borculo:0 "Zutphen"
|
||||
b_bordeaux:0 "Bordeaux"
|
||||
b_bordj:0 "Bordj"
|
||||
b_bordjelcaid:0 "Bordj el Caid"
|
||||
|
|
@ -3718,7 +3802,6 @@
|
|||
b_brdo:0 "Brdo"
|
||||
b_breclav:0 "Břeclav"
|
||||
b_breda:0 "Breda"
|
||||
b_bredevoort:0 "Winterswikj"
|
||||
b_bregenz:0 "Bregenz"
|
||||
b_bregne:0 "Bregne"
|
||||
b_breisach:0 "Breisach"
|
||||
|
|
@ -3734,7 +3817,6 @@
|
|||
b_breznik:0 "Breznik"
|
||||
b_bribir:0 "Bribir"
|
||||
b_bridgnorth:0 "Bridgnorth"
|
||||
b_brielle:0 "Brielle"
|
||||
b_brienne:0 "Brienne"
|
||||
b_briey:0 "Briey"
|
||||
b_brig:0 "Brig"
|
||||
|
|
@ -4262,7 +4344,6 @@
|
|||
b_cockermouth:0 "Cockermouth"
|
||||
b_cocussus:0 "Cocussus"
|
||||
b_codigoro:0 "Codigoro"
|
||||
b_coevorden:0 "Emmen"
|
||||
b_cogealac:0 "Cogealac"
|
||||
b_coin:0 "Coín"
|
||||
b_colberg:0 "Colberg"
|
||||
|
|
@ -4528,8 +4609,6 @@
|
|||
b_dekcha:0 "Dekcha"
|
||||
b_delaram:0 "Delaram"
|
||||
b_deleus:0 "Deleus"
|
||||
b_delft:0 "Den Hagge"
|
||||
b_delfzijl:0 "Appingedam"
|
||||
b_delgo:0 "Delgo"
|
||||
b_della_gherardesca:0 "Della Gherardesca"
|
||||
b_delmenhorst:0 "Delmenhorst"
|
||||
|
|
@ -4684,7 +4763,6 @@
|
|||
b_dohna:0 "Dohna"
|
||||
b_dohrighat:0 "Dohrighat"
|
||||
b_doka:0 "Doka"
|
||||
b_dokkum:0 "Dokkum"
|
||||
b_dol:0 "Dol"
|
||||
b_dole:0 "Dole"
|
||||
b_dolnidabknik:0 "Dolni Dabnik"
|
||||
|
|
@ -4720,7 +4798,6 @@
|
|||
b_doros:0 "Doros"
|
||||
b_dorostorum:0 "Silistra"
|
||||
b_dorosturum:0 "Dorostotum"
|
||||
b_dort:0 "Ridderkerk"
|
||||
b_dortmund:0 "Dortmund"
|
||||
b_dorylaion:0 "Dorylaion"
|
||||
b_doshermanas:0 "Dos Hermanas"
|
||||
|
|
@ -4853,7 +4930,6 @@
|
|||
b_ecija:0 "Écija"
|
||||
b_eckero:0 "Eckerö"
|
||||
b_eckersberg:0 "Eckersberg"
|
||||
b_edam:0 "Purmerend"
|
||||
b_edessa:0 "Edessa"
|
||||
b_edesurfa:0 "Urfa"
|
||||
b_edfu:0 "Edfu"
|
||||
|
|
@ -4953,8 +5029,6 @@
|
|||
b_emden:0 "Emden"
|
||||
b_emesa:0 "Emesa"
|
||||
b_emli:0 "Emli"
|
||||
b_emmen:0 "Veendam"
|
||||
b_emmerich:0 "Veendamian"
|
||||
b_empoli:0 "Empoli"
|
||||
b_emptyspot:0 "Emptyspot"
|
||||
b_empuries:0 "Empúries"
|
||||
|
|
@ -5580,7 +5654,6 @@
|
|||
b_gronau:0 "Gronau"
|
||||
b_grong:1 "Grong"
|
||||
b_gronhogen:0 "Grönhögen"
|
||||
b_groningen:0 "Assen"
|
||||
b_grossenhain:0 "Grossenhain"
|
||||
b_grosseto:0 "Grosseto"
|
||||
b_grunberg:0 "Zielona Góra"
|
||||
|
|
@ -5645,7 +5718,6 @@
|
|||
b_gythio:0 "Gythio"
|
||||
b_gyulafehervar:0 "Gyulafehérvár"
|
||||
b_gzhatsky:0 "Gzhatsky"
|
||||
b_haarlem:0 "Haarlem"
|
||||
b_habban:0 "Habban"
|
||||
b_habiganj:0 "Habiganj"
|
||||
b_habisjaldak:0 "Habis Jaldak"
|
||||
|
|
@ -5750,7 +5822,6 @@
|
|||
b_harburg:0 "Harburg"
|
||||
b_hardanger:1 "Hardanger"
|
||||
b_hardenburg:0 "Hardenburg"
|
||||
b_harderwijk:0 "Harderwijk"
|
||||
b_hardoi:0 "Hardoi"
|
||||
b_harenc:0 "Harenc"
|
||||
b_harfleur:0 "Harfleur"
|
||||
|
|
@ -5763,7 +5834,6 @@
|
|||
b_harjumaa:0 "Harjumaa"
|
||||
b_harlau:0 "Hârlau"
|
||||
b_harlech:0 "Harlech"
|
||||
b_harlingen:0 "Harlingen"
|
||||
b_harmashi:0 "Harmashi"
|
||||
b_harnosand:0 "Härnösand"
|
||||
b_haro:0 "Haro"
|
||||
|
|
@ -6454,7 +6524,6 @@
|
|||
b_kammatadurga:0 "Kammatadurga"
|
||||
b_kammin:0 "Kammin"
|
||||
b_kamnik:0 "Kamnik"
|
||||
b_kampen:0 "Steenwijk"
|
||||
b_kampil:0 "Kampil"
|
||||
b_kampili:0 "Kampili"
|
||||
b_kamthana:0 "Kamthana"
|
||||
|
|
@ -7416,7 +7485,6 @@
|
|||
b_leczyka:0 "Leczyka"
|
||||
b_ledbury:0 "Ledbury"
|
||||
b_leer:0 "Leer"
|
||||
b_leeuwarden:0 "Leeuwarden"
|
||||
b_lefkas:0 "Lefkas"
|
||||
b_legnano:0 "Legnano"
|
||||
b_legnica:0 "Legnica"
|
||||
|
|
@ -8038,7 +8106,6 @@
|
|||
b_medak:0 "Medak"
|
||||
b_medantaka:0 "Medantaka"
|
||||
b_medea:0 "Médéa"
|
||||
b_medemblik:0 "Hoorn"
|
||||
b_medeniken:0 "Medeniken"
|
||||
b_medenine:0 "Medenine"
|
||||
b_medianadearagon:0 "Mediana de Aragón"
|
||||
|
|
@ -8139,7 +8206,6 @@
|
|||
b_miastko:0 "Miastko"
|
||||
b_michalowo:0 "Rypin"
|
||||
b_midar:0 "Midar"
|
||||
b_middelburg:0 "Middelburg"
|
||||
b_middelfart:0 "Middelfart"
|
||||
b_midhrawi:0 "Midhrawi"
|
||||
b_midjnaberd:0 "Midjnaberd"
|
||||
|
|
@ -8653,7 +8719,6 @@
|
|||
b_nieuwpoort:0 "Nieuwpoort"
|
||||
b_nih:0 "Nih"
|
||||
b_nihawand:0 "Nihawand"
|
||||
b_nijmegen:0 "Nijmegen"
|
||||
b_nikaea:0 "Nikaea"
|
||||
b_nikelshagen:0 "Nikelshagen"
|
||||
b_nikiforosfokas:0 "Nikiforos Fokas"
|
||||
|
|
@ -8866,7 +8931,6 @@
|
|||
b_omidiyeh:0 "Omidiyeh"
|
||||
b_omis:0 "Omiš"
|
||||
b_omjerky:0 "Omjerky"
|
||||
b_ommen:0 "Deventer"
|
||||
b_onate:0 "Oñate"
|
||||
b_onegaborg:0 "Äänislinna"
|
||||
b_onkhiv:0 "Onkhiv"
|
||||
|
|
@ -9813,7 +9877,6 @@
|
|||
b_rosenberg:0 "Rosenberg"
|
||||
b_rosendaal:0 "Rosendaal"
|
||||
b_rosenfelde:0 "Rosenfelde"
|
||||
b_roses:0 "Roses"
|
||||
b_rosetta:0 "Rosetta"
|
||||
b_rosiorriidevede:0 "Rosiorii de Vede"
|
||||
b_roskilde:0 "Roskilde"
|
||||
|
|
@ -9828,7 +9891,6 @@
|
|||
b_rostovnadonu:0 "Rostov-na-Donu"
|
||||
b_roth:0 "Roth"
|
||||
b_rothenburg:0 "Rothenburg"
|
||||
b_rotterdam:0 "Rotterdam"
|
||||
b_rottweil:0 "Rottweil"
|
||||
b_roucy:0 "Tergnier"
|
||||
b_roudavar:0 "Roud Avar"
|
||||
|
|
@ -10793,14 +10855,12 @@
|
|||
b_stauropolis:0 "Stauropolis"
|
||||
b_stavanger:0 "Stavanger"
|
||||
b_stavelot:0 "Stavelot"
|
||||
b_staveren:0 "Sneek"
|
||||
b_stavit:0 "St Avit"
|
||||
b_stavoren:0 "Stavoren"
|
||||
b_stbenedek:0 "St Benedek"
|
||||
b_stbertrand:0 "St Bertrand"
|
||||
b_stblasien:0 "Sankt Blasien"
|
||||
b_stdenis:0 "St Denis"
|
||||
b_steenwijk:0 "Drachten"
|
||||
b_steftimi:0 "Steftimi"
|
||||
b_stegeborg:0 "Stegeborg"
|
||||
b_steinfurt:0 "Steinfurt"
|
||||
|
|
@ -11311,7 +11371,6 @@
|
|||
b_tickhill:0 "Tickhill"
|
||||
b_tidergit:0 "Tidergit"
|
||||
b_tidri:0 "Tidri"
|
||||
b_tiel:0 "Tiel"
|
||||
b_tiemenguan:0 "Tiemenguan"
|
||||
b_tifash:0 "Tifash"
|
||||
b_tiflet:0 "Tiflet"
|
||||
|
|
@ -11753,7 +11812,6 @@
|
|||
b_utan_namdal:1 "Steinkjer"
|
||||
b_utena:0 "Utena"
|
||||
b_utgir:0 "Utgir"
|
||||
b_utrecth:0 "Gouda"
|
||||
b_utrera:0 "Utrera"
|
||||
b_utrillas:0 "Jioca"
|
||||
b_utsjoki:0 "Utsjoki"
|
||||
|
|
@ -12099,7 +12157,6 @@
|
|||
b_wad:0 "Wad"
|
||||
b_wadan:0 "Wadan"
|
||||
b_waddan:0 "Waddan"
|
||||
b_wadeilannen:1 "Terschelling"
|
||||
b_wadern:0 "Wadern"
|
||||
b_wadhar:0 "Wadhar"
|
||||
b_wadi_al_sir:0 "Wadi Al Sir"
|
||||
|
|
@ -12512,7 +12569,6 @@
|
|||
b_zurbatiyah:0 "Zurbayiyah"
|
||||
b_zurich:0 "Zürich"
|
||||
b_zussow:0 "Züssow"
|
||||
b_zutphen:0 "Arnhem"
|
||||
b_zuwara:0 "Zuwara"
|
||||
b_zuwayid:0 "Zuwayid"
|
||||
b_zvartnots:0 "Zvartnots"
|
||||
|
|
@ -12523,7 +12579,6 @@
|
|||
b_zwettl:0 "Zwettl"
|
||||
b_zwickau:0 "Zwickau"
|
||||
b_zwiefalten:0 "Zweifalten"
|
||||
b_zwolle:0 "Zwolle"
|
||||
c_aachen:0 "Aachen"
|
||||
c_aachen_adj:0 "Aachener"
|
||||
c_aalborg:0 "Aalborg"
|
||||
|
|
@ -12728,8 +12783,6 @@
|
|||
c_arles_adj:0 "Arlese"
|
||||
c_armail:0 "Armail"
|
||||
c_armail_adj:0 "Armail"
|
||||
c_arnhem:0 "Utrecht"
|
||||
c_arnhem_adj:0 "Utrechtian"
|
||||
c_arnsberg:0 "Sauerland"
|
||||
c_arnsberg_adj:0 "Sauerlander"
|
||||
c_aror:0 "Aror"
|
||||
|
|
@ -13259,8 +13312,6 @@
|
|||
c_djenne_adj:0 "Djennian"
|
||||
c_djerba:0 "Djerba"
|
||||
c_djerba_adj:0 "Djerban"
|
||||
c_dokkum:0 "Groningen"
|
||||
c_dokkum_adj:0 "Groningen"
|
||||
c_dole:0 "Dole"
|
||||
c_dole_adj:0 "Dolian"
|
||||
c_domazlice:0 "Domažlice"
|
||||
|
|
@ -13402,8 +13453,6 @@
|
|||
c_freiburg_adj:0 "Freiburger"
|
||||
c_freistadt:0 "Freistadt"
|
||||
c_freistadt_adj:0 "Freistadter"
|
||||
c_frisia:0 "Friesland"
|
||||
c_frisia_adj:0 "Frisian"
|
||||
c_friuli:0 "Friuli"
|
||||
c_friuli_adj:0 "Friulan"
|
||||
c_frontenhausen:0 "Frontenhausen"
|
||||
|
|
@ -13510,16 +13559,12 @@
|
|||
c_grobin:0 "Grobin"
|
||||
c_grobin_adj:0 "Grobinian"
|
||||
c_grodno:0 "Grodno"
|
||||
c_groningen:0 "Drenthe"
|
||||
c_groningen_adj:0 "Drenthen"
|
||||
c_grunberg:0 "Zielona Góra"
|
||||
c_grunberg_adj:0 "Zielonogórzanin"
|
||||
c_grunningen:0 "Grünningen"
|
||||
c_grunningen_adj:0 "Grünninger"
|
||||
c_gudbrandsdalir:1 "Gudbrandsdalen"
|
||||
c_gudbrandsdalir_adj:0 "Gudbrandsdalenian"
|
||||
c_nijmegen:0 "Nijmegen"
|
||||
c_nijmegen_adj:0 "Nijmegenaar"
|
||||
c_gurgan:0 "Gurgan"
|
||||
c_gurgan_adj:0 "Gurgian"
|
||||
c_gurganj:0 "Gurganj"
|
||||
|
|
@ -13626,8 +13671,6 @@
|
|||
c_hohenburg_adj:0 "Hohenburger"
|
||||
c_hohenlohe:0 "Hohenlohe"
|
||||
c_hohenlohe_adj:0 "Hohenloher"
|
||||
c_holland:0 "Zuid-Holland"
|
||||
c_holland_adj:0 "Hollander"
|
||||
c_holstein:0 "Holstein"
|
||||
c_holstein_adj:0 "Holsteinian"
|
||||
c_homs:0 "Homs"
|
||||
|
|
@ -14547,8 +14590,6 @@
|
|||
c_ouled_nail_adj:0 "Ouled Nailian"
|
||||
c_oulu:0 "Oulu"
|
||||
c_oulu_adj:0 "Oulu"
|
||||
c_oversticht:0 "Overijssel"
|
||||
c_oversticht_adj:0 "Overjisselian"
|
||||
c_paderborn:0 "Paderborn"
|
||||
c_paderborn_adj:0 "Paderborner"
|
||||
c_padova:0 "Padova"
|
||||
|
|
@ -15176,8 +15217,6 @@
|
|||
c_teramo_adj:0 "Teramean"
|
||||
c_terebovl:0 "Terebovl"
|
||||
c_terebovl_adj:0 "Terebovlian"
|
||||
c_terschelling:0 "Terschelling"
|
||||
c_terschelling_adj:0 "Terschellinger"
|
||||
c_thalner:0 "Thalner"
|
||||
c_thalner_adj:0 "Thalner"
|
||||
c_thana:0 "Thana"
|
||||
|
|
@ -15537,8 +15576,6 @@
|
|||
c_west_kiilt_adj:0 "West Kiilter"
|
||||
c_west_qamuda:0 "West Qamuda"
|
||||
c_west_qamuda_adj:0 "West Qamudan"
|
||||
c_westfriesland:0 "Noord-Holland"
|
||||
c_westfriesland_adj:0 "Hollander"
|
||||
c_wiek:0 "Wiek"
|
||||
c_wiltberg:0 "Wiltberg"
|
||||
c_wiltberg_adj:0 "Wiltberger"
|
||||
|
|
@ -15602,8 +15639,6 @@
|
|||
c_zatec:0 "Karlovy Vary"
|
||||
c_zatec_adj:0 "Karlovarský"
|
||||
c_zavrsje:0 "Završje"
|
||||
c_zeeland:0 "Zeeland"
|
||||
c_zeeland_adj:0 "Zeelander"
|
||||
c_zeila:0 "Zeila"
|
||||
c_zemigalians:0 "Semigallia"
|
||||
c_zemigalians_adj:0 "Semigallian"
|
||||
|
|
@ -15623,8 +15658,6 @@
|
|||
c_zollern_adj:0 "Zollern"
|
||||
c_zurich:0 "Zürich"
|
||||
c_zurich_adj:0 "Züricher"
|
||||
c_zutphen:0 "Arnhem"
|
||||
c_zutphen_adj:0 "Zutphener"
|
||||
c_zyriane:0 "Zyriane"
|
||||
c_zyriane_adj:0 "Zyrian"
|
||||
d_aarjetje:0 "Åarjetje"
|
||||
|
|
@ -15936,8 +15969,6 @@
|
|||
d_followers_arjuna_adj:0 "Arjuna"
|
||||
d_franconia:0 "Franconia"
|
||||
d_franconia_adj:0 "Franconian"
|
||||
d_frisia:0 "Frisia"
|
||||
d_frisia_adj:0 "Frisian"
|
||||
d_frisian_navy:0 "North Sea Cogs"
|
||||
d_frisian_navy_adj:0 "North Sea"
|
||||
d_friuli:0 "Friuli"
|
||||
|
|
@ -15955,8 +15986,6 @@
|
|||
d_gauda_adj:0 "Gaudan"
|
||||
d_geats:0 "Gauthiod"
|
||||
d_geats_adj:0 "Geatish"
|
||||
d_gelre:0 "Gelre"
|
||||
d_gelre_adj:0 "Gelrean"
|
||||
d_genoa:0 "Liguria"
|
||||
d_genoa_adj:0 "Ligurian"
|
||||
d_genoese_navy:0 "Ligurian Galleys"
|
||||
|
|
@ -16018,8 +16047,6 @@
|
|||
d_hesse_adj:0 "Hessian"
|
||||
d_hlynov:0 "Ugra"
|
||||
d_hlynov_adj:0 "Ugran"
|
||||
d_holland:0 "Holland"
|
||||
d_holland_adj:0 "Hollander"
|
||||
d_holstein:0 "Holstein"
|
||||
d_holstein_adj:0 "Holsteiner"
|
||||
d_holy_sepulchre:0 "Brotherhood of the Holy Sepulchre"
|
||||
|
|
@ -16642,8 +16669,6 @@
|
|||
d_ural_pre:0 "Uralo"
|
||||
d_usora:1 "Zachlumia"
|
||||
d_usora_adj:0 "Zachlumian"
|
||||
d_utrecht:0 "Overijssel"
|
||||
d_utrecht_adj:0 "Utrechtian"
|
||||
d_uzboy:0 "Uzboy"
|
||||
d_vanga:0 "Vanga"
|
||||
d_varangian_guard_article:0 "the "
|
||||
|
|
@ -16963,8 +16988,6 @@
|
|||
k_finland:0 "Finland"
|
||||
k_finland_adj:0 "Finnish"
|
||||
k_finland_pre:0 "Finno"
|
||||
k_frisia:0 "Netherlands"
|
||||
k_frisia_adj:0 "Dutch"
|
||||
k_gandhara:0 "Gandhara"
|
||||
k_gandhara_adj:0 "Gandharan"
|
||||
k_genoa:0 "Genoa"
|
||||
|
|
@ -17968,8 +17991,6 @@
|
|||
c_dawraq_adj:0 "Dawraqi"
|
||||
c_firaun:0 "Firaun"
|
||||
c_firaun_adj:0 "Firauni"
|
||||
c_flevoland:0 "Flevoland"
|
||||
c_flevoland_adj:0 "Flevolander"
|
||||
c_ghazza:0 "Ghazza"
|
||||
c_ghazza_adj:0 "Ghazzan"
|
||||
c_hauran:0 "Hauran"
|
||||
|
|
@ -25167,9 +25188,6 @@
|
|||
k_gwynedd: "Gwynedd"
|
||||
k_gwynedd_adj: "Gwyneddian"
|
||||
|
||||
e_europa: "Europa"
|
||||
e_europa_adj: "European"
|
||||
|
||||
#NEOW Dyanmic Titles
|
||||
#romanticist Titles
|
||||
k_gondor: "Gondor"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue