Package games.stendhal.server.entity.npc

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


 
    };
    npc.setEntityClass("hoeingmannpc");
    npc.setDescription("You see a man with a hoe, he's busy weeding the soil.");
    npc.setPosition(48,62);
    npc.initHP(100);
    zone.add(npc);
  }

}
View Full Code Here


      }
    };
    npc.setEntityClass("grandadnpc");
    npc.setDescription("You see ancient and wizened Valo. He is surrounded by some kind of glowing light.");
    npc.setPosition(26, 5);
    npc.initHP(100);
    zone.add(npc);
  }
}
View Full Code Here

    npc.setDescription("You see a man with a hat. His name is Andy and he looks really sad.");
    npc.setEntityClass("manwithhatnpc");
    npc.setPosition(41, 6);
    npc.setDirection(Direction.RIGHT);
    npc.initHP(100);
    zone.add(npc);
  }
}
View Full Code Here

    };

    margaret.setEntityClass("tavernbarmaidnpc");
    margaret.setDescription("Margaret looks so warm and welcoming that you can't help but want to buy something from her.");
    margaret.setPosition(11, 4);
    margaret.initHP(100);
    zone.add(margaret);
  }
}
View Full Code Here

    ladynpc.setDescription("You see a pretty female elf in a beautiful dress.");
    ladynpc.setEntityClass("elfbankladynpc");
    ladynpc.setDirection(Direction.DOWN);
    ladynpc.setPosition(17, 31);
    ladynpc.initHP(100);
    zone.add(ladynpc);
  }
}
View Full Code Here

    }
  };

  blacksheepbob.setEntityClass("blacksheepnpc");
  blacksheepbob.setPosition(2, 13);
  blacksheepbob.initHP(100);
  blacksheepbob.setDescription("You see Blacksheep Bob. He is popular for his sausage.");
  zone.add(blacksheepbob);
   
  }
}
View Full Code Here

    npc.setEntityClass("highpriestnpc");
    npc.setPosition(23, 44);
    npc.setDirection(Direction.RIGHT);
    npc.setLevel(390);
    npc.initHP(85);
    zone.add(npc);
  }
}
View Full Code Here

      npc.setEntityClass(classes[i]);
      npc.setPosition(start[i].getX(), start[i].getY());
      npc.setDescription(descriptions[i]);
      npc.setDirection(Direction.DOWN);
      npc.initHP(100);
      zone.add(npc);
    }
  }
}
View Full Code Here

    };

    baldemar.setDescription("You see Baldemar, a Mithrilbourgh Wizard well studied in the craft of forging mithril.");
    baldemar.setEntityClass("mithrilforgernpc");
    baldemar.setPosition(4, 6);
    baldemar.initHP(100);
    zone.add(baldemar);
  }
}
View Full Code Here

    npc.setEntityClass("vergernpc");
    npc.setDescription("You see Simon. He has closed his eyes and is praying silently, but sometimes you can hear him mumble a prayer...");
    npc.setPosition(29, 14);
    npc.setDirection(Direction.UP);
    npc.initHP(100);
    zone.add(npc);
   
    return 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.