Copernic et le système solaire (pl_07) - Script 
Educators & Designers: help improving this quest!
Comments and feedback: discuss in the Forum
Improve translations: comment the Google Sheet
Improve the script: propose an edit here
quest_start 
// pl_07 | Solar System (Torun)
// 
// WANTED:
// Cards:
// - NicolausCopernicus (scientific figure)
// - planet_mercury (planetary education)
// - planet_venus (planetary education)
// - planet_earth (planetary education)
// - planet_mars (planetary education)
// - planet_jupiter (planetary education)
// - planet_saturn (planetary education)
// - planet_uranus (planetary education)
// - planet_neptune (planetary education)
// - telescope (scientific instrument)
// - planetarium (educational facility)
// Tasks:
// - Fix solar system map with correct planetary order
// - Clean and learn about telescope parts
// - Visit each planet in order with individual activities
// Activities:
// - order planets_order (arrange 8 planets from Sun)
// - piano planet_order_song (musical mnemonic for planet order)
// - cleancanvas telescope_lens_clean (clean telescope lens)
// - memory telescope_parts (match telescope components)
// - jigsawpuzzle planet_mercury through planet_neptune (8 individual planet jigsaws)
group: Intro
actor: NARRATOR
image: torun_street
color: red
type: panel
---
<<declare $planets_found = 0>>
<<declare $planets_needed = 8>>
<<card torun>>
Bienvenue à TORUŃ en POLOGNE. #line:0673aff 
<<card nicolaus_copernicus>>
COPERNIC est né ici. #line:00fe710 
<<card nicolaus_copernicus_house>>
ANTURA est coincé dans sa maison ! #line:00589bc 
Demandons de l’aide à COPERNIC. #line:031963d 
quest_end 
type: panel_endgame
color: green
actor: NARRATOR
---
Excellent travail sur cette quête. #line:0a0a2ce 
<<card solar_system>>
Aujourd'hui, nous avons appris le SYSTÈME SOLAIRE. #line:0cce3a4 
<<jump post_quest_activity>>
post_quest_activity 
type: panel
color: green
tags: proposal
actor: NARRATOR
---
Dessinez les 8 PLANÈTES avec le SOLEIL au centre. #line:064c54e 
<<quest_end>>
COPERNICUS_OUTSIDE 
// LEt'S MEET COPERNICUS
group: Intro
actor: SENIOR_M
---
<<action card nicolaus_copernicus_house>>
Bonjour ! Je suis Nicolas Copernic. #line:0c5050d 
Je peux vous aider à sauver ANTURA. #line:0a41815 
Tout d’abord, corrigez ma carte du SYSTÈME SOLAIRE. #line:0f17151 
Aide avec les planètes #line:07bdf91 
PLANETS_ORDER 
// ACTIVITY – ORDER THE PLANETS
group: SolarSystem
tags:
---
<<activity order planets_order AFTER_PLANETS_ORDER>>
AFTER_PLANETS_ORDER 
group: SolarSystem
actor: SENIOR_M
---
Bien joué! #line:06ea147 
Il y a longtemps, les gens mettaient la TERRE au centre. #line:0af451b 
<<card heliocentric_model>>
J'ai trouvé que le SOLEIL est au centre. #line:0392dfd 
INSIDE_MUSEUM 
group: Museum
actor: GUIDE_F
image: museum_hall
---
<<card solar_system>>
Voici un SYSTÈME SOLAIRE en 3D. #line:0069f70 
Ça tourne dans le couloir. #line:04de41d 
Trouvez des PLANÈTES pour les ajouter ici. #line:01e7dda 
Nettoyer le TÉLESCOPE. #line:0c22e2c 
TELESCOPE_DIRTY 
// ACTIVITY – CLEAN THE TELESCOPE LENS
group: Museum
actor: NARRATOR
image: telescope_lens_dirty
---
<<activity cleancanvas telescope_lens_clean tutorial>>
telescope_lens_clean_done 
group: Museum
actor: NARRATOR
---
Excellent travail de nettoyage de l'objectif ! #line:06ba2c4 
Maintenant, nous pouvons mieux voir les planètes. #line:0dd17cf 
TELESCOPE_EXPLAIN 
group: Museum
actor: SENIOR_M
---
<<card telescope>>
Un TÉLESCOPE nous aide à voir loin. #line:0314ed5 
<<card lens>>
Il possède une LENTILLE et un OCULAIRE. #line:062693e 
<<card planetarium>>
Un PLANÉTARIUM montre le ciel à l'intérieur. #line:0cab30b 
TELESCOPE_PARTS 
group: Museum
actor: NARRATOR
---
<<activity memory telescope_parts tutorial>>
Mémoire de piano #line:0db50a7 
    <<jump PIANO_INTRO>>
