hedgewars/uConsts.pas
changeset 4246 e5cb885492df
parent 4241 835fd7a0e1bf
child 4272 cf18de7ea3d4
equal deleted inserted replaced
4244:bf46b4bdf27d 4246:e5cb885492df
   132             amGirder, amTeleport, amSwitch, amMortar, amKamikaze, amCake, // 24
   132             amGirder, amTeleport, amSwitch, amMortar, amKamikaze, amCake, // 24
   133             amSeduction, amWatermelon, amHellishBomb, amNapalm, amDrill, amBallgun, // 30
   133             amSeduction, amWatermelon, amHellishBomb, amNapalm, amDrill, amBallgun, // 30
   134             amRCPlane, amLowGravity, amExtraDamage, amInvulnerable, amExtraTime, // 35
   134             amRCPlane, amLowGravity, amExtraDamage, amInvulnerable, amExtraTime, // 35
   135             amLaserSight, amVampiric, amSniperRifle, amJetpack, amMolotov, amBirdy, amPortalGun, // 42
   135             amLaserSight, amVampiric, amSniperRifle, amJetpack, amMolotov, amBirdy, amPortalGun, // 42
   136             amPiano, amGasBomb, amSineGun, amFlamethrower, amSMine, amHammer, // 48
   136             amPiano, amGasBomb, amSineGun, amFlamethrower, amSMine, amHammer, // 48
   137             amResurrector);
   137             amResurrector, amDrillStrike);
   138 
   138 
   139     TCrateType = (HealthCrate, AmmoCrate, UtilityCrate);
   139     TCrateType = (HealthCrate, AmmoCrate, UtilityCrate);
   140 
   140 
   141     THWFont = (fnt16, fntBig, fntSmall {$IFNDEF IPHONEOS}, CJKfnt16, CJKfntBig, CJKfntSmall{$ENDIF});
   141     THWFont = (fnt16, fntBig, fntSmall {$IFNDEF IPHONEOS}, CJKfnt16, CJKfntBig, CJKfntSmall{$ENDIF});
   142 
   142 
  2181             PosCount: 1;
  2181             PosCount: 1;
  2182             PosSprite: sprWater;
  2182             PosSprite: sprWater;
  2183             ejectX: 0;
  2183             ejectX: 0;
  2184             ejectY: 0),
  2184             ejectY: 0),
  2185 
  2185 
       
  2186 // Ressurrector
  2186         (NameId: sidResurrector;
  2187         (NameId: sidResurrector;
  2187             NameTex: nil;
  2188             NameTex: nil;
  2188             Probability: 0;
  2189             Probability: 0;
  2189             NumberInCase: 1;
  2190             NumberInCase: 1;
  2190             Ammo: (Propz: ammoprop_NoCrosshair or 
  2191             Ammo: (Propz: ammoprop_NoCrosshair or 
  2202             maxAngle: 0;
  2203             maxAngle: 0;
  2203             isDamaging: true;
  2204             isDamaging: true;
  2204             SkipTurns: 0;
  2205             SkipTurns: 0;
  2205             PosCount: 1;
  2206             PosCount: 1;
  2206             PosSprite: sprWater;
  2207             PosSprite: sprWater;
       
  2208             ejectX: 0;
       
  2209             ejectY: 0),
       
  2210 
       
  2211 // DrillStrike
       
  2212             (NameId: sidDrillStrike;
       
  2213             NameTex: nil;
       
  2214             Probability: 200;
       
  2215             NumberInCase: 1;
       
  2216             Ammo: (Propz: ammoprop_NoCrosshair or
       
  2217                             ammoprop_NeedTarget or
       
  2218                             ammoprop_AttackingPut or
       
  2219                             ammoprop_DontHold or
       
  2220                             ammoprop_NotBorder;
       
  2221                 Count: 1;
       
  2222                 NumPerTurn: 0;
       
  2223                 Timer: 0;
       
  2224                 Pos: 0;
       
  2225                 AmmoType: amDrillStrike;
       
  2226                 AttackVoice: sndIncoming);
       
  2227             Slot: 5;
       
  2228             TimeAfterTurn: 0;
       
  2229             minAngle: 0;
       
  2230             maxAngle: 0;
       
  2231             isDamaging: true;
       
  2232             SkipTurns: 6;
       
  2233             PosCount: 2;
       
  2234             PosSprite: sprAmAirplane;
  2207             ejectX: 0;
  2235             ejectX: 0;
  2208             ejectY: 0)
  2236             ejectY: 0)
  2209         );
  2237         );
  2210 
  2238 
  2211 
  2239