1/* GCompris
2 *
3 * SPDX-FileCopyrightText: 2015 Bruno Coudoin <bruno.coudoin@gcompris.net>
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("The Lady and the Unicorn - XVe century")
15   property var levels: [
16	  {
17          "pixmapfile" : "image/lady_unicorn_background.png",
18          "type" : "SHAPE_BACKGROUND_IMAGE"
19      },
20      {
21          "pixmapfile" : "image/lady_unicorn_5.png",
22          "dropAreaSize" : "10",
23          "x" : "0.07",
24          "y" : "0.818"
25      },
26      {
27          "pixmapfile" : "image/lady_unicorn_4.png",
28          "dropAreaSize" : "10",
29          "x" : "0.256",
30          "y" : "0.666"
31      },
32      {
33          "pixmapfile" : "image/lady_unicorn_2.png",
34          "dropAreaSize" : "10",
35          "x" : "0.462",
36          "y" : "0.553"
37      },
38      {
39          "pixmapfile" : "image/lady_unicorn_3.png",
40          "dropAreaSize" : "10",
41          "x" : "0.724",
42          "y" : "0.883"
43      },
44      {
45          "pixmapfile" : "image/lady_unicorn_1.png",
46          "dropAreaSize" : "10",
47          "x" : "0.877",
48          "y" : "0.039"
49      }
50   ]
51}
52