Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 13, 2010, 10:46:39 AM (15 years ago)
Author:
dafrick
Message:

Merged pickup_representation_templates into one.
Merged pickups.oxi into one.
Adjusted pickup.oxw to showcase all currently existing (and working) pickups.

Location:
code/trunk/data/levels/includes
Files:
2 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/data/levels/includes/pickups.oxi

    r6711 r6712  
     1
     2<!-- Health pickups -->
     3
    14<PickupRepresentation
    25    pickupName = "Small Health Boost"
     
    4346</PickupRepresentation>
    4447
    45 <PickupRepresentation
    46     pickupName = "Double Pickup"
    47     pickupDescription = "Does stuff."
    48     spawnerTemplate = "crazyhealthpickupRepresentation"
    49 >
    50     <pickup>
    51         <PickupCollection template=doublepickup />
    52     </pickup>
    53 </PickupRepresentation>
     48<!-- Meta pickups -->
    5449
    5550<PickupRepresentation
     
    7570</PickupRepresentation>
    7671
     72<!-- Speed pickups -->
     73
    7774<PickupRepresentation
    78     pickupName = "Huge Health Boost"
    79     pickupDescription = "Adds a huge amout of health to the ship."
    80     spawnerTemplate = "hugehealthpickupRepresentation"
    81     inventoryRepresentation = "HugeHealth"
     75    name = "Small Speed Boost"
     76    description = "Multiplies Speed of the Ship by a small amount."
     77    spawnerTemplate = "smallspeedpickupRepresentation"
    8278>
    8379    <pickup>
    84           <HealthPickup
    85     health = 100
    86     healthType = "limited"
    87     activationType = "onUse"
    88     durationType = "once"
    89   />
     80        <SpeedPickup template=smallspeedpickup />
    9081    </pickup>
    9182</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
Note: See TracChangeset for help on using the changeset viewer.