Map Painting #9
This commit is contained in:
parent
29ebfb9d81
commit
3f7a77f3cf
104 changed files with 1596 additions and 520 deletions
6
common/countries/Auvurgen.txt
Normal file
6
common/countries/Auvurgen.txt
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#Auvurgen
|
||||
|
||||
graphical_culture = western_european_gfx
|
||||
graphical_culture_2d = western_european_2d
|
||||
|
||||
color = { 62 100 245 }
|
||||
6
common/countries/Illria.txt
Normal file
6
common/countries/Illria.txt
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#Illria
|
||||
|
||||
graphical_culture = western_european_gfx
|
||||
graphical_culture_2d = western_european_2d
|
||||
|
||||
color = { 100 100 100 }
|
||||
6
common/countries/Litgarten.txt
Normal file
6
common/countries/Litgarten.txt
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#Litgarten
|
||||
|
||||
graphical_culture = western_european_gfx
|
||||
graphical_culture_2d = western_european_2d
|
||||
|
||||
color = { 56 186 235 }
|
||||
6
common/countries/Moskva.txt
Normal file
6
common/countries/Moskva.txt
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#Moskva
|
||||
|
||||
graphical_culture = western_european_gfx
|
||||
graphical_culture_2d = western_european_2d
|
||||
|
||||
color = { 100 100 100 }
|
||||
6
common/countries/Novgorod.txt
Normal file
6
common/countries/Novgorod.txt
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#Novgorod
|
||||
|
||||
graphical_culture = western_european_gfx
|
||||
graphical_culture_2d = western_european_2d
|
||||
|
||||
color = { 21 205 35 }
|
||||
6
common/countries/Ostarruthian Empire.txt
Normal file
6
common/countries/Ostarruthian Empire.txt
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#Ostarruthian Empire
|
||||
|
||||
graphical_culture = western_european_gfx
|
||||
graphical_culture_2d = western_european_2d
|
||||
|
||||
color = { 100 100 100 }
|
||||
|
|
@ -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 }
|
||||
}
|
||||
|
|
@ -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
57
counlocfix.py
Normal 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
|
||||
25
history/countries/AUU - Auvurgen.txt
Normal file
25
history/countries/AUU - Auvurgen.txt
Normal 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 = {
|
||||
#
|
||||
}
|
||||
}
|
||||
25
history/countries/ILL - Illria.txt
Normal file
25
history/countries/ILL - Illria.txt
Normal 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 = {
|
||||
#
|
||||
}
|
||||
}
|
||||
25
history/countries/LIN - Litgarten.txt
Normal file
25
history/countries/LIN - Litgarten.txt
Normal 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 = {
|
||||
#
|
||||
}
|
||||
}
|
||||
25
history/countries/MOS - Moskva.txt
Normal file
25
history/countries/MOS - Moskva.txt
Normal 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 = {
|
||||
#
|
||||
}
|
||||
}
|
||||
25
history/countries/NGD - Novgorod.txt
Normal file
25
history/countries/NGD - Novgorod.txt
Normal 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 = {
|
||||
#
|
||||
}
|
||||
}
|
||||
25
history/countries/OST - Ostarruthian Empire.txt
Normal file
25
history/countries/OST - Ostarruthian Empire.txt
Normal 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 = {
|
||||
#
|
||||
}
|
||||
}
|
||||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = ILL
|
||||
owner = ILL
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = ILL
|
||||
owner = ILL
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = NGD
|
||||
owner = NGD
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = NGD
|
||||
owner = NGD
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = NGD
|
||||
owner = NGD
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = NGD
|
||||
owner = NGD
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = NGD
|
||||
owner = NGD
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = AUU
|
||||
owner = AUU
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = NGD
|
||||
owner = NGD
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = NGD
|
||||
owner = NGD
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = LIN
|
||||
owner = LIN
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = ILL
|
||||
owner = ILL
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = NGD
|
||||
owner = NGD
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = NGD
|
||||
owner = NGD
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = NGD
|
||||
owner = NGD
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = NGD
|
||||
owner = NGD
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = LIN
|
||||
owner = LIN
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = NGD
|
||||
owner = NGD
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = LIN
|
||||
owner = LIN
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = NGD
|
||||
owner = NGD
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = NGD
|
||||
owner = NGD
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = AUU
|
||||
owner = AUU
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = NGD
|
||||
owner = NGD
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = AUU
|
||||
owner = AUU
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = AUU
|
||||
owner = AUU
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = LIN
|
||||
owner = LIN
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = LIN
|
||||
owner = LIN
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = AUU
|
||||
owner = AUU
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = AUU
|
||||
owner = AUU
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = AUU
|
||||
owner = AUU
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = NGD
|
||||
owner = NGD
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = AUU
|
||||
owner = AUU
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = NGD
|
||||
owner = NGD
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = NGD
|
||||
owner = NGD
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = LIN
|
||||
owner = LIN
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = AUU
|
||||
owner = AUU
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = ILL
|
||||
owner = ILL
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = AUU
|
||||
owner = AUU
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = LIN
|
||||
owner = LIN
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = NGD
|
||||
owner = NGD
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = LIN
|
||||
owner = LIN
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = LIN
|
||||
owner = LIN
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = LIN
|
||||
owner = LIN
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = LIN
|
||||
owner = LIN
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = NGD
|
||||
owner = NGD
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = AUU
|
||||
owner = AUU
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = LIN
|
||||
owner = LIN
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = MOS
|
||||
owner = MOS
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = MOS
|
||||
owner = MOS
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = MOS
|
||||
owner = MOS
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = MOS
|
||||
owner = MOS
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = MOS
|
||||
owner = MOS
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = MOS
|
||||
owner = MOS
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = MOS
|
||||
owner = MOS
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = MOS
|
||||
owner = MOS
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = MOS
|
||||
owner = MOS
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ state={
|
|||
manpower=1000
|
||||
state_category = rural
|
||||
history={
|
||||
add_core_of = ABC
|
||||
owner = ABC
|
||||
add_core_of = OST
|
||||
owner = OST
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
Loading…
Add table
Add a link
Reference in a new issue