Pan di zenzero e mercato alimentare (pl_06) - 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¶
// pl_06 | Market (Torun)
//
// ---------
// WANTED:
// Cards:
// - torun_gingerbread (cultural tradition)
// - torun_town_hall (Gothic architecture)
// - medieval_market (historical setting)
// - pierogi
// Tasks:
// - ingredient collection
// Activities:
// - money activities to pay
// - collect ingredients (eggs, flour, milk, butter, honey, cloves, cinnamon, ginger)
// - buy pierogi for the cook
// - bake gingerbread (order/memory of ingredients)
// - Pierogi Challenge: order/memory of ingredients (flour, eggs, cheese, potatoes)
// Words used: Toruń, market, vendor, grocer, beekeeper, dairy, eggs, milk, butter, flour, honey, cloves, cinnamon, ginger, pierogi, molds, coins, zloty, kitchen, gingerbread, medieval
type: panel
color: red
---
<<set $TOTAL_COINS = 0>>
<<declare $ingredients = 0>>
<<declare $needed_ingredients = 8>>
<<declare $pierogi_bought = false>>
<<declare $got_eggs = false>>
<<declare $got_flour = false>>
<<declare $got_milk = false>>
<<declare $got_butter = false>>
<<declare $got_honey = false>>
<<declare $got_cloves = false>>
<<declare $got_cinnamon = false>>
<<declare $got_ginger = false>>
<<card medieval_market>>
Benvenuti a TORUŃ!
quest_end¶
panel: panel_endgame
color: green
---
Ottimo lavoro al MARKET.
Hai comprato e cucinato.
Pronti per un compito extra?
<<jump post_quest_activity>>
post_quest_activity¶
panel: panel
color: green
tags: proposal
---
Disegna una bancarella del MERCATO.
Aggiungere UOVA FARINA LATTE BURRO.
Aggiungere MIELE, CHIODI DI GAROFANO, CANNELLA E ZENZERO.
Scrivi 2 prezzi in zł.
Mostralo a un amico.
<<quest_end>>
intro¶
tags: actor=GUIDE
---
Antura è libera ma affamata.
<<card torun_town_hall>>
Andiamo al mercato di TORUŃ.
Otterremo cibo e ingredienti.
market_hub¶
group: market
tags: actor=GUIDE
---
<<card butcher>>
Visita gli stand e parla con i venditori.
Droghiere (spezie)
<<camera_focus shop_grocer>>
Apicoltore (miele)
<<camera_focus shop_beekeeper>>
Venditore di latticini (latte, burro)
<<camera_focus shop_dairy>>
Venditore di uova (uova)
<<camera_focus shop_eggs>>
Fruttivendolo (frutta, verdura)
<<camera_focus shop_greengrocer>>
Cuocere (pierogi)
<<camera_focus shop_cook>>
shop_grocer¶
group: market
tags: actor=WOMAN_OLD
---
Vendo CHIODI DI GAROFANO, CANNELLA, ZENZERO. Sono un droghiere.
Acquista chiodi di garofano (1zł)
<<jump pay_cloves>>
Acquista cannella (1zł)
<<jump pay_cinnamon>>
Acquista zenzero (1zł)
<<jump pay_ginger>>
shop_beekeeper¶
group: market
tags: actor=MAN
---
<<card beekeeper>>
Vendo MIELE. Sono un apicoltore.
Acquista miele (1zł)
<<jump pay_honey>>
shop_dairy¶
group: market
tags: actor=WOMAN
---
<<card dairy_vendor>>
Vendo LATTE e BURRO. Sono un venditore di latticini.
Acquista il latte (5zł)
<<jump pay_milk>>
Acquista burro (5zł)
<<jump pay_butter>>
shop_eggs¶
group: market
tags: actor=MAN_OLD
---
<<card egg_vendor>>
Vendo UOVA. Sono un venditore ambulante di uova.
Acquista uova (10zł)
<<jump pay_eggs>>
shop_greengrocer¶
group: market
tags: actor=WOMAN
---
Vendo FRUTTA e VERDURA. Sono un fruttivendolo.
Oggi hai bisogno di SPEZIE e prodotti da forno.
Acquista la farina (2 zł)
<<jump pay_flour>>
shop_cook¶
group: market
tags: actor=MAN
---
<<card cook>>
Vendo PIEROGI.
<<card pierogi>>
Acquista i PIEROGI e usa la mia CUCINA.
Acquista pierogi (20zł)
<<jump pay_pierogi>>
pay_cloves¶
group: pay
tags: actor=WOMAN_OLD
---
<<card currency_zloty>>
Seleziona le monete per pagare 1 zł.
<<activity ACTIVITY_MONEY_1 add_cloves_done>>
add_cloves_done¶
tags: type=Variables
---
<<if !$got_cloves>>
<<set $ingredients = $ingredients + 1>>
<<set $got_cloves = true>>
<<endif>>
pay_cinnamon¶
group: pay
tags: actor=WOMAN_OLD
---
<<card coins>>
Seleziona le monete per pagare 1 zł.
<<activity ACTIVITY_MONEY_1 add_cinnamon_done>>
add_cinnamon_done¶
tags: type=Variables
---
<<if !$got_cinnamon>>
<<set $ingredients = $ingredients + 1>>
<<set $got_cinnamon = true>>
<<endif>>
pay_ginger¶
group: pay
tags: actor=WOMAN_OLD
---
Seleziona le monete per pagare 1 zł.
<<activity ACTIVITY_MONEY_1 add_ginger_done>>
add_ginger_done¶
tags: type=Variables
---
<<if !$got_ginger>>
<<set $ingredients = $ingredients + 1>>
<<set $got_ginger = true>>
<<endif>>
pay_honey¶
group: pay
tags: actor=MAN
---
Seleziona le monete per pagare 1 zł.
<<activity ACTIVITY_MONEY_1 add_honey_done>>
add_honey_done¶
tags: type=Variables
---
<<if !$got_honey>>
<<set $ingredients = $ingredients + 1>>
<<set $got_honey = true>>
<<endif>>
pay_milk¶
group: pay
tags: actor=WOMAN
---
Seleziona le monete per pagare 5 zł.
<<activity ACTIVITY_MONEY_5 add_milk_done>>
add_milk_done¶
tags: type=Variables
---
<<if !$got_milk>>
<<set $ingredients = $ingredients + 1>>
<<set $got_milk = true>>
<<endif>>
pay_butter¶
group: pay
tags: actor=WOMAN
---
Seleziona le monete per pagare 5 zł.
<<activity ACTIVITY_MONEY_5 add_butter_done>>
add_butter_done¶
tags: type=Variables
---
<<if !$got_butter>>
<<set $ingredients = $ingredients + 1>>
<<set $got_butter = true>>
<<endif>>
pay_eggs¶
group: pay
tags: actor=MAN_OLD
---
Seleziona le monete per pagare 10 zł.
<<activity ACTIVITY_MONEY_10 add_eggs_done>>
add_eggs_done¶
tags: type=Variables
---
<<if !$got_eggs>>
<<set $ingredients = $ingredients + 1>>
<<set $got_eggs = true>>
<<endif>>
pay_flour¶
group: pay
tags: actor=WOMAN
---
Seleziona le monete per pagare 2 zł.
<<activity ACTIVITY_MONEY_2 add_flour_done>>
add_flour_done¶
tags: type=Variables
---
<<if !$got_flour>>
<<set $ingredients = $ingredients + 1>>
<<set $got_flour = true>>
<<endif>>
pay_pierogi¶
group: pay
tags: actor=COOK
---
<<activity ACTIVITY_MONEY_20 pierogi_done>>
Seleziona le monete per pagare 20 zł.
pierogi_done¶
tags: type=Variables
---
<<set $pierogi_bought = true>>
flour_hint¶
group: market
tags: actor=WOMAN
---
Puoi acquistare la FARINA qui.
Acquista la farina (2 zł)
<<jump pay_flour>>
go_to_kitchen¶
group: kitchen
tags: actor=MAN
---
Ottimo! Hai tutti gli ingredienti e i PIEROGI.
<<card kitchen>>
Puoi usare la mia CUCINA.
Prepariamo il PAN DI ZENZERO DI TORUŃ!
<<jump bake_gingerbread>>
bake_gingerbread¶
group: kitchen
tags: activity
---
<<card gingerbread_mold>>
Abbina le parti del PAN DI ZENZERO in ordine.
<<activity ACTIVITY_ORDER GINGERBREAD_ORDER_DONE>>
GINGERBREAD_ORDER_DONE¶
group: kitchen
tags: actor=GUIDE
---
<<card gingerbread>>
Ottimo lavoro! Il PAN DI ZENZERO è pronto.
Adesso la sfida dei PIEROGI!
<<jump pierogi_challenge>>
pierogi_challenge¶
group: kitchen
tags: activity
---
Fasi dell'ordine: FARINA UOVA FORMAGGIO PATATE.
<<activity ACTIVITY_ORDER PIEROGI_ORDER_DONE>>
PIEROGI_ORDER_DONE¶
group: kitchen
tags: actor=ANTURA
---
Grazie! È un cibo TORUŃ.
Ora sono felice e sazio.
<<jump assessment_intro>>
assessment_intro¶
// Assessment
group: assessment
tags: actor=GUIDE
---
È il momento di un rapido controllo.
<<jump assessment_vocab>>
assessment_vocab¶
group: assessment
tags: activity
---
Abbina le parole alle immagini
<<activity ACTIVITY_ORDER VOCAB_MATCH_DONE>>
VOCAB_MATCH_DONE¶
group: assessment
tags: actor=GUIDE
---
Ottimo lavoro! Hai aiutato Antura a imparare le parole.
<<jump quest_end>>
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
tags: actor=Kid
---
Mi piace il PAN DI ZENZERO dolce.
Le monete tintinnano nella mia borsa.
spawned_vendor¶
group: Spawned
tags: actor=MAN_OLD
---
Oggi UOVA e LATTE freschi.
I pierogi si vendono molto velocemente.
spawned_tourist¶
group: Spawned
tags: actor=MAN
---
La vecchia HALL sembra così alta.
Assaggerò i PIEROGI.