ShieldSphereUpdate.xsd 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="uri:ea.com:eala:asset" xmlns:at="uri:ea.com:eala:asset:type" xmlns:xas="uri:ea.com:eala:asset:schema" targetNamespace="uri:ea.com:eala:asset" elementFormDefault="qualified" xmlns:XmlEdit="http://tempuri.org/XmlEdit.xsd">
  3. <xs:simpleType name="ShieldSphereUpdateOption">
  4. <xs:restriction base="xs:string">
  5. <xs:enumeration value="ALLOW_ALLIES_PROJECTTILE_GOTHROUGH" />
  6. </xs:restriction>
  7. </xs:simpleType>
  8. <xs:simpleType name="ShieldSphereUpdateOptionFlag">
  9. <xs:list itemType="ShieldSphereUpdateOption"></xs:list>
  10. </xs:simpleType>
  11. <xs:complexType name="ShieldSphereUpdateModuleData">
  12. <xs:complexContent>
  13. <xs:extension base="SphereModuleUpdateModuleData">
  14. <xs:sequence>
  15. </xs:sequence>
  16. <!--Maximum damage that the shield can absorb.-->
  17. <xs:attribute name="MaxDamage" type="SageReal" default="0"/>
  18. <!-- Status to set while active. Will remove object status on deactivation -->
  19. <xs:attribute name="ObjectStatus" type="ObjectStatusBitFlags" default=""/>
  20. <!-- Model Condition set while active. Will be removed on deactivation -->
  21. <xs:attribute name="ModelCondition" type="ModelConditionBitFlags" default="" />
  22. <!-- AttributeModifier set while active. Manually removed on deactivation -->
  23. <xs:attribute name="AttributeModifierName" type="AttributeModifierRef" />
  24. <!-- Status to set on units that are currently being shielded -->
  25. <xs:attribute name="ShieldedObjectStatus" type="ObjectStatusBitFlags" default=""/>
  26. <xs:attribute name="Options" type="ShieldSphereUpdateOptionFlag" />
  27. </xs:extension>
  28. </xs:complexContent>
  29. </xs:complexType>
  30. </xs:schema>