1 | |
---|
2 | <!-- Health pickups --> |
---|
3 | |
---|
4 | <PickupRepresentation |
---|
5 | pickupName = "Small Health Boost" |
---|
6 | pickupDescription = "Adds a small amout of health to the ship." |
---|
7 | inventoryRepresentation = "SmallHealth" |
---|
8 | spawnerTemplate = "smallhealthpickupRepresentation" |
---|
9 | > |
---|
10 | <pickup> |
---|
11 | <HealthPickup template=smallhealthpickup /> |
---|
12 | </pickup> |
---|
13 | </PickupRepresentation> |
---|
14 | |
---|
15 | <PickupRepresentation |
---|
16 | pickupName = "Medium Health Boost" |
---|
17 | pickupDescription = "Adds a medium amout of health to the ship." |
---|
18 | spawnerTemplate = "mediumhealthpickupRepresentation" |
---|
19 | inventoryRepresentation = "MediumHealth" |
---|
20 | > |
---|
21 | <pickup> |
---|
22 | <HealthPickup template=mediumhealthpickup /> |
---|
23 | </pickup> |
---|
24 | </PickupRepresentation> |
---|
25 | |
---|
26 | <PickupRepresentation |
---|
27 | pickupName = "Huge Health Boost" |
---|
28 | pickupDescription = "Adds a huge amout of health to the ship." |
---|
29 | spawnerTemplate = "hugehealthpickupRepresentation" |
---|
30 | inventoryRepresentation = "HugeHealth" |
---|
31 | > |
---|
32 | <pickup> |
---|
33 | <HealthPickup template=hugehealthpickup /> |
---|
34 | </pickup> |
---|
35 | </PickupRepresentation> |
---|
36 | |
---|
37 | <PickupRepresentation |
---|
38 | pickupName = "Crazy Madness Health Boost" |
---|
39 | pickupDescription = "Adds a crazy amout of health to the ship." |
---|
40 | spawnerTemplate = "crazyhealthpickupRepresentation" |
---|
41 | inventoryRepresentation = "CrazyMadnessHealth" |
---|
42 | > |
---|
43 | <pickup> |
---|
44 | <HealthPickup template=crazyhealthpickup /> |
---|
45 | </pickup> |
---|
46 | </PickupRepresentation> |
---|
47 | |
---|
48 | <!-- Meta pickups --> |
---|
49 | |
---|
50 | <PickupRepresentation |
---|
51 | pickupName = "Use Pickup" |
---|
52 | pickupDescription = "Uses all pickups you have." |
---|
53 | spawnerTemplate = "usepickupRepresentation" |
---|
54 | inventoryRepresentation = "usePickup" |
---|
55 | > |
---|
56 | <pickup> |
---|
57 | <MetaPickup metaType="use" /> |
---|
58 | </pickup> |
---|
59 | </PickupRepresentation> |
---|
60 | |
---|
61 | <PickupRepresentation |
---|
62 | pickupName = "Drop Pickup" |
---|
63 | pickupDescription = "Drops all pickups you have." |
---|
64 | spawnerTemplate = "droppickupRepresentation" |
---|
65 | inventoryRepresentation = "dropPickup" |
---|
66 | > |
---|
67 | <pickup> |
---|
68 | <MetaPickup metaType="drop" /> |
---|
69 | </pickup> |
---|
70 | </PickupRepresentation> |
---|
71 | |
---|
72 | <!-- Speed pickups --> |
---|
73 | |
---|
74 | <PickupRepresentation |
---|
75 | name = "Small Speed Boost" |
---|
76 | description = "Multiplies Speed of the Ship by a small amount." |
---|
77 | spawnerTemplate = "smallspeedpickupRepresentation" |
---|
78 | > |
---|
79 | <pickup> |
---|
80 | <SpeedPickup template=smallspeedpickup /> |
---|
81 | </pickup> |
---|
82 | </PickupRepresentation> |
---|
83 | |
---|
84 | <PickupRepresentation |
---|
85 | name = "Medium Speed Boost" |
---|
86 | description = "Multiplies Speed of the Ship by a bigger amount." |
---|
87 | spawnerTemplate = "mediumspeedpickupRepresentation" |
---|
88 | > |
---|
89 | <pickup> |
---|
90 | <SpeedPickup template=mediumspeedpickup /> |
---|
91 | </pickup> |
---|
92 | </PickupRepresentation> |
---|
93 | |
---|
94 | <PickupRepresentation |
---|
95 | name = "Huge Speed Boost" |
---|
96 | description = "Multiplies Speed of the Ship by a huge amount." |
---|
97 | spawnerTemplate = "hugespeedpickupRepresentation" |
---|
98 | > |
---|
99 | <pickup> |
---|
100 | <SpeedPickup template=hugespeedpickup /> |
---|
101 | </pickup> |
---|
102 | </PickupRepresentation> |
---|
103 | |
---|
104 | <PickupRepresentation |
---|
105 | name = "Small Jump Boost" |
---|
106 | description = "Boosts the Ship with a massive amount for a very short time." |
---|
107 | spawnerTemplate = "smalljumppickupRepresentation" |
---|
108 | > |
---|
109 | <pickup> |
---|
110 | <SpeedPickup template=smalljumppickup /> |
---|
111 | </pickup> |
---|
112 | </PickupRepresentation> |
---|
113 | |
---|
114 | <!-- Invisible pickups --> |
---|
115 | |
---|
116 | <PickupRepresentation |
---|
117 | name = "small Invisibility" |
---|
118 | description = "Makes you invisible for 5 seconds." |
---|
119 | spawnerTemplate = "smallinvisiblepickupRepresentation" |
---|
120 | > |
---|
121 | <pickup> |
---|
122 | <InvisiblePickup template=smallinvisiblepickup /> |
---|
123 | </pickup> |
---|
124 | </PickupRepresentation> |
---|
125 | |
---|
126 | <PickupRepresentation |
---|
127 | name = "medium Invisibility" |
---|
128 | description = "Makes you invisible for 10 seconds." |
---|
129 | spawnerTemplate = "mediuminvisiblepickupRepresentation" |
---|
130 | > |
---|
131 | <pickup> |
---|
132 | <InvisiblePickup template=mediuminvisiblepickup /> |
---|
133 | </pickup> |
---|
134 | </PickupRepresentation> |
---|
135 | |
---|
136 | <PickupRepresentation |
---|
137 | name = "hunge Invisibility" |
---|
138 | description = "Makes you invisible for 20 seconds." |
---|
139 | spawnerTemplate = "hugeinvisiblepickupRepresentation" |
---|
140 | > |
---|
141 | <pickup> |
---|
142 | <InvisiblePickup template=hugeinvisiblepickup /> |
---|
143 | </pickup> |
---|
144 | </PickupRepresentation> |
---|
145 | |
---|
146 | <!-- Pickup Collection pickups --> |
---|
147 | |
---|
148 | <PickupRepresentation |
---|
149 | pickupName = "Triple Pickup" |
---|
150 | pickupDescription = "Adds health, speed and invisibility." |
---|
151 | spawnerTemplate = "triplehealthspeedinvisibilitypickupRepresentation" |
---|
152 | > |
---|
153 | <pickup> |
---|
154 | <PickupCollection template=triplehealthspeedinvisibilitypickup /> |
---|
155 | </pickup> |
---|
156 | </PickupRepresentation> |
---|
157 | |
---|