Examples of initHP()


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

      }
    };

    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

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

      }
    };
    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

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

  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

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

      }
    };

    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

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

     * 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

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

      }
    };

    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

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

    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

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

      }
    };

    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

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

    };

    silvanus.setDescription("You see Silvanus, the eldest sage druid.");
    silvanus.setEntityClass("greenelfwizardnpc");
    silvanus.setPosition(11, 4);
    silvanus.initHP(100);
    zone.add(silvanus);
  }
}
View Full Code Here

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

      }
    };

    npc.setEntityClass("mothernpc");
    npc.setPosition(84, 9);
    npc.initHP(100);
    npc.setDescription("You see Carey. She takes care of her daughter Elisabeth.");
    zone.add(npc);
  }
}
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.