You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

283 lines
9.4 KiB
HTML

3 years ago
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>Monteferro</title>
3 years ago
<link rel="icon" href="imgs/monteferro/corn.gif">
3 years ago
<link rel="stylesheet" href="monteferro.css">
</head>
<body>
3 years ago
3 years ago
<img id="mulino" src="imgs/monteferro/mulino.gif" height="140px">
<img id="tree1" src="imgs/monteferro/tree.gif" height="220px">
3 years ago
<img id="gallina1" src="imgs/monteferro/gallina2.gif" height="60px">
<img id="gallina2" src="imgs/monteferro/gallina2.2.gif" height="60px">
3 years ago
3 years ago
<img class="farmer" id="farmer_figure" src="imgs/monteferro/farmer5.gif" style="display: none;" height="120px">
3 years ago
<div class="farmer" id="farmer_baloon" style="display: none;" >*!!!*</div>
<div class="baloons">
3 years ago
<div class="ned_baloon1" style="display: none;">I have reasons to suspect that the Monteferro Enterprise is poisoning the children's food with a substance called Fluoride. The drug is able to reduce an individual's power to resist domination by slowly calcifying the pineal gland. The school is using it to make children submissive and docile.</div>
3 years ago
<div class="ned_baloon2" style="display: none;" >The food coming from these fields has already been contaminated with the chemical: we should collect it and confront it with the one at the school canteen.</div>
</div>
3 years ago
<div id="ground">
<div id="player_img"></div>
3 years ago
<img id="ned" src="imgs/monteferro/ned2.gif" height="110px">
3 years ago
3 years ago
3 years ago
<div class="field no_touch">
3 years ago
<img id="corn1" class="corn" src="imgs/monteferro/corn.gif" >
<img id="corn2" class="corn" src="imgs/monteferro/corn.gif" >
<img id="corn3" class="corn" src="imgs/monteferro/corn.gif" >
<img id="corn4" class="corn" src="imgs/monteferro/corn.gif" >
<img id="corn5" class="corn" src="imgs/monteferro/corn.gif" >
<img id="corn6" class="corn" src="imgs/monteferro/corn.gif" >
<img id="corn7" class="corn" src="imgs/monteferro/corn.gif" >
<img id="corn8" class="corn" src="imgs/monteferro/corn.gif" >
<img id="corn9" class="corn" src="imgs/monteferro/corn.gif" >
<img id="corn10" class="corn" src="imgs/monteferro/corn.gif" >
<img id="corn11" class="corn" src="imgs/monteferro/corn.gif" >
<img id="corn12" class="corn" src="imgs/monteferro/corn.gif" >
<img id="corn13" class="corn" src="imgs/monteferro/corn.gif" >
<img id="corn14" class="corn" src="imgs/monteferro/corn.gif" >
<img id="corn15" class="corn" src="imgs/monteferro/corn.gif" >
<img id="corn16" class="corn" src="imgs/monteferro/corn.gif" >
<img id="corn17" class="corn" src="imgs/monteferro/corn.gif" >
<img id="corn18" class="corn" src="imgs/monteferro/corn.gif" >
3 years ago
<img id="corn19" class="corn" src="imgs/monteferro/corn.gif" >
<img id="corn20" class="corn" src="imgs/monteferro/corn.gif" >
</div>
3 years ago
</div>
<div class="text_container">
3 years ago
<div class="message1" style="display: none;">
3 years ago
Oh lord, it's horrible! What can you do to <button id="ned_more"><span class="button_text">stop this terrible abuse</span></button> ?
</div>
<div class="message2 instructions" style="display: none;">
3 years ago
<span class="instructions_arrow"></span> Click on the veggies to get the proofs you need: you must collect at least 5 poisoned corn cobs before the Monteferro's employees see you!
3 years ago
<button id="start_button"><span class="button_text">Start now!</span></button>
</div>
<div class="message_won" style="display: none;">
You managed to collect enough fluoride! <button onclick="location.href='canteen.html';"><span class="button_text">Go to the school canteen</span></button> to confront the substances.
</div>
<div class="message_lost" style="display: none;">
On no! You got busted by the farmer! You should <button id="try_again"><span class="button_text">try again</span></button> .
3 years ago
</div>
3 years ago
<div class="game_bar" style="display: none;">
fluoride: <span class="cobs_collected"></span> / 5
</div>
3 years ago
<script src="jquery.min.js"></script>
<script>
3 years ago
// saves game step in the local storage + onload functions
3 years ago
window.onload = function() {
3 years ago
window.localStorage.setItem("monteferro","opened");
console.log ("monteferro:",localStorage.monteferro);
3 years ago
3 years ago
$('.cobs_collected').html("0");
3 years ago
setTimeout (function () {
$(".ned_baloon1").show();
setTimeout (function () {
$(".message1").show();
},5000);
},1000);
3 years ago
3 years ago
}
//get player avatar from local storage
console.log (localStorage.myavatar)
var img = document.createElement("img");
img.src = localStorage.myavatar;
var player_img = document.querySelector("#player_img");
player_img.appendChild(img);
3 years ago
/*ned baloons */
$("#ned_more").click (function () {
3 years ago
$(".ned_baloon1").hide();
3 years ago
$(".message1").hide();
3 years ago
$(".ned_baloon2").show();
setTimeout (function () {
$(".message2").show();
},4000);
3 years ago
});
3 years ago
3 years ago
$("#start_button").click (function () {
$(".ned_baloon2,.ned_baloon1, .message1, .message2 ").hide();
$(".game_bar").show();
});
// fluoride game
var fluoride_counter = 0;
var loose_counter = 0;
$("#corn1").click (function () {
$("#corn1").attr('src', "imgs/monteferro/pill.gif");
fluoride_counter ++;
$('.cobs_collected').html(fluoride_counter);
check_counters();
});
$("#corn2").click (function () {
$("#corn2").attr('src', "imgs/monteferro/pill.gif");
fluoride_counter ++;
$('.cobs_collected').html(fluoride_counter);
check_counters();
});
$("#corn3").click (function () {
loose_counter ++;
check_counters();
});
$("#corn4").click (function () {
loose_counter ++;
check_counters();
});
$("#corn5").click (function () {
loose_counter ++;
check_counters();
});
$("#corn6").click (function () {
$("#corn6").attr('src', "imgs/monteferro/pill.gif");
fluoride_counter ++;
$('.cobs_collected').html(fluoride_counter);
check_counters();
});
3 years ago
3 years ago
$("#corn7").click (function () {
loose_counter ++;
check_counters();
});
$("#corn8").click (function () {
$("#corn8").attr('src', "imgs/monteferro/pill.gif");
fluoride_counter ++;
$('.cobs_collected').html(fluoride_counter);
check_counters();
});
$("#corn9").click (function () {
$("#corn9").attr('src', "imgs/monteferro/pill.gif");
fluoride_counter ++;
$('.cobs_collected').html(fluoride_counter);
check_counters();
});
$("#corn10").click (function () {
$("#corn10").attr('src', "imgs/monteferro/pill.gif");
fluoride_counter ++;
$('.cobs_collected').html(fluoride_counter);
check_counters();
});
$("#corn11").click (function () {
$("#corn11").attr('src', "imgs/monteferro/pill.gif");
fluoride_counter ++;
$('.cobs_collected').html(fluoride_counter);
check_counters();
});
$("#corn12").click (function () {
loose_counter ++;
check_counters();
});
$("#corn13").click (function () {
loose_counter ++;
check_counters();
});
$("#corn14").click (function () {
$("#corn14").attr('src', "imgs/monteferro/pill.gif");
fluoride_counter ++;
$('.cobs_collected').html(fluoride_counter);
check_counters();
});
$("#corn15").click (function () {
$("#corn15").attr('src', "imgs/monteferro/pill.gif");
fluoride_counter ++;
$('.cobs_collected').html(fluoride_counter);
check_counters();
});
$("#corn16").click (function () {
$("#corn1").attr('src', "imgs/monteferro/pill.gif");
fluoride_counter ++;
$('.cobs_collected').html(fluoride_counter);
check_counters();
});
$("#corn17").click (function () {
loose_counter ++;
check_counters();
});
$("#corn18").click (function () {
loose_counter ++;
check_counters();
});
$("#corn19").click (function () {
$("#corn19").attr('src', "imgs/monteferro/pill.gif");
fluoride_counter ++;
$('.cobs_collected').html(fluoride_counter);
check_counters();
});
$("#corn20").click (function () {
$("#corn20").attr('src', "imgs/monteferro/pill.gif");
fluoride_counter ++;
$('.cobs_collected').html(fluoride_counter);
check_counters();
});
function check_counters() {
if (fluoride_counter == 5) {
console.log ("you won!");
fluoride_counter = 0;
loose_counter = 0;
$(".ned_baloon2,.ned_baloon1, .message1, .message2 ").hide();
$(".message_won").show();
$('.cobs_collected').html("5");
}
3 years ago
3 years ago
if (loose_counter == 6) {
console.log ("you lost!");
3 years ago
fluoride_counter = 0;
loose_counter = 0;
3 years ago
$(".message_won").hide();
$(".message_lost, .farmer").show();
}
}
3 years ago
3 years ago
$("#try_again").click (function () {
$(".corn").attr('src', "imgs/monteferro/corn.gif");
$('.cobs_collected').html(fluoride_counter);
$(".message_lost, .farmer").hide();
});
3 years ago
</script>
<script type="text/javascript" src="index.js" ></script>
</body>