Compare commits

...
Sign in to create a new pull request.

3 commits

Author SHA1 Message Date
lilylindstrand
375946b367 Merge oopsie 2024-09-27 18:50:58 +02:00
Hannah Dagemark
194725747e
Create README.md 2024-09-25 10:45:20 +02:00
3f7a77f3cf Map Painting #9 2024-07-17 01:57:05 +02:00
109 changed files with 1636 additions and 509 deletions

1
README.md Normal file
View file

@ -0,0 +1 @@
This is the github project for the Hearts of Iron 4 mod "Years Gone By" Set in a dystopian future where the world has been bombed back into a sort of futuristic yet primitive stage. It draws inspiration from Fallout, The walking dead, and other similar end-of-the-world stories. But in this story the focus is not on the single people surviving the wasteland, rather this mod tries to use Hearts of Iron to simulate the rise of new nations following the rebirth of humanity, hundreds of years after the old world order fell apart.

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

@ -135,6 +135,7 @@ GCT = {
color_ui = rgb { 21 31 102 }
}
<<<<<<< Updated upstream
LSA = {
color = rgb { 232 212 192 }
color_ui = rgb { 232 212 192 }
@ -443,4 +444,39 @@ 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 }
=======
FLA = {
color = rgb { 190 170 0 }
color_ui = rgb { 190 170 0 }
>>>>>>> Stashed changes
}

View file

@ -0,0 +1,6 @@
#flanders
graphical_culture = western_european_gfx
graphical_culture_2d = western_european_2d
color = { 190 170 0 }

View file

@ -19,6 +19,7 @@ FAL = "countries/Falandia.txt"
SVL = "countries/Sarvundland.txt"
TTR = "countries/TallRepublic.txt"
GTL = "countries/Gaestertland.txt"
<<<<<<< Updated upstream
GCT = "countries/Gunther Cult.txt"
LSA = "countries/Linguisatia.txt"
VTR = "countries/Vasterreich.txt"
@ -81,4 +82,14 @@ 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"
=======
GCT = "countries/Günther Cult.txt"
FLA = "countries/flanders.txt"
>>>>>>> Stashed changes

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

@ -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
}
}

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