-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbricks.py
45 lines (34 loc) · 939 Bytes
/
bricks.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from drawable import drawable
class brick(drawable):
def __init__(self, y, x):
super().__init__(y,x)
class bricklvl1(brick):
def __init__(self, y, x):
self.isRainbow = False
self.lvl = 0
super().__init__(y,x)
class bricklvl2(brick):
def __init__(self, y, x):
self.isRainbow = False
self.lvl = 1
super().__init__(y,x)
class bricklvl3(brick):
def __init__(self, y, x):
self.isRainbow = False
self.lvl = 2
super().__init__(y,x)
class brickfixed(brick):
def __init__(self,y,x):
self.isRainbow = False
self.lvl = 4
super().__init__(y,x)
class brickExp(brick):
def __init__(self,y,x):
self.isRainbow = False
self.lvl = 69
super().__init__(y,x)
class brickRainbow(brick):
def __init__(self,y,x):
self.isRainbow = True
self.lvl = 111
super().__init__(y,x)