road09.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. module.exports = class PhandalinRoad9 {
  2. constructor() {
  3. this.id = this.constructor.name;
  4. this.name = "Phandalin Road";
  5. this.description = "A well worn dirt road.";
  6. this.filename = "phandalin/road09.js";
  7. this.type = "room";
  8. this.items = [];
  9. this.mobiles = [];
  10. this.roomExits = [];
  11. this.roomExpires = 0;
  12. this.resetDelay = 12000000;
  13. this.roomExits = ["southwest", "northeast", "enter"];
  14. }
  15. mud_reset(time) {
  16. libs.Output.toRoom(this.id, "One of the townsfolk smiles as she passes by.");
  17. this.roomExpires = time + this.resetDelay;
  18. }
  19. mud_tick(time) {
  20. if(time >= this.roomExpires) {
  21. this.mud_reset(time);
  22. }
  23. }
  24. mud_getName() {
  25. return this.name;
  26. }
  27. mud_getDescription() {
  28. return this.description;
  29. }
  30. west(room, mobile, input) {
  31. return this.enter(room, mobile, input);
  32. }
  33. enter(room, mobile, input) {
  34. world.mud_moveMobile(mobile.id, this.id, "PhandalinSmithy", "enters the Smithy", "enters");
  35. return true;
  36. }
  37. southwest(room, mobile, input) {
  38. world.mud_moveMobile(mobile.id, this.id, "PhandalinRoad8", "leaves southwest");
  39. return true;
  40. }
  41. northeast(room, mobile, input) {
  42. world.mud_moveMobile(mobile.id, this.id, "PhandalinRoad10", "leaves northeast");
  43. return true;
  44. }
  45. };