# This file is to show what files will/may be found within the data/ directory F config.toml (Where server settings will live) F motd.txt (A text file to be sent out on login) D data/ (Global data directory) D data/logs (Logs, useful for making bug reports and helping fix bug reports) F data/logs/XX-XX-XXXX.log (Where X will be the date in MM-DD-YYYY format) D data/games (Where all the games will live) D data/games/gameX (Where X is game number) F data/games/gameX/config.toml (Where game specific settings will live) F data/games/gameX/motd.txt (A text file to be sent out once a player joins this game) F data/games/gameX/map.json (Mapping file, Lists ONLY sector and it's warps, no other data) F data/games/gameX/ships.json (Ship Models, so you could have a Death Star in one game, and a Battlestar in another, etc) D data/games/gameX/data (Where player data, sector data, ports and planets live) F data/games/gameX/data/players.db3 (sqlite database: id, name, password, sector, ship_id, corp_id) F data/games/gameX/data/corps.db3(sqlite database: id, name, leader_id, password, motd) F data/games/gameX/data/ships.db3 (sqlite database: id, name, model_id, owner_id, corp_owned, figs, shields, holds, cargo_contents) F data/games/gameX/data/sectors.db3 (sqlite database: id, warps, beacon, navhaz, port_id, planets, deploy-ables) F data/games/gameX/data/planets.db3 (sqlite database: id, name, owner_id, corp_owned, figs, shields, citadel_lvl, population, etc)