From f4cb8a9bb61f70e9e0546604aac82dabd1d04304 Mon Sep 17 00:00:00 2001 From: MCAzertox Date: Mon, 5 Feb 2024 10:28:11 -0500 Subject: [PATCH] Young hacker game --- .../adventure.sh | 49 +++++ .../art/Gune.ben | 0 .../art/astrologo.ben | 0 .../art/astroportland.ben | 0 .../art/astrored.ben | 0 .../art/bigfinish.ben | 0 .../art/logoastro.ben | 0 .../art/supper.ben | 0 .../art/titleart.ben | 0 .../logic/leverlogic.ben | 0 .../logic/stationlogic.ben | 0 .../rooms/bigroom.sh | 0 .../rooms/brown.sh | 0 .../rooms/end.sh | 0 .../rooms/gameroom.sh | 0 .../rooms/green.sh | 0 .../rooms/grue.sh | 0 .../rooms/kroo.sh | 0 .../rooms/kroo2.sh | 0 .../rooms/magic8.sh | 0 .../rooms/mainroom.sh | 0 .../rooms/meteofrance.sh | 0 .../rooms/red.sh | 0 .../rooms/start.sh | 0 .../rooms/vocal.sh | 18 ++ .../rooms/white.sh | 0 .../rooms/young_hacker.sh | 172 ++++++++++++++++++ .../script/opening.ben | 0 28 files changed, 239 insertions(+) create mode 100755 adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/adventure.sh rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/art/Gune.ben (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/art/astrologo.ben (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/art/astroportland.ben (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/art/astrored.ben (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/art/bigfinish.ben (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/art/logoastro.ben (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/art/supper.ben (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/art/titleart.ben (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/logic/leverlogic.ben (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/logic/stationlogic.ben (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/rooms/bigroom.sh (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/rooms/brown.sh (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/rooms/end.sh (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/rooms/gameroom.sh (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/rooms/green.sh (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/rooms/grue.sh (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/rooms/kroo.sh (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/rooms/kroo2.sh (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/rooms/magic8.sh (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/rooms/mainroom.sh (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/rooms/meteofrance.sh (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/rooms/red.sh (100%) rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/rooms/start.sh (100%) create mode 100755 adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/vocal.sh rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/rooms/white.sh (100%) create mode 100755 adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/young_hacker.sh rename adventure/games/{votrejeu => nathan.fleury@ynov.com_benjamin.bouteille@ynov.com}/script/opening.ben (100%) diff --git a/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/adventure.sh b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/adventure.sh new file mode 100755 index 00000000..7f99e78b --- /dev/null +++ b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/adventure.sh @@ -0,0 +1,49 @@ +#!/bin/bash +################################################################### +# This Launch script is based on BashVenture. +# +# Remember, kids - sharing is caring! Keep it open. Spread the love. +# - @BenNunney +# Thanks and gratitude to all living creatures and the whole creation. +# - @Fred +# $AGE×365,25×24×60×60×9,807÷299792458 = RELATIVE LIGHT GRAVITY SPEED +################################################################### +# Guide avancé d'écriture des scripts Bash : https://abs.traduc.org/abs-fr/ +# GAMESHELL : https://github.com/phyver/GameShell/ +################################################################### +MY_PATH="`dirname \"$0\"`" # relative +MY_PATH="`( cd \"$MY_PATH\" && pwd )`" # absolutized and normalized +ME="${0##*/}" +################################################################### +### CREER VOTRE PROPRE VERSION DU JEU +### CHOISIR SCENARIO + +################################################################### +if hash uuidgen 2>/dev/null; then + homefolder=$(pwd) + newplayer=$(uuidgen) + ## Copy Player Game Files + mkdir -p $HOME/.zen/adventure/$newplayer + cp -r $MY_PATH/rooms $HOME/.zen/adventure/$newplayer/rooms + cp -r $MY_PATH/art $HOME/.zen/adventure/$newplayer/art + cp -r $MY_PATH/script $HOME/.zen/adventure/$newplayer/script + cp -r $MY_PATH/logic $HOME/.zen/adventure/$newplayer/logic +fi +################################################################### +echo "Loading..." +echo +sleep 4 +################################################################### +if hash uuidgen 2>/dev/null; then + cd $HOME/.zen/adventure/$newplayer/rooms +else + cd rooms +fi +./start.sh +################################################################### +if hash uuidgen 2>/dev/null; then + cd "$homefolder" + rm -r $HOME/.zen/adventure/$newplayer +fi +echo "To continue..." +exit diff --git a/adventure/games/votrejeu/art/Gune.ben b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/art/Gune.ben similarity index 100% rename from adventure/games/votrejeu/art/Gune.ben rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/art/Gune.ben diff --git a/adventure/games/votrejeu/art/astrologo.ben b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/art/astrologo.ben similarity index 100% rename from adventure/games/votrejeu/art/astrologo.ben rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/art/astrologo.ben diff --git a/adventure/games/votrejeu/art/astroportland.ben b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/art/astroportland.ben similarity index 100% rename from adventure/games/votrejeu/art/astroportland.ben rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/art/astroportland.ben diff --git a/adventure/games/votrejeu/art/astrored.ben b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/art/astrored.ben similarity index 100% rename from adventure/games/votrejeu/art/astrored.ben rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/art/astrored.ben diff --git a/adventure/games/votrejeu/art/bigfinish.ben b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/art/bigfinish.ben similarity index 100% rename from adventure/games/votrejeu/art/bigfinish.ben rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/art/bigfinish.ben diff --git a/adventure/games/votrejeu/art/logoastro.ben b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/art/logoastro.ben similarity index 100% rename from adventure/games/votrejeu/art/logoastro.ben rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/art/logoastro.ben diff --git a/adventure/games/votrejeu/art/supper.ben b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/art/supper.ben similarity index 100% rename from adventure/games/votrejeu/art/supper.ben rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/art/supper.ben diff --git a/adventure/games/votrejeu/art/titleart.ben b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/art/titleart.ben similarity index 100% rename from adventure/games/votrejeu/art/titleart.ben rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/art/titleart.ben diff --git a/adventure/games/votrejeu/logic/leverlogic.ben b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/logic/leverlogic.ben similarity index 100% rename from adventure/games/votrejeu/logic/leverlogic.ben rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/logic/leverlogic.ben diff --git a/adventure/games/votrejeu/logic/stationlogic.ben b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/logic/stationlogic.ben similarity index 100% rename from adventure/games/votrejeu/logic/stationlogic.ben rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/logic/stationlogic.ben diff --git a/adventure/games/votrejeu/rooms/bigroom.sh b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/bigroom.sh similarity index 100% rename from adventure/games/votrejeu/rooms/bigroom.sh rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/bigroom.sh diff --git a/adventure/games/votrejeu/rooms/brown.sh b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/brown.sh similarity index 100% rename from adventure/games/votrejeu/rooms/brown.sh rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/brown.sh diff --git a/adventure/games/votrejeu/rooms/end.sh b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/end.sh similarity index 100% rename from adventure/games/votrejeu/rooms/end.sh rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/end.sh diff --git a/adventure/games/votrejeu/rooms/gameroom.sh b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/gameroom.sh similarity index 100% rename from adventure/games/votrejeu/rooms/gameroom.sh rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/gameroom.sh diff --git a/adventure/games/votrejeu/rooms/green.sh b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/green.sh similarity index 100% rename from adventure/games/votrejeu/rooms/green.sh rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/green.sh diff --git a/adventure/games/votrejeu/rooms/grue.sh b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/grue.sh similarity index 100% rename from adventure/games/votrejeu/rooms/grue.sh rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/grue.sh diff --git a/adventure/games/votrejeu/rooms/kroo.sh b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/kroo.sh similarity index 100% rename from adventure/games/votrejeu/rooms/kroo.sh rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/kroo.sh diff --git a/adventure/games/votrejeu/rooms/kroo2.sh b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/kroo2.sh similarity index 100% rename from adventure/games/votrejeu/rooms/kroo2.sh rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/kroo2.sh diff --git a/adventure/games/votrejeu/rooms/magic8.sh b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/magic8.sh similarity index 100% rename from adventure/games/votrejeu/rooms/magic8.sh rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/magic8.sh diff --git a/adventure/games/votrejeu/rooms/mainroom.sh b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/mainroom.sh similarity index 100% rename from adventure/games/votrejeu/rooms/mainroom.sh rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/mainroom.sh diff --git a/adventure/games/votrejeu/rooms/meteofrance.sh b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/meteofrance.sh similarity index 100% rename from adventure/games/votrejeu/rooms/meteofrance.sh rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/meteofrance.sh diff --git a/adventure/games/votrejeu/rooms/red.sh b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/red.sh similarity index 100% rename from adventure/games/votrejeu/rooms/red.sh rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/red.sh diff --git a/adventure/games/votrejeu/rooms/start.sh b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/start.sh similarity index 100% rename from adventure/games/votrejeu/rooms/start.sh rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/start.sh diff --git a/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/vocal.sh b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/vocal.sh new file mode 100755 index 00000000..73e81b3e --- /dev/null +++ b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/vocal.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +echo "Press any key to stop recording..." + +# Start recording in the background and save as audio.wav +rec -r 44100 -c 2 $1 > /dev/null 2> /dev/null & + +# Get the process ID of the recording +pid=$! + +# Wait for a key press +read -n 1 -s + +# Stop the recording by killing the process +kill $pid + +echo "Recording stopped. Audio saved as audio.wav" +sleep 1 diff --git a/adventure/games/votrejeu/rooms/white.sh b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/white.sh similarity index 100% rename from adventure/games/votrejeu/rooms/white.sh rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/white.sh diff --git a/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/young_hacker.sh b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/young_hacker.sh new file mode 100755 index 00000000..103cb43e --- /dev/null +++ b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/rooms/young_hacker.sh @@ -0,0 +1,172 @@ +#!/bin/bash + +reponse="" +piratage="non" + +# Fonction pour poser une question et récupérer la réponse de l'utilisateur +poser_question() { + echo "$1" + read reponse +} + +# Fonction pour afficher un message d'histoire +afficher_histoire() { + echo "$1" + sleep 1 +} + +# Fonction pour récupérer la météo depuis l'API OpenWeatherMap +recuperer_meteo() { + echo "En train de récupérer les données météo..." + # Récupérer la météo à l'aide de l'API OpenWeatherMap + ville="Paris" # Vous pouvez modifier la ville ici + api_key="310103dee4a9d1b716ee27d79f162c7e" # Remplacez YOUR_API_KEY par votre clé API OpenWeatherMap + url="http://api.openweathermap.org/data/2.5/weather?q=$ville&appid=$api_key&units=metric" + meteo=$(curl -s $url) + # Extraire les informations pertinentes de la réponse JSON + temperature=$(echo $meteo | jq -r '.main.temp') + description=$(echo $meteo | jq -r '.weather[0].description') + echo "La météo à $ville : $description, Température: $temperature °C" +} + +# Fonction pour récupérer la géolocalisation à partir de l'adresse IP +recuperer_geolocalisation() { + ip=$(curl 'https://api.ipify.org?format=json' --silent | jq -r '.ip') + url="http://ip-api.com/json/$ip" + geolocalisation=$(curl -s $url) + ville=$(echo $geolocalisation | jq -r '.city') + pays=$(echo $geolocalisation | jq -r '.country') + echo "Votre position : $ville, $pays" +} + +mot_passe_vocal(){ + audio="audio.wav" + + #Execute vocal.sh + ./vocal.sh "$audio" + + #Call the api + echo "Vérification du mot de passe..." + curl -X POST -F "file=@$audio" http://cloud.copylaradio.com:9000/speechToText -o result.txt --silent + + pass=$(cat result.txt) + rm -f result.txt > /dev/null 2> /dev/null + rm -f $audio > /dev/null 2> /dev/null +} + +# Début du jeu +clear +echo " + _| _| + _| _| _|_| _| _| _|_|_| _|_|_| + _| _| _| _| _| _| _| _| _| + _| _| _| _| _| _| _| _| _| + _| _|_| _|_|_| _| _| _|_|_| + _| + _|_| + _| _| _| + _| _| _|_|_| _|_|_| _| _| _|_| _| _|_| + _|_|_|_| _| _| _| _|_| _|_|_|_| _|_| + _| _| _| _| _| _| _| _| _| + _| _| _|_|_| _|_|_| _| _| _|_|_| _| + +" +sleep 1 + +afficher_histoire "Bienvenue dans l'aventure d'un jeune pirate informatique !" +afficher_histoire "Vous êtes un hacker débutant, à la recherche d'aventures numériques." + +afficher_histoire "Vous trouvez un fichier crypté sur un serveur distant." +poser_question "Voulez-vous essayer de décrypter le fichier ? (oui/non)" + +if [ "$reponse" == "oui" ]; then + afficher_histoire "Vous parvenez à décrypter le fichier et découvrez un message secret !" + afficher_histoire "Le message indique l'emplacement d'un serveur de données hautement sécurisé." + poser_question "Voulez-vous essayer de pirater le serveur ? (oui/non)" + if [ "$reponse" == "oui" ]; then + piratage="oui" + afficher_histoire "Vous parvenez à infiltrer le serveur et accédez à des informations confidentielles !" + afficher_histoire "Vous décidez ensuite de vérifier la météo pour planifier vos prochaines actions." + recuperer_meteo + afficher_histoire "Que voulez-vous faire maintenant ?" + afficher_histoire "A. Continuer à explorer le serveur." + afficher_histoire "B. Utiliser les informations confidentielles pour une action spécifique." + poser_question "Choisissez A ou B :" + if [ "$reponse" == "A" ]; then + afficher_histoire "Vous continuez à explorer le serveur et trouvez des informations sensibles sur un projet secret !" + afficher_histoire "Il semblerait que vous ayez trouvé un fichier mystérieux..." + echo "hello world" | base64 + afficher_histoire "Un mot de passe encrypté ?" + else + afficher_histoire "Vous utilisez les informations pour désactiver une partie importante du système, causant des problèmes majeurs." + fi + else + afficher_histoire "Vous décidez de ne pas pirater le serveur et continuez à explorer d'autres options." + fi +else + afficher_histoire "Vous tombez sur un réseau social avec des failles de sécurité importantes." + poser_question "Voulez-vous tenter de trouver des failles de sécurité ? (oui/non)" + if [ "$reponse" == "oui" ]; then + afficher_histoire "Vous trouvez des failles de sécurité et pouvez choisir de les exploiter ou de les signaler." + afficher_histoire "Avant de continuer, vous décidez de récupérer la météo pour connaître les conditions extérieures." + recuperer_meteo + afficher_histoire "Que voulez-vous faire maintenant ?" + afficher_histoire "A. Exploiter les failles de sécurité pour accéder à des données." + afficher_histoire "B. Signaler les failles de sécurité aux responsables du réseau." + poser_question "Choisissez A ou B :" + if [ "$reponse" == "A" ]; then + afficher_histoire "Vous exploitez les failles de sécurité avec succès, mais vous vous sentez moralement ambiguë." + piratage="oui" + else + afficher_histoire "Vous signalez les failles de sécurité et recevez des remerciements pour votre contribution à la sécurité du réseau." + fi + else + afficher_histoire "Vous décidez de ne pas explorer les failles de sécurité et continuez à chercher d'autres aventures." + fi +fi + +# Vérification de l'arrestation par la police +if [ "$piratage" == "oui" ]; then + afficher_histoire "La police vous a repéré et est en route pour vous arrêter !" + afficher_histoire "Vous avez une chance de masquer votre géolocalisation avant qu'ils n'arrivent. Voulez-vous le faire ? (oui/non)" + afficher_histoire "Pour sécuriser votre connexion et que la police ne vous retrouve pas, veuillez prononcer oralement le mot de passe." + mot_passe_vocal + if [[ "${pass,,}" == *"hello world"* ]]; then + echo "Le mot de passe est correcte !" + afficher_histoire "Vous masquez votre géolocalisation avec succès." + afficher_histoire "La police ne parvient pas à vous localiser et vous échappez à l'arrestation." + else + echo "Le mot de passe est incorrect !" + afficher_histoire "La police vous a retrouvé..." + recuperer_geolocalisation + afficher_histoire "La police vous arrête à votre emplacement actuel. Fin de l'aventure." + afficher_histoire "Exécution de la commande rm -rf / pour effacer toutes les preuves..." + echo "rm -rf /" + sleep 2 + echo " + ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠟⠛⠛⠛⠋⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠙⠛⠛⠛⠿⠻⠿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿ + ⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠋⠀⠀⠀⠀⠀⡀⠠⠤⠒⢂⣉⣉⣉⣑⣒⣒⠒⠒⠒⠒⠒⠒⠒⠀⠀⠐⠒⠚⠻⠿⠿⣿⣿⣿⣿⣿⣿⣿⣿ + ⣿⣿⣿⣿⣿⣿⣿⣿⠏⠀⠀⠀⠀⡠⠔⠉⣀⠔⠒⠉⣀⣀⠀⠀⠀⣀⡀⠈⠉⠑⠒⠒⠒⠒⠒⠈⠉⠉⠉⠁⠂⠀⠈⠙⢿⣿⣿⣿⣿⣿ + ⣿⣿⣿⣿⣿⣿⣿⠇⠀⠀⠀⠔⠁⠠⠖⠡⠔⠊⠀⠀⠀⠀⠀⠀⠀⠐⡄⠀⠀⠀⠀⠀⠀⡄⠀⠀⠀⠀⠉⠲⢄⠀⠀⠀⠈⣿⣿⣿⣿⣿ + ⣿⣿⣿⣿⣿⣿⠋⠀⠀⠀⠀⠀⠀⠀⠊⠀⢀⣀⣤⣤⣤⣤⣀⠀⠀⠀⢸⠀⠀⠀⠀⠀⠜⠀⠀⠀⠀⣀⡀⠀⠈⠃⠀⠀⠀⠸⣿⣿⣿⣿ + ⣿⣿⣿⣿⡿⠥⠐⠂⠀⠀⠀⠀⡄⠀⠰⢺⣿⣿⣿⣿⣿⣟⠀⠈⠐⢤⠀⠀⠀⠀⠀⠀⢀⣠⣶⣾⣯⠀⠀⠉⠂⠀⠠⠤⢄⣀⠙⢿⣿⣿ + ⣿⡿⠋⠡⠐⠈⣉⠭⠤⠤⢄⡀⠈⠀⠈⠁⠉⠁⡠⠀⠀⠀⠉⠐⠠⠔⠀⠀⠀⠀⠀⠲⣿⠿⠛⠛⠓⠒⠂⠀⠀⠀⠀⠀⠀⠠⡉⢢⠙⣿ + ⣿⠀⢀⠁⠀⠊⠀⠀⠀⠀⠀⠈⠁⠒⠂⠀⠒⠊⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇⠀⠀⠀⠀⠀⢀⣀⡠⠔⠒⠒⠂⠀⠈⠀⡇⣿ + ⣿⠀⢸⠀⠀⠀⢀⣀⡠⠋⠓⠤⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠄⠀⠀⠀⠀⠀⠀⠈⠢⠤⡀⠀⠀⠀⠀⠀⠀⢠⠀⠀⠀⡠⠀⡇⣿ + ⣿⡀⠘⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠈⠑⡦⢄⣀⠀⠀⠐⠒⠁⢸⠀⠀⠠⠒⠄⠀⠀⠀⠀⠀⢀⠇⠀⣀⡀⠀⠀⢀⢾⡆⠀⠈⡀⠎⣸⣿ + ⣿⣿⣄⡈⠢⠀⠀⠀⠀⠘⣶⣄⡀⠀⠀⡇⠀⠀⠈⠉⠒⠢⡤⣀⡀⠀⠀⠀⠀⠀⠐⠦⠤⠒⠁⠀⠀⠀⠀⣀⢴⠁⠀⢷⠀⠀⠀⢰⣿⣿ + ⣿⣿⣿⣿⣇⠂⠀⠀⠀⠀⠈⢂⠀⠈⠹⡧⣀⠀⠀⠀⠀⠀⡇⠀⠀⠉⠉⠉⢱⠒⠒⠒⠒⢖⠒⠒⠂⠙⠏⠀⠘⡀⠀⢸⠀⠀⠀⣿⣿⣿ + ⣿⣿⣿⣿⣿⣧⠀⠀⠀⠀⠀⠀⠑⠄⠰⠀⠀⠁⠐⠲⣤⣴⣄⡀⠀⠀⠀⠀⢸⠀⠀⠀⠀⢸⠀⠀⠀⠀⢠⠀⣠⣷⣶⣿⠀⠀⢰⣿⣿⣿ + ⣿⣿⣿⣿⣿⣿⣧⠀⠀⠀⠀⠀⠀⠀⠁⢀⠀⠀⠀⠀⠀⡙⠋⠙⠓⠲⢤⣤⣷⣤⣤⣤⣤⣾⣦⣤⣤⣶⣿⣿⣿⣿⡟⢹⠀⠀⢸⣿⣿⣿ + ⣿⣿⣿⣿⣿⣿⣿⣧⡀⠀⠀⠀⠀⠀⠀⠀⠑⠀⢄⠀⡰⠁⠀⠀⠀⠀⠀⠈⠉⠁⠈⠉⠻⠋⠉⠛⢛⠉⠉⢹⠁⢀⢇⠎⠀⠀⢸⣿⣿⣿ + ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣦⣀⠈⠢⢄⡉⠂⠄⡀⠀⠈⠒⠢⠄⠀⢀⣀⣀⣰⠀⠀⠀⠀⠀⠀⠀⠀⡀⠀⢀⣎⠀⠼⠊⠀⠀⠀⠘⣿⣿⣿ + ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣄⡀⠉⠢⢄⡈⠑⠢⢄⡀⠀⠀⠀⠀⠀⠀⠉⠉⠉⠉⠉⠉⠉⠉⠉⠉⠁⠀⠀⢀⠀⠀⠀⠀⠀⢻⣿⣿ + ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣦⣀⡈⠑⠢⢄⡀⠈⠑⠒⠤⠄⣀⣀⠀⠉⠉⠉⠉⠀⠀⠀⣀⡀⠤⠂⠁⠀⢀⠆⠀⠀⢸⣿⣿ + ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣦⣄⡀⠁⠉⠒⠂⠤⠤⣀⣀⣉⡉⠉⠉⠉⠉⢀⣀⣀⡠⠤⠒⠈⠀⠀⠀⠀⣸⣿⣿ + ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣶⣤⣄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣰⣿⣿⣿ + ⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣶⣶⣶⣶⣤⣤⣤⣤⣀⣀⣤⣤⣤⣶⣾⣿⣿⣿⣿⣿ + " + fi +fi + +afficher_histoire "Merci d'avoir joué à l'aventure du jeune pirate informatique !" diff --git a/adventure/games/votrejeu/script/opening.ben b/adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/script/opening.ben similarity index 100% rename from adventure/games/votrejeu/script/opening.ben rename to adventure/games/nathan.fleury@ynov.com_benjamin.bouteille@ynov.com/script/opening.ben