diff options
author | Stijn Buys <ingar@osirion.org> | 2012-11-25 12:07:49 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2012-11-25 12:07:49 +0000 |
commit | 820a440edd9173a652ba3ff7c0729921b9d37227 (patch) | |
tree | a0edf3e99f9e87440b00996370e5d39f0d30d481 /base | |
parent | 4bee72920086854635431ebdc5bde0c4e2f89b43 (diff) |
Added weapon particles.
Diffstat (limited to 'base')
-rw-r--r-- | base/ini/weapons.ini | 39 | ||||
-rw-r--r-- | base/particles/laser_trail.ini | 21 | ||||
-rw-r--r-- | base/particles/neutron1.ini | 33 |
3 files changed, 91 insertions, 2 deletions
diff --git a/base/ini/weapons.ini b/base/ini/weapons.ini index 4c2192c..73d700a 100644 --- a/base/ini/weapons.ini +++ b/base/ini/weapons.ini @@ -41,11 +41,15 @@ level=1 [projectile] ; speed of a projectile generated by this weapon, in meters per second - speed=1000 + speed=1500 ; interval between two consecutive shots, in milliseconds - interval=250 + interval=500 ; lifespan of a single projectile, in milliseconds lifespan=5000 + ; damage done by the projectile + damage=5 + ; projectile model + model=laser1 [cannon] label=laser2 @@ -53,12 +57,43 @@ name=Improved laser cannon price=5000 level=5 + + [projectile] + ; speed of a projectile generated by this weapon, in meters per second + speed=1500 + ; interval between two consecutive shots, in milliseconds + interval=500 + ; lifespan of a single projectile, in milliseconds + lifespan=5000 + ; damage done by the projectile + damage=10 + ; projectile model + model=laser2 + [cannon] label=laser3 name=Advanced laser cannon price=15000 level=15 +[cannon] +label=neutron1 +name=Neutron Cannon +price=27000 +level=25 + + [projectile] + ; speed of a projectile generated by this weapon, in meters per second + speed=1250 + ; interval between two consecutive shots, in milliseconds + interval=1000 + ; lifespan of a single projectile, in milliseconds + lifespan=5000 + ; damage done by the projectile + damage=10 + ; projectile model + model=neutron1 + ; ------------------------------------------------------------------ ; TURRETS ; diff --git a/base/particles/laser_trail.ini b/base/particles/laser_trail.ini new file mode 100644 index 0000000..cf7891f --- /dev/null +++ b/base/particles/laser_trail.ini @@ -0,0 +1,21 @@ +; +; particles/laser_trail.ini +; default laser projectile trail particles +; + +[particles] +type=trail +texture=fx/engine_trail +timeout=0.5 +eject=0.2 +radius=4 +alpha=0.5 + +[particles] +type=trail +texture=fx/engine_trail +timeout=0.5 +eject=0.2 +radius=4 +alpha=0.5 +roll=90
\ No newline at end of file diff --git a/base/particles/neutron1.ini b/base/particles/neutron1.ini new file mode 100644 index 0000000..5559758 --- /dev/null +++ b/base/particles/neutron1.ini @@ -0,0 +1,33 @@ +; +; particles/neutron1.ini +; Neutron cannon particles +; + +[particles] +type=spray +texture=fx/flare01 +timeout=1.0 +eject=0.01 +radius=2 +alpha=0.8 +speed=0.05 +color=0 255 0 + +[particles] +type=trail +texture=fx/engine_trail +timeout=0.5 +eject=0.2 +radius=4 +alpha=0.5 +color=0 127 0 + +[particles] +type=trail +texture=fx/engine_trail +timeout=0.5 +eject=0.2 +radius=4 +alpha=0.5 +roll=90 +color=0 127 0
\ No newline at end of file |