cormallenroad2.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. module.exports = class ZebedeeCormallenRoad2 {
  2. constructor() {
  3. this.id = this.constructor.name;
  4. this.name = "Cormallen Road East";
  5. this.description = "The wide cobbled road continues to the east and west. A huge white and golden-spired building is off to the northwest and a tall, rustic building to the southeast bustles with activity. The wide, low building to the south has a large {hint}sign{/hint} above it along with the image of a stack of books.";
  6. this.filename = "zebedee/cormallenroad2.js";
  7. this.type = "room";
  8. this.items = [];
  9. this.mobiles = [];
  10. this.roomExpires = 0;
  11. this.resetDelay = 6000000;
  12. this.roomExits = ["east", "west", "south"];
  13. }
  14. mud_reset(time) {
  15. libs.Output.toRoom(this.id, "The street bustles with foot traffic.");
  16. this.roomExpires = time + this.resetDelay;
  17. }
  18. mud_tick(time) {
  19. if(time >= this.roomExpires) {
  20. this.mud_reset(time);
  21. }
  22. }
  23. mud_getName() {
  24. return this.name;
  25. }
  26. mud_getDescription() {
  27. return this.description;
  28. }
  29. east(room, mobile, input) {
  30. world.mud_moveMobile(mobile.id, this.id, "ZebedeeCormallenRoad4", "leaves east");
  31. return true;
  32. }
  33. west(room, mobile, input) {
  34. world.mud_moveMobile(mobile.id, this.id, "ZebedeeCormallenRoad1", "leaves west");
  35. return true;
  36. }
  37. south(room, mobile, input) {
  38. world.mud_moveMobile(mobile.id, this.id, "LibraryEntrance", "enters the library");
  39. return true;
  40. }
  41. };