1/* GCompris
2 *
3 * SPDX-FileCopyrightText: 2015 Pulkit Gupta <pulkitgenius@gmail.com>
4 *
5 * Authors:
6 *   Bruno Coudoin <bruno.coudoin@gcompris.net> (GTK+ version)
7 *   Pulkit Gupta <pulkitgenius@gmail.com> (Qt Quick port)
8 *
9 *   SPDX-License-Identifier: GPL-3.0-or-later
10 */
11import QtQuick 2.9
12
13QtObject {
14   property string instruction: qsTr("Albrecht Dürer, Lion - 1494")
15   property var levels : [
16      {
17         "pixmapfile" : "image/bg.svg",
18         "type" : "SHAPE_BACKGROUND_IMAGE",
19         "width": 702,
20         "height": 515
21      },
22      {
23         "pixmapfile" : "image/AlbrechtDurer_d4.png",
24         "x" : "0.864",
25         "y" : "0.831"
26      },
27      {
28         "pixmapfile" : "image/AlbrechtDurer_c4.png",
29         "x" : "0.623",
30         "y" : "0.831"
31      },
32      {
33         "pixmapfile" : "image/AlbrechtDurer_b4.png",
34         "x" : "0.349",
35         "y" : "0.854"
36      },
37      {
38         "pixmapfile" : "image/AlbrechtDurer_a4.png",
39         "x" : "0.13",
40         "y" : "0.831"
41      },
42      {
43         "pixmapfile" : "image/AlbrechtDurer_d3.png",
44         "x" : "0.839",
45         "y" : "0.617"
46      },
47      {
48         "pixmapfile" : "image/AlbrechtDurer_c3.png",
49         "x" : "0.597",
50         "y" : "0.594"
51      },
52      {
53         "pixmapfile" : "image/AlbrechtDurer_b3.png",
54         "x" : "0.349",
55         "y" : "0.643"
56      },
57      {
58         "pixmapfile" : "image/AlbrechtDurer_a3.png",
59         "x" : "0.13",
60         "y" : "0.617"
61      },
62      {
63         "pixmapfile" : "image/AlbrechtDurer_d2.png",
64         "x" : "0.864",
65         "y" : "0.4"
66      },
67      {
68         "pixmapfile" : "image/AlbrechtDurer_c2.png",
69         "x" : "0.623",
70         "y" : "0.376"
71      },
72      {
73         "pixmapfile" : "image/AlbrechtDurer_b2.png",
74         "x" : "0.374",
75         "y" : "0.4"
76      },
77      {
78         "pixmapfile" : "image/AlbrechtDurer_a2.png",
79         "x" : "0.156",
80         "y" : "0.377"
81      },
82      {
83         "pixmapfile" : "image/AlbrechtDurer_d1.png",
84         "x" : "0.864",
85         "y" : "0.163"
86      },
87      {
88         "pixmapfile" : "image/AlbrechtDurer_c1.png",
89         "x" : "0.647",
90         "y" : "0.163"
91      },
92      {
93         "pixmapfile" : "image/AlbrechtDurer_b1.png",
94         "x" : "0.4",
95         "y" : "0.163"
96      },
97      {
98         "pixmapfile" : "image/AlbrechtDurer_a1.png",
99         "x" : "0.156",
100         "y" : "0.138"
101      }
102   ]
103}
104