Skip to content

Commit

Permalink
Adjust tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
benfrankel committed Dec 11, 2023
1 parent b8f79c3 commit bcfaac0
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions src/upgrade.rs
Original file line number Diff line number Diff line change
Expand Up @@ -348,8 +348,7 @@ fn load_upgrade_sequence(mut commands: Commands) {
vec![TouchOfLifePlugin],
"\"I don't know what I'm making, but I should start spawning entities.\"".to_string(),
),
(vec![Inspiration], "Is 50 a lot of entities?".to_string()),
(vec![ImportLibrary, UtilPlugin], String::new()),
(vec![ImportLibrary], String::new()),
(
vec![SkinPlugin],
"\"I should make the game look nice for a higher Presentation score.\"".to_string(),
Expand All @@ -359,6 +358,14 @@ fn load_upgrade_sequence(mut commands: Commands) {
"\"I should also make the game more interesting for a higher Fun score.\"".to_string(),
),
(vec![Autocomplete], String::new()),
(
vec![Inspiration],
"\"Is 50 a lot of entities?\"".to_string(),
),
(
vec![UtilPlugin],
"\"I can lay some groundwork now to support all of these entities.\"".to_string(),
),
(
vec![Brainstorm],
"\"Hmm... where should I go from here?\"".to_string(),
Expand Down Expand Up @@ -410,7 +417,7 @@ generate_upgrade_list!(
name: "Inspiration".to_string(),
desc: "Allows new types of upgrades to unlock when you have enough entities.".to_string(),
no_outline: true,
base_cost: 5.0,
base_cost: 10.0,
..default()
},

Expand Down Expand Up @@ -883,7 +890,7 @@ generate_upgrade_list!(
sound: Some(SoundEffectKind::Keyboard),
no_count: true,
base_cost: 75.0,
weight: 2.0,
weight: 2.5,
remaining: 2,
install: Some(world.register_system(|
mut typer_query: Query<&mut CodeTyper>,
Expand Down

0 comments on commit bcfaac0

Please sign in to comment.