EngineerContain.xsd 1.8 KB

12345678910111213141516171819202122232425262728293031
  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:complexType name="EngineerContainModuleData">
  6. <xs:complexContent>
  7. <xs:extension base="ContainModuleData">
  8. <xs:sequence>
  9. <xs:element name="CanEnterFilter" type="ObjectFilter" minOccurs="0" maxOccurs="1" />
  10. </xs:sequence>
  11. <xs:attribute name="ImmediatelyEnabled" type="SageBool" default="false" />
  12. <xs:attribute name="ReplaceWith" type="ObjectCreationListRef" />
  13. <xs:attribute name="NameOfVoiceToUseForFriendlyEnter" type="StringHash" use="optional" />
  14. <xs:attribute name="NameOfVoiceToUseForHostileEnter" type="StringHash" use="optional" />
  15. <xs:attribute name="ObjectStatusToSet" type="ObjectStatusBitFlags" default="NO_REFUND" />
  16. <!-- Various FXs for engineers entering and doing various things -->
  17. <xs:attribute name="FXForRepair" type="FXListRef" use="optional" />
  18. <xs:attribute name="FXForCapture" type="FXListRef" use="optional" />
  19. <xs:attribute name="FXForReplace" type="FXListRef" use="optional" />
  20. <xs:attribute name="FXForCaptureAndReplace" type="FXListRef" use="optional" />
  21. <!-- Note: all Eva events are played for the owner of the engineer entering the container -->
  22. <xs:attribute name="EvaEventForRepair" type="EvaEventRef" default="" />
  23. <xs:attribute name="EvaEventForCapture" type="EvaEventRef" default="" />
  24. <xs:attribute name="EvaEventForReplace" type="EvaEventRef" default="" />
  25. <xs:attribute name="EvaEventForCaptureAndReplace" type="EvaEventRef" default="" />
  26. </xs:extension>
  27. </xs:complexContent>
  28. </xs:complexType>
  29. </xs:schema>