Pierniki i targ spo偶ywczy (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>>
Witamy w TORUNIU!
quest_end¶
panel: panel_endgame
color: green
---
艢wietna robota w MARKET.
Kupi艂e艣 i upiek艂e艣.
Gotowy na dodatkowe zadanie?
<<jump post_quest_activity>>
post_quest_activity¶
panel: panel
color: green
tags: proposal
---
Narysuj stoisko na targu.
Dodaj JAJA, M膭K臉, MLEKO, MAS艁O.
Dodaj MI脫D, GO殴DZIKI, CYNAMON I IMBIR.
Podaj 2 ceny w z艂.
Poka偶 to znajomemu.
<<quest_end>>
intro¶
tags: actor=GUIDE
---
Antura jest wolna, ale g艂odna.
<<card torun_town_hall>>
Jedziemy na toru艅ski rynek.
Dostaniemy jedzenie i sk艂adniki.
market_hub¶
group: market
tags: actor=GUIDE
---
<<card butcher>>
Odwied藕 stoiska i porozmawiaj ze sprzedawcami.
Sprzedawca (przyprawy)
<<camera_focus shop_grocer>>
Pszczelarz (mi贸d)
<<camera_focus shop_beekeeper>>
Sprzedawca nabia艂u (mleko, mas艂o)
<<camera_focus shop_dairy>>
Sprzedawca jajek (jajka)
<<camera_focus shop_eggs>>
Sprzedawca warzyw (owoce, warzywa)
<<camera_focus shop_greengrocer>>
Cook (pierogi)
<<camera_focus shop_cook>>
shop_grocer¶
group: market
tags: actor=WOMAN_OLD
---
Sprzedaj臋 GO殴DZIKI, CYNAMON, IMBIR. Jestem sprzedawc膮 spo偶ywczym.
Kup go藕dziki (1z艂)
<<jump pay_cloves>>
Kup cynamon (1z艂)
<<jump pay_cinnamon>>
Kup imbir (1z艂)
<<jump pay_ginger>>
shop_beekeeper¶
group: market
tags: actor=MAN
---
<<card beekeeper>>
Sprzedaj臋 MI脫D. Jestem pszczelarzem.
Kup mi贸d (1z艂)
<<jump pay_honey>>
shop_dairy¶
group: market
tags: actor=WOMAN
---
<<card dairy_vendor>>
Sprzedaj臋 MLEKO i MAS艁O. Jestem sprzedawc膮 nabia艂u.
Kup mleko (5z艂)
<<jump pay_milk>>
Kup mas艂o (5z艂)
<<jump pay_butter>>
shop_eggs¶
group: market
tags: actor=MAN_OLD
---
<<card egg_vendor>>
Sprzedaj臋 JAJKA. Jestem sprzedawc膮 jajek.
Kup jajka (10z艂)
<<jump pay_eggs>>
shop_greengrocer¶
group: market
tags: actor=WOMAN
---
Sprzedaj臋 OWOCE i WARZYWA. Jestem warzywniakiem.
Dzisiaj b臋dziesz potrzebowa膰 PRZYPRAW i produkt贸w do pieczenia.
Kup m膮k臋 (2z艂)
<<jump pay_flour>>
shop_cook¶
group: market
tags: actor=MAN
---
<<card cook>>
Sprzedaj臋 PIEROGI.
<<card pierogi>>
Kup PIEROGI i korzystaj z mojej KUCHNI.
Kup pierogi (20z艂)
<<jump pay_pierogi>>
pay_cloves¶
group: pay
tags: actor=WOMAN_OLD
---
<<card currency_zloty>>
Wybierz monety, kt贸rymi zap艂acisz 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>>
Wybierz monety, kt贸rymi zap艂acisz 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
---
Wybierz monety, kt贸rymi zap艂acisz 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
---
Wybierz monety, kt贸rymi zap艂acisz 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
---
Wybierz monety, aby zap艂aci膰 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
---
Wybierz monety, aby zap艂aci膰 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
---
Wybierz monety, aby zap艂aci膰 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
---
Wybierz monety, aby zap艂aci膰 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>>
Wybierz monety, aby zap艂aci膰 20 z艂.
pierogi_done¶
tags: type=Variables
---
<<set $pierogi_bought = true>>
flour_hint¶
group: market
tags: actor=WOMAN
---
M膭K臉 mo偶esz kupi膰 tutaj.
Kup m膮k臋 (2z艂)
<<jump pay_flour>>
go_to_kitchen¶
group: kitchen
tags: actor=MAN
---
艢wietnie! Masz wszystkie sk艂adniki i PIEROGI.
<<card kitchen>>
Mo偶esz korzysta膰 z mojej KUCHNI.
Upieczmy TORU艃SKIE PIERNIKI!
<<jump bake_gingerbread>>
bake_gingerbread¶
group: kitchen
tags: activity
---
<<card gingerbread_mold>>
Dopasuj cz臋艣ci PIERNIKA w kolejno艣ci.
<<activity ACTIVITY_ORDER GINGERBREAD_ORDER_DONE>>
GINGERBREAD_ORDER_DONE¶
group: kitchen
tags: actor=GUIDE
---
<<card gingerbread>>
Dobra robota! PIERNIK jest gotowy.
Teraz wyzwanie PIEROGI!
<<jump pierogi_challenge>>
pierogi_challenge¶
group: kitchen
tags: activity
---
Kroki zam贸wienia: M膭KA JAJA SER ZIEMNIAKI.
<<activity ACTIVITY_ORDER PIEROGI_ORDER_DONE>>
PIEROGI_ORDER_DONE¶
group: kitchen
tags: actor=ANTURA
---
Dzi臋kuj臋! To jest toru艅skie jedzenie.
Teraz jestem szcz臋艣liwy i pe艂ny.
<<jump assessment_intro>>
assessment_intro¶
// Assessment
group: assessment
tags: actor=GUIDE
---
Czas na szybk膮 kontrol臋.
<<jump assessment_vocab>>
assessment_vocab¶
group: assessment
tags: activity
---
Dopasuj s艂owa do obrazk贸w
<<activity ACTIVITY_ORDER VOCAB_MATCH_DONE>>
VOCAB_MATCH_DONE¶
group: assessment
tags: actor=GUIDE
---
艢wietna robota! Pomog艂e艣 Anturze nauczy膰 si臋 s艂贸w.
<<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
---
Lubi臋 s艂odkie PIERNIKI.
Monety brz臋cz膮 w mojej torbie.
spawned_vendor¶
group: Spawned
tags: actor=MAN_OLD
---
艢wie偶e JAJA i MLEKO dzisiaj.
Pierogi sprzedaj膮 si臋 bardzo szybko.
spawned_tourist¶
group: Spawned
tags: actor=MAN
---
Stary HALL wygl膮da tak wysoko.
Spr贸buj臋 PIEROG脫W.