Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data/levels/level1.py
blob: 4722542cd7a1f2dc7eae097134d481bd5cd2b3e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- coding: utf-8 -*-

from gettext import gettext as _

LEVEL = {
  "id"       : "first level",
  "placed"   : [
                 {
                   "type" : "SoccerBall",
                   "name" : "bola",
                   "xpos" : 200,
                   "ypos" : 300
                 },
                 {
                   "type" : "Esteira",
                   "name" : "rolante",
                   "xpos" : 300,
                   "ypos" : 500
                 },
                 {
                   "type" : "Target",
                   "name" : "alvo",
                   "xpos" : 1000,
                   "ypos" : 600
                 }
               ],
  "available": [
                 {
                   "type" : "Penguin",
                   "name" : "tux"
                 }
               ],
  "goals"    : [
                 ["bola", "alvo"]
               ],
  "helpImage" : "help1.png",
  "helpTitle" : _("Nível 1: Acerte o alvo!"),
  "helpMes"   : [_("O objetivo é acertar a bola de futebol\nna marca de mira vermelha e branca!"),
                 _("Dica: é só clicar no triângulo branco\nabaixo à direita")]
}