FlammableUpdate.xsd 2.3 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:complexType name="FXCreationList">
  4. <xs:sequence></xs:sequence>
  5. <xs:attribute name="Bone" type="xs:string" />
  6. <xs:attribute name="FX" type="FXListRef" />
  7. </xs:complexType>
  8. <xs:complexType name="FlammableUpdateModuleData">
  9. <xs:complexContent>
  10. <xs:extension base="UpdateModuleData">
  11. <xs:sequence>
  12. <xs:element name="FireFXList" type="FXCreationList" minOccurs="0" maxOccurs="1" />
  13. <xs:element name="CustomAnimAndDuration" type="AnimAndDuration" minOccurs="0" maxOccurs="1" />
  14. </xs:sequence>
  15. <xs:attribute name="BurnedDelay" type="Time" default="0s" />
  16. <xs:attribute name="AflameDuration" type="Time" default="0s" />
  17. <xs:attribute name="AflameDamageAmount" type="SageInt" default="0" />
  18. <xs:attribute name="AflameDamageDelay" type="Time" default="0s" />
  19. <xs:attribute name="BurningSoundName" type="AudioEventInfoRef" />
  20. <xs:attribute name="FlameDamageLimit" type="SageReal" default="20" />
  21. <xs:attribute name="FlameDamageExpiration" type="Time" default="10s" />
  22. <xs:attribute name="SetBurnedStatus" type="SageBool" default="true" />
  23. <xs:attribute name="SwapModelWhenAflame" type="SageBool" default="false" />
  24. <xs:attribute name="SwapModelWhenQuenched" type="SageBool" default="false" />
  25. <xs:attribute name="SwapTextureWhenAflame" type="SageBool" default="false" />
  26. <xs:attribute name="SwapTextureWhenQuenhed" type="SageBool" default="false" />
  27. <xs:attribute name="BurnContained" type="SageBool" default="false" />
  28. <xs:attribute name="RunToWater" type="SageBool" default="false" />
  29. <xs:attribute name="RunToWaterDepth" type="SageReal" default="0.0" />
  30. <xs:attribute name="RunToWaterSearchRadius" type="SageReal" default="200.0" />
  31. <xs:attribute name="RunToWaterSearchIncrement" type="SageReal" default="60.0" />
  32. <xs:attribute name="PanicLocomotorWhileAflame" type="SageBool" default="false" />
  33. <xs:attribute name="DamageType" type="DamageType" />
  34. </xs:extension>
  35. </xs:complexContent>
  36. </xs:complexType>
  37. </xs:schema>