Difference between revisions of "HowTo:Make Weapons"

From VsWiki
Jump to: navigation, search
Line 10: Line 10:
 
Weapon descriptons are stored in the '''[http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/vegastrike/data4.x/weapon_list.xml?rev=HEAD&content-type=text/vnd.viewcvs-markup weapon_list.xml] in the data directory.   
 
Weapon descriptons are stored in the '''[http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/vegastrike/data4.x/weapon_list.xml?rev=HEAD&content-type=text/vnd.viewcvs-markup weapon_list.xml] in the data directory.   
  
Weapons are classed as
+
Weapons are classed as {{fixme}} ''DIFFERENCES BETWEEN CATEGORIES''
 
* Beam
 
* Beam
 
* Bolt
 
* Bolt

Revision as of 07:49, 31 March 2005

arrow_left.png MOD arrow_up.png HowTo Add Upgrades arrow_right.png

MAKING WEAPONS

Weapon descriptons are stored in the weapon_list.xml in the data directory.

Weapons are classed as FIXME DIFFERENCES BETWEEN CATEGORIES

  • Beam
  • Bolt
  • Ball
  • Missile


Weapon XML Schema

FIXME ADD DESCRIPTIONS TO SCHEMA

Beam

  • <beam ... >
    • name
    • mountsize
  • <Energy ... />
    • rate
    • stability
    • refire
    • locktime
  • <Damage ... />
    • rate
    • phasedamage
    • longrange
  • <Distance ... />
    • speed
    • radialspeed
    • radius
    • length
    • pulsespeed
    • range
    • detonationrange
    • volume
  • <Appearance ... />
    • file
    • soundwav
    • r
    • g
    • b
    • a

Bolt

Ball

Missile

Weapon AI's

Example 1: Beam Weapon

<Beam name="LR_PminusBeamMKIV" mountsize="capship-massive">
  <Energy rate="1500" stability="8" refire="2" /> 
  <Damage rate="15000" longrange=".8" /> 
  <Distance speed="300000" radialspeed="60" radius="60" length="8" pulsespeed="36" range="150000" /> 
  <Appearance file="weapons/heavylaserbeam.png" soundwav="beam1.wav" r=".6" g=".1" b=".8" a=".6" /> 
</Beam>

Example 2: Spinning Weapon

you can make it spin as well by making it an accessory of the missle:

  • you make it a subunit (turret) at the center (i.e call it torpedo_accessory)
  • set the max_yaw, max_pitch, and max_roll to whatever you want it to spin at
  • make an invisible (or torpedo casing) main body

voilla--you have a photon torpedo


See also


arrow_left.png MOD arrow_up.png HowTo Add Upgrades arrow_right.png