/// <summary>
        /// Этот метод наносит урон
        /// </summary>
        private void BoomMethod(int x, int y)
        {
            _isBoom = true;
            ///Если ракета попала или должна исчезнуть
            ///Берем все ячейки вокруг колбы
            List <Point> roundPoint = UnitGenerator.BigRoundNumber(x, y);

            roundPoint.Add(new Point(x, y));
            ///Теперь рисуем взрыв
            for (int i = 0; i < roundPoint.Count; i++)
            {
                Map_Cell callBoom = _map.Calls.FirstOrDefault(p => p.IndexLeft == roundPoint[i].X && p.IndexTop == roundPoint[i].Y);
                if (callBoom != null && !callBoom.Block)
                {
                    UC_Super_Mega_Death_Rocket arrow = new UC_Super_Mega_Death_Rocket();
                    if (i == 0 || i == 1)
                    {
                        arrow.ChengAngel(EAngel.Left);
                    }
                    else if (i == 2 || i == 3)
                    {
                        arrow.ChengAngel(EAngel.Right);
                    }
                    else if (i == 4 || i == 5)
                    {
                        arrow.ChengAngel(EAngel.Top);
                    }
                    else if (i == 6 || i == 7)
                    {
                        arrow.ChengAngel(EAngel.Bottom);
                    }
                    else if (i == 8)
                    {
                        ///Центральная ячейка
                        arrow.ChengAngelCenter();
                    }

                    Bullet bullArrow = new Bullet();
                    bullArrow.GameObject = new Game_Object_In_Call()
                    {
                        EnumCallType = EnumCallType.Bullet,
                        View         = arrow
                    };
                    bullArrow.UnitUsed  = _bullet.UnitUsed;
                    bullArrow.PositionX = (int)roundPoint[i].X;
                    bullArrow.PositionY = (int)roundPoint[i].Y;
                    bullArrow.Speed     = 0;

                    if (i != 8)
                    {
                        bullArrow.DemageMagic = _bullet.DemageMagic;
                    }
                    else
                    {
                        bullArrow.DemageMagic = (int)(_bullet.DemageMagic * 0.8);
                    }

                    bullArrow.CurrentMap = _map;
                    bullArrow.Angel      = _bullet.UnitUsed.Angel;
                    bullArrow.Range      = 0;

                    ///И его же добавим в масив всех объектов
                    _map.GameObjectInCall.Add(bullArrow.GameObject);
                    Canvas.SetLeft(bullArrow.GameObject.View, bullArrow.PositionX * 50);
                    Canvas.SetTop(bullArrow.GameObject.View, bullArrow.PositionY * 50);
                    ///Отображение
                    _map.MapCanvas.Children.Add(bullArrow.GameObject.View);

                    UnitGenerator.AddDamage(callBoom, bullArrow);
                    UnitGenerator.AddStune(callBoom, bullArrow, _bullet.StunDuration);

                    _boom.Add(bullArrow);
                }
            }

            _secondTimer = new Storyboard()
            {
                Duration = TimeSpan.FromSeconds(0.5)
            };
            _secondTimer.Completed += _secondTimer_Completed;
            _secondTimer.Begin();
        }