A Proposal for a Shadowrun XML Standard

transport

root/rpgcharacter/transports/transport
Back

Namespace:
Filename:

Content: refid (type: string) , condition (type: int) ?, cost (type: float) ?, name (type: string) ?, note (type: string) ?, unique (type: namevaluelist) ? appdata (type: customdata) *, contains (type: equipmentlist) ?

Description: The transport tag describes one of the character's vehciles, mounts, ships or other form of transportation.


Code Fragment

<xs:complexType name="transport">
  <xs:sequence>
    <xs:element type="xs:string" name="refid"/>
    <xs:element type="xs:int" name="condition" minOccurs="0" maxOccurs="1"/>
    <xs:element type="xs:float" name="cost" minOccurs="0" maxOccurs="1"/>
    <xs:element type="xs:string" name="name" minOccurs="0" maxOccurs="1"/>
    <xs:element type="xs:string" name="note" minOccurs="0" maxOccurs="1"/>
    <xs:element type="namevaluelist" name="unique" minOccurs="0" maxOccurs="1"/>
    <xs:element type="customdata" name="appdata" minOccurs="0" maxOccurs="unbounded"/>
    <xs:element type="equipmentlist" name="contains" minOccurs="0" maxOccurs="1"/>
  </xs:sequence>
</xs:complexType>