ToggleStatusSpecialAbilityUpdate.xsd 2.1 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"
  3. xmlns:xas="uri:ea.com:eala:asset:schema" targetNamespace="uri:ea.com:eala:asset" elementFormDefault="qualified"
  4. xmlns:XmlEdit="http://tempuri.org/XmlEdit.xsd">
  5. <xs:include schemaLocation="..\SkirmishAI\AssetTypeAISpecialPower.xsd"/>
  6. <xs:include schemaLocation="ActivateModuleSpecialAbilityUpdate.xsd"/>
  7. <xs:complexType name="ToggleStatusNugget">
  8. <xs:sequence>
  9. <xs:element name="SkirmishAiInfo" type="AIToggleSpecialPowerInfo" minOccurs="1" maxOccurs="1" />
  10. <xs:element name="Module" type="SpecialPowerModuleInfo" minOccurs="0" maxOccurs="4" />
  11. <xs:element name="ActiveGeometry" type="xs:string" minOccurs="0" maxOccurs="unbounded" />
  12. </xs:sequence>
  13. <xs:attribute name="AttributeModifier" type="AttributeModifierRef" />
  14. <xs:attribute name="ModelConditions" type="ModelConditionBitFlags"/>
  15. <xs:attribute name="ObjectStatus" type="ObjectStatusBitFlags"/>
  16. <xs:attribute name="Upgrade" type="UpgradeTemplateRef"/>
  17. <xs:attribute name="ArmorSet" type="ArmorSetType" default="INVALID" />
  18. <xs:attribute name="LocomotorSet" type="LocomotorSetType" default="INVALID"/>
  19. <xs:attribute name="AIUpdateModuleId" type="Poid" xas:refType="ModuleData"/>
  20. <xs:attribute name="GenericLuaEventParameter" type="xs:string" default=""/>
  21. <xs:attribute name="EnterStateSound" type="AudioEventInfoRef" />
  22. <xs:attribute name="InitiateIntentToExitStateSound" type="AudioEventInfoRef" />
  23. <xs:attribute name="DisabledType" type="DisabledType" />
  24. </xs:complexType>
  25. <xs:complexType name="ToggleStatusSpecialAbilityUpdateModuleData">
  26. <xs:complexContent>
  27. <xs:extension base="SpecialAbilityUpdateModuleData">
  28. <xs:sequence>
  29. <xs:element name="ToggleState" type="ToggleStatusNugget" minOccurs="1" maxOccurs="unbounded" />
  30. </xs:sequence>
  31. <xs:attribute name="ReloadAllWeaponsOnToggle" type="SageBool" default="true" />
  32. <xs:attribute name="ForceIdleAfterToggle" type="SageBool" default="false" />
  33. </xs:extension>
  34. </xs:complexContent>
  35. </xs:complexType>
  36. </xs:schema>