Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data/en/graphics/jump
diff options
context:
space:
mode:
Diffstat (limited to 'data/en/graphics/jump')
-rw-r--r--data/en/graphics/jump32
1 files changed, 32 insertions, 0 deletions
diff --git a/data/en/graphics/jump b/data/en/graphics/jump
new file mode 100644
index 0000000..7e4d433
--- /dev/null
+++ b/data/en/graphics/jump
@@ -0,0 +1,32 @@
+import pippy
+
+for i in xrange(0, 50):
+ pippy.console.clear()
+ if i < 25:
+ pippy.console.red()
+ else:
+ pippy.console.blue()
+
+ # Note that we have to escape backslashes
+ print '\\o/'
+ print '_|_'
+ print ' '
+ pippy.wait()
+
+ pippy.console.clear()
+ print '_o_'
+ print ' | '
+ print '/ \\'
+ pippy.wait()
+
+ pippy.console.clear()
+ print ' o '
+ print '/|\\'
+ print '| |'
+ pippy.wait()
+
+ pippy.console.clear()
+ print '_o_'
+ print ' | '
+ print '/ \\'
+ pippy.wait()