Jules Verne and transportation (fr_03) - Script¶
Quest Index - Language: english - french - polish - italian
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¶
// fr_03 | Jules Verne (Nantes)
//
// Tasks:
// - FIND_BOOKS (collect 4 Jules Verne books)
// - COLLECT_TRAIN (collect from "Around the World in 80 Days")
// - COLLECT_ROCKET (collect from "From Earth to the Moon")
// - COLLECT_SUBMARINE (collect from "20,000 Leagues Under the Sea")
// - COLLECT_BALLOON (collect from "Five Weeks in a Balloon")
tags:
color: red
type: panel
---
<<set $TOTAL_COINS = 0>>
<<set $COLLECTED_ITEMS = 0>>
<<declare $QUEST_ITEMS = 4>>
Welcome to the museum of Jules Verne in Nantes!
quest_end¶
color: green
panel: panel_endgame
---
Now you know something about Jules Verne
and his books!
<<jump post_quest_activity>>
post_quest_activity¶
color: green
panel: panel
tags: proposal
---
Read one of his books!
<<quest_end>>
talk_guide¶
tags: actor=WOMAN
---
<<if $COLLECTED_ITEMS == 0>>
Welcome to the house of Jules Verne!
<<card jules_verne_1>>
<<elseif $COLLECTED_ITEMS < $QUEST_ITEMS>>
<<jump task_find_books>>
<<else>>
<<jump won>>
<<endif>>
task_find_books¶
tags: task
---
<<asset jverne_mission_overview>>
Explore the house and find four of his books!
<<task_start FIND_BOOKS task_find_books_done>>
task_find_books_done¶
tags: actor
---
You found all the books!
GO talk to the guide!
verne_painting¶
tags: actor=TUTOR, asset=jules_verne_1
---
This is Jules Verne. He was a writer.
verne_house¶
tags: actor=TUTOR, asset=jules_verne_house
---
He was born in Nantes in 1828.
map_nantes¶
tags: actor=TUTOR, asset=map_nantes
---
This is a map of Nantes.
open_chest¶
tags:
---
<<if $COLLECTED_ITEMS >= 4>>
<<jump won>>
<<else>>
<<jump task_find_books>>
<<endif>>
won¶
tags: actor=WOMAN
---
<<asset jules_verne_2>>
Great! You met Jules Verne,
the science fiction writer.
<<jump quest_end>>
book_80days¶
color: yellow
tags: actor=TUTOR
---
<<asset book_80days>>
This book is "Around the World in 80 Days."
<<jump train>>
train¶
tags: item
---
<<asset train>>
This is an old train.
<<action COLLECT_TRAIN>>
npc_train¶
color: purple
actor: MAN
---
This old train used STEAM to move.
<<card book_around_the_world_80_days>>
Trains made long trips faster.
<<card book_around_the_world_80_days>>
paint_moon¶
---
<<card rocket>>
This is a space rocket.
book_moon¶
color: yellow
---
<<asset book_earthmoon>>
This book is "From the Earth to the Moon."
<<jump paint_moon>>
npc_rocket¶
color: purple
---
A rocket must push very hard to leave Earth.
<<card book_from_earth_to_moon>>
Jules Verne imagined space travel early.
<<card book_from_earth_to_moon>>
book_20000legues¶
color: yellow
tags: actor=TUTOR
---
<<asset book_underthesea>>
This book is "20,000 Leagues Under the Seas."
<<jump paint_20000>>
paint_20000¶
tags: actor=TUTOR
---
<<asset submarine>>
This is a submarine.
<<action COLLECT_SUBMARINE>>
npc_submarine¶
color: purple
---
A submarine travels underwater.
<<card book_20000_leagues_under_the_sea>>
The Nautilus is Captain Nemo's ship.
<<card book_20000_leagues_under_the_sea>>
paint_5weeks¶
tags: actor=TUTOR
---
<<card balloon>>
This is a hot air balloon.
book_5weeks¶
color: yellow
tags: actor=TUTOR
---
<<card book_5weeksballoon>>
This book is "Five Weeks in a Balloon."
<<jump paint_5weeks>>
npc_balloon¶
color: purple
---
A hot air balloon rises with warm air.
<<card hot_air_balloon>>
It moves with the wind.
<<card hot_air_balloon>>
spawned_visitor¶
///////// 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
color: purple
actor:
spawn_group: generic
---
I love reading books!
<<card book_around_the_world_80_days>>
Did you know that Jules Verne is considered one of the fathers of science fiction?
<<card jules_verne>>
I heard that Jules Verne wrote more than 60 novels in his life!
<<card jules_verne>>
I read that Jules Verne's works have been translated into more than 140 languages!
<<card jules_verne>>
spawned_kid_visitor¶
color: purple
actor: KID_M
spawn_group: kids
---
I like the story about going around the world.
<<card book_around_the_world_80_days>>
The submarine Nautilus sounds amazing.
<<card submarine_nautilus>>
I want to ride a hot air balloon one day.
<<card hot_air_balloon>>
The rocket to the Moon looks very fast.
<<card space_rocket>>
spawned_guide_woman¶
color: purple
actor: WOMAN
spawn_group: guides
---
Around the World in 80 Days shows many places on Earth.
<<card book_around_the_world_80_days>>
The Nautilus is the submarine in 20,000 Leagues Under the Seas.
<<card book_20000_leagues_under_the_sea>>
Jules Verne imagined space travel before real rockets.
<<card book_from_earth_to_moon>>
Five Weeks in a Balloon tells of an air journey over Africa.
<<card book_five_weeks_in_a_balloon>>
spawned_guide_man¶
color: purple
actor: MAN
spawn_group: guides
---
From Earth to the Moon tells of a huge space cannon.
<<card book_from_earth_to_moon>>
20,000 Leagues Under the Seas has Captain Nemo and the Nautilus.
<<card book_20000_leagues_under_the_sea>>
A hot air balloon rises because warm air is light.
<<card hot_air_balloon>>
Many ideas in his books became real technology.
<<card jules_verne>>