Skip to content

Commit

Permalink
Balance Macro upgrades slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
necrashter committed Dec 11, 2023
1 parent 305d3fa commit 8f7df7c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/upgrade.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1070,7 +1070,7 @@ generate_upgrade_list!(
".to_string(),
tech_debt: -1.0,
base_cost: 200.0,
cost_scale_factor: 1.6,
cost_scale_factor: 1.3,
weight: 1.0,
entity_min: 1000.0,
install: Some(world.register_system(|mut simulation: ResMut<Simulation>| {
Expand All @@ -1085,7 +1085,7 @@ generate_upgrade_list!(
no_count: true,
tech_debt: 1.0,
base_cost: 500.0,
cost_scale_factor: 1.8,
cost_scale_factor: 1.6,
weight: 0.5,
remaining: 3,
installed_min: vec![(ProceduralMacro, 1)],
Expand Down Expand Up @@ -1122,9 +1122,9 @@ generate_upgrade_list!(
no_count: true,
tech_debt: 1.0,
base_cost: 1000.0,
weight: 0.75,
weight: 1.0,
remaining: 4,
installed_min: vec![(MetaMacro, 1)],
installed_min: vec![(ProceduralMacro, 1)],
install: Some(world.register_system(|
mut typer: ResMut<PassiveCodeTyper>,
mut upgrade_list: ResMut<UpgradeList>,
Expand Down

0 comments on commit 8f7df7c

Please sign in to comment.