zone.add(point);
}
private void attackableAnimal(final StendhalRPZone zone, final Map<String, String> attributes) {
Creature creature = new AttackableCreature(manager.getCreature("orc"));
CreatureRespawnPoint point = new CreatureRespawnPoint(zone, 4, 56, creature, 1);
point.setRespawnTime(60 * 60 * 3);
zone.add(point);
creature = manager.getCreature("deer");
point = new CreatureRespawnPoint(zone, 14, 56, creature, 1);
point.setRespawnTime(60 * 60 * 3);
zone.add(point);
}