tweak wording of achievements

This commit is contained in:
yuni 2024-05-14 18:45:35 +02:00
parent 122a1e49ec
commit ac416411a8

View file

@ -356,21 +356,21 @@ impl AchievementTracker {
let talk = collectible(self.people_talked_to.len(), self.all_people.len());
vec![
"Repair Your Suit\n".to_string(),
"Consume A Pizza\n".to_string(),
"Enjoy A Pizza\n".to_string(),
format!("Ride Every Vehicle{ride}\n"),
format!("Talk To Everyone{talk}\n"),
"Find Earth\n".to_string(),
"Let Jupiter Eclipse The Sun\n".to_string(),
"Eclipse the sun with Jupiter\n".to_string(),
]
}
pub fn to_overview(&self) -> Vec<(bool, String)> {
vec![
(self.repair_suit, "repair your suit".into()),
(self.drink_a_pizza, "consume a pizza".into()),
(self.drink_a_pizza, "enjoy a pizza".into()),
(self.ride_every_vehicle, "ride every vehicle".into()),
(self.talk_to_everyone, "talk to everyone".into()),
(self.find_earth, "find Earth".into()),
(self.in_jupiters_shadow, "let Jupiter eclipse the Sun".into()),
(self.in_jupiters_shadow, "eclipse the Sun with Jupiter".into()),
]
}
pub fn to_summary(&self) -> String {