Namespace:
Filename:
Description: The gendertype
defines the possible
genders for the character.
Value: Enumeration, with the following legal value:
Female
Male
None
- Used for genderless races, such as Earthdawn's Obsidimen.Other
- Used for races with more than two genders, as seen in some sci-fi games.Code Fragment
<xs:simpleType name="gendertype">
<xs:restriction base="xs:string">
<xs:enumeration value="Female"/>
<xs:enumeration value="Male"/>
<xs:enumeration value="None"/>
<xs:enumeration value="Other"/>
</xs:restriction>
</xs:simpleType>