The neighbors of France (fr_00) - 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_00 | France GEO
//
tags: Start
color: red
type: panel
---
<<declare $COUNTRIES_COMPLETED = 0>>
<<declare $TOTAL_COUNTRIES = 7>>
<<declare $france_met = false>>
<<declare $france_completed = false>>
<<declare $germany_met = false>>
<<declare $germany_completed = false>>
<<declare $italy_met = false>>
<<declare $italy_completed = false>>
<<declare $swiss_met = false>>
<<declare $swiss_completed = false>>
<<declare $lux_met = false>>
<<declare $lux_completed = false>>
<<declare $belgium_met = false>>
<<declare $belgium_completed = false>>
<<declare $spain_met = false>>
<<declare $spain_completed = false>>
<<action area_small>>
Welcome to France!
We are in Europe.
Let’s meet kids from nearby countries.
quest_end¶
panel: panel_endgame
color: green
---
The quest is complete.
<<jump post_quest_activity>>
post_quest_activity¶
panel: panel
color: green
tags: proposal
---
Can you draw your flag now?
<<quest_end>>
win¶
//--------------------------------------------
// FRANCE
//--------------------------------------------
tags: actor=KID_F
color: purple
panel: panel_endgame
---
Good job! You did it!
<<card concept_europe_map>>
You found part of Europe!
<<jump quest_end>>
france_npc¶
color: blue
group: france
tags: actor=KID_F
---
<<if $COUNTRIES_COMPLETED >= $TOTAL_COUNTRIES>>
<<jump win>>
<<elseif $france_completed>>
Thank you for helping me!
Can you help my other friends?
<<elseif $CURRENT_ITEM == "flag_france">>
Yes, that is my flag! Merci!
<<inventory flag_france remove>>
<<task_end FIND_FRENCH_FLAG>>
<<set $france_completed = true>>
<<set $CURRENT_ITEM = "">>
<<set $COUNTRIES_COMPLETED = $COUNTRIES_COMPLETED + 1>>
Can you find the German flag?
<<set $france_met = true>>
<<action germany_active>>
<<action area_bigger>>
<<jump task_germany >>
<<elseif $CURRENT_ITEM != "">>
That’s not my flag. Mine is blue, white, and red.
<<else>>
Hello! I’m from France!
Antura mixed up all the flags!
My flag is blue, white, and red.
Can you help me?
<<set $france_met = true>>
<<jump task_france>>
<<endif>>
task_france¶
group: france
tags: task
---
<<if $EASY_MODE == true>>
<<asset flag_france>>
<<endif>>
Find the French flag.
<<task_start FIND_FRENCH_FLAG task_france>>
item_flag_france¶
group: france
color: yellow
tags: actor=TUTOR, asset=flag_france
---
<<card flag_france>>
Flag of France.
<<if $CURRENT_ITEM != "flag_france">>
<<inventory flag_france add>>
<<endif>>
germany_npc¶
//--------------------------------------------
// GERMANY
//--------------------------------------------
color: blue
group: germany
tags: actor=MAN
---
<<if $germany_completed>>
<<card flag_germany>>
Thank you for helping me!
Berlin is the capital of Germany.
<<elseif $CURRENT_ITEM == "flag_germany">>
Danke! That is my flag!
Can you help my Spanish friend?
<<set $germany_met = true>>
<<set $COUNTRIES_COMPLETED = $COUNTRIES_COMPLETED + 1>>
<<inventory flag_germany remove>>
<<task_end FIND_GERMAN_FLAG >>
<<action spain_active>>
<<set $germany_completed = true>>
<<jump task_spain>>
<<elseif $CURRENT_ITEM != "">>
Our flag has stripes: black, red, yellow.
<<jump task_germany>>
<<elseif $germany_met == false >>
<<set $germany_met = true>>
Hello! I’m from Germany!
We're famous for castles, forests, and trains!
<<jump task_germany>>
<<endif>>
task_germany¶
group: germany
tags: task
---
<<if $EASY_MODE == true>>
<<card flag_germany>>
<<endif>>
Find the German flag and bring it back.
It has stripes: black, red, yellow.
<<task_start FIND_GERMAN_FLAG task_germany>>
spain_npc¶
//--------------------------------------------
// SPAIN
//--------------------------------------------
group: spain
color: blue
tags:
---
<<if $spain_completed>>
<<card flag_spain>>
Thank you for helping me!
Barcelona and Madrid are big cities in Spain.
<<elseif $CURRENT_ITEM == "flag_spain">>
That is my flag!
Thank you. Can you give my Italian friend their flag?
<<set $spain_met = true>>
<<set $COUNTRIES_COMPLETED = $COUNTRIES_COMPLETED + 1>>
<<inventory flag_spain remove>>
<<task_end FIND_SPANISH_FLAG >>
<<action italy_active>>
<<set $spain_completed = true>>
<<jump task_italy>>
<<elseif $CURRENT_ITEM != "">>
Not mine! Our flag is red and yellow.
<<jump task_spain>>
<<elseif $spain_met == false >>
<<set $spain_met = true>>
Hola! I’m from Spain!
We have a dance called flamenco!
<<jump task_spain>>
<<endif>>
task_spain¶
group: spain
tags: actor=WOMAN
---
<<if $EASY_MODE == true>>
<<card flag_spain>>
<<endif>>
Find the Spanish flag.
It is red and yellow like the sun.
<<task_start FIND_SPANISH_FLAG task_spain>>
italy_npc¶
//--------------------------------------------
// ITALY
//--------------------------------------------
group: italy
tags: actor=KID_M
color: blue
---
<<if $italy_completed>>
<<card flag_italy>>
Thank you! Our capital is Rome!
<<elseif $CURRENT_ITEM == "flag_italy">>
Grazie! That's my flag!
Help them find the Belgian flag!
<<inventory flag_italy remove>>
<<set $COUNTRIES_COMPLETED = $COUNTRIES_COMPLETED + 1>>
<<task_end FIND_ITALIAN_FLAG >>
<<set $italy_completed = true>>
<<action belgium_active>>
<<jump task_belgium>>
<<elseif $CURRENT_ITEM != "">>
My flag is green, white, and red.
<<set $italy_met = true>>
<<jump task_italy>>
<<elseif $italy_met == false>>
<<set $italy_met = true>>
Ciao! I'm from Italy!
<<jump task_italy>>
<<endif>>
task_italy¶
group: italy
tags: actor=KID_M
---
<<if $EASY_MODE == true>>
<<card flag_italy>>
<<endif>>
Find the Italian flag.
It is green, white, and red like a pizza!
<<task_start FIND_ITALIAN_FLAG task_italy>>
belgium_npc¶
//--------------------------------------------
// BELGIUM
//--------------------------------------------
group: belgium
tags: actor=WOMAN_OLD
color: blue
---
<<if $belgium_completed>>
<<card flag_belgium>>
Thank you for helping us!
Brussels is the capital of Belgium.
<<elseif $CURRENT_ITEM == "flag_belgium">>
Thank you! My flag is back!
Can you help my Luxembourg friend?
<<inventory flag_belgium remove>>
<<set $COUNTRIES_COMPLETED = $COUNTRIES_COMPLETED + 1>>
<<task_end FIND_BELGIUM_FLAG >>
<<set $belgium_completed = true>>
<<action lux_active>>
<<set $belgium_met = true>>
<<jump task_lux>>
<<elseif $CURRENT_ITEM != "">>
Remember: my flag has stripes: black, yellow, red.
<<jump task_belgium>>
<<set $belgium_met = true>>
<<else>>
<<set $belgium_met = true>>
Bonjour! I'm from Belgium!
We also speak French!
<<jump task_belgium>>
<<endif>>
task_belgium¶
group: belgium
tags: actor=WOMAN_OLD
---
<<if $EASY_MODE == true>>
<<card flag_belgium>>
<<endif>>
Find the Belgian flag.
It's black, yellow, and red with vertical stripes.
<<task_start FIND_BELGIUM_FLAG task_belgium>>
item_flag_belgium¶
group: belgium
color: yellow
tags: actor=TUTOR
---
<<card flag_belgium>>
Flag of Belgium.
<<if $CURRENT_ITEM != "flag_belgium">>
<<inventory flag_belgium add>>
<<endif>>
luxembourg_npc¶
//--------------------------------------------
// LUXEMBURG
//--------------------------------------------
group: lux
color: blue
tags: actor=MAN_OLD
---
<<if $lux_completed>>
<<card flag_luxembourg>>
Thank you for helping us!
<<elseif $CURRENT_ITEM == "flag_luxembourg">>
Thank you! That is my flag.
Can you help my Swiss friend?
<<inventory flag_luxembourg remove>>
<<task_end FIND_LUX_FLAG>>
<<set $COUNTRIES_COMPLETED = $COUNTRIES_COMPLETED + 1>>
<<set $lux_completed = true>>
<<action swiss_active>>
<<jump task_swiss>>
<<elseif $CURRENT_ITEM != "">>
Nope! Our flag is red, white, and light blue.
<<set $lux_met = true>>
<<jump task_lux>>
<<else>>
<<set $lux_met = true>>
Moien! I’m from Luxembourg!
We are small and speak three languages!
<<jump task_lux>>
<<endif>>
task_lux¶
group: lux
tags: actor=WOMAN_OLD
---
<<if $EASY_MODE == true>>
<<card flag_luxembourg>>
<<endif>>
Find the Luxembourg flag.
It is red, white, and light blue.
<<task_start FIND_LUX_FLAG task_lux>>
item_flag_lux¶
group: lux
color: yellow
tags: actor=TUTOR
---
<<card flag_luxembourg>>
Flag of Luxembourg.
<<if $CURRENT_ITEM != "flag_luxembourg">>
<<inventory flag_luxembourg add>>
<<endif>>
npc_swiss¶
//--------------------------------------------
// SWISS
//--------------------------------------------
group: swiss
tags: actor=WOMAN
color: blue
---
<<if $swiss_completed>>
<<card flag_switzerland>>
Thank you for helping us!
The capital of Switzerland is Bern!
<<elseif $CURRENT_ITEM == "flag_switzerland">>
Thank you for bringing my flag back!
Go back to the start and get your prize!
<<inventory flag_switzerland remove>>
<<task_end FIND_SWISS_FLAG>>
<<set $COUNTRIES_COMPLETED = $COUNTRIES_COMPLETED + 1>>
<<set $swiss_completed = true>>
<<elseif $CURRENT_ITEM != "">>
Not my flag. Our flag is red with a white cross.
<<jump task_swiss>>
<<else>>
<<set $swiss_met = true>>
Hello! I’m from Switzerland!
We're famous for snowy mountains and cheese.
<<jump task_swiss>>
<<endif>>
task_swiss¶
group: swiss
tags: actor=WOMAN_OLD
---
<<if $EASY_MODE == true>>
<<card flag_switzerland>>
<<endif>>
Find the Swiss flag.
It is red with a big white cross like a first aid kit.
<<task_start FIND_SWISS_FLAG npc_swiss>>
monaco¶
//--------------------------------------------
// MONACO
//--------------------------------------------
color: blue
group: monaco
tags: actor=MAN_BIG
---
Bonjour! I’m from Monaco!
We are small. We have car races and a palace by the sea!
<<asset flag_monaco>>
My flag is red and white.
andorra¶
//--------------------------------------------
// ANDORRA
//--------------------------------------------
group: andorra
color: blue
tags: actor=GUIDE
---
Hola! I’m from Andorra!
My flag is blue, yellow, and red.
<<asset flag_andorra>>
item_flag_spain¶
color: yellow
group: spain
tags: actor=TUTOR
---
<<card flag_spain>>
Flag of Spain
<<if $CURRENT_ITEM != "flag_spain">>
<<inventory flag_spain add>>
<<endif>>
item_flag_germany¶
group: germany
color: yellow
tags: actor=TUTOR
---
<<card flag_germany>>
Flag of Germany.
<<if $CURRENT_ITEM != "flag_germany">>
<<inventory flag_germany add>>
<<endif>>
item_flag_italy¶
group: italy
color: yellow
tags: actor=TUTOR
---
<<card flag_italy>>
Flag of Italy.
<<if $CURRENT_ITEM != "flag_italy">>
<<inventory flag_italy add>>
<<endif>>
item_flag_switzerland¶
group: swiss
color: yellow
tags: actor=TUTOR
---
<<card flag_switzerland>>
Flag of Switzerland.
<<if $CURRENT_ITEM != "flag_switzerland">>
<<inventory flag_switzerland add>>
<<endif>>
spawned_npc¶
///////// 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
actor:
spawn_group: all
---
In Europe, people speak over 200 languages!
You can visit many of these countries without a passport!
France is the biggest country in the European Union.