Package games.stendhal.server.entity.npc.behaviour.impl.prices

Examples of games.stendhal.server.entity.npc.behaviour.impl.prices.RepairingPriceCalculationStrategy


   *
   * @param npc the NPC to enrich
   */
  public void addRepairer(final SpeakerNPC npc) {
    final RepairerBehaviour repairerBehaviour = new RepairerBehaviour(
            new RepairingPriceCalculationStrategy(new HashSet<String>()),
            new HashSet<String>(Arrays.asList("buckler")));
    final Engine engine = npc.getEngine();
   
    //sentence was not recognized     
    ChatCondition errorCondition = new SentenceHasErrorCondition();
View Full Code Here

TOP

Related Classes of games.stendhal.server.entity.npc.behaviour.impl.prices.RepairingPriceCalculationStrategy

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.