//--------------------------------------------
// PIANO – PLANET ORDER SONG
//--------------------------------------------
PIANO_INTRO 
group: Museum
actor: SENIOR_M
image: planet_piano_card
---
La musique aide la mémoire. #line:08d3111 
Jouez la mélodie de l'ordre PLANET. #line:0471676 
Jouer #line:0f08a91 
PIANO_PLAY 
group: Museum
actor: NARRATOR
---
<<activity piano planet_order_song tutorial>>
Trouver des PLANÈTES #line:013de52 
//--------------------------------------------
// DISCOVER THE PLANETS
//--------------------------------------------
FIND_PLANETS 
group: SolarSystem
actor: GUIDE_F
image: solar_model_center
---
<<card astronomy>>
Visitons chaque PLANÈTE. #line:0b015a8 
Ils apparaissent dans le modèle lorsqu'ils sont trouvés. #line:00d6fdf 
Commencez avec MERCURE #line:04ba61d 
// MERCURY
PLANET_MERCURY 
group: SolarSystem
actor: GUIDE_F
image: planet_mercury
---
<<card mercury>>
MERCURE est le plus proche du SOLEIL. #line:0235ac2 
Ça tourne très vite. #line:03c1c86 
<<activity jigsawpuzzle planet_mercury tutorial>>
// Add Mercury to the model (handled by activity)
<<set $planets_found += 1>>
// VENUS
PLANET_VENUS 
group: SolarSystem
actor: GUIDE_F
image: planet_venus
---
<<card venus>>
VÉNUS est très chaude. #line:0fbc89d 
D'épais nuages le recouvrent. #line:0244228 
<<activity jigsawpuzzle planet_venus tutorial>>
// Add Venus to the model (handled by activity)
<<set $planets_found += 1>>
// EARTH
PLANET_EARTH 
group: SolarSystem
actor: GUIDE_F
image: planet_earth
---
<<card earth>>
La TERRE est notre maison. #line:01002c7 
Il y a de la terre, de l'air et des mers. #line:032ae50 
<<activity jigsawpuzzle planet_earth tutorial>>
// Add Earth to the model (handled by activity)
<<set $planets_found += 1>>
// MARS
PLANET_MARS 
group: SolarSystem
actor: GUIDE_F
image: planet_mars
---
<<card mars>>
MARS est rouge et poussiéreux. #line:007f580 
Il y a de grands volcans. #line:0bc9c83 
<<activity jigsawpuzzle planet_mars tutorial>>
// Add Mars to the model (handled by activity)
<<set $planets_found += 1>>
PLANET_JUPITER 
// JUPITER
group: SolarSystem
actor: GUIDE_F
image: planet_jupiter
---
<<card jupiter>>
JUPITER est la plus grande PLANÈTE. #line:06e72b3 
Il a une grande tache rouge. #line:094d7dd 
<<activity jigsawpuzzle planet_jupiter tutorial>>
// Add Jupiter to the model (handled by activity)
<<set $planets_found += 1>>
Le prochain est SATURNE #line:07229a6 
    <<jump PLANET_SATURN>>
// SATURN
PLANET_SATURN 
group: SolarSystem
actor: GUIDE_F
image: planet_saturn
---
<<card saturn>>
SATURNE a des ANNEAUX brillants. #line:0e6de7d 
De nombreuses LUNES gravitent autour d'elle. #line:00a70f4 
<<activity jigsawpuzzle planet_saturn tutorial>>
// Add Saturn to the model (handled by activity)
<<set $planets_found += 1>>
Le prochain est URANUS #line:09ba1f7 
    <<jump PLANET_URANUS>>
// URANUS
PLANET_URANUS 
group: SolarSystem
actor: GUIDE_F
image: planet_uranus
---
<<card uranus>>
URANUS tourne sur le côté. #line:04df973 
Cela semble bleu-vert. #line:01e724d 
<<activity jigsawpuzzle planet_uranus tutorial>>
// Add Uranus to the model (handled by activity)
<<set $planets_found += 1>>
// NEPTUNE
PLANET_NEPTUNE 
group: SolarSystem
actor: GUIDE_F
image: planet_neptune
---
<<card neptune>>
NEPTUNE est loin et venteux. #line:0191651 
C'est d'un bleu profond. #line:0584147 
<<activity jigsawpuzzle planet_neptune tutorial>>
// Add Neptune to the model (handled by activity)
<<set $planets_found += 1>>
<<jump ALL_PLANETS_FOUND>>
// ALL PLANETS FOUND
ALL_PLANETS_FOUND 
group: SolarSystem
actor: SENIOR_M
image: solar_model_finale
---
Vous avez trouvé les 8 PLANÈTES. #line:0d91787 
Le modèle est complet. #line:0d9ce49 
Maintenant, sauvez ANTURA ! #line:0896149 
RESCUE_ANTURA_GUIDE 
group: Finale
actor: GUIDE_F
image: antura_trail
---
ANTURA est gratuit ! #line:0294715 
RESCUE_ANTURA_COP 
group: End
actor: SENIOR_M
image: antura_rescued
---
Merci pour votre aide. #line:0d7e5be 
N'oubliez pas que le SOLEIL est au centre. #line:0b0e4bf 
FINAL_QUIZ 
group: End
actor: NARRATOR
image: quiz_solar_system
---
Répondez aux questions. #line:08bea58 
<<activity quiz copernicus_basics tutorial>>
// Suggested questions in preset:
// 1) Who is in the center of the SOLAR SYSTEM? a) EARTH  b) SUN ✅  c) MOON
// 2) How many PLANETS are there?             a) 7  b) 8 ✅  c) 9
// 3) COPERNICUS was from which country?       a) POLAND ✅  b) ITALY  c) FRANCE
<<jump QUEST_COMPLETE>>
QUEST_COMPLETE 
group: End
color: red
---
Bien joué! #line:03529aa 
spawned_child 
///////// NPCs SPAWNED IN THE SCENE //////////
// these npc are spawn automatically in the scene
// use these to add random facts. everythime you meet them
// they will say one of these lines randomly
group: Spawned
actor: KID_M
---
J'ai vu NEPTUNE bleu. #line:0db085c 
Les anneaux de SATURNE brillent. #line:0a7ab40 
spawned_student 
group: Spawned
actor: KID_F
---
Les planètes se déplacent autour du SOLEIL. #line:0275852 
la LUNE est notre satellite. #line:07430b2 
