Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data/levels/level6.py
blob: 1dedfa299050a054e138e1af3fca6c274b2b3599 (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
42
43
44
45
46
47
48
49
50
# -*- coding: utf-8 -*-

from gettext import gettext as _

LEVEL = {
  "id"       : "sixth level",
  "placed"   : [
                 {
                   "type" : "BeachBall",
                   "name" : "praia",
                   "xpos" : 800,
                   "ypos" : 50
                 },
                 {
                   "type" : "Elastica",
                   "name" : "elastica1",
                   "xpos" : 800,
                   "ypos" : 400
                 },
                 {
                   "type" : "Elastica",
                   "name" : "elastica2",
                   "xpos" : 900,
                   "ypos" : 200
                 },
                 {
                   "type" : "Target",
                   "name" : "alvo",
                   "xpos" : 1070,
                   "ypos" : 650
                 }
               ],
  "available": [
                 {
                   "type" : "Esteira",
                   "name" : "esteira1"
                 },
                 {
                   "type" : "Esteira",
                   "name" : "esteira2"
                 }
               ],
  "goals"    : [
                 ["praia", "alvo"]
               ],
  "helpImage" : "help6.png",
  "helpTitle" : _("Nível 6: Fugindo do pula-pula!"),
  "helpMes"   : [_("Coloque as esteiras no lugar\ncerto para levar a bola de praia\nà marca vermelha e branca!"),
                 _("Cuidado com os pula-pula!")]
}