-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.ts
74 lines (74 loc) · 1.61 KB
/
main.ts
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
input.onButtonPressed(Button.A, function () {
if (Zufall == 0) {
game.addScore(1)
basic.clearScreen()
} else {
basic.showIcon(IconNames.No)
basic.clearScreen()
game.addScore(-1)
basic.clearScreen()
}
})
input.onButtonPressed(Button.AB, function () {
if (Zufall == 2) {
game.addScore(1)
basic.clearScreen()
} else {
basic.showIcon(IconNames.No)
basic.clearScreen()
game.addScore(-1)
basic.clearScreen()
}
})
input.onButtonPressed(Button.B, function () {
if (Zufall == 1) {
game.addScore(1)
basic.clearScreen()
} else {
basic.showIcon(IconNames.No)
basic.clearScreen()
game.addScore(-1)
basic.clearScreen()
}
})
let Zufall = 0
game.setScore(0)
while (input.runningTime() <= 20000) {
Zufall = randint(0, 2)
if (Zufall == 0) {
basic.showLeds(`
. . # . .
# . # . .
# . # . .
. . # . .
. . # . .
`)
} else {
if (Zufall == 1) {
basic.showLeds(`
. . # . .
. . # . #
. . # . #
. . # . .
. . # . .
`)
} else {
basic.showLeds(`
. . # . .
# . # . #
# . # . #
. . # . .
. . # . .
`)
}
}
basic.showLeds(`
. . # . .
. . # . .
. . # . .
. . # . .
. . # . .
`)
basic.pause(100)
}
game.gameOver()