File: difficulties.lua

package info (click to toggle)
freedroidrpg 1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 273,532 kB
  • sloc: ansic: 66,191; cpp: 2,033; sh: 766; makefile: 627; python: 322; xml: 94; perl: 87
file content (31 lines) | stat: -rw-r--r-- 604 bytes parent folder | download | duplicates (4)
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

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,
	},
}