A Proposal for a Shadowrun XML Standard

skilldef

root/skilldeflist/skilldef
Back

Namespace:
Filename:

Content: id (Type: string) , name (Type: string) , type (Type: skilltype) , linkedattribute (Type: attributetype) , concentrationdef *, maneuverdef *

Description: The skilldef tag defines a standard Shadowrun skill.


Code Fragment

<xs:elementtype name="skilldef">
  <xs:model>
    <xs:sequence>
      <xs:element type="xs:string" name="id"/>
      <xs:element type="xs:string" name="name"/>
      <xs:element type="skilltype" name="type"/>
      <xs:element type="attributetype" name="linkedattribute"/>
      <xs:element type="concentrationdef" occurs="*"/>
      <xs:element type="maneuverdef" occurs="*"/>
    </xs:sequence>
  </xs:model>
</xs:elementtype>