This file is indexed.

/usr/share/freedroidrpg/map/difficulties.lua is in freedroidrpg-data 0.16.1-3.

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
difficulties
{
	-- easy
	{
		droid_max_speed = 0.4,
		droid_hpmax = 1.0,
		droid_hostile_healing = 0.0,
		droid_friendly_healing = 0.1,
		droid_experience_reward = 1.2,
		droid_aggression_distance = 0.75,
	},
	-- normal
	{
		droid_max_speed = 0.5,
		droid_hpmax = 1.0,
		droid_hostile_healing = 0.05,
		droid_friendly_healing = 0.05,
		droid_experience_reward = 1.0,
		droid_aggression_distance = 1.0,
	},
	-- hard
	{
		droid_max_speed = 0.6,
		droid_hpmax = 1.5,
		droid_hostile_healing = 0.1,
		droid_friendly_healing = 0.05,
		droid_experience_reward = 1.0,
		droid_aggression_distance = 1.25,
	},
}