This file is indexed.

/usr/share/games/kiki-the-nano-bot/py/levels/love.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
# .................................................................................................................
level_dict["love"] = {   
                        "scheme":   "red_scheme",
                        "size":     (13,13,13),    
                        "intro":    "love", 
                        "help":     ( 
                                        "$scale(1.5)mission:\nget to the exit!",
                                    ),
                        "player":   {   "position":         (0,1,-4),
                                        "orientation":      rot0,
                                    },
                        "exits":    [
                                        {
                                            "name":         "peace",
                                            "active":       1,
                                            "position":     (0,0,4),
                                        },
                                    ],
                        "create":
"""
heart = [[0,0], [ 1,1], [ 2,1], [ 3,0], [ 3,-1], [ 2,-2], [ 1,-3], [0,-4],
                [-1,1], [-2,1], [-3,0], [-3,-1], [-2,-2], [-1,-3]]
for h in heart:
    world.addObjectAtPos (KikiBomb(), world.decenter(h[0],h[1]+1,4))
    world.addObjectAtPos (KikiStone(), world.decenter(h[0],h[1]+1,-4))
    
world.addObjectAtPos (KikiMutant(), world.decenter(0,-4,0))

""",                                 
}