diff options
author | Stijn Buys <ingar@osirion.org> | 2012-11-21 20:56:19 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2012-11-21 20:56:19 +0000 |
commit | 13c79de420162249df9097256b8be52f7145ba97 (patch) | |
tree | 5f8a76754c70e4bf75a82a53b4a3d70a07622037 | |
parent | 4d6781bd02ee2f3abf7288cc693828a4ac25183c (diff) |
Added projectile parameters.
-rw-r--r-- | base/ini/weapons.ini | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/base/ini/weapons.ini b/base/ini/weapons.ini index 1a444e7..4c2192c 100644 --- a/base/ini/weapons.ini +++ b/base/ini/weapons.ini @@ -1,8 +1,12 @@ ; ; weapons.ini ; -; global cargo type definitions -; This file describes all weapons +; global weapon type definitions +; This file describes all weapon types + +; ------------------------------------------------------------------ +; MINES +; [mine] label=mine_dumb @@ -23,12 +27,26 @@ name=Smart mine price=15000 damage=250 +; ------------------------------------------------------------------ +; CANNONS +; + [cannon] label=laser1 name=Laser cannon +; default purchase price price=1500 +; player level required to buy his weapon level=1 + [projectile] + ; speed of a projectile generated by this weapon, in meters per second + speed=1000 + ; interval between two consecutive shots, in milliseconds + interval=250 + ; lifespan of a single projectile, in milliseconds + lifespan=5000 + [cannon] label=laser2 name=Improved laser cannon @@ -41,6 +59,10 @@ name=Advanced laser cannon price=15000 level=15 +; ------------------------------------------------------------------ +; TURRETS +; + [turret] label=defenselaser1 name=Defense laser |