ACTOR DragonsDontCheatTheyOnlyGrabMoney : CustomInventory
{
  Inventory.Icon ARTISUIT
  Inventory.PickupMessage "This thing right here is for things to work correctly, in case of cheats."
  Inventory.MaxAmount 2
  Inventory.Amount 1
  Inventory.PickupSound ""
  Inventory.UseSound ""
  +INVENTORY.UNDROPPABLE
  +INVENTORY.AUTOACTIVATE
  +INVENTORY.ALWAYSPICKUP
  States
  {
  Spawn:
    SUIT A -1
    Stop
  Use:
  Pickup:
    TNT1 A 0 A_GiveInventory("MidasRecharger",1)
	TNT1 A 0 A_GiveInventory("MidasTome",1)
	TNT1 A 0 A_JumpIfInventory("PowersuitItem2",1,"Null")
	TNT1 A 0 A_GiveInventory("PowersuitItem")
	Stop
  }
}