Package games.stendhal.server.entity.mapstuff.spawner

Examples of games.stendhal.server.entity.mapstuff.spawner.CreatureRespawnPoint


    buildPrisonArea(zone, attributes);
  }

  private void buildPrisonArea(final StendhalRPZone zone, final Map<String, String> attributes) {
    final Creature creature = new ItemGuardCreature(manager.getCreature("duergar king"), "kanmararn prison key");
    final CreatureRespawnPoint point = new CreatureRespawnPoint(zone, 50, 15, creature, 1);
    zone.add(point);
  }
View Full Code Here


  }

  private void buildDrowTunnelArea(final StendhalRPZone zone, final Map<String, String> attributes) {
    final EntityManager manager = SingletonRepository.getEntityManager();
    final Creature creature = new ItemGuardCreature(manager.getCreature("vampire lord"), "skull ring", "vs_quest", "start");
    final CreatureRespawnPoint point = new CreatureRespawnPoint(zone, 30, 11, creature, 1);
    zone.add(point);
  }
View Full Code Here

  public void configureZone(StendhalRPZone zone,
      Map<String, String> attributes) {
    final EntityManager manager = SingletonRepository.getEntityManager();
    final Creature creature = new ItemGuardCreature(manager.getCreature("imperial scientist"), "goblet", "sad_scientist", "kill_scientist", 0);
    creature.setName("Sergej Elos");
    final CreatureRespawnPoint point = new CreatureRespawnPoint(zone, 43, 85, creature, 1);
    zone.add(point);
  }
View Full Code Here

TOP

Related Classes of games.stendhal.server.entity.mapstuff.spawner.CreatureRespawnPoint

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.