A Proposal for a Shadowrun XML Standard

concentration

root/rpgcharacter/skills/skill/concentration
Back

Namespace:
Filename:

Content: ( refid (type: string) | name (type: string) ), value (type: int) , initial (type: int) ?, initialcost (type: float) ?, additionalcost (type: float) ?

Description: The concentration tag describes one of the character's learned sub-skills.


Code Fragment

<xs:complexType name="concentration">
  <xs:sequence>
    <xs:choice>
      <xs:element type="xs:string" name="refid"/>
      <xs:element type="xs:string" name="name"/>
    </xs:choice>
    <xs:element type="xs:int" name="value"/>
    <xs:element type="xs:int" name="initial" minOccurs="0" maxOccurs="1"/>
    <xs:element type="xs:float" name="initialcost" minOccurs="0" maxOccurs="1"/>
    <xs:element type="xs:float" name="additionalcost" minOccurs="0" maxOccurs="1"/>
  </xs:sequence>
</xs:complexType>