Map Painting #9

This commit is contained in:
Hannah-Dagemark 2024-07-17 01:57:05 +02:00
commit 3f7a77f3cf
104 changed files with 1596 additions and 520 deletions

View file

@ -0,0 +1,6 @@
#Auvurgen
graphical_culture = western_european_gfx
graphical_culture_2d = western_european_2d
color = { 62 100 245 }

View file

@ -0,0 +1,6 @@
#Illria
graphical_culture = western_european_gfx
graphical_culture_2d = western_european_2d
color = { 100 100 100 }

View file

@ -0,0 +1,6 @@
#Litgarten
graphical_culture = western_european_gfx
graphical_culture_2d = western_european_2d
color = { 56 186 235 }

View file

@ -0,0 +1,6 @@
#Moskva
graphical_culture = western_european_gfx
graphical_culture_2d = western_european_2d
color = { 100 100 100 }

View file

@ -0,0 +1,6 @@
#Novgorod
graphical_culture = western_european_gfx
graphical_culture_2d = western_european_2d
color = { 21 205 35 }

View file

@ -0,0 +1,6 @@
#Ostarruthian Empire
graphical_culture = western_european_gfx
graphical_culture_2d = western_european_2d
color = { 100 100 100 }

View file

@ -443,4 +443,34 @@ GAL = {
ISL = {
color = rgb { 100 100 100 }
color_ui = rgb { 100 100 100 }
}
NGD = {
color = rgb { 21 205 35 }
color_ui = rgb { 21 205 35 }
}
LIN = {
color = rgb { 56 186 235 }
color_ui = rgb { 56 186 235 }
}
AUU = {
color = rgb { 62 100 245 }
color_ui = rgb { 62 100 245 }
}
ILL = {
color = rgb { 100 100 100 }
color_ui = rgb { 100 100 100 }
}
MOS = {
color = rgb { 100 100 100 }
color_ui = rgb { 100 100 100 }
}
OST = {
color = rgb { 100 100 100 }
color_ui = rgb { 100 100 100 }
}

View file

@ -81,4 +81,10 @@ CEE = "countries/Castyrian Empire.txt"
ZDS = "countries/Zaladoslavie.txt"
RDS = "countries/Regencia del sud.txt"
GAL = "countries/Galicia.txt"
ISL = "countries/Ísland.txt"
ISL = "countries/Ísland.txt"
NGD = "countries/Novgorod.txt"
LIN = "countries/Litgarten.txt"
AUU = "countries/Auvurgen.txt"
ILL = "countries/Illria.txt"
MOS = "countries/Moskva.txt"
OST = "countries/Ostarruthian Empire.txt"

57
counlocfix.py Normal file
View file

@ -0,0 +1,57 @@
import re
# Input and output file paths
input_file_path = "./localisation/english/countries_l_english.yml"
output_file_path = "./localisation/english/countries_l_english_new.yml"
# Read the content of the input file
with open(input_file_path, 'r') as file:
lines = file.readlines()
# Prepare a dictionary to store the tag definitions
tags = {}
# Regular expression pattern to match the lines
pattern = re.compile(r'(\w+)_neutrality:0 "(.*)"')
pattern_def = re.compile(r'(\w+)_neutrality_DEF:0 "(.*)"')
# Extract neutrality definitions
for line in lines:
match = pattern.match(line.strip())
if match:
tag = match.group(1)
name = match.group(2)
if tag not in tags:
tags[tag] = {'neutrality': name}
match_def = pattern_def.match(line.strip())
if match_def:
tag = match_def.group(1)
definition = match_def.group(2)
if tag not in tags:
tags[tag] = {}
tags[tag]['neutrality_DEF'] = definition
# Write the new content to the output file
with open(output_file_path, 'w') as file:
# Write original content
for line in lines:
file.write(line)
file.write("\n\n# Additional Ideology Definitions\n\n")
for tag, definitions in tags.items():
if 'neutrality' in definitions and 'neutrality_DEF' in definitions:
c_name = definitions['neutrality']
c_def = definitions['neutrality_DEF']
file.write("\n") # Write a blank line for spacing
file.write(f"{tag}_neutrality:0 \"{c_name}\"\n")
file.write(f"{tag}_neutrality_DEF:0 \"{c_def}\"\n")
file.write(f"{tag}_democratic:0 \"{c_name}\"\n")
file.write(f"{tag}_democratic_DEF:0 \"{c_def}\"\n")
file.write(f"{tag}_communism:0 \"{c_name}\"\n")
file.write(f"{tag}_communism_DEF:0 \"{c_def}\"\n")
file.write(f"{tag}_fascism:0 \"{c_name}\"\n")
file.write(f"{tag}_fascism_DEF:0 \"{c_def}\"\n")
file.write("\n") # Write a blank line for spacing

View file

@ -0,0 +1,25 @@
## capital =
set_politics = {
ruling_party = neutrality
last_election = "1935.6.1"
election_frequency = 12
elections_allowed = yes
}
set_popularities = {
democratic = 15
fascism = 2
communism = 3
neutrality = 80
}
create_country_leader = {
name = "Generic Generico"
desc = ""
picture = ""
ideology = despotism
traits = {
#
}
}

View file

@ -0,0 +1,25 @@
## capital =
set_politics = {
ruling_party = neutrality
last_election = "1935.6.1"
election_frequency = 12
elections_allowed = yes
}
set_popularities = {
democratic = 15
fascism = 2
communism = 3
neutrality = 80
}
create_country_leader = {
name = "Generic Generico"
desc = ""
picture = ""
ideology = despotism
traits = {
#
}
}

View file

@ -0,0 +1,25 @@
## capital =
set_politics = {
ruling_party = neutrality
last_election = "1935.6.1"
election_frequency = 12
elections_allowed = yes
}
set_popularities = {
democratic = 15
fascism = 2
communism = 3
neutrality = 80
}
create_country_leader = {
name = "Generic Generico"
desc = ""
picture = ""
ideology = despotism
traits = {
#
}
}

View file

@ -0,0 +1,25 @@
## capital =
set_politics = {
ruling_party = neutrality
last_election = "1935.6.1"
election_frequency = 12
elections_allowed = yes
}
set_popularities = {
democratic = 15
fascism = 2
communism = 3
neutrality = 80
}
create_country_leader = {
name = "Generic Generico"
desc = ""
picture = ""
ideology = despotism
traits = {
#
}
}

View file

@ -0,0 +1,25 @@
## capital =
set_politics = {
ruling_party = neutrality
last_election = "1935.6.1"
election_frequency = 12
elections_allowed = yes
}
set_popularities = {
democratic = 15
fascism = 2
communism = 3
neutrality = 80
}
create_country_leader = {
name = "Generic Generico"
desc = ""
picture = ""
ideology = despotism
traits = {
#
}
}

View file

@ -0,0 +1,25 @@
## capital =
set_politics = {
ruling_party = neutrality
last_election = "1935.6.1"
election_frequency = 12
elections_allowed = yes
}
set_popularities = {
democratic = 15
fascism = 2
communism = 3
neutrality = 80
}
create_country_leader = {
name = "Generic Generico"
desc = ""
picture = ""
ideology = despotism
traits = {
#
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = ILL
owner = ILL
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = ILL
owner = ILL
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = NGD
owner = NGD
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = NGD
owner = NGD
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = NGD
owner = NGD
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = NGD
owner = NGD
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = NGD
owner = NGD
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = AUU
owner = AUU
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = NGD
owner = NGD
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = NGD
owner = NGD
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = LIN
owner = LIN
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = ILL
owner = ILL
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = NGD
owner = NGD
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = NGD
owner = NGD
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = NGD
owner = NGD
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = NGD
owner = NGD
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = LIN
owner = LIN
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = NGD
owner = NGD
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = LIN
owner = LIN
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = NGD
owner = NGD
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = NGD
owner = NGD
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = AUU
owner = AUU
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = NGD
owner = NGD
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = AUU
owner = AUU
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = AUU
owner = AUU
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = LIN
owner = LIN
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = LIN
owner = LIN
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = AUU
owner = AUU
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = AUU
owner = AUU
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = AUU
owner = AUU
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = NGD
owner = NGD
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = AUU
owner = AUU
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = NGD
owner = NGD
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = NGD
owner = NGD
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = LIN
owner = LIN
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = AUU
owner = AUU
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = ILL
owner = ILL
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = AUU
owner = AUU
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = LIN
owner = LIN
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = NGD
owner = NGD
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = LIN
owner = LIN
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = LIN
owner = LIN
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = LIN
owner = LIN
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = LIN
owner = LIN
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = NGD
owner = NGD
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = AUU
owner = AUU
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = LIN
owner = LIN
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = MOS
owner = MOS
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = MOS
owner = MOS
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = MOS
owner = MOS
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = MOS
owner = MOS
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = MOS
owner = MOS
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = MOS
owner = MOS
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = MOS
owner = MOS
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = MOS
owner = MOS
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = MOS
owner = MOS
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

View file

@ -8,7 +8,7 @@ state={
manpower=1000
state_category = rural
history={
add_core_of = ABC
owner = ABC
add_core_of = OST
owner = OST
}
}

Some files were not shown because too many files have changed in this diff Show more