Skip to content

Commit

Permalink
Edit tutorial text
Browse files Browse the repository at this point in the history
  • Loading branch information
benfrankel committed Dec 8, 2023
1 parent 285c992 commit 3db9403
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/upgrade.rs
Original file line number Diff line number Diff line change
Expand Up @@ -327,25 +327,25 @@ fn load_upgrade_sequence(mut commands: Commands) {
(vec![DarkModeDracula, DarkModeBamboo], String::new()),
(
vec![TouchOfLifePlugin],
"\"Now that a dark theme is installed, I can start working on the game.\"".to_string(),
"\"Much better. Now I can get started.\"".to_string(),
),
(
vec![Inspiration],
"\"I should maximize the number of entities to abide by the jam theme.\"".to_string(),
"\"I don't know what I'm going to make yet, but I should start spawning entities to fit the jam theme.\"".to_string(),
),
(
vec![VelocityPlugin],
"\"I need to make the game fun if I want receive good ratings.\"".to_string(),
"\"I should make the game more interesting for a higher Fun score.\"".to_string(),
),
(vec![ImportLibrary, SplashOfLifePlugin], String::new()),
(
vec![Coffee, OneBitSpritePack],
"\"Also I should make the game look pretty if I want a good presentation score.\""
"\"I should also make the game look pretty for a higher Presentation score.\""
.to_string(),
),
(
vec![Brainstorm],
"\"Hmm... How can I make further progress?\"".to_string(),
"\"Hmm... where should I go from here?\"".to_string(),
),
]));
}
Expand Down

0 comments on commit 3db9403

Please sign in to comment.