Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/skybox2/data/levels/includes/pickups.oxi @ 7108

Last change on this file since 7108 was 6524, checked in by dafrick, 14 years ago

Merged pickup branch into trunk. Yay. Persisting bugs will be fixed, very soon.

File size: 1.3 KB
Line 
1<PickupRepresentation
2    name = "Small Health Boost"
3    description = "Adds a small amout of health to the ship."
4    spawnerTemplate = "smallhealthpickupRepresentation"
5>
6    <pickup>
7        <HealthPickup template=smallhealthpickup />
8    </pickup>
9</PickupRepresentation>
10
11<PickupRepresentation
12    name = "Medium Health Boost"
13    description = "Adds a medium amout of health to the ship."
14    spawnerTemplate = "mediumhealthpickupRepresentation"
15>
16    <pickup>
17        <HealthPickup template=mediumhealthpickup />
18    </pickup>
19</PickupRepresentation>
20
21<PickupRepresentation
22    name = "Huge Health Boost"
23    description = "Adds a huge amout of health to the ship."
24    spawnerTemplate = "hugehealthpickupRepresentation"
25>
26    <pickup>
27        <HealthPickup template=hugehealthpickup />
28    </pickup>
29</PickupRepresentation>
30
31<PickupRepresentation
32    name = "Crazy Madness Health Boost"
33    description = "Adds a crazy amout of health to the ship."
34    spawnerTemplate = "crazyhealthpickupRepresentation"
35>
36    <pickup>
37        <HealthPickup template=crazyhealthpickup />
38    </pickup>
39</PickupRepresentation>
40
41<PickupRepresentation
42    name = "Double Pickup"
43    description = "Does stuff."
44    spawnerTemplate = "crazyhealthpickupRepresentation"
45>
46    <pickup>
47        <PickupCollection template=doublepickup />
48    </pickup>
49</PickupRepresentation>
Note: See TracBrowser for help on using the repository browser.