Skip to content

Instantly share code, notes, and snippets.

@xPcoolP
xPcoolP / JumpyOctopusP3.py
Created April 30, 2021 22:10
Version of JumpyOctopus for Pythonista 3.3
from scene import *
from PIL import Image
import sound
import random
GAME_READY = 0
GAME_PLAY = 1
GAME_DYING = 2
GAME_DEAD = 3
@xPcoolP
xPcoolP / JumpyOctopus.py
Created April 30, 2021 22:08 — forked from BashedCrab/JumpyOctopus.py
JumpyOctopus
from scene import *
from PIL import Image
import sound
import random
GAME_READY = 0
GAME_PLAY = 1
GAME_DYING = 2
GAME_DEAD = 3