Package games.stendhal.server.entity.creature

Examples of games.stendhal.server.entity.creature.ItemGuardCreature


public class SadScientsBrother implements ZoneConfigurator {

  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.creature.ItemGuardCreature

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.