Browse Source

add challenges

Nicolas Winkler 4 years ago
parent
commit
782bb78bb3
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/game.rs

+ 3 - 3
src/game.rs

@@ -126,9 +126,9 @@ impl Game {
 
         let mut exes = vec![
             CreatingEx{ question: "Delikatessfutter für Hunde".to_owned(), letters: vec!['a', 'b', 'c'] },
-            CreatingEx{ question: "A Betabet".to_owned(), letters: vec!['b', 'c', 'd'] },
-            CreatingEx{ question: "A Gammaabet".to_owned(), letters: vec!['c', 'd', 'e'] },
-            CreatingEx{ question: "A Deltaabet".to_owned(), letters: vec!['d', 'e', 'f'] },
+            CreatingEx{ question: "Ein Hotel für die ganze Familie".to_owned(), letters: vec!['b', 'c', 'd'] },
+            CreatingEx{ question: "Brasilianischer Superstar".to_owned(), letters: vec!['c', 'd', 'e'] },
+            CreatingEx{ question: "Buchstabe des griechischen Alphabets".to_owned(), letters: vec!['d', 'e', 'f'] },
         ];
         for p in &mut self.players {
             p.creating_exercise = exes.pop();