File: blast_specs.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 (30 lines) | stat: -rw-r--r-- 744 bytes parent folder | download | duplicates (5)
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
-- The image files for the blasts are stored in graphics/blasts/
-- The filenames should be in the form name_xxxx.png, where name is a blast name
-- and xxxx is a four digit phase number (starting from 1).

-- This is default blast type.
-- It should be at the first position in the file.
blast {
	name = "iso_blast_bullet",
	phases = 20,
	animation_time = 0.6,
	do_damage = 0
}

-- This blast needs to be at the second position in the file.
-- It's used for tux and obstacle explosions.
blast {
	name = "iso_blast_droid",
	phases = 20,
	animation_time = 1.0,
	do_damage = 1,
	sound_file = "Blast_Sound_0.ogg"
}

blast {
	name = "iso_blast_exterminator",
	phases = 28,
	animation_time = 1.6,
	do_damage = 1,
	sound_file = "Blast_Sound_0.ogg"
}