-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.xml
46 lines (46 loc) · 1.09 KB
/
test.xml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
<shipParts>
<weaponParts>
<weaponPart name="Laser Beam">
<MaxHP>1</MaxHP>
<WeaponDamage>5</WeaponDamage>
<CritMultiplier>2</CritMultiplier>
<ReloadTime>0</ReloadTime>
<Actions>
<action type="RepairThisPart">
<Value index="0">2</Value>
</action>
</Actions>
</weaponPart>
<weaponPart name="Plasma Cannon">
<MaxHP>1</MaxHP>
<WeaponDamage>12</WeaponDamage>
<CritMultiplier>3</CritMultiplier>
<ReloadTime>2</ReloadTime>
<Actions></Actions>
</weaponPart>
</weaponParts>
<defenseParts>
<defensePart name="Shield Generator">
<MaxHP>1</MaxHP>
<DR>1</DR>
<DownAdjective>Down</DownAdjective>
<PenetrateVerb>Penetrating</PenetrateVerb>
<Actions>
<action type="RepairThisPart">
<Value index="0">2</Value>
</action>
</Actions>
</defensePart>
</defenseParts>
<actionParts>
<actionPart name="Damage Control">
<MaxHP>1</MaxHP>
<ActionDescription>Regen: 5 HPs</ActionDescription>
<Actions>
<action type="RepairTargetShip">
<Value index="0">5</Value>
</action>
</Actions>
</actionPart>
</actionParts>
</shipParts>