AmmoTypes.wiki
author almikes@aol.com
Wed, 03 Dec 2014 03:03:58 +0000
changeset 407 36537eaf680c
parent 399 d92d626f9c46
child 409 600e83a51609
permissions -rw-r--r--
Add HedgewarsScriptLoad
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
{{{
399
d92d626f9c46 update list of ammotypes
RedGrinner@gmail.com
parents: 354
diff changeset
     3
// Available ammo types to be used by hedgehogs
d92d626f9c46 update list of ammotypes
RedGrinner@gmail.com
parents: 354
diff changeset
     4
TAmmoType = (amNothing, amGrenade, amClusterBomb, amBazooka, amBee, amShotgun, amPickHammer, // 6
d92d626f9c46 update list of ammotypes
RedGrinner@gmail.com
parents: 354
diff changeset
     5
amSkip, amRope, amMine, amDEagle, amDynamite, amFirePunch, amWhip, // 13
d92d626f9c46 update list of ammotypes
RedGrinner@gmail.com
parents: 354
diff changeset
     6
amBaseballBat, amParachute, amAirAttack, amMineStrike, amBlowTorch, // 18
d92d626f9c46 update list of ammotypes
RedGrinner@gmail.com
parents: 354
diff changeset
     7
amGirder, amTeleport, amSwitch, amMortar, amKamikaze, amCake, // 24
d92d626f9c46 update list of ammotypes
RedGrinner@gmail.com
parents: 354
diff changeset
     8
amSeduction, amWatermelon, amHellishBomb, amNapalm, amDrill, amBallgun, // 30
d92d626f9c46 update list of ammotypes
RedGrinner@gmail.com
parents: 354
diff changeset
     9
amRCPlane, amLowGravity, amExtraDamage, amInvulnerable, amExtraTime, // 35
d92d626f9c46 update list of ammotypes
RedGrinner@gmail.com
parents: 354
diff changeset
    10
amLaserSight, amVampiric, amSniperRifle, amJetpack, amMolotov, amBirdy, amPortalGun, // 42
d92d626f9c46 update list of ammotypes
RedGrinner@gmail.com
parents: 354
diff changeset
    11
amPiano, amGasBomb, amSineGun, amFlamethrower, amSMine, amHammer, // 48
d92d626f9c46 update list of ammotypes
RedGrinner@gmail.com
parents: 354
diff changeset
    12
amResurrector, amDrillStrike, amSnowball, amTardis, {amStructure,} amLandGun, amIceGun, amKnife, amRubber); // 56
18
a5689d857b25 added resurector
henrik.rostedt
parents: 15
diff changeset
    13
}}}