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