summaryrefslogtreecommitdiff
path: root/pacman/controller/src/main/resources/testConfig.json
blob: 1c078993e7c6ef6510fcc8246ba97bdbbf311ac2 (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
{
    "powerModeDuration": 10.0,
    "lives": 3,
    "ghostSpeed": 2.5,
    "numberOfItems": 36,

    "pacman": {
        "x": 1,
        "y": 1,
        "speed": 3.0,
    },
    "redGhost": {
        "x": 7,
        "y": 4
    },
    "blueGhost": {
        "x": 7,
        "y": 5
    },
    "pinkGhost": {
        "x": 7,
        "y": 6
    },
    "orangeGhost": {
        "x": 7,
        "y": 7
    },

    "board": [
        ["W","W","W","W","W","W","W","W","W"],
        ["W","p","p","p","P","p","p","p","W"],
        ["E","p","W","W","p","W","W","p","E"],
        ["W","p","W","W","p","W","W","p","W"],
        ["W","p","W","W","p","W","W","p","W"],
        ["W","P","p","p","P","p","p","P","W"],
        ["W","p","W","W","p","W","W","p","W"],
        ["E","p","W","W","p","W","W","p","E"],
        ["W","p","p","p","P","p","p","p","W"],
        ["W","W","W","W","W","W","W","W","W"]
    ]
}