-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssetTypeDamageFX.xsd
More file actions
33 lines (28 loc) · 1.48 KB
/
AssetTypeDamageFX.xsd
File metadata and controls
33 lines (28 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<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">
<xs:complexType name="DamageFXGroup">
<xs:attribute name="Type" type="DamageFXType" default="DEFAULT" />
<xs:attribute name="Amount" type="SageReal" default="0.0" />
<xs:attribute name="ThrottleTime" type="Time" default="0s" />
<xs:attribute name="MajorFX" type="FXListRef" />
<xs:attribute name="MinorFX" type="FXListRef" />
<xs:attribute name="RearFX" type="FXListRef" />
<xs:attribute name="SideFX" type="FXListRef" />
<xs:attribute name="TopFX" type="FXListRef" />
<!-- Is FX when hit by veteran unit -->
<xs:attribute name="VeteranMajorFX" type="FXListRef" />
<xs:attribute name="VeteranMinorFX" type="FXListRef" />
<xs:attribute name="VeteranRearFX" type="FXListRef" />
<xs:attribute name="VeteranSideFX" type="FXListRef" />
<xs:attribute name="VeteranTopFX" type="FXListRef" />
</xs:complexType>
<xs:complexType name="DamageFX" xas:runtimeWrapper="::DamageFX" xas:typeGroup="Xml">
<xs:complexContent>
<xs:extension base="BaseAssetType">
<xs:sequence>
<xs:element name="FXGroup" type="DamageFXGroup" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:schema>