# HG changeset patch # User unc0rr # Date 1222150153 0 # Node ID 993845ea5c8d76914cba59a7087d9a0f6e5771e0 # Parent 21916b5de2181b5af6073a98f30643379fe1a968 A bit larger heart diff -r 21916b5de218 -r 993845ea5c8d hedgewars/HHHandlers.inc --- a/hedgewars/HHHandlers.inc Mon Sep 22 22:14:01 2008 +0000 +++ b/hedgewars/HHHandlers.inc Tue Sep 23 06:09:13 2008 +0000 @@ -166,7 +166,7 @@ CurAmmoGear:= AddGear(hwRound(X) + hwSign(dX) * 3, hwRound(Y), gtCake, 0, xx, _0, 0); PlaySound(sndLaugh, false) end; - amSeduction: FollowGear:= AddGear(hwRound(X + xx * cHHRadius * 2), hwRound(Y + yy * cHHRadius * 2), gtSeduction, 0, xx * _0_5, yy * _0_5, 0); + amSeduction: FollowGear:= AddGear(hwRound(X + xx * cHHRadius * 2), hwRound(Y + yy * cHHRadius * 2), gtSeduction, 0, xx * _0_4, yy * _0_4, 0); amWatermelon: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtWatermelon, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, Ammo^[CurSlot, CurAmmo].Timer); amHellishBomb: FollowGear:= AddGear(hwRound(X), hwRound(Y), gtHellishBomb, 0, xx*Power/cPowerDivisor, yy*Power/cPowerDivisor, 5000); end; diff -r 21916b5de218 -r 993845ea5c8d hedgewars/uConsts.pas --- a/hedgewars/uConsts.pas Mon Sep 22 22:14:01 2008 +0000 +++ b/hedgewars/uConsts.pas Tue Sep 23 06:09:13 2008 +0000 @@ -437,7 +437,7 @@ (FileName:'HellishBomb'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; Width: 16; Height: 16; saveSurf: false),// sprHellishBomb (FileName: 'Seduction'; Path: ptGraphics; AltPath: ptNone; Texture: nil; Surface: nil; - Width: 16; Height: 16; saveSurf: false) // sprSeduction + Width: 32; Height: 32; saveSurf: false) // sprSeduction ); Wavez: array [TWave] of record diff -r 21916b5de218 -r 993845ea5c8d hedgewars/uGears.pas --- a/hedgewars/uGears.pas Mon Sep 22 22:14:01 2008 +0000 +++ b/hedgewars/uGears.pas Tue Sep 23 06:09:13 2008 +0000 @@ -1096,7 +1096,7 @@ DrawRotatedf(sprCakeWalk, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, (GameTicks div 40) mod 6, hwSign(Gear^.dX), Gear^.DirAngle + hwSign(Gear^.dX) * 90) else DrawRotatedf(sprCakeDown, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 5 - Gear^.Pos, hwSign(Gear^.dX), 0); - gtSeduction: DrawSprite(sprSeduction, hwRound(Gear^.X) - 8 + WorldDx, hwRound(Gear^.Y) - 8 + WorldDy, 0); + gtSeduction: DrawSprite(sprSeduction, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, 0); gtWatermelon: DrawRotatedf(sprWatermelon, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, 0, Gear^.DirAngle); gtMelonPiece: DrawRotatedf(sprWatermelon, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 1, 0, Gear^.DirAngle); gtHellishBomb: DrawRotated(sprHellishBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); diff -r 21916b5de218 -r 993845ea5c8d share/hedgewars/Data/Graphics/Seduction.png Binary file share/hedgewars/Data/Graphics/Seduction.png has changed diff -r 21916b5de218 -r 993845ea5c8d share/hedgewars/Data/Graphics/Watermelon.png Binary file share/hedgewars/Data/Graphics/Watermelon.png has changed