Astroport.ONE/adventure/rooms/end.sh

56 lines
1.2 KiB
Bash
Raw Permalink Normal View History

2022-10-30 02:22:28 +01:00
#!/bin/bash
clear
# This is the endgame. This file does nothing but give you the final bit of storyline.
# Use (over-use) of 'sleep' is for dramatic effect - play around with it, see how it reads.
# Let's reset the lever, now that we're done with it.
2024-02-22 15:22:48 +01:00
sed -i 's/on/off/' ../logic/leverlogic.ben
sed -i 's/on/off/' ../logic/leverlogic2.ben
2022-10-30 02:22:28 +01:00
# Initialise the Title Art
file1="../art/titleart.ben"
while IFS= read -r line
do
echo "$line"
done <"$file1"
echo
sleep 1
2023-11-07 12:14:11 +01:00
echo "Voici la fin de cette petite aventure."
2022-10-30 02:22:28 +01:00
echo
sleep 4
echo "Vous venez de visiter la forêt où s'est posé Astroport ONE."
sleep 3
echo
2024-01-31 14:28:26 +01:00
echo "MERCI"
2022-10-30 02:22:28 +01:00
echo
2024-01-31 14:28:26 +01:00
sleep 3
2022-10-30 02:22:28 +01:00
echo
file1="../art/bigfinish.ben"
while IFS= read -r line
do
echo "$line"
done <"$file1"
echo
echo
read -p "Appuyez sur [ENTER] pour terminer..."
echo
clear
file1="../art/titleart.ben"
while IFS= read -r line
do
echo "$line"
done <"$file1"
echo
echo "Merci d'avoir joué le jeu"
echo "Je suis heureux de vous avoir fait partager le rêve des astronautes terraformeurs."
echo
2024-01-31 14:28:26 +01:00
echo "Le futur ne se prédit pas, il se construit."
2022-10-30 02:22:28 +01:00
echo
echo " - @Fred"
echo
# That's all, folks!
exit