/* New class of armor that gives 50 armor and provides 75% protection
 * against bullets, but only 25% against everything else.  Former commandos
 * can occasionally drop this.
 * Note that the bullets are a custom "hitscan" damage type; anachrony sets
 * it appropriately for all the stock monsters.
 *
 * Based on the Heavy Armor from Realm 667.  Sprites and GL defs by Captain
 * Toenail, based on id's commando sprites.
 */

actor Anachrony_CommandoArmor : BasicArmorPickup 13401
{
	//$Category Health And Armour
	//$Title Commando Armor
	radius 20
	height 16
	inventory.pickupmessage "Picked up the commando armor."
	inventory.icon "HEVAB0"
	armor.saveamount 50
	armor.savepercent 25
	damagefactor hitscan, 0.333

	states {
	Spawn:
		HEVA B 6
		HEVA A 6 bright
		loop
	}
}
