diff --git a/public/styles/ddd/boards.css b/public/styles/ddd/boards.css index f672bcf..d8890ce 100644 --- a/public/styles/ddd/boards.css +++ b/public/styles/ddd/boards.css @@ -97,7 +97,7 @@ table.board { height: 70%; position: relative; left: 15px; - background-color: #cbf; + background-color: #eee; z-index: 10; align-content: center; font-size: 14px; @@ -222,6 +222,5 @@ table.board { width: 100%; height: 100%; z-index: 0; - /*color: #3c3c3c;*/ - color: #ccbbff; + color: #eee; } diff --git a/src/bbs.rs b/src/bbs.rs index 0cb4aa6..2702c92 100644 --- a/src/bbs.rs +++ b/src/bbs.rs @@ -39,15 +39,15 @@ pub struct Module; impl RuntimeModule for Module { fn start_module() { - tracing::info!("Loading abilities data from {}", ABILITIES_PATH); + tracing::info!("Loading BBS abilities data from {}", ABILITIES_PATH); let abilities_str = std::fs::read_to_string(ABILITIES_PATH).unwrap(); let abilities = serde_json::from_str::>(&abilities_str).unwrap(); - tracing::info!("Loading finishers data from {}", ABILITIES_PATH); + tracing::info!("Loading BBS finishers data from {}", ABILITIES_PATH); let finishers_str = std::fs::read_to_string(FINISHERS_PATH).unwrap(); let finishers = serde_json::from_str::>(&finishers_str).unwrap(); - tracing::info!("Loading commands data from {}", ABILITIES_PATH); + tracing::info!("Loading BBS commands data from {}", ABILITIES_PATH); let commands_str = std::fs::read_to_string(COMMANDS_PATH).unwrap(); let mut commands = serde_json::from_str::>(&commands_str).unwrap(); @@ -66,7 +66,7 @@ impl RuntimeModule for Module { } } - tracing::info!("Generating the BBS melding table template"); + tracing::info!("Generating BBS melding table template"); let melding_template = CommandsTemplate { commands, crystals }; create_file("./out/bbs", "melding", melding_template).unwrap(); diff --git a/src/ddd.rs b/src/ddd.rs index 7085f1d..e988190 100644 --- a/src/ddd.rs +++ b/src/ddd.rs @@ -22,7 +22,7 @@ pub struct Module; impl RuntimeModule for Module { fn start_module() { - tracing::info!("Loading ability boards data from {}", ABILITIES_PATH); + tracing::info!("Loading DDD ability boards data from {}", ABILITIES_PATH); let mut boards: Vec = vec![]; // Loading multiple files into one vector due to the size of each board let paths = std::fs::read_dir(ABILITIES_PATH) @@ -49,7 +49,7 @@ impl RuntimeModule for Module { } boards.sort_by(|a, b| a.order.cmp(&b.order)); - tracing::info!("Generating the DDD ability boards template"); + tracing::info!("Generating DDD ability boards template"); let boards_template = AbilitiesTemplate { boards }; create_file("./out/ddd", "boards", boards_template).unwrap(); diff --git a/src/kh1.rs b/src/kh1.rs index 5caffa1..34e6af6 100644 --- a/src/kh1.rs +++ b/src/kh1.rs @@ -25,10 +25,10 @@ pub struct Module; impl RuntimeModule for Module { fn start_module() { - tracing::info!("Loading synthesis data from {}", SYNTHESIS_PATH); + tracing::info!("Loading KH1 synthesis data from {}", SYNTHESIS_PATH); let synth = Synthesis::new(SYNTHESIS_PATH); - tracing::info!("Generating the KH1 synth template"); + tracing::info!("Generating KH1 synth template"); let synth_template = SynthTemplate { data: synth }; create_file("./out/kh1", "synth", synth_template).unwrap(); diff --git a/src/kh1fm.rs b/src/kh1fm.rs index 6619ab5..b13e852 100644 --- a/src/kh1fm.rs +++ b/src/kh1fm.rs @@ -25,20 +25,20 @@ pub struct Module; impl RuntimeModule for Module { fn start_module() { - tracing::info!("Loading enemy data from {}", ENEMIES_PATH); + tracing::info!("Loading KH1FM enemy data from {}", ENEMIES_PATH); let enemies = Enemy::import(ENEMIES_PATH); let drops = Drops::new(Game::Kh1(GameProps::final_mix()), enemies); - tracing::info!("Loading synthesis data from {}", SYNTHESIS_PATH); + tracing::info!("Loading KH1FM synthesis data from {}", SYNTHESIS_PATH); let synth = Synthesis::new(SYNTHESIS_PATH); - tracing::info!("Generating the KH1FM, drops template"); + tracing::info!("Generating KH1FM drops template"); let drops_template = DropsTemplate { data: drops }; create_file("./out/kh1fm", "drops", drops_template).unwrap(); - tracing::info!("Generating the KH1FM synth template"); + tracing::info!("Generating KH1FM synth template"); let synth_template = SynthTemplate { data: synth }; create_file("./out/kh1fm", "synth", synth_template).unwrap(); diff --git a/src/kh2fm.rs b/src/kh2fm.rs index 30878cc..4f15a19 100644 --- a/src/kh2fm.rs +++ b/src/kh2fm.rs @@ -18,12 +18,12 @@ pub struct Module; impl RuntimeModule for Module { fn start_module() { - tracing::info!("Loading enemy data from {}", ENEMIES_PATH); + tracing::info!("Loading KH2FM enemy data from {}", ENEMIES_PATH); let enemies = Enemy::import(ENEMIES_PATH); let drops = Drops::new(Game::Kh2(GameProps::final_mix()), enemies); - tracing::info!("Generating the KH2FM drops template"); + tracing::info!("Generating KH2FM drops template"); let drops_template = DropsTemplate { data: drops }; create_file("./out/kh2fm", "drops", drops_template).unwrap(); diff --git a/src/kh3.rs b/src/kh3.rs index 3a5e1c0..8bd5ccb 100644 --- a/src/kh3.rs +++ b/src/kh3.rs @@ -48,36 +48,36 @@ pub struct Module; impl RuntimeModule for Module { fn start_module() { - tracing::info!("Loading enemy data from {}", ENEMIES_PATH); + tracing::info!("Loading KH3 enemy data from {}", ENEMIES_PATH); let enemies = Enemy::import(ENEMIES_PATH); let drops = Drops::new(Game::Kh3, enemies); - tracing::info!("Loading ingredients data from {}", ENEMIES_PATH); + tracing::info!("Loading KH3 ingredients data from {}", ENEMIES_PATH); let ingredients = Ingredient::import(INGREDIENTS_PATH); - tracing::info!("Loading recipes data from {}", RECIPES_PATH); + tracing::info!("Loading KH3 recipes data from {}", RECIPES_PATH); let recipes_str = std::fs::read_to_string(RECIPES_PATH).unwrap(); let recipes = toml::from_str::(&recipes_str).unwrap(); - tracing::info!("Loading pro codes data from {}", PRO_CODES_PATH); + tracing::info!("Loading KH3 pro codes data from {}", PRO_CODES_PATH); let pro_codes_str = std::fs::read_to_string(PRO_CODES_PATH).unwrap(); let pro_codes = toml::from_str::(&pro_codes_str).unwrap(); let pro_code_fights_str = std::fs::read_to_string(PRO_CODE_FIGHTS_PATH).unwrap(); let pro_code_fights = toml::from_str::(&pro_code_fights_str).unwrap(); - tracing::info!("Generating the KH3 drops template"); + tracing::info!("Generating KH3 drops template"); let drops_template = DropsTemplate { data: drops }; create_file("./out/kh3", "drops", drops_template).unwrap(); - tracing::info!("Generating the KH3 ingredients template"); + tracing::info!("Generating KH3 ingredients template"); let ingredients_template = IngredientsTemplate { ingredients }; create_file("./out/kh3", "ingredients", ingredients_template).unwrap(); - tracing::info!("Generating the KH3 recipes template"); + tracing::info!("Generating KH3 recipes template"); let food_template = RecipesTemplate { recipes }; create_file("./out/kh3", "food-sim", food_template).unwrap(); - tracing::info!("Generating the KH3 pro codes template"); + tracing::info!("Generating KH3 pro codes template"); let pro_codes_template = ProCodesTemplate { pro_codes: pro_codes.codes, fights: pro_code_fights.fights,