Package games.stendhal.server.entity.npc

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


    };

    boynpc.setOutfit(new Outfit(0,33,18,03,0));
    boynpc.setPosition(42, 30);
    boynpc.setDirection(Direction.RIGHT);
    boynpc.initHP(100);
    boynpc.setDescription("You see Bobby. He is looking at the sky and seems to be daydreaming.");
    zone.add(boynpc);
  }
}
View Full Code Here


    nunnpc.setDescription("You see Sister Benedicta, a holy nun.");
    nunnpc.setEntityClass("nunnpc");
    nunnpc.setDirection(Direction.RIGHT);
    nunnpc.setPosition(53, 54);
    nunnpc.initHP(100);
    zone.add(nunnpc);
  }
}
View Full Code Here

        }
    };

    npc.setEntityClass("man_008_npc");
    npc.setPosition(70, 52);
    npc.initHP(100);
    npc.setDescription("You see Martin Farmer. He is on holidays with his wife Alice.");
    zone.add(npc);
  }
}
View Full Code Here

      }
    };
    npc.setDescription("You see Diehelm Brui, the Quartermaster.");
    npc.setEntityClass("recruiter3npc");
    npc.setPosition(10, 4);
    npc.initHP(100);
    zone.add(npc);

    // Add a book with the shop offers
    final Sign book = new Sign();
    book.setPosition(12, 3);
View Full Code Here

      }
    };

    npc.setEntityClass("youngsoldiernpc");
    npc.setPosition(84, 109);
    npc.initHP(100);
    npc.setDescription("You see Julius, the soldier who guards the entrance to the town of Ados.");
    zone.add(npc);
  }
}
View Full Code Here

        }
    };

    npc.setEntityClass("boynpc");
    npc.setPosition(114, 77);
    npc.initHP(100);
    npc.setDescription("You see Finn Farmer. He is a cute looking boy who has fun while playing in the backyard.");
    zone.add(npc);
  }
}
View Full Code Here

      }
    };

    bankNPC.setEntityClass("youngnpc");
    bankNPC.setPosition(15, 3);
    bankNPC.initHP(1000);
    bankNPC.setDescription("Yance is the Fado bank manager. He can give advice on how to use the chests.");
    zone.add(bankNPC);
  }
}
View Full Code Here

    };

    goldsmith.setEntityClass("goldsmithnpc");
    goldsmith.setDirection(Direction.DOWN);
    goldsmith.setPosition(18, 3);
    goldsmith.initHP(100);
    goldsmith.setDescription("You see Joshua. His family is popular for forging different materials. Do you know his brother, Xoderos, already?");
    zone.add(goldsmith);
  }
}
View Full Code Here

    };

    npc.setEntityClass("wisemannpc");
    npc.setDescription("You see Zynn Iwuhos. He looks even older than some of his tattered maps lying around.");
    npc.setPosition(15, 3);
    npc.initHP(100);
    zone.add(npc);
  }
}
View Full Code Here

    };

    npc.setEntityClass("investigatornpc");
    npc.setDescription("You see Ceryl, a slightly crazed looking librarian.");
    npc.setPosition(28, 12);
    npc.initHP(100);
    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.