[Add] Gave plasma weapons their own special effect.

This commit is contained in:
Allanis 2014-04-29 17:19:01 +01:00
parent e39e091425
commit d6b0ab0e16
4 changed files with 4 additions and 1 deletions

View File

@ -81,7 +81,7 @@
<gfx>plasma</gfx>
<sound>laser</sound>
<spfx_shield>ShiS</spfx_shield>
<spfx_armour>ExpS</spfx_armour>
<spfx_armour>PlaS</spfx_armour>
<delay>400</delay>
<speed>450</speed>
<range>250</range>

BIN
gfx/spfx/plam.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

BIN
gfx/spfx/plas.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -150,6 +150,9 @@ int spfx_load(void) {
/* Shield hits. */
spfx_base_load("ShiS", 400, 400, "shis.png", 6, 5);
spfx_base_load("ShiM", 450, 450, "shim.png", 6, 5);
/* Plasma hits. */
spfx_base_load("PlaS", 400, 400, "plas.png", 6, 5);
spfx_base_load("PlaM", 450, 450, "plam.png", 6, 5);
return 0;
}