-
Notifications
You must be signed in to change notification settings - Fork 0
/
borisjohnson.py
executable file
·58 lines (42 loc) · 1.14 KB
/
borisjohnson.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
46
47
48
49
50
51
52
53
54
55
56
57
58
from setup import put, object_group, put_background
put_background(0, 0, 'objects/summernaturebackground.bmp')
instructions = "release all the balloons and release the several lonely peeople. Collect them."
next_level = 'guineapiggame'
#you have been working NON-STOP
#WE KNOW that your level is very good
#I like HURRICANEs
#know that you are my favourite person
#(is it true im your favwoute person?)
farewell = 'You released the two lonely people! Now they can be lonely together'
put(0, 0, 'box')
put(0, 32, 'bob')
put(0, 32, 'box')
put(32, 32, 'box')
put(32, 96, 'box')
put(0, 64, 'box')
put(0, 100, 'box')
put(0, 132, 'box')
put(0, 164, 'box')
put(0, 196, 'box')
put(64, 32, 'box')
put(64, 64, 'issybox')
put(64, 132, 'box')
put(64, 0, 'box')
put(96, 132, 'box')
put(96, 100, 'box')
put(96, 132, 'box')
put(128, 0, 'box')
put(128, 363, 'box')
put(128, 32, 'box')
put(160, 0, 'box')
put(160, 373, 'box')
put(192, 123, 'box')
put(160, 64, 'issybox')
put(224, 123, 'box')
put(630, 0, 'bin')
put(400, 0, 'issybox')
def is_complete():
for object in object_group:
if object.type_name == 'box':
return False
return True