PassiveAreaEffectBehavior.xsd 2.4 KB

123456789101112131415161718192021222324252627282930313233343536
  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:complexType name="PassiveAreaEffectBehaviorModuleData">
  4. <xs:complexContent>
  5. <xs:extension base="UpdateModuleData">
  6. <xs:sequence>
  7. <xs:element name="Modifier" type="AttributeModifierRef" minOccurs="0" maxOccurs="unbounded" />
  8. <xs:element name="AllowFilter" type="ObjectFilter" minOccurs="0" maxOccurs="1" />
  9. <xs:element name="ContainerFilter" type="ObjectFilter" minOccurs="0" maxOccurs="1" />
  10. <xs:element name="ObjectStatusValidation" type="ObjectStatusValidationDataType" minOccurs="0" maxOccurs="1" />
  11. </xs:sequence>
  12. <!-- Effect Radius less than zero in Unlimited-->
  13. <xs:attribute name="EffectRadius" type="SageReal" default="0" />
  14. <!-- 0 MaxBeneficiaries == Unlimited -->
  15. <xs:attribute name="MaxBeneficiaries" type="SageUnsignedInt" default="0"/>
  16. <xs:attribute name="HealingPercentPerSecond" type="Percentage" default="0" />
  17. <xs:attribute name="HealingPointsPerSecond" type="SageReal" default="0"/>
  18. <xs:attribute name="SurveyDelayFrames" type="SageUnsignedInt" default="20" />
  19. <xs:attribute name="UpgradeRequired" type="UpgradeTemplateRef" />
  20. <xs:attribute name="NonStackable" type="SageBool" default="false" />
  21. <xs:attribute name="AntiCategoryMask" type="AttributeModifierCategoryBitFlags" />
  22. <xs:attribute name="AntiFX" type="FXListRef" />
  23. <xs:attribute name="HealFX" type="FXListRef" />
  24. <xs:attribute name="AffectAttached" type="SageBool" default="false" />
  25. <!-- In order to affect attached objects you need to specify the AttachUpdate module ID -->
  26. <xs:attribute name="AttachModuleId" type="Poid" use="optional" xas:refType="ModuleData"/>
  27. <xs:attribute name="AffectWoundedOnly" type="SageBool" default="false" />
  28. <xs:attribute name="AffectUnderAttack" type="SageBool" default="false" />
  29. <xs:attribute name="AffectContained" type="SageBool" default="false" />
  30. <xs:attribute name="ShowDebugCircle" type="SageBool" default="false" />
  31. <xs:attribute name="DisabledTypesToProcess" type="DisabledBitFlags" />
  32. </xs:extension>
  33. </xs:complexContent>
  34. </xs:complexType>
  35. </xs:schema>