public BaseEventPokemonTemplate(byte hometown, ushort natid, byte minlevel, ushort tid, ushort sid, bool otfemale, PokeString otname)
     : base(hometown, natid, minlevel)
 {
     m_TID    = tid;
     m_SID    = sid;
     m_OTName = otname;
 }
 public BaseEventPokemonTemplate( byte hometown, ushort natid, byte minlevel, ushort tid, ushort sid, bool otfemale, PokeString otname )
     : base(hometown, natid, minlevel)
 {
     m_TID = tid;
     m_SID = sid;
     m_OTName = otname;
 }
        private ushort m_Location; //Some are not Pokemon Event (3060)

        #endregion Fields

        #region Constructors

        public Dynamic4GEventPokemonTemplate( byte hometown, ushort natid, byte minlevel, ushort tid, ushort sid, bool otfemale, PokeString otname, ushort location )
            : base(hometown, natid, minlevel, tid, sid, otfemale, otname)
        {
            m_Location = location;
        }
        private DateTime m_StartDate; //Starting Date

        #endregion Fields

        #region Constructors

        public Base4GEventPokemonTemplate( byte hometown, ushort natid, byte minlevel, ushort tid, ushort sid, bool otfemale, PokeString otname, ushort location, DateTime startdate )
            : base(hometown, natid, minlevel, tid, sid, otfemale, otname)
        {
            m_StartDate = startdate;
            m_Location = location;
        }
Ejemplo n.º 5
0
        private ushort m_Location;         //Some are not Pokemon Event (3060)

        public Base4GEventPokemonTemplate(byte hometown, ushort natid, byte minlevel, ushort tid, ushort sid, bool otfemale, PokeString otname, ushort location, DateTime startdate)
            : base(hometown, natid, minlevel, tid, sid, otfemale, otname)
        {
            m_StartDate = startdate;
            m_Location  = location;
        }
        private ushort m_Location;         //Some are not Pokemon Event (3060)

        public Dynamic4GEventPokemonTemplate(byte hometown, ushort natid, byte minlevel, ushort tid, ushort sid, bool otfemale, PokeString otname, ushort location)
            : base(hometown, natid, minlevel, tid, sid, otfemale, otname)
        {
            m_Location = location;
        }