AmmoTypes.wiki
author Caironater@gmail.com
Mon, 02 Dec 2013 08:57:06 +0000
changeset 358 2c2632ccfe2f
parent 354 0ba9ad5ce9fd
child 399 d92d626f9c46
permissions -rw-r--r--
Added sprTardis,sprSlider, sprBotlevels, sprHandKnife, sprKnife, sprStar, sprIceTexture, sprIceGun and sprFrozenHog.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
354
0ba9ad5ce9fd Add line number to the link.
Caironater@gmail.com
parents: 314
diff changeset
     1
For a current list of ammo types look at http://code.google.com/p/hedgewars/source/browse/hedgewars/uTypes.pas#146
15
b36d8254781a improve listing for AmmoTypes, GearTypes, Sounds
Tobias Neumann <mail@tobias-neumann.eu>
parents: 12
diff changeset
     2
{{{
314
74fb197dc5d3 Edited wiki page AmmoTypes through web user interface.
sheepyluva@gmail.com
parents: 18
diff changeset
     3
 // Available ammo types to be used by hedgehogs
74fb197dc5d3 Edited wiki page AmmoTypes through web user interface.
sheepyluva@gmail.com
parents: 18
diff changeset
     4
TAmmoType = (amNothing, amGrenade, amClusterBomb, amBazooka, amBee, amShotgun, amPickHammer,
74fb197dc5d3 Edited wiki page AmmoTypes through web user interface.
sheepyluva@gmail.com
parents: 18
diff changeset
     5
amSkip, amRope, amMine, amDEagle, amDynamite, amFirePunch, amWhip,
74fb197dc5d3 Edited wiki page AmmoTypes through web user interface.
sheepyluva@gmail.com
parents: 18
diff changeset
     6
amBaseballBat, amParachute, amAirAttack, amMineStrike, amBlowTorch,
74fb197dc5d3 Edited wiki page AmmoTypes through web user interface.
sheepyluva@gmail.com
parents: 18
diff changeset
     7
amGirder, amTeleport, amSwitch, amMortar, amKamikaze, amCake,
74fb197dc5d3 Edited wiki page AmmoTypes through web user interface.
sheepyluva@gmail.com
parents: 18
diff changeset
     8
amSeduction, amWatermelon, amHellishBomb, amNapalm, amDrill, amBallgun,
74fb197dc5d3 Edited wiki page AmmoTypes through web user interface.
sheepyluva@gmail.com
parents: 18
diff changeset
     9
amRCPlane, amLowGravity, amExtraDamage, amInvulnerable, amExtraTime,
74fb197dc5d3 Edited wiki page AmmoTypes through web user interface.
sheepyluva@gmail.com
parents: 18
diff changeset
    10
amLaserSight, amVampiric, amSniperRifle, amJetpack, amMolotov, amBirdy, amPortalGun,
74fb197dc5d3 Edited wiki page AmmoTypes through web user interface.
sheepyluva@gmail.com
parents: 18
diff changeset
    11
amPiano, amGasBomb, amSineGun, amFlamethrower, amSMine, amHammer,
74fb197dc5d3 Edited wiki page AmmoTypes through web user interface.
sheepyluva@gmail.com
parents: 18
diff changeset
    12
amResurrector, amDrillStrike, amSnowball, amTardis, amLandGun, amIceGun, amKnife);
18
a5689d857b25 added resurector
henrik.rostedt
parents: 15
diff changeset
    13
}}}