Skip to content

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! #line:046db1f 
We are in Europe. #line:08a8ce8 
Let’s meet kids from nearby countries. #line:08a09de 


quest_end

panel: panel_endgame
color: green
---
The quest is complete. #line:0432689 
<<jump post_quest_activity>>

post_quest_activity

panel: panel
color: green
tags: proposal
---
Can you draw your flag now? #line:0c48a14 
<<quest_end>>

win

//--------------------------------------------
// FRANCE
//--------------------------------------------
tags: actor=KID_F
color: purple
panel: panel_endgame
---
Good job! You did it! #line:0ba3c4c 
<<card concept_europe_map>>
You found part of Europe! #line:06e1dd4 
<<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! #line:04e2d8b 
    Can you help my other friends? #line:0e426ba 
<<elseif $CURRENT_ITEM == "flag_france">>
    Yes, that is my flag! Merci! #line:01e24a8 
    <<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? #line:04bd4db 
    <<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. #line:04e0432 
<<else>>
    Hello! I’m from France! #line:06dfdd6 
    Antura mixed up all the flags! #line:0a20eed 
    My flag is blue, white, and red. #line:0868737 
    Can you help me? #line:0a9f34e 
    <<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. #line:0e35434 
<<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. #line:01d9617 
<<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! #line:0eaf07d 
    Berlin is the capital of Germany. #line:0446f03 
<<elseif $CURRENT_ITEM == "flag_germany">>
    Danke! That is my flag! #line:0ba8707
    Can you help my Spanish friend? #line:03684cb 
    <<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. #line:0cd7024 
    <<jump task_germany>>
<<elseif $germany_met == false >>
    <<set $germany_met = true>>
    Hello! I’m from Germany! #line:0068fe1 
    We're famous for castles, forests, and trains! #line:04dc97a 
    <<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. #line:029ee72 
It has stripes: black, red, yellow. #line:0f95ef2 
<<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! #line:0a5c214 
    Barcelona and Madrid are big cities in Spain. #line:09cf6c9 
<<elseif $CURRENT_ITEM == "flag_spain">>
    That is my flag! #line:0c57e40 
    Thank you. Can you give my Italian friend their flag? #line:0930602 
    <<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. #line:0db05da 
    <<jump task_spain>>
<<elseif $spain_met == false >>
    <<set $spain_met = true>>
    Hola! I’m from Spain! #line:0f5bc06 
    We have a dance called flamenco! #line:05e6d48 
    <<jump task_spain>>
<<endif>>


task_spain

group: spain
tags: actor=WOMAN
---
<<if $EASY_MODE == true>>
    <<card flag_spain>>
<<endif>>
Find the Spanish flag. #line:091cc7c 
It is red and yellow like the sun. #line:09635b4 
<<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! #line:0148edb 
<<elseif $CURRENT_ITEM == "flag_italy">>
    Grazie! That's my flag! #line:081ac66 
    Help them find the Belgian flag! #line:001f54f 
    <<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. #line:0dc8623
    <<set $italy_met = true>>
    <<jump task_italy>>
<<elseif $italy_met == false>>
    <<set $italy_met = true>>
    Ciao! I'm from Italy! #line:0bda0fc 
    <<jump task_italy>>
<<endif>>

task_italy

group: italy
tags: actor=KID_M
---
<<if $EASY_MODE == true>>
    <<card flag_italy>>
<<endif>>
Find the Italian flag. #line:0ed29f1 
It is green, white, and red like a pizza! #line:0cde44c 
<<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! #line:080a099 
    Brussels is the capital of Belgium. #line:06b3ceb 
<<elseif $CURRENT_ITEM == "flag_belgium">>
    Thank you! My flag is back! #line:079096a 
    Can you help my Luxembourg friend? #line:03a9b7d 
    <<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. #line:0141a13 
    <<jump task_belgium>>
    <<set $belgium_met = true>>
<<else>>
    <<set $belgium_met = true>>
    Bonjour! I'm from Belgium! #line:0a61b67 
    We also speak French! #line:0b18893 
    <<jump task_belgium>>
<<endif>>

task_belgium

group: belgium
tags: actor=WOMAN_OLD
---
<<if $EASY_MODE == true>>
    <<card flag_belgium>>
<<endif>>
Find the Belgian flag. #line:0f08126 
It's black, yellow, and red with vertical stripes. #line:079ecca 
<<task_start FIND_BELGIUM_FLAG task_belgium>>

item_flag_belgium

group: belgium
color: yellow
tags: actor=TUTOR
---
<<card flag_belgium>>
Flag of Belgium. #line:0b11066 
<<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! #line:02114ba 
<<elseif $CURRENT_ITEM == "flag_luxembourg">>
    Thank you! That is my flag. #line:05de5ab 
    Can you help my Swiss friend? #line:0090192 
    <<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. #line:0529472 
    <<set $lux_met = true>>
    <<jump task_lux>>
<<else>>
    <<set $lux_met = true>>
    Moien! I’m from Luxembourg! #line:0b22d58 
    We are small and speak three languages! #line:0a3d0e3 
    <<jump task_lux>>
<<endif>>

task_lux

group: lux
tags: actor=WOMAN_OLD
---
<<if $EASY_MODE == true>>
    <<card flag_luxembourg>>
<<endif>>
Find the Luxembourg flag. #line:0ed3698 
It is red, white, and light blue. #line:018e4cf 
<<task_start FIND_LUX_FLAG task_lux>>

item_flag_lux

group: lux
color: yellow
tags: actor=TUTOR
---
<<card flag_luxembourg>>
Flag of Luxembourg. #line:05badd7 
<<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! #line:02f73c8 
    The capital of Switzerland is Bern! #line:0d2e2d7 
<<elseif $CURRENT_ITEM == "flag_switzerland">>
    Thank you for bringing my flag back! #line:0ca99a0 
    Go back to the start and get your prize! #line:0148420 
    <<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. #line:0caad5a 
    <<jump task_swiss>>
<<else>>
    <<set $swiss_met = true>>
    Hello! I’m from Switzerland! #line:09fe8fc 
    We're famous for snowy mountains and cheese. #line:0bf6b0d 
    <<jump task_swiss>>
<<endif>>


task_swiss

group: swiss
tags: actor=WOMAN_OLD
---
<<if $EASY_MODE == true>>
    <<card flag_switzerland>>
<<endif>>
Find the Swiss flag. #line:0ec7096 
It is red with a big white cross like a first aid kit. #line:07cc57e 
<<task_start FIND_SWISS_FLAG npc_swiss>>

monaco

//--------------------------------------------
// MONACO
//--------------------------------------------
color: blue
group: monaco
tags: actor=MAN_BIG
---
Bonjour! I’m from Monaco! #line:0a3f8f6 
We are small. We have car races and a palace by the sea! #line:0dc315a 
<<asset flag_monaco>>
My flag is red and white. #line:00bd939 

andorra

//--------------------------------------------
// ANDORRA
//--------------------------------------------
group: andorra
color: blue
tags: actor=GUIDE
---
Hola! I’m from Andorra! #line:071f85c 
My flag is blue, yellow, and red. #line:02846e8 
<<asset flag_andorra>>


item_flag_spain

color: yellow
group: spain
tags: actor=TUTOR
---
<<card  flag_spain>>
Flag of Spain #line:006ce10 
<<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. #line:05ff51a 
<<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. #line:0fdc68b 
<<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. #line:0768ab7 
<<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! #line:04f4280 
You can visit many of these countries without a passport! #line:08d624d 
France is the biggest country in the European Union. #line:0ab3dd9