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.
id
defines the unique identifier of this skill.name
defines the displayed name of this skill.type
defines the type of the skill.linkedattribute
defines the attribute to which the skill
is linked.concentrationdef
defines a concetration of the skill. A skill
can have zero or more concentrations.maneuverdef
defines a maneuver of the skill. A skill
can have zero or more maneuvers.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>