Package games.stendhal.server.entity.npc

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


    };

    npc.setDescription("You see a witch flying on a broomstick. She appears to be instructing some pupils.");
    npc.setEntityClass("witch3npc");
    npc.setPosition(29, 19);
    npc.initHP(100);
    zone.add(npc);
  }
}
View Full Code Here


      }
    };

    npc.setEntityClass("wizardwomannpc");
    npc.setPosition(5, 7);
    npc.initHP(100);
    npc.setDescription("You see Saskia. She works in the Magic City boutique.");
    zone.add(npc);
  }
}
View Full Code Here

    };

    dwarf.setDescription("You see Alrak, a reclusive dwarf smith.");
    dwarf.setEntityClass("dwarfnpc");
    dwarf.setPosition(22, 8);
    dwarf.initHP(100);
    zone.add(dwarf);
  }
}
View Full Code Here

    };

    rat.setDescription("You see a rat child.");
    rat.setEntityClass("ratchildboy1npc");
    rat.setPosition(40, 105);
    rat.initHP(100);
    zone.add(rat);
  }
}
View Full Code Here

    ghost.setEntityClass("woman_005_npc");
    // she is a ghost so she is see through
    ghost.setVisibility(50);
    ghost.setPosition(65, 74);
    // she has low HP
    ghost.initHP(30);
    ghost.setBaseHP(100);
    zone.add(ghost);
  }
}
View Full Code Here

    };

    rat.setDescription("You see a rat child.");
    rat.setEntityClass("ratchildboy2npc");
    rat.setPosition(97, 5);
    rat.initHP(100);
    zone.add(rat);
  }
}
View Full Code Here

    };

    npc.setEntityClass("slim_woman_npc");
    npc.setPosition(16, 5);
    // npc.setPosition(101, 102);
    npc.initHP(100);
    npc.setDescription("You see Liliana. She works in the Magic City clothes boutique.");
    zone.add(npc);
  }
}
View Full Code Here

      }
    };

    npc.setEntityClass("wisemannpc");
    npc.setPosition(7, 2);
    npc.initHP(100);
    npc.setDescription("You see the mighty magician Haizen. He is able to let people teleport around with his scrolls.");
    zone.add(npc);
  }
}
View Full Code Here

 
    };

    npc.setEntityClass("sickleinghalfelfnpc");
    npc.setPosition(76,97);
    npc.initHP(100);
    npc.setDescription("You see Eheneumniranin, the Half Elf... He has lost his memory and always looks confused.");
    zone.add(npc);
  }
}
View Full Code Here

      }
    };

    hagnurk.setEntityClass("orcsalesmannpc");
    hagnurk.setPosition(106, 5);
    hagnurk.initHP(100);
    hagnurk.setDescription("You see Hagnurk. He is an orcish salesman.");
    zone.add(hagnurk);
  }
}
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.