Fix for all of bug #77
[supertux.git] / data / scripts / console.nut
index e01540d..5da3775 100644 (file)
@@ -24,6 +24,11 @@ function fire()
        sector.Tux.add_bonus("fireflower");
 }
 
+function ice()
+{
+       sector.Tux.add_bonus("iceflower");
+}
+
 function shrink()
 {
        sector.Tux.add_bonus("none");
@@ -34,6 +39,11 @@ function kill()
        sector.Tux.kill(true);
 }
 
+function lifeup()
+{
+       sector.Tux.add_coins(100);
+}
+
 /**
  * Display a list of functions in the roottable (or in the table specified)
  */