Examples of initHP()


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

    };

    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

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

    };

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

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

    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

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

    };

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

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

    };

    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

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

      }
    };

    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

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

 
    };

    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

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

      }
    };

    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

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

    };

    npc.setDescription("You see Karl, a friendly elderly farmer.");
    npc.setEntityClass("beardmannpc");
    npc.setPosition(64, 75);
    npc.initHP(100);
    zone.add(npc);
  }
}
View Full Code Here

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

    };

    npc.setEntityClass("woman_007_npc");
    npc.setPosition(41, 40);
    //npc.setDirection(Direction.DOWN);
    npc.initHP(100);
    npc.setDescription("You see Katinka. She takes care of the animals around in the sanctuary.");
    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.