Exemplo n.º 1
0
 public static void Generate()
 {
     foreach (Point3D pnt in _SpawnLocs)
     {
         MacawNest nest = new MacawNest();
         nest.MoveToWorld(pnt, Map.TerMur);
     }
 }
Exemplo n.º 2
0
        public static void Generate()
        {
            for (var index = 0; index < _SpawnLocs.Length; index++)
            {
                Point3D pnt = _SpawnLocs[index];

                MacawNest nest = new MacawNest();
                nest.MoveToWorld(pnt, Map.TerMur);
            }
        }
Exemplo n.º 3
0
        public MacawSpawner()
            : base(0x9C48)
        {
            Spawn   = new List <BaseCreature>();
            Movable = false;
            Hue     = 1281;

            Addon      = new MacawNest();
            Addon.Foil = this;
        }