1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- module.exports = class LibraryBookReturn {
- constructor() {
- this.id = this.constructor.name;
- this.name = "Library Book Return";
- this.description = "An old oak desk to the south has a slot for returning books.";
- this.filename = "library/bookreturn.js";
- this.type = "room";
- this.items = [];
- this.mobiles = [];
- this.roomExits = [];
- this.roomExpires = 0;
- this.resetDelay = 12000000;
- this.roomExits = ["north", "west"];
- }
- mud_reset(time) {
- libs.Output.toRoom(this.id, "A page turns in the utter silence.\n");
- this.roomExpires = time + this.resetDelay;
- }
- mud_tick(time) {
- if(time >= this.roomExpires) {
- this.mud_reset(time);
- }
- }
- mud_getName() {
- return this.name;
- }
- mud_getDescription() {
- return this.description;
- }
- north(room, mobile, input) {
- world.mud_moveMobile(mobile.id, this.id, "LibraryEntrance");
- return true;
- }
- west(room, mobile, input) {
- world.mud_moveMobile(mobile.id, this.id, "LibraryWestStacks1");
- return true;
- }
- };
|