hedgewars/uConsts.pas
changeset 590 e816adf4a27f
parent 568 d0690b7aa808
child 601 78a68cc4d846
equal deleted inserted replaced
589:f382c41f658a 590:e816adf4a27f
    38                    sprMineOn, sprCase, sprFAid, sprDynamite, sprPower,
    38                    sprMineOn, sprCase, sprFAid, sprDynamite, sprPower,
    39                    sprClusterBomb, sprClusterParticle, sprFlame, sprHorizont,
    39                    sprClusterBomb, sprClusterParticle, sprFlame, sprHorizont,
    40                    sprSky, sprAMBorders, sprAMSlot, sprAMSlotName, sprAMAmmos,
    40                    sprSky, sprAMBorders, sprAMSlot, sprAMSlotName, sprAMAmmos,
    41                    sprAMSlotKeys, sprAMSelection, sprFinger, sprAirBomb,
    41                    sprAMSlotKeys, sprAMSelection, sprFinger, sprAirBomb,
    42                    sprAirplane, sprAmAirplane, sprAmGirder, sprHHTelepMask,
    42                    sprAirplane, sprAmAirplane, sprAmGirder, sprHHTelepMask,
    43                    sprSwitch, sprParachute);
    43                    sprSwitch, sprParachute, sprTarget);
    44 
    44 
    45      TGearType  = (gtCloud, gtAmmo_Bomb, gtHedgehog, gtAmmo_Grenade, gtHealthTag,
    45      TGearType  = (gtCloud, gtAmmo_Bomb, gtHedgehog, gtAmmo_Grenade, gtHealthTag,
    46                    gtGrave, gtUFO, gtShotgunShot, gtPickHammer, gtRope,
    46                    gtGrave, gtUFO, gtShotgunShot, gtPickHammer, gtRope,
    47                    gtSmokeTrace, gtExplosion, gtMine, gtCase, gtDEagleShot, gtDynamite,
    47                    gtSmokeTrace, gtExplosion, gtMine, gtCase, gtDEagleShot, gtDynamite,
    48                    gtTeamHealthSorter, gtClusterBomb, gtCluster, gtShover, gtFlame,
    48                    gtTeamHealthSorter, gtClusterBomb, gtCluster, gtShover, gtFlame,
    49                    gtFirePunch, gtATStartGame, gtATSmoothWindCh, gtATFinishGame,
    49                    gtFirePunch, gtATStartGame, gtATSmoothWindCh, gtATFinishGame,
    50                    gtParachute, gtAirAttack, gtAirBomb, gtBlowTorch, gtGirder,
    50                    gtParachute, gtAirAttack, gtAirBomb, gtBlowTorch, gtGirder,
    51                    gtTeleport, gtSmallDamage, gtSwitcher);
    51                    gtTeleport, gtSmallDamage, gtSwitcher, gtTarget);
    52 
    52 
    53      TGearsType = set of TGearType;
    53      TGearsType = set of TGearType;
    54 
    54 
    55      TSound     = (sndGrenadeImpact, sndExplosion, sndThrowPowerUp, sndThrowRelease,
    55      TSound     = (sndGrenadeImpact, sndExplosion, sndThrowPowerUp, sndThrowRelease,
    56                    sndSplash, sndShotgunReload, sndShotgunFire, sndGraveImpact,
    56                    sndSplash, sndShotgunReload, sndShotgunFire, sndGraveImpact,
   328                      (FileName:    'hhMask'; Path: ptGraphics; AltPath: ptNone; Surface: nil;
   328                      (FileName:    'hhMask'; Path: ptGraphics; AltPath: ptNone; Surface: nil;
   329                      Width:  32; Height: 32; hasAlpha: false),// sprHHTelepMask
   329                      Width:  32; Height: 32; hasAlpha: false),// sprHHTelepMask
   330                      (FileName:    'Switch'; Path: ptGraphics; AltPath: ptNone; Surface: nil;
   330                      (FileName:    'Switch'; Path: ptGraphics; AltPath: ptNone; Surface: nil;
   331                      Width:  32; Height: 32; hasAlpha: false),// sprSwitch
   331                      Width:  32; Height: 32; hasAlpha: false),// sprSwitch
   332                      (FileName: 'Parachute'; Path: ptGraphics; AltPath: ptNone; Surface: nil;
   332                      (FileName: 'Parachute'; Path: ptGraphics; AltPath: ptNone; Surface: nil;
   333                      Width:  48; Height: 48; hasAlpha: true) // sprParachute
   333                      Width:  48; Height: 48; hasAlpha: true),// sprParachute
       
   334                      (FileName:    'Target'; Path: ptGraphics; AltPath: ptNone; Surface: nil;
       
   335                      Width:  32; Height: 32; hasAlpha:false) // sprTarget
   334                      );
   336                      );
   335                      
   337                      
   336       Soundz: array[TSound] of record
   338       Soundz: array[TSound] of record
   337                                        FileName: String[31];
   339                                        FileName: String[31];
   338                                        Path    : TPathType;
   340                                        Path    : TPathType;