forked from AlexNisnevich/untrusted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path14_crispsContest.jsx
107 lines (100 loc) · 2.51 KB
/
14_crispsContest.jsx
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#BEGIN_PROPERTIES#
{
"music": "ThatAndyGuy-Chip"
}
#END_PROPERTIES#
/********************
* crispsContest.js *
********************
*
*
*/
function startLevel(map) {
map.defineObject('redLock', {
'symbol': String.fromCharCode(0x13cc),
'color': 'red',
'impassable': function (player) {
if (player.hasItem('redKey')) {
player.removeItem('redKey');
return false;
} else {
return true;
}
}
});
map.defineObject('blueLock', {
'symbol': String.fromCharCode(0x13cc),
'color': '#06f',
'impassable': function (player) {
if (player.hasItem('blueKey')) {
player.removeItem('blueKey');
return false;
} else {
return true;
}
}
});
map.defineObject('greenLock', {
'symbol': String.fromCharCode(0x13cc),
'color': '#0f0',
'impassable': function (player) {
if (player.hasItem('greenKey')) {
player.removeItem(#{#'greenKey'#}#);
return false;
} else {
return true;
}
}
});
map.defineObject('yellowLock', {
'symbol': String.fromCharCode(0x13cc),
'color': 'yellow',
'impassable': function (player) {
if (player.hasItem('yellowKey')) {
player.removeItem('yellowKey');
return false;
} else {
return true;
}
}
});
map.createFromGrid(
[' +++++ +++++ ',
' + b +++ r + ',
' + +E+ + ',
'+++G+B+ +R+G+++',
'+ y B R b +',
'+ + + +',
'+++++ @ +++++',
'+ + + +',
'+ y R B y +',
'++++++Y+Y++++++',
' + + + ',
' + ABy + ',
' +++++++ '],
{
'@': 'player',
'E': 'exit',
'A': 'theAlgorithm',
'+': 'block',
'R': 'redLock',
'G': 'greenLock',
'B': 'blueLock',
'Y': 'yellowLock',
'r': 'redKey',
'g': 'greenKey',
'b': 'blueKey',
'y': 'yellowKey'
}, 15, 6);
}
function validateLevel(map) {
map.validateExactlyXManyObjects(1, 'exit');
}
function onExit(map) {
if (!map.getPlayer().hasItem('theAlgorithm')) {
map.writeStatus("You must get that Algorithm!!");
return false;
} else {
return true;
}
}