This file is indexed.

/usr/share/games/kiki-the-nano-bot/py/levels/grenade.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
# .................................................................................................................
level_dict["grenade"] = {   
                        "scheme":   "blue_scheme",
                        "size":     (9,9,9),    
                        "intro":    "grenade", 
                        "help":     ( 
                                        "$scale(1.5)mission:\nget to the exit!\n\n" + \
                                        "to get to the exit,\nuse the bombs\n\n" + \
                                        "tip: use 1-9 keys to\nadjust the game speed",
                                    ),
                        "player":   {   "position":   (0,-4,0),
                                    },
                        "exits":    [
                                        {
                                            "name":         "exit",
                                            "active":       1,
                                            "position":     (0,2,0),
                                        },
                                    ],
                        "create":
"""
world.addObjectAtPos (KikiBomb(), world.decenter (0,-3,-4))
world.addObjectAtPos (KikiBomb(), world.decenter (0,-3,-3))
""",                                 
}