/usr/share/freedroidrpg/map/blast_specs.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 | -- 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"
}
|