A Proposal for a Shadowrun XML Standard

contact

root/rpgcharacter/contacts/contact
Back

Namespace:
Filename:

Content: name (type: string) , relation (type: string) , location (type: string) , level (type: int) ?, initialcost (type: float) ?, additionalcost (type: float) ?, note (type: string) *, appdata (type: customdata) *

Description: The contact tag describes a spell or similar effect known by the character.


Code Fragment

<xs:complexType name="contact">
  <xs:sequence>
    <xs:element type="xs:string" name="name"/>
    <xs:element type="xs:string" name="relation"/>
    <xs:element type="xs:string" name="location"/>
    <xs:element type="xs:int" name="level"/>
    <xs:element type="xs:float" name="initialcost" minOccurs="0" maxOccurs="1"/>
    <xs:element type="xs:float" name="additionalcost" minOccurs="0" maxOccurs="1"/>
    <xs:element type="xs:string" name="note" minOccurs="0" maxOccurs="unbounded"/>
    <xs:element type="customdata" name="appdata" minOccurs="0" maxOccurs="unbounded"/>
  </xs:sequence>
</xs:complexType>