AmmoTypes.wiki
author kyberneticist@gmail.com
Sat, 18 Aug 2012 22:56:53 +0000
changeset 241 db33e09cb9cd
parent 18 a5689d857b25
child 314 74fb197dc5d3
permissions -rw-r--r--
Edited wiki page BuildingOnLinux through web user interface.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12
74ead59b6c64 LuaAPI page + GearTypes,AmmoTypes,Sounds,States listing pages
Tobias Neumann <mail@tobias-neumann.eu>
parents:
diff changeset
     1
For a current list of ammo types look at hedgewars/uConsts.pas.
15
b36d8254781a improve listing for AmmoTypes, GearTypes, Sounds
Tobias Neumann <mail@tobias-neumann.eu>
parents: 12
diff changeset
     2
{{{
12
74ead59b6c64 LuaAPI page + GearTypes,AmmoTypes,Sounds,States listing pages
Tobias Neumann <mail@tobias-neumann.eu>
parents:
diff changeset
     3
    TAmmoType  = (amNothing, amGrenade, amClusterBomb, amBazooka, amBee, amShotgun, amPickHammer,
74ead59b6c64 LuaAPI page + GearTypes,AmmoTypes,Sounds,States listing pages
Tobias Neumann <mail@tobias-neumann.eu>
parents:
diff changeset
     4
            amSkip, amRope, amMine, amDEagle, amDynamite, amFirePunch, amWhip,
74ead59b6c64 LuaAPI page + GearTypes,AmmoTypes,Sounds,States listing pages
Tobias Neumann <mail@tobias-neumann.eu>
parents:
diff changeset
     5
            amBaseballBat, amParachute, amAirAttack, amMineStrike, amBlowTorch,
74ead59b6c64 LuaAPI page + GearTypes,AmmoTypes,Sounds,States listing pages
Tobias Neumann <mail@tobias-neumann.eu>
parents:
diff changeset
     6
            amGirder, amTeleport, amSwitch, amMortar, amKamikaze, amCake,
74ead59b6c64 LuaAPI page + GearTypes,AmmoTypes,Sounds,States listing pages
Tobias Neumann <mail@tobias-neumann.eu>
parents:
diff changeset
     7
            amSeduction, amWatermelon, amHellishBomb, amNapalm, amDrill, amBallgun,
74ead59b6c64 LuaAPI page + GearTypes,AmmoTypes,Sounds,States listing pages
Tobias Neumann <mail@tobias-neumann.eu>
parents:
diff changeset
     8
            amRCPlane, amLowGravity, amExtraDamage, amInvulnerable, amExtraTime,
74ead59b6c64 LuaAPI page + GearTypes,AmmoTypes,Sounds,States listing pages
Tobias Neumann <mail@tobias-neumann.eu>
parents:
diff changeset
     9
            amLaserSight, amVampiric, amSniperRifle, amJetpack, amMolotov, amBirdy, amPortalGun,
18
a5689d857b25 added resurector
henrik.rostedt
parents: 15
diff changeset
    10
            amPiano, amGasBomb, amSineGun, amFlamethrower, amSMine, amHammer,
a5689d857b25 added resurector
henrik.rostedt
parents: 15
diff changeset
    11
            amResurrector);
a5689d857b25 added resurector
henrik.rostedt
parents: 15
diff changeset
    12
}}}