#303: Typo fixes from mathnerd314
[supertux.git] / data / scripts / console.nut
index 9170e45..5ceec2d 100644 (file)
@@ -1,6 +1,6 @@
 /**
  * This script is loaded into the console script interpreter.
- * You should define shortcuts and helper functions that are usefull for the
+ * You should define shortcuts and helper functions that are useful for the
  * console here
  */
 
@@ -14,10 +14,53 @@ function finish()
        Level.finish(true);
 }
 
-function println(val)
+function edit()
 {
-       print(val);
-       print("\n");
+       Level.edit(true);
+}
+
+function play()
+{
+       Level.edit(false);
+}
+
+function worldmapfinish()
+{
+       save_state();
+       foreach(levelname, level in state.worlds[state.world].levels) {
+               level.solved = true;
+       }
+       update_worldmap();
+}
+
+function grow()
+{
+       sector.Tux.add_bonus("grow");
+}
+
+function fire()
+{
+       sector.Tux.add_bonus("fireflower");
+}
+
+function ice()
+{
+       sector.Tux.add_bonus("iceflower");
+}
+
+function shrink()
+{
+       sector.Tux.add_bonus("none");
+}
+
+function kill()
+{
+       sector.Tux.kill(true);
+}
+
+function lifeup()
+{
+       sector.Tux.add_coins(100);
 }
 
 /**
@@ -40,4 +83,3 @@ function functions(...)
        }
 }
 
-