actor G2_Battery : Inventory 31100
{
	Inventory.PickupSound "Items/Battery/Pickup"
	Inventory.PickupMessage "You picked up flashlight battery"
	Inventory.Amount 1
	Inventory.MaxAmount 10
	scale 0.16
	
	states
	{
		Spawn:
			BATT A -1
			loop
	}
}

ACTOR BatteryPower : Ammo
{
	Inventory.PickupMessage "Pickup up electrons. The battery companies are gonna kill you for harvesting pure free energy!"
	Inventory.Amount 0
	Inventory.MaxAmount 11000
	Ammo.BackpackAmount 0
	Ammo.BackpackMaxAmount 11000
	
	States
	{
		Spawn:
			CELL A 1
			Stop
	}
}