[[Stay inside the city]]
[[Go explore the outside world]]You decide to stay inside the city. (set: $Explored to false)
(live:2s)[(Stop:) As you stay inside the city, you start to feel the ground shake.]
(live:4s)[(Stop:)[[Earthquake]]]You decide to explore outside in the frozen wasteland. (set: $Explored to true)
(live:2s)[(Stop:)Eventually, you are caught and jailed. While you are waiting to serve out your sentence, the ground begins to shake.]
(live:4s)[(Stop:)[[Earthquake]]](if: $Explored is true)[The ground begins to shake, and the jailor unlocks your cell, and the cell of the one other prisoner you notice, before dying. You remember the truck you drove before and hurry to get over to it to escape.]
(if: $Explored is false)[The ground begins to shake, and you make sure your family is alright. Eventually the earthquake stops, but the entire city is ruined. without anything to do, you stay home, trying to hold off looters and make sure your family is safe.]
<script>
function EmbedTwineUpdateHeight(){
var passage = document.getElementsByTagName("tw-passage")[0];
if (passage === undefined){//SugarCube
passage = document.getElementById("passages");
}
var newHeight = passage.offsetHeight;
if(newHeight<500){newHeight=500;}
window.parent.postMessage(["setHeight", newHeight], "*");
console.log(newHeight);
}
setTimeout(EmbedTwineUpdateHeight, 50);
</script>