Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/ppspickups1/data/levels/includes/pickups_speed.oxi @ 6694

Last change on this file since 6694 was 6694, checked in by ebeier, 14 years ago

added some speedpickup templates

File size: 1.1 KB
Line 
1<PickupRepresentation
2    name = "Small Speed Boost"
3    description = "Multiplies Speed of the Ship with a small
4amount."
5    spawnerTemplate = "smallspeedpickupRepresentation"
6>
7    <pickup>
8        <SpeedPickup template=smallspeedpickup />
9    </pickup>
10</PickupRepresentation>
11
12<PickupRepresentation
13    name = "Medium Speed Boost"
14    description = "Multiplies Speed of the Ship with a bigger
15amount."
16    spawnerTemplate = "mediumspeedpickupRepresentation"
17>
18    <pickup>
19        <SpeedPickup template=mediumspeedpickup />
20    </pickup>
21</PickupRepresentation>
22
23<PickupRepresentation
24    name = "Huge Speed Boost"
25    description = "Multiplies Speed of the Ship with a huge
26amount."
27    spawnerTemplate = "hugespeedpickupRepresentation"
28>
29    <pickup>
30        <SpeedPickup template=hugespeedpickup />
31    </pickup>
32</PickupRepresentation>
33
34<PickupRepresentation
35    name = "Small Jump Boost"
36    description = "Boosts the Ship with a massive amount for a very short time."
37    spawnerTemplate = "smalljumppickupRepresentation"
38>
39    <pickup>
40        <SpeedPickup template=smalljumppickup />
41    </pickup>
42</PickupRepresentation>
Note: See TracBrowser for help on using the repository browser.