A Proposal for a Shadowrun XML Standard

race

root/rpgcharacter/bio/race
Back

Namespace:
Filename:

Content: name (type: string), variant (type: string) ?, ethnicity (type: string) ?, alternate (type: string) *, initialcost (type: float) ?, additionalcost (type: float) ?

Description: The bio tag defines basic biographical information about a character.


Code Fragment

<xs:complexType name="race">
  <xs:sequence>
    <xs:element type="xs:string" name="name"/>
    <xs:element type="xs:string" name="variant" minOccurs="0" maxOccurs="1"/>
    <xs:element type="xs:string" name="ethnicity" 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>