override public string GetLoot()
 {
     if (targetCell != null)
     {
         return(targetCell.GetLoot());
     }
     else
     {
         return(null);
     }
 }
 virtual public bool IsTransmittable()
 {
     return(targetCell != null && !(loot.text == "" && targetCell.GetLoot() == ""));
 }