This file is indexed.

/usr/share/games/kiki-the-nano-bot/py/levels/jump.py is in kiki-the-nano-bot-data 1.0.2+dfsg1-6build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
# .................................................................................................................
level_dict["jump"] = {   
                        "scheme":   "red_scheme",
                        "size":     (7,7,13),    
                        "intro":    "jump", 
                        "help":     (  "$scale(1.5)mission:\nget to the exit!\n\n" + \
                                        "jump on the stones to reach it\n\n" + \
                                        "you can attach to a stone when falling by\n" + \
                                        "if you move into its direction",
                                    ),
                        "player":   {   "position":         (0,0,5),
                                    },
                        "exits":    [
                                        {
                                            "name":         "exit",
                                            "active":       1,
                                            "position":     (0,0,4),
                                        },
                                    ],
                        "create":
"""
s = world.getSize()

world.addObjectAtPos (KikiWall(), world.decenter (0,0,1 - s.z/2))
world.addObjectAtPos (KikiWall(), world.decenter (0,0,3 - s.z/2))
world.addObjectAtPos (KikiWall(), world.decenter (0,0,6 - s.z/2))
world.addObjectAtPos (KikiWall(), world.decenter (0,1,10 - s.z/2))
world.addObjectAtPos (KikiWall(), world.decenter (1,0,10 - s.z/2))
world.addObjectAtPos (KikiWall(), world.decenter (-1,0,10 - s.z/2))
world.addObjectAtPos (KikiWall(), world.decenter (0,-1,10 - s.z/2))
""",                                 
}