This file is indexed.

/usr/share/games/kiki-the-nano-bot/py/levels/blocks.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# level design by Michael Abel

# .................................................................................................................
def func_blocks():
	
	world.addObjectAtPos (KikiWall()			, KikiPos (1,1,2))
	world.addObjectAtPos (KikiWall()			, KikiPos (4,2,2))
	world.addObjectAtPos (KikiWall()			, KikiPos (7,2,2))
	world.addObjectAtPos (KikiStone()			, KikiPos (10,2,2))
	world.addObjectAtPos (KikiStone(None, True)		, KikiPos (13,2,2))
	world.addObjectAtPos (KikiStone(None, True)		, KikiPos (15,4,2))
	
	world.addObjectAtPos (KikiStone(KColor(0,1,0,0.8), True)	, KikiPos (13,7,2))
	world.addObjectAtPos (KikiStone(KColor(1,0,0,0.8), True)	, KikiPos (10,7,2))
	world.addObjectAtPos (KikiStone(KColor(0,0,1,0.8), True)	, KikiPos (7,7,2))
	world.addObjectAtPos (KikiStone(KColor(0.5,0.5,0,0.8))		, KikiPos (4,7,2))
	
	
	world.addObjectLine (KikiWall, KikiPos (0,0,2), KikiPos(7,0,2) )
	

	
 
	
level_dict["blocks"] = {   
                        "scheme":   "default_scheme",
                        "size":     (18,12,5),
                        "intro":    "blocks",    
                        "help":     (   "As you might know: you can grab\n"
					"most stones by pressing forward\n"
					"while jumping or falling down\n"
					"next to them.",
					"The stone with the slits is a\n"
                                        "special stone, that means that\n"
					"you can't grab it while jumping\n"
					"or falling", 
					"The color of a stone doesn't matter.", 
                                    ),
                        "player":   {   "coordinates":     (1,6,2),
                                        "nostatus":         0,
				    },
                        "exits":    [
                                        {
                                            "name":         "exit",
                                            "active":       1,
                                            "coordinates":     (7,9,2),
					    
                                        },
				    ],
			 "create": func_blocks,
			}

# .................................................................................................................