Package games.stendhal.server.entity.npc

Examples of games.stendhal.server.entity.npc.SpeakerNPC.initHP()


      }
    };

    JailedBarbNPC.setEntityClass("jailedbarbariannpc");
    JailedBarbNPC.setPosition(11, 12);
    JailedBarbNPC.initHP(100);
    JailedBarbNPC.setDescription("You see the jailed Barbarian Lorenz. What did he do to the Amazonesses?");
    zone.add(JailedBarbNPC);
  }
}
View Full Code Here


          // the rest is in the ElfPrincess quest
      }
    };

    rose.setEntityClass("gypsywomannpc");
    rose.initHP(100);

    // start in int_semos_house
    final StendhalRPZone  zone = SingletonRepository.getRPWorld().getZone("int_semos_house");
    rose.setPosition(5, 6);
    zone.add(rose);
View Full Code Here

      }
    };

    princessNPC.setEntityClass("amazoness_princessnpc");
    princessNPC.setPosition(6, 13);
    princessNPC.initHP(100);
    princessNPC.setDescription("You see Princess Esclara. She smells of coconut and pineapples...");
    zone.add(princessNPC);
  }
}
View Full Code Here

      }
    };
    npc.setDescription("You see a pretty young bar maid.");
    npc.setEntityClass("woman_004_npc");
    npc.setPosition(8, 27);
    npc.initHP(100);
    zone.add(npc);
  }
}
View Full Code Here

  private void buildTradeCenterAdvisor(StendhalRPZone zone) {
    SpeakerNPC speaker = new MarketManagerNPC(TRADE_ADVISOR_NAME);
    speaker.setPosition(COORDINATE_X,COORDINATE_Y);
    speaker.setEntityClass("tradecenteradvisornpc");
    speaker.setOutfit(new Outfit(0, 5, 1, 34, 1));
    speaker.initHP(100);
    speaker.setDescription("Harold is a friendly guy who is waiting for setting up some offers...");
    zone.add(speaker);
  }
 
  public static Market getShopFromZone(StendhalRPZone zone) {
View Full Code Here

      }
    };

    npc.setEntityClass("wannabekingnpc");
    npc.setPosition(3, 7);
    npc.initHP(100);
    npc.setDescription("You see Ivan Abe. He wants to be the king of Kalavan.");
    zone.add(npc);
  }
}
View Full Code Here

     * the Fado Raid area so I'm going to put him to use here. If the raid
     * part ever gets done, this image can change.
     */
    npc.setEntityClass("recruiter2npc");
    npc.setPosition(120, 67);
    npc.initHP(100);
    zone.add(npc);
  }
}
View Full Code Here

      }
    };

    fishyguy.setEntityClass("sailor1npc");
    fishyguy.setPosition(63, 89);
    fishyguy.initHP(100);
    fishyguy.setDescription("You see a Fishmonger. He stinks a bit from the fish he buys.");
    zone.add(fishyguy);
  }
}
View Full Code Here

    seamstress.setVisibility(70);
    // walk through
    seamstress.setResistance(0);
    seamstress.setEntityClass("woman_002_npc");
    seamstress.setPosition(7, 7);
    seamstress.initHP(40);
    zone.add(seamstress);
  }
}
View Full Code Here

      }
    };

    lawrence.setEntityClass("man_002_npc");
    lawrence.setPosition(63, 95);
    lawrence.initHP(100);
    lawrence.setDescription("You see Lawrence. His working place is the market.");
    zone.add(lawrence);
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.