//Dem Refillers
#library "PowerOverfuelming"
#include "zcommon.acs"

script "ExcalibatRefill" ENTER
{
	{
		GiveInventory("ExcaliAmmo",1);
	}
	Delay(3);
	restart;
}

script "PowercubeRefill" ENTER
{
	{
		GiveInventory("CubeAmmo",1);
	}
	Delay(5);
	restart;
}

script "SatchelRefill" ENTER
{
	{
		GiveInventory("SatchelAmmo",1);
	}
	Delay(5);
	restart;
}

//Dem Defillers
script "MagnetDerponator" ENTER
{
	{
		TakeInventory("MagnetCooldown",1);
	}
	Delay(const:1);
	restart;
}

script "ForkDefiller" ENTER
{
	{
		TakeInventory("ForkCharge",1);
	}
	Delay(const:6);
	restart;
}