Package games.stendhal.server.entity.npc

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


      }
    };

    yetifemale.setEntityClass("yetifemalenpc");
    yetifemale.setPosition(102, 19);
    yetifemale.initHP(100);
    zone.add(yetifemale);
  }
}
View Full Code Here


    // TODO: different sprite
    npc.setEntityClass("timekeepernpc");
    npc.setPosition(25, 21);
    npc.setDirection(Direction.UP);
    npc.initHP(100);
    npc.setDescription("You see Megan. She is the keeper outside space and time.");
    zone.add(npc);
  }
}
View Full Code Here

      }
    };

    yetimale.setEntityClass("yetimalenpc");
    yetimale.setPosition(29, 29);
    yetimale.initHP(100);
    zone.add(yetimale);
  }
}
View Full Code Here

      }
    };
    zone.assignRPObjectID(npc);
    npc.setEntityClass("heraldnpc");
    npc.setPosition(x, y);
    npc.initHP(100);
    npc.setDirection(Direction.LEFT);
    return(npc);
  }
}
View Full Code Here

    };

    npc.setDescription("You see a beautiful woman hidden under swathes of fabric.");
    npc.setEntityClass("cloakedwoman2npc");
    npc.setPosition(9, 10);
    npc.initHP(100);
    zone.add(npc);
  }
}
View Full Code Here

    smith.setDescription("You see Vulcanus. You feel a strange sensation near him.");
    smith.setEntityClass("transparentnpc");
    smith.setAlternativeImage("vulcanus");
    smith.setPosition(62, 115);
    smith.setDirection(Direction.DOWN);
    smith.initHP(100);
    zone.add(smith);
  }
}
View Full Code Here

      }
    };

    npc.setEntityClass("koboldbarmaidnpc");
    npc.setPosition(9, 3);
    npc.initHP(100);
    npc.setDescription("You see Wrviliza, the kobold barmaid.");
    zone.add(npc);

  }
}
View Full Code Here

    npc.setDescription("You see Marla. She made a long journey till reaching her resort.");
    npc.setEntityClass("womanexoticdressnpc");
    npc.setPosition(73, 7);
    npc.setDirection(Direction.RIGHT);
    npc.initHP(100);
    zone.add(npc);
  }
}
View Full Code Here

    };

    npc.setDescription("You see a quiet woman with a benign face.");
    npc.setEntityClass("cloakedwomannpc");
    npc.setPosition(5, 25);
    npc.initHP(100);
    zone.add(npc);
  }
}
View Full Code Here

    };

    stallman.setEntityClass("richardstallmannpc");
    stallman.setPosition(24, 19);
    stallman.setDirection(Direction.DOWN);
    stallman.initHP(100);
    zone.add(stallman);
  }
}
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.