First batch
This commit is contained in:
commit
030cb1d701
BIN
map/Guigland 2024-07-16-20-13.jpeg
Normal file
BIN
map/Guigland 2024-07-16-20-13.jpeg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 577 KiB |
1
map/Guigland Minimal 2024-07-16-20-14.json
Normal file
1
map/Guigland Minimal 2024-07-16-20-14.json
Normal file
File diff suppressed because one or more lines are too long
227
map/map_to_tiddler.py
Normal file
227
map/map_to_tiddler.py
Normal file
|
|
@ -0,0 +1,227 @@
|
||||||
|
import json
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import random
|
||||||
|
|
||||||
|
def create_tiddler(title, content, tags=None):
|
||||||
|
tiddler = f"title: {title}\n"
|
||||||
|
if tags:
|
||||||
|
tiddler += f"tags: {' '.join(tags)}\n"
|
||||||
|
tiddler += "\n"
|
||||||
|
tiddler += content
|
||||||
|
return tiddler
|
||||||
|
|
||||||
|
def parse_population(pop_string):
|
||||||
|
return int(pop_string.replace('.', '').replace(',', ''))
|
||||||
|
|
||||||
|
def generate_city_link(burg, cells):
|
||||||
|
name = burg['name']
|
||||||
|
population = parse_population(str(burg.get('population', 0)))
|
||||||
|
size = min(max(int(population/1000), 15), 60) # Size between 15 and 60
|
||||||
|
seed = random.randint(1, 2000000000)
|
||||||
|
|
||||||
|
coast = 0
|
||||||
|
river = 0
|
||||||
|
try:
|
||||||
|
cell = cells[burg['cell']]
|
||||||
|
coast = 1 if cell.get('haven', 0) == 1 else 0
|
||||||
|
river = 1 if cell.get('river', 0) else 0
|
||||||
|
except (IndexError, KeyError):
|
||||||
|
pass
|
||||||
|
|
||||||
|
citadel = random.choice([0, 1])
|
||||||
|
urban_castle = random.choice([0, 1])
|
||||||
|
plaza = random.choice([0, 1])
|
||||||
|
temple = random.choice([0, 1])
|
||||||
|
walls = 1 if population > 5000 else random.choice([0, 1])
|
||||||
|
shantytown = random.choice([0, 1])
|
||||||
|
|
||||||
|
base_url = "https://watabou.github.io/city-generator/?"
|
||||||
|
params = {
|
||||||
|
"size": size,
|
||||||
|
"seed": seed,
|
||||||
|
"name": name.replace(" ", "+"),
|
||||||
|
"greens": 0,
|
||||||
|
"citadel": citadel,
|
||||||
|
"urban_castle": urban_castle,
|
||||||
|
"plaza": plaza,
|
||||||
|
"temple": temple,
|
||||||
|
"walls": walls,
|
||||||
|
"shantytown": shantytown,
|
||||||
|
"coast": coast,
|
||||||
|
"river": river,
|
||||||
|
"gates": -1
|
||||||
|
}
|
||||||
|
url = base_url + "&".join(f"{k}={v}" for k, v in params.items())
|
||||||
|
return f'<iframe width="100%" height="500" src="{url}"></iframe>'
|
||||||
|
|
||||||
|
def generate_village_link(burg, cells):
|
||||||
|
name = burg['name']
|
||||||
|
population = parse_population(str(burg.get('population', 0)))
|
||||||
|
seed = random.randint(1, 2000000000)
|
||||||
|
|
||||||
|
river = ''
|
||||||
|
try:
|
||||||
|
cell = cells[burg['cell']]
|
||||||
|
if cell.get('river', 0):
|
||||||
|
river = 'river'
|
||||||
|
except (IndexError, KeyError):
|
||||||
|
pass
|
||||||
|
|
||||||
|
tags = ['organic' if random.random() < 0.7 else 'gridded',
|
||||||
|
'district' if random.random() < 0.3 else '',
|
||||||
|
'no square' if random.random() < 0.5 else 'square',
|
||||||
|
'isolated' if random.random() < 0.2 else '',
|
||||||
|
'farmland' if random.random() < 0.8 else '',
|
||||||
|
'dense' if random.random() < 0.3 else 'sparse',
|
||||||
|
'grove' if random.random() < 0.5 else '']
|
||||||
|
|
||||||
|
tags = [tag for tag in tags + [river] if tag] # Remove empty strings
|
||||||
|
|
||||||
|
base_url = "https://watabou.github.io/village-generator/?"
|
||||||
|
params = {
|
||||||
|
"seed": seed,
|
||||||
|
"name": name.replace(" ", "+"),
|
||||||
|
"pop": population,
|
||||||
|
"tags": ",".join(tags)
|
||||||
|
}
|
||||||
|
url = base_url + "&".join(f"{k}={v}" for k, v in params.items())
|
||||||
|
return f'<iframe width="100%" height="500" src="{url}"></iframe>'
|
||||||
|
|
||||||
|
def generate_dungeon_link(name):
|
||||||
|
seed = random.randint(1, 2000000000)
|
||||||
|
|
||||||
|
possible_tags = [
|
||||||
|
"backdoor", "colonnades", "compact", "cramped", "deep", "dry", "dwelling",
|
||||||
|
"flat", "flooded", "large", "medium", "no secrets", "ordered", "round",
|
||||||
|
"single-level", "small", "spacious", "square", "string", "temple", "tomb",
|
||||||
|
"treasure", "wet", "winding"
|
||||||
|
]
|
||||||
|
|
||||||
|
num_tags = random.randint(2, 4)
|
||||||
|
tags = random.sample(possible_tags, num_tags)
|
||||||
|
|
||||||
|
base_url = "https://watabou.github.io/one-page-dungeon/?"
|
||||||
|
params = {
|
||||||
|
"seed": seed,
|
||||||
|
"name": name.replace(" ", "+"),
|
||||||
|
"tags": ",".join(tags)
|
||||||
|
}
|
||||||
|
url = base_url + "&".join(f"{k}={v}" for k, v in params.items())
|
||||||
|
return f'<iframe width="100%" height="600" src="{url}"></iframe>'
|
||||||
|
|
||||||
|
def process_map_data(file_path):
|
||||||
|
with open(file_path, 'r', encoding='utf-8') as file:
|
||||||
|
data = json.load(file)
|
||||||
|
|
||||||
|
tiddlers = []
|
||||||
|
|
||||||
|
culture_lookup = {c['i']: c['name'] for c in data['pack']['cultures']}
|
||||||
|
state_lookup = {s['i']: s['name'] for s in data['pack']['states']}
|
||||||
|
cells = data['pack'].get('cells', [])
|
||||||
|
|
||||||
|
# General info
|
||||||
|
info = data['info']
|
||||||
|
general_info = f"""! Map Information
|
||||||
|
* Name: {info['mapName']}
|
||||||
|
* Size: {info['width']}x{info['height']}
|
||||||
|
* Seed: {info['seed']}
|
||||||
|
* Exported: {info['exportedAt']}
|
||||||
|
"""
|
||||||
|
tiddlers.append(create_tiddler("Map Information", general_info, ["MapData"]))
|
||||||
|
|
||||||
|
# Cultures
|
||||||
|
for culture in data['pack']['cultures']:
|
||||||
|
content = f"""! [[{culture['name']}]]
|
||||||
|
* Type: {culture.get('type', 'N/A')}
|
||||||
|
* Expansionism: {culture.get('expansionism', 'N/A')}
|
||||||
|
* Code: {culture.get('code', 'N/A')}
|
||||||
|
"""
|
||||||
|
tiddlers.append(create_tiddler(f"Culture: {culture['name']}", content, ["Culture", "MapData"]))
|
||||||
|
|
||||||
|
# States
|
||||||
|
for state in data['pack']['states']:
|
||||||
|
if state['i'] == 0: # Skip neutral state
|
||||||
|
continue
|
||||||
|
content = f"""! [[{state['name']}]]
|
||||||
|
* Type: {state.get('type', 'N/A')}
|
||||||
|
* Expansionism: {state.get('expansionism', 'N/A')}
|
||||||
|
* Capital: [[{state_lookup.get(state.get('capital'), 'Unknown')}]]
|
||||||
|
* Form: {state.get('form', 'N/A')}
|
||||||
|
* Full Name: {state.get('fullName', 'N/A')}
|
||||||
|
"""
|
||||||
|
tiddlers.append(create_tiddler(f"State: {state['name']}", content, ["State", "MapData"]))
|
||||||
|
|
||||||
|
# Burgs
|
||||||
|
for burg in data['pack']['burgs']:
|
||||||
|
if burg.get('i', 0) == 0: # Skip empty burg
|
||||||
|
continue
|
||||||
|
culture_name = culture_lookup.get(burg['culture'], 'Unknown')
|
||||||
|
state_name = state_lookup.get(burg['state'], 'Unknown')
|
||||||
|
population = parse_population(str(burg.get('population', 0)))
|
||||||
|
content = f"""! [[{burg['name']}]]
|
||||||
|
* Population: {population:,}
|
||||||
|
* Type: {burg.get('type', 'N/A')}
|
||||||
|
* Culture: [[{culture_name}]]
|
||||||
|
* State: [[{state_name}]]
|
||||||
|
"""
|
||||||
|
if population >= 1000:
|
||||||
|
content += "\n" + generate_city_link(burg, cells)
|
||||||
|
elif population > 0:
|
||||||
|
content += "\n" + generate_village_link(burg, cells)
|
||||||
|
|
||||||
|
tiddlers.append(create_tiddler(f"Burg: {burg['name']}", content, ["Burg", "MapData"]))
|
||||||
|
|
||||||
|
# Religions
|
||||||
|
for religion in data['pack']['religions']:
|
||||||
|
if religion['i'] == 0: # Skip no religion
|
||||||
|
continue
|
||||||
|
content = f"""! [[{religion['name']}]]
|
||||||
|
* Type: {religion.get('type', 'N/A')}
|
||||||
|
* Form: {religion.get('form', 'N/A')}
|
||||||
|
* Deity: {religion.get('deity', 'N/A')}
|
||||||
|
* Code: {religion.get('code', 'N/A')}
|
||||||
|
"""
|
||||||
|
tiddlers.append(create_tiddler(f"Religion: {religion['name']}", content, ["Religion", "MapData"]))
|
||||||
|
|
||||||
|
# Check for markers (which might include dungeon-like locations)
|
||||||
|
if 'markers' in data['pack']:
|
||||||
|
for marker in data['pack']['markers']:
|
||||||
|
if marker['type'] in ['ruins', 'landmark', 'cave']: # Add other relevant types
|
||||||
|
name = marker.get('name', f"{marker['type'].capitalize()} at ({marker['x']}, {marker['y']})")
|
||||||
|
content = f"""! [[{name}]]
|
||||||
|
* Type: {marker['type'].capitalize()}
|
||||||
|
* Location: x={marker.get('x', 'Unknown')}, y={marker.get('y', 'Unknown')}
|
||||||
|
* Description: {marker.get('description', 'No description available')}
|
||||||
|
|
||||||
|
{generate_dungeon_link(name)}
|
||||||
|
"""
|
||||||
|
tiddlers.append(create_tiddler(f"{marker['type'].capitalize()}: {name}", content, [marker['type'], "MapData", "Dungeon"]))
|
||||||
|
|
||||||
|
return tiddlers
|
||||||
|
|
||||||
|
def main():
|
||||||
|
if len(sys.argv) != 2:
|
||||||
|
print("Usage: python script_name.py <path_to_json_file>")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
file_path = sys.argv[1]
|
||||||
|
if not os.path.exists(file_path):
|
||||||
|
print(f"Error: File '{file_path}' not found.")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
tiddlers = process_map_data(file_path)
|
||||||
|
|
||||||
|
# Save tiddlers to files
|
||||||
|
output_folder = "tiddlers"
|
||||||
|
os.makedirs(output_folder, exist_ok=True)
|
||||||
|
|
||||||
|
for i, tiddler in enumerate(tiddlers):
|
||||||
|
file_name = f"tiddler_{i+1}.tid"
|
||||||
|
with open(os.path.join(output_folder, file_name), 'w', encoding='utf-8') as file:
|
||||||
|
file.write(tiddler)
|
||||||
|
|
||||||
|
print(f"Generated {len(tiddlers)} tiddlers in the '{output_folder}' directory.")
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
8
map/tiddlers/tiddler_1.tid
Normal file
8
map/tiddlers/tiddler_1.tid
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
title: Map Information
|
||||||
|
tags: MapData
|
||||||
|
|
||||||
|
! Map Information
|
||||||
|
* Name: Guigland
|
||||||
|
* Size: 512x512
|
||||||
|
* Seed: 344300264
|
||||||
|
* Exported: 2024-07-17T00:14:17.980Z
|
||||||
9
map/tiddlers/tiddler_10.tid
Normal file
9
map/tiddlers/tiddler_10.tid
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
title: State: Hajmania
|
||||||
|
tags: State MapData
|
||||||
|
|
||||||
|
! [[Hajmania]]
|
||||||
|
* Type: Hunting
|
||||||
|
* Expansionism: 1
|
||||||
|
* Capital: [[Hajmania]]
|
||||||
|
* Form: Theocracy
|
||||||
|
* Full Name: Hajmanian Theocracy
|
||||||
9
map/tiddlers/tiddler_11.tid
Normal file
9
map/tiddlers/tiddler_11.tid
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
title: State: Al Makha
|
||||||
|
tags: State MapData
|
||||||
|
|
||||||
|
! [[Al Makha]]
|
||||||
|
* Type: Hunting
|
||||||
|
* Expansionism: 2.5
|
||||||
|
* Capital: [[Al Makha]]
|
||||||
|
* Form: Monarchy
|
||||||
|
* Full Name: Emirate of Al Makha
|
||||||
10
map/tiddlers/tiddler_12.tid
Normal file
10
map/tiddlers/tiddler_12.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Valora
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Valora]]
|
||||||
|
* Population: 70,662
|
||||||
|
* Type: Generic
|
||||||
|
* Culture: [[Astellian]]
|
||||||
|
* State: [[Gastenil]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=60&seed=1649846427&name=Valora&greens=0&citadel=1&urban_castle=1&plaza=0&temple=1&walls=1&shantytown=1&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_13.tid
Normal file
10
map/tiddlers/tiddler_13.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Hayda
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Hayda]]
|
||||||
|
* Population: 3,441
|
||||||
|
* Type: Generic
|
||||||
|
* Culture: [[Eurabic]]
|
||||||
|
* State: [[Alalhuwa]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=15&seed=1641638236&name=Hayda&greens=0&citadel=0&urban_castle=1&plaza=1&temple=1&walls=1&shantytown=1&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_14.tid
Normal file
10
map/tiddlers/tiddler_14.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Carta
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Carta]]
|
||||||
|
* Population: 5,165
|
||||||
|
* Type: Naval
|
||||||
|
* Culture: [[Astellian]]
|
||||||
|
* State: [[Riofriojo]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=15&seed=999405165&name=Carta&greens=0&citadel=0&urban_castle=0&plaza=1&temple=0&walls=1&shantytown=1&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_15.tid
Normal file
10
map/tiddlers/tiddler_15.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Qalaq
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Qalaq]]
|
||||||
|
* Population: 3,986
|
||||||
|
* Type: Hunting
|
||||||
|
* Culture: [[Eurabic]]
|
||||||
|
* State: [[Al Liraha]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=15&seed=361639204&name=Qalaq&greens=0&citadel=0&urban_castle=0&plaza=1&temple=1&walls=1&shantytown=1&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_16.tid
Normal file
10
map/tiddlers/tiddler_16.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Thar
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Thar]]
|
||||||
|
* Population: 37,085
|
||||||
|
* Type: Naval
|
||||||
|
* Culture: [[Eurabic]]
|
||||||
|
* State: [[Hajmania]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=37&seed=1404712742&name=Thar&greens=0&citadel=0&urban_castle=0&plaza=1&temple=0&walls=1&shantytown=0&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_17.tid
Normal file
10
map/tiddlers/tiddler_17.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Thulu
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Thulu]]
|
||||||
|
* Population: 36,464
|
||||||
|
* Type: Naval
|
||||||
|
* Culture: [[Eurabic]]
|
||||||
|
* State: [[Al Makha]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=36&seed=1999699550&name=Thulu&greens=0&citadel=0&urban_castle=0&plaza=0&temple=0&walls=1&shantytown=1&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_18.tid
Normal file
10
map/tiddlers/tiddler_18.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Cincon
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Cincon]]
|
||||||
|
* Population: 10,323
|
||||||
|
* Type: Generic
|
||||||
|
* Culture: [[Astellian]]
|
||||||
|
* State: [[Riofriojo]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=15&seed=1041225808&name=Cincon&greens=0&citadel=1&urban_castle=0&plaza=1&temple=1&walls=1&shantytown=0&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_19.tid
Normal file
10
map/tiddlers/tiddler_19.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Luceriala
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Luceriala]]
|
||||||
|
* Population: 2,647
|
||||||
|
* Type: Naval
|
||||||
|
* Culture: [[Astellian]]
|
||||||
|
* State: [[Gastenil]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=15&seed=1424962619&name=Luceriala&greens=0&citadel=0&urban_castle=0&plaza=0&temple=0&walls=1&shantytown=1&coast=0&river=0&gates=-1"></iframe>
|
||||||
7
map/tiddlers/tiddler_2.tid
Normal file
7
map/tiddlers/tiddler_2.tid
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
title: Culture: Wildlands
|
||||||
|
tags: Culture MapData
|
||||||
|
|
||||||
|
! [[Wildlands]]
|
||||||
|
* Type: N/A
|
||||||
|
* Expansionism: N/A
|
||||||
|
* Code: N/A
|
||||||
10
map/tiddlers/tiddler_20.tid
Normal file
10
map/tiddlers/tiddler_20.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Haqraham
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Haqraham]]
|
||||||
|
* Population: 1,789
|
||||||
|
* Type: Hunting
|
||||||
|
* Culture: [[Eurabic]]
|
||||||
|
* State: [[Riofriojo]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=15&seed=1551521280&name=Haqraham&greens=0&citadel=0&urban_castle=1&plaza=0&temple=0&walls=0&shantytown=1&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_21.tid
Normal file
10
map/tiddlers/tiddler_21.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Shaq
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Shaq]]
|
||||||
|
* Population: 4,487
|
||||||
|
* Type: Hunting
|
||||||
|
* Culture: [[Eurabic]]
|
||||||
|
* State: [[Alalhuwa]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=15&seed=1642793585&name=Shaq&greens=0&citadel=0&urban_castle=1&plaza=1&temple=0&walls=0&shantytown=1&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_22.tid
Normal file
10
map/tiddlers/tiddler_22.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Torbanzonse
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Torbanzonse]]
|
||||||
|
* Population: 1,579
|
||||||
|
* Type: Hunting
|
||||||
|
* Culture: [[Astellian]]
|
||||||
|
* State: [[Alalhuwa]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=15&seed=720033335&name=Torbanzonse&greens=0&citadel=0&urban_castle=0&plaza=0&temple=0&walls=0&shantytown=1&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_23.tid
Normal file
10
map/tiddlers/tiddler_23.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Siles
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Siles]]
|
||||||
|
* Population: 15,411
|
||||||
|
* Type: Generic
|
||||||
|
* Culture: [[Astellian]]
|
||||||
|
* State: [[Gastenil]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=15&seed=223195603&name=Siles&greens=0&citadel=1&urban_castle=1&plaza=1&temple=1&walls=1&shantytown=0&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_24.tid
Normal file
10
map/tiddlers/tiddler_24.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Saucedaque
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Saucedaque]]
|
||||||
|
* Population: 3,424
|
||||||
|
* Type: Hunting
|
||||||
|
* Culture: [[Astellian]]
|
||||||
|
* State: [[Gastenil]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=15&seed=1771539286&name=Saucedaque&greens=0&citadel=1&urban_castle=0&plaza=1&temple=0&walls=0&shantytown=0&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_25.tid
Normal file
10
map/tiddlers/tiddler_25.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Alisafah
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Alisafah]]
|
||||||
|
* Population: 2,083
|
||||||
|
* Type: Hunting
|
||||||
|
* Culture: [[Eurabic]]
|
||||||
|
* State: [[Al Liraha]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=15&seed=1395779861&name=Alisafah&greens=0&citadel=0&urban_castle=1&plaza=1&temple=1&walls=1&shantytown=1&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_26.tid
Normal file
10
map/tiddlers/tiddler_26.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Tulpsahoki
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Tulpsahoki]]
|
||||||
|
* Population: 3,502
|
||||||
|
* Type: Hunting
|
||||||
|
* Culture: [[Soumi]]
|
||||||
|
* State: [[Alalhuwa]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=15&seed=108567119&name=Tulpsahoki&greens=0&citadel=1&urban_castle=0&plaza=0&temple=1&walls=1&shantytown=0&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_27.tid
Normal file
10
map/tiddlers/tiddler_27.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Conderonca
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Conderonca]]
|
||||||
|
* Population: 3,685
|
||||||
|
* Type: Hunting
|
||||||
|
* Culture: [[Astellian]]
|
||||||
|
* State: [[Gastenil]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=15&seed=1909155518&name=Conderonca&greens=0&citadel=0&urban_castle=0&plaza=0&temple=0&walls=1&shantytown=1&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_28.tid
Normal file
10
map/tiddlers/tiddler_28.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Bisalah
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Bisalah]]
|
||||||
|
* Population: 16,845
|
||||||
|
* Type: Naval
|
||||||
|
* Culture: [[Eurabic]]
|
||||||
|
* State: [[Al Liraha]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=16&seed=1196390558&name=Bisalah&greens=0&citadel=0&urban_castle=1&plaza=1&temple=1&walls=1&shantytown=1&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_29.tid
Normal file
10
map/tiddlers/tiddler_29.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Monza
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Monza]]
|
||||||
|
* Population: 1,418
|
||||||
|
* Type: Hunting
|
||||||
|
* Culture: [[Astellian]]
|
||||||
|
* State: [[Gastenil]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=15&seed=900072214&name=Monza&greens=0&citadel=1&urban_castle=0&plaza=1&temple=0&walls=1&shantytown=1&coast=0&river=0&gates=-1"></iframe>
|
||||||
7
map/tiddlers/tiddler_3.tid
Normal file
7
map/tiddlers/tiddler_3.tid
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
title: Culture: Soumi
|
||||||
|
tags: Culture MapData
|
||||||
|
|
||||||
|
! [[Soumi]]
|
||||||
|
* Type: Generic
|
||||||
|
* Expansionism: 1.5
|
||||||
|
* Code: So
|
||||||
10
map/tiddlers/tiddler_30.tid
Normal file
10
map/tiddlers/tiddler_30.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Sabtal
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Sabtal]]
|
||||||
|
* Population: 4,671
|
||||||
|
* Type: Hunting
|
||||||
|
* Culture: [[Eurabic]]
|
||||||
|
* State: [[Al Liraha]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=15&seed=68482953&name=Sabtal&greens=0&citadel=1&urban_castle=0&plaza=1&temple=0&walls=1&shantytown=0&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_31.tid
Normal file
10
map/tiddlers/tiddler_31.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Farjam
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Farjam]]
|
||||||
|
* Population: 4,147
|
||||||
|
* Type: Hunting
|
||||||
|
* Culture: [[Eurabic]]
|
||||||
|
* State: [[Al Liraha]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=15&seed=588310339&name=Farjam&greens=0&citadel=1&urban_castle=0&plaza=0&temple=0&walls=1&shantytown=0&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_32.tid
Normal file
10
map/tiddlers/tiddler_32.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Ujaibah
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Ujaibah]]
|
||||||
|
* Population: 16,218
|
||||||
|
* Type: Generic
|
||||||
|
* Culture: [[Eurabic]]
|
||||||
|
* State: [[Al Liraha]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=16&seed=1718456928&name=Ujaibah&greens=0&citadel=0&urban_castle=1&plaza=1&temple=0&walls=1&shantytown=0&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_33.tid
Normal file
10
map/tiddlers/tiddler_33.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Alhubar
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Alhubar]]
|
||||||
|
* Population: 11,142
|
||||||
|
* Type: Generic
|
||||||
|
* Culture: [[Eurabic]]
|
||||||
|
* State: [[Hajmania]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=15&seed=248829723&name=Alhubar&greens=0&citadel=0&urban_castle=0&plaza=0&temple=1&walls=1&shantytown=0&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_34.tid
Normal file
10
map/tiddlers/tiddler_34.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Meemen
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Meemen]]
|
||||||
|
* Population: 13,509
|
||||||
|
* Type: Generic
|
||||||
|
* Culture: [[Eurabic]]
|
||||||
|
* State: [[Hajmania]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=15&seed=1495123447&name=Meemen&greens=0&citadel=1&urban_castle=1&plaza=1&temple=0&walls=1&shantytown=0&coast=0&river=0&gates=-1"></iframe>
|
||||||
10
map/tiddlers/tiddler_35.tid
Normal file
10
map/tiddlers/tiddler_35.tid
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
title: Burg: Albirkho
|
||||||
|
tags: Burg MapData
|
||||||
|
|
||||||
|
! [[Albirkho]]
|
||||||
|
* Population: 2,874
|
||||||
|
* Type: Hunting
|
||||||
|
* Culture: [[Eurabic]]
|
||||||
|
* State: [[Alalhuwa]]
|
||||||
|
|
||||||
|
<iframe width="100%" height="500" src="https://watabou.github.io/city-generator/?size=15&seed=640208336&name=Albirkho&greens=0&citadel=1&urban_castle=0&plaza=0&temple=1&walls=0&shantytown=1&coast=0&river=0&gates=-1"></iframe>
|
||||||
8
map/tiddlers/tiddler_36.tid
Normal file
8
map/tiddlers/tiddler_36.tid
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
title: Religion: Soumi Shamanism
|
||||||
|
tags: Religion MapData
|
||||||
|
|
||||||
|
! [[Soumi Shamanism]]
|
||||||
|
* Type: Folk
|
||||||
|
* Form: Shamanism
|
||||||
|
* Deity: Rapsakosnas, The Emerald Antelope
|
||||||
|
* Code: SS
|
||||||
8
map/tiddlers/tiddler_37.tid
Normal file
8
map/tiddlers/tiddler_37.tid
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
title: Religion: Astellian Faith
|
||||||
|
tags: Religion MapData
|
||||||
|
|
||||||
|
! [[Astellian Faith]]
|
||||||
|
* Type: Folk
|
||||||
|
* Form: Polytheism
|
||||||
|
* Deity: Ruenanatan, The Old Creator of Pain
|
||||||
|
* Code: AF
|
||||||
8
map/tiddlers/tiddler_38.tid
Normal file
8
map/tiddlers/tiddler_38.tid
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
title: Religion: Eurabic Deities
|
||||||
|
tags: Religion MapData
|
||||||
|
|
||||||
|
! [[Eurabic Deities]]
|
||||||
|
* Type: Folk
|
||||||
|
* Form: Polytheism
|
||||||
|
* Deity: Taif, The Amber Tiger
|
||||||
|
* Code: ED
|
||||||
8
map/tiddlers/tiddler_39.tid
Normal file
8
map/tiddlers/tiddler_39.tid
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
title: Religion: Valor Religion
|
||||||
|
tags: Religion MapData
|
||||||
|
|
||||||
|
! [[Valor Religion]]
|
||||||
|
* Type: Organized
|
||||||
|
* Form: Monotheism
|
||||||
|
* Deity: Alorala, The Council
|
||||||
|
* Code: VR
|
||||||
7
map/tiddlers/tiddler_4.tid
Normal file
7
map/tiddlers/tiddler_4.tid
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
title: Culture: Astellian
|
||||||
|
tags: Culture MapData
|
||||||
|
|
||||||
|
! [[Astellian]]
|
||||||
|
* Type: River
|
||||||
|
* Expansionism: 1.4
|
||||||
|
* Code: As
|
||||||
8
map/tiddlers/tiddler_40.tid
Normal file
8
map/tiddlers/tiddler_40.tid
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
title: Religion: Marumalism
|
||||||
|
tags: Religion MapData
|
||||||
|
|
||||||
|
! [[Marumalism]]
|
||||||
|
* Type: Organized
|
||||||
|
* Form: Pantheism
|
||||||
|
* Deity: Marumal, The Slumbering Walrus
|
||||||
|
* Code: Ma
|
||||||
8
map/tiddlers/tiddler_41.tid
Normal file
8
map/tiddlers/tiddler_41.tid
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
title: Religion: Tulpsahok Church
|
||||||
|
tags: Religion MapData
|
||||||
|
|
||||||
|
! [[Tulpsahok Church]]
|
||||||
|
* Type: Organized
|
||||||
|
* Form: Monotheism
|
||||||
|
* Deity: Vanmama, The Overlord of the South
|
||||||
|
* Code: TC
|
||||||
9
map/tiddlers/tiddler_42.tid
Normal file
9
map/tiddlers/tiddler_42.tid
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
title: Ruins: Ruins at (175.43, 308.89)
|
||||||
|
tags: ruins MapData Dungeon
|
||||||
|
|
||||||
|
! [[Ruins at (175.43, 308.89)]]
|
||||||
|
* Type: Ruins
|
||||||
|
* Location: x=175.43, y=308.89
|
||||||
|
* Description: No description available
|
||||||
|
|
||||||
|
<iframe width="100%" height="600" src="https://watabou.github.io/one-page-dungeon/?seed=984927720&name=Ruins+at+(175.43,+308.89)&tags=flat,ordered"></iframe>
|
||||||
7
map/tiddlers/tiddler_5.tid
Normal file
7
map/tiddlers/tiddler_5.tid
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
title: Culture: Eurabic
|
||||||
|
tags: Culture MapData
|
||||||
|
|
||||||
|
! [[Eurabic]]
|
||||||
|
* Type: Hunting
|
||||||
|
* Expansionism: 1.1
|
||||||
|
* Code: Eu
|
||||||
9
map/tiddlers/tiddler_6.tid
Normal file
9
map/tiddlers/tiddler_6.tid
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
title: State: Gastenil
|
||||||
|
tags: State MapData
|
||||||
|
|
||||||
|
! [[Gastenil]]
|
||||||
|
* Type: River
|
||||||
|
* Expansionism: 1
|
||||||
|
* Capital: [[Gastenil]]
|
||||||
|
* Form: Theocracy
|
||||||
|
* Full Name: Gastenilese Theocracy
|
||||||
9
map/tiddlers/tiddler_7.tid
Normal file
9
map/tiddlers/tiddler_7.tid
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
title: State: Alalhuwa
|
||||||
|
tags: State MapData
|
||||||
|
|
||||||
|
! [[Alalhuwa]]
|
||||||
|
* Type: Hunting
|
||||||
|
* Expansionism: 2.3
|
||||||
|
* Capital: [[Alalhuwa]]
|
||||||
|
* Form: Monarchy
|
||||||
|
* Full Name: Kingdom of Alalhuwa
|
||||||
9
map/tiddlers/tiddler_8.tid
Normal file
9
map/tiddlers/tiddler_8.tid
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
title: State: Riofriojo
|
||||||
|
tags: State MapData
|
||||||
|
|
||||||
|
! [[Riofriojo]]
|
||||||
|
* Type: River
|
||||||
|
* Expansionism: 2.5
|
||||||
|
* Capital: [[Riofriojo]]
|
||||||
|
* Form: Monarchy
|
||||||
|
* Full Name: Principality of Riofriojo
|
||||||
9
map/tiddlers/tiddler_9.tid
Normal file
9
map/tiddlers/tiddler_9.tid
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
title: State: Al Liraha
|
||||||
|
tags: State MapData
|
||||||
|
|
||||||
|
! [[Al Liraha]]
|
||||||
|
* Type: Hunting
|
||||||
|
* Expansionism: 2
|
||||||
|
* Capital: [[Al Liraha]]
|
||||||
|
* Form: Monarchy
|
||||||
|
* Full Name: Caliphate of Al Liraha
|
||||||
3157
wiki/world-8.html
Normal file
3157
wiki/world-8.html
Normal file
File diff suppressed because one or more lines are too long
3286
wiki/world-A0.html
Normal file
3286
wiki/world-A0.html
Normal file
File diff suppressed because one or more lines are too long
3286
wiki/world-A1.html
Normal file
3286
wiki/world-A1.html
Normal file
File diff suppressed because one or more lines are too long
3295
wiki/world-A2.html
Normal file
3295
wiki/world-A2.html
Normal file
File diff suppressed because one or more lines are too long
3298
wiki/world-A3.html
Normal file
3298
wiki/world-A3.html
Normal file
File diff suppressed because one or more lines are too long
3283
wiki/world-A4.html
Normal file
3283
wiki/world-A4.html
Normal file
File diff suppressed because one or more lines are too long
3298
wiki/world.html
Normal file
3298
wiki/world.html
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue