-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
77 lines (71 loc) · 2.53 KB
/
Copy pathscript.js
File metadata and controls
77 lines (71 loc) · 2.53 KB
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
var roomPicker = ["living", "kitchen", "family", "bed1", "bed2", "bedbath"];
var rooms = {
"living": { "room1": "kitchen", "room2": "family", "freindly": "Living Room" },
"kitchen": { "room1": "living", "room2": "family", "freindly": "Kitchen" },
"family": { "room1": "living", "room2": "kitchen", "freindly": "Family Room" },
"bath": { "room1": "bed2", "room2": "bedbath", "freindly": "Bathroom" },
"bed1": { "room1": "living", "room2": "bed2", "freindly": "Second Bedroom" },
"bed2": { "room1": "bed1", "room2": "bedbath", "freindly": "Master Bedroom" },
"bedbath": { "room1": "bed2", "room2": "bath", "freindly": "Ensuite Bathroom" }
}
var sourceR = roomPicker[Math.floor(Math.random() * roomPicker.length)];
function guess(g) {
if (!g.includes(sourceR)) {
interact("assets/exterminator.png", "There's nothing in there. Call me back when you have an ACTUAL problem. Actually, DON'T call me at all.")
setTimeout(function () {
menu("<h1>The nest was in the " + rooms[sourceR].freindly + ".</h1>")
document.getElementById("close").onclick = function () { endGame() }
}, 2000)
} else {
interact("assets/exterminator.png", "Alright, I got rid of all the spiders. Now leave me alone.")
setTimeout(function () {
menu("<h1>You Won!</h1>")
document.getElementById("close").onclick = function () { endGame() }
}, 2000)
}
}
function menu(text) {
if (!text) {
popup.style.height = "2px"
popup.style.width = "2px"
popup.innerHTML = "";
document.getElementById("close").style.display = "none"
setTimeout(function () {
popupBack.style.display = "none";
popupBack.style.justifyContent = "center"
}, 400)
} else {
popupBack.style.justifyContent = "right"
popupBack.style.display = "flex";
setTimeout(function () {
popup.style.height = "90%"
popup.style.width = "90%"
}, 50)
setTimeout(function () {
popup.innerHTML = text;
document.getElementById("close").style.display = "inline"
}, 400)
}
}
function popout(text) {
if (!text) {
popup.style.height = "2px"
popup.style.width = "2px"
popup.innerHTML = "";
setTimeout(function () {
popupBack.style.display = "none";
}, 400)
} else {
popupBack.style.display = "flex";
setTimeout(function () {
popup.style.height = "90%"
popup.style.width = "90%"
}, 50)
setTimeout(function () {
popup.innerHTML = text;
}, 400)
}
}
function interact(charloc, msg) {
popout("<img width='270' src='" + charloc + "'><h1>" + msg + "</h1>")
}