Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 27, 2010, 11:50:24 PM (14 years ago)
Author:
dafrick
Message:

Merged pickup branch into presentation3 branch.
Seems to be working just fine so not much changes at all. (Except for some representations that had the parameters 'name' instead of 'pickupName' and 'description' instead of 'pickupDescription').

Location:
code/branches/presentation3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation3

  • code/branches/presentation3/data/levels/includes/pickups.oxi

    r6725 r6998  
     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>
    135
    236<!-- Health pickups -->
     
    73107
    74108<PickupRepresentation
    75     name = "Small Speed Boost"
    76     description = "Multiplies Speed of the Ship by a small amount."
     109    pickupName = "Small Speed Boost"
     110    pickupDescription = "Multiplies Speed of the Ship by a small amount."
    77111    spawnerTemplate = "smallspeedpickupRepresentation"
     112    inventoryRepresentation = "SmallSpeed"
    78113>
    79114    <pickup>
     
    83118
    84119<PickupRepresentation
    85     name = "Medium Speed Boost"
    86     description = "Multiplies Speed of the Ship by a bigger amount."
     120    pickupName = "Medium Speed Boost"
     121    pickupDescription = "Multiplies Speed of the Ship by a bigger amount."
    87122    spawnerTemplate = "mediumspeedpickupRepresentation"
     123    inventoryRepresentation = "MediumSpeed"
    88124>
    89125    <pickup>
     
    93129
    94130<PickupRepresentation
    95     name = "Huge Speed Boost"
    96     description = "Multiplies Speed of the Ship by a huge amount."
     131    pickupName = "Huge Speed Boost"
     132    pickupDescription = "Multiplies Speed of the Ship by a huge amount."
    97133    spawnerTemplate = "hugespeedpickupRepresentation"
     134    inventoryRepresentation = "HugeSpeed"
    98135>
    99136    <pickup>
     
    103140
    104141<PickupRepresentation
    105     name = "Small Jump Boost"
    106     description = "Boosts the Ship with a massive amount for a very short time."
     142    pickupName = "Small Jump Boost"
     143    pickupDescription = "Boosts the Ship with a massive amount for a very short time."
    107144    spawnerTemplate = "smalljumppickupRepresentation"
     145    inventoryRepresentation = "SmallSpeed"
    108146>
    109147    <pickup>
     
    115153
    116154<PickupRepresentation
    117     name = "small Invisibility"
    118     description = "Makes you invisible for 5 seconds."
     155    pickupName = "Small Invisibility"
     156    pickupDescription = "Makes you invisible for 5 seconds."
    119157    spawnerTemplate = "smallinvisiblepickupRepresentation"
     158    inventoryRepresentation = "SmallInvisible"
    120159>
    121160    <pickup>
     
    125164
    126165<PickupRepresentation
    127     name = "medium Invisibility"
    128     description = "Makes you invisible for 10 seconds."
     166    pickupName = "Medium Invisibility"
     167    pickupDescription = "Makes you invisible for 10 seconds."
    129168    spawnerTemplate = "mediuminvisiblepickupRepresentation"
     169    inventoryRepresentation = "MediumInvisible"
    130170>
    131171    <pickup>
     
    135175
    136176<PickupRepresentation
    137     name = "hunge Invisibility"
    138     description = "Makes you invisible for 20 seconds."
     177    pickupName = "Huge Invisibility"
     178    pickupDescription = "Makes you invisible for 20 seconds."
    139179    spawnerTemplate = "hugeinvisiblepickupRepresentation"
     180    inventoryRepresentation = "HugeInvisible"
    140181>
    141182    <pickup>
Note: See TracChangeset for help on using the changeset viewer.