# HG changeset patch # User Tobias Neumann # Date 1283118534 -7200 # Node ID b36d8254781a1ed4df2a73e14b472bb9e6a83f03 # Parent 86a537f5d5c3bc203f4253cac3c9fc45312f2129 improve listing for AmmoTypes, GearTypes, Sounds diff -r 86a537f5d5c3 -r b36d8254781a AmmoTypes.wiki --- a/AmmoTypes.wiki Sun Aug 29 21:46:47 2010 +0000 +++ b/AmmoTypes.wiki Sun Aug 29 23:48:54 2010 +0200 @@ -1,5 +1,5 @@ For a current list of ammo types look at hedgewars/uConsts.pas. - +{{{ TAmmoType = (amNothing, amGrenade, amClusterBomb, amBazooka, amBee, amShotgun, amPickHammer, amSkip, amRope, amMine, amDEagle, amDynamite, amFirePunch, amWhip, amBaseballBat, amParachute, amAirAttack, amMineStrike, amBlowTorch, @@ -8,3 +8,4 @@ amRCPlane, amLowGravity, amExtraDamage, amInvulnerable, amExtraTime, amLaserSight, amVampiric, amSniperRifle, amJetpack, amMolotov, amBirdy, amPortalGun, amPiano, amGasBomb, amSineGun, amFlamethrower, amSMine, amHammer); +}}} diff -r 86a537f5d5c3 -r b36d8254781a GearTypes.wiki --- a/GearTypes.wiki Sun Aug 29 21:46:47 2010 +0000 +++ b/GearTypes.wiki Sun Aug 29 23:48:54 2010 +0200 @@ -1,6 +1,6 @@ For a current list of the gears look at hedgewars/uConstants.pas at the TGearType enumeration. - +{{{ TGearType = (gtAmmo_Bomb, gtHedgehog, gtAmmo_Grenade, gtGrave, gtBee, // 4 gtShotgunShot, gtPickHammer, gtRope, gtMine, gtCase, // 9 gtDEagleShot, gtDynamite, gtClusterBomb, gtCluster, gtShover, // 14 @@ -12,3 +12,4 @@ gtSniperRifleShot, gtJetpack, gtMolotov, gtExplosives, gtBirdy, // 45 gtEgg, gtPortal, gtPiano, gtGasBomb, gtSineGunShot, gtFlamethrower, // 51 gtSMine, gtPoisonCloud, gtHammer, gtHammerHit); +}}} diff -r 86a537f5d5c3 -r b36d8254781a Sounds.wiki --- a/Sounds.wiki Sun Aug 29 21:46:47 2010 +0000 +++ b/Sounds.wiki Sun Aug 29 23:48:54 2010 +0200 @@ -1,5 +1,5 @@ For a current list of sounds look at hedgewars/uConsts.pas - +{{{ TSound = (sndNone, sndGrenadeImpact, sndExplosion, sndThrowPowerUp, sndThrowRelease, sndSplash, sndShotgunReload, sndShotgunFire, sndGraveImpact, @@ -21,3 +21,4 @@ sndPoisonCough, sndPoisonMoan, sndBirdyLay, sndWhistle, sndBeeWater, sndPiano0, sndPiano1, sndPiano2, sndPiano3, sndPiano4, sndPiano5, sndPiano6, sndPiano7, sndPiano8, sndSkip, sndSineGun, sndOoff1, sndOoff2, sndOoff3, sndWhack); +}}}