├── README.md ├── browse_sector.py ├── convert_travmap_to_csv.py ├── covers ├── a.jpg ├── b.jpg ├── c.jpg ├── d.jpg ├── e.jpg ├── f.jpg ├── g.jpg ├── h.jpg ├── i.jpg ├── j.jpg ├── k.jpg ├── l.jpg ├── m.jpg ├── n.jpg ├── o.jpg └── p.jpg ├── culture.py ├── export_sector.py ├── far_trader.py ├── first_in_generation.py ├── generate_menu.py ├── images ├── agricultural.png ├── asteroid.png ├── barren.png ├── blank.png ├── cold.png ├── corrosive.png ├── exotic.png ├── garden.png ├── gas giant.PNG ├── heavy.png ├── hipop.png ├── hot.png ├── important.png ├── industrial.png ├── light.png ├── lopop.png ├── mask.png ├── moon.png ├── naval.png ├── non_agricultural.png ├── non_industrial.png ├── ocean.png ├── planet.png ├── prison.png ├── scout.png ├── ship.png ├── tbd.png ├── vacuum.png └── wealthy.png ├── journey_data.py ├── mainworld_calculator.py ├── mainworld_selector.py ├── names.csv ├── non_mw.py ├── routes_short_path.py ├── sector_db ├── example-66.db ├── example-66.db_routes.txt ├── example-66.db_tab.txt └── traveller_map_poster.html ├── splash.jpg ├── splash_browser.jpg ├── sunburst.ico ├── tables ├── Orbital Eccentricity Table.txt ├── Orbital Separation Table.txt ├── Planet Density Table.txt ├── Star Characteristics III.txt ├── Star Characteristics V.txt └── World Type Table.txt ├── test_export_def.py ├── trade_goods.csv ├── traveller_functions.py ├── traveller_map.py ├── traveller_master.py └── travellerization.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/README.md -------------------------------------------------------------------------------- /browse_sector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/browse_sector.py -------------------------------------------------------------------------------- /convert_travmap_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/convert_travmap_to_csv.py -------------------------------------------------------------------------------- /covers/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/covers/a.jpg -------------------------------------------------------------------------------- /covers/b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/covers/b.jpg -------------------------------------------------------------------------------- /covers/c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/covers/c.jpg -------------------------------------------------------------------------------- /covers/d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/covers/d.jpg -------------------------------------------------------------------------------- /covers/e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/covers/e.jpg -------------------------------------------------------------------------------- /covers/f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/covers/f.jpg -------------------------------------------------------------------------------- /covers/g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/covers/g.jpg -------------------------------------------------------------------------------- /covers/h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/covers/h.jpg -------------------------------------------------------------------------------- /covers/i.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/covers/i.jpg -------------------------------------------------------------------------------- /covers/j.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/covers/j.jpg -------------------------------------------------------------------------------- /covers/k.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/covers/k.jpg -------------------------------------------------------------------------------- /covers/l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/covers/l.jpg -------------------------------------------------------------------------------- /covers/m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/covers/m.jpg -------------------------------------------------------------------------------- /covers/n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/covers/n.jpg -------------------------------------------------------------------------------- /covers/o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/covers/o.jpg -------------------------------------------------------------------------------- /covers/p.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/covers/p.jpg -------------------------------------------------------------------------------- /culture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/culture.py -------------------------------------------------------------------------------- /export_sector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/export_sector.py -------------------------------------------------------------------------------- /far_trader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/far_trader.py -------------------------------------------------------------------------------- /first_in_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/first_in_generation.py -------------------------------------------------------------------------------- /generate_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/generate_menu.py -------------------------------------------------------------------------------- /images/agricultural.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/agricultural.png -------------------------------------------------------------------------------- /images/asteroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/asteroid.png -------------------------------------------------------------------------------- /images/barren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/barren.png -------------------------------------------------------------------------------- /images/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/blank.png -------------------------------------------------------------------------------- /images/cold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/cold.png -------------------------------------------------------------------------------- /images/corrosive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/corrosive.png -------------------------------------------------------------------------------- /images/exotic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/exotic.png -------------------------------------------------------------------------------- /images/garden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/garden.png -------------------------------------------------------------------------------- /images/gas giant.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/gas giant.PNG -------------------------------------------------------------------------------- /images/heavy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/heavy.png -------------------------------------------------------------------------------- /images/hipop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/hipop.png -------------------------------------------------------------------------------- /images/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/hot.png -------------------------------------------------------------------------------- /images/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/important.png -------------------------------------------------------------------------------- /images/industrial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/industrial.png -------------------------------------------------------------------------------- /images/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/light.png -------------------------------------------------------------------------------- /images/lopop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/lopop.png -------------------------------------------------------------------------------- /images/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/mask.png -------------------------------------------------------------------------------- /images/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/moon.png -------------------------------------------------------------------------------- /images/naval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/naval.png -------------------------------------------------------------------------------- /images/non_agricultural.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/non_agricultural.png -------------------------------------------------------------------------------- /images/non_industrial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/non_industrial.png -------------------------------------------------------------------------------- /images/ocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/ocean.png -------------------------------------------------------------------------------- /images/planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/planet.png -------------------------------------------------------------------------------- /images/prison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/prison.png -------------------------------------------------------------------------------- /images/scout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/scout.png -------------------------------------------------------------------------------- /images/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/ship.png -------------------------------------------------------------------------------- /images/tbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/tbd.png -------------------------------------------------------------------------------- /images/vacuum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/vacuum.png -------------------------------------------------------------------------------- /images/wealthy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/images/wealthy.png -------------------------------------------------------------------------------- /journey_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/journey_data.py -------------------------------------------------------------------------------- /mainworld_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/mainworld_calculator.py -------------------------------------------------------------------------------- /mainworld_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/mainworld_selector.py -------------------------------------------------------------------------------- /names.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/names.csv -------------------------------------------------------------------------------- /non_mw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/non_mw.py -------------------------------------------------------------------------------- /routes_short_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/routes_short_path.py -------------------------------------------------------------------------------- /sector_db/example-66.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/sector_db/example-66.db -------------------------------------------------------------------------------- /sector_db/example-66.db_routes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/sector_db/example-66.db_routes.txt -------------------------------------------------------------------------------- /sector_db/example-66.db_tab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/sector_db/example-66.db_tab.txt -------------------------------------------------------------------------------- /sector_db/traveller_map_poster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/sector_db/traveller_map_poster.html -------------------------------------------------------------------------------- /splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/splash.jpg -------------------------------------------------------------------------------- /splash_browser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/splash_browser.jpg -------------------------------------------------------------------------------- /sunburst.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/sunburst.ico -------------------------------------------------------------------------------- /tables/Orbital Eccentricity Table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/tables/Orbital Eccentricity Table.txt -------------------------------------------------------------------------------- /tables/Orbital Separation Table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/tables/Orbital Separation Table.txt -------------------------------------------------------------------------------- /tables/Planet Density Table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/tables/Planet Density Table.txt -------------------------------------------------------------------------------- /tables/Star Characteristics III.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/tables/Star Characteristics III.txt -------------------------------------------------------------------------------- /tables/Star Characteristics V.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/tables/Star Characteristics V.txt -------------------------------------------------------------------------------- /tables/World Type Table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/tables/World Type Table.txt -------------------------------------------------------------------------------- /test_export_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/test_export_def.py -------------------------------------------------------------------------------- /trade_goods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/trade_goods.csv -------------------------------------------------------------------------------- /traveller_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/traveller_functions.py -------------------------------------------------------------------------------- /traveller_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/traveller_map.py -------------------------------------------------------------------------------- /traveller_master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/traveller_master.py -------------------------------------------------------------------------------- /travellerization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartlebythecoder/traveller-universe-creator/HEAD/travellerization.py --------------------------------------------------------------------------------