protected override BaseEffect DoCopy()
        {
            ENCostEffect NewEffect = new ENCostEffect(Params);

            NewEffect._ENCostValue = _ENCostValue;

            return(NewEffect);
        }
        protected override void DoCopyMembers(BaseEffect Copy)
        {
            ENCostEffect NewEffect = (ENCostEffect)Copy;

            _ENCostValue = NewEffect._ENCostValue;
        }