Files
wsmud/world/map/yz/shuyuan.js
2026-05-26 16:41:20 +08:00

15 lines
1.2 KiB
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
this.inherits(ROOM);
this.name = "书院"
this.desc = "这里是书院的讲堂,窗明几净,一尘不染。一位庄重严肃的老者坐在太师椅上讲学,那就是当今大儒朱先生了。在他的两侧坐满了求学的学生。一张古意盎然的书案放在朱先生的前面,案上摆着几本翻开了的线装书籍。朱先生的身后是一个书架(shujia)讲堂内多历代楹联石刻,足见书院历史的悠久。值得一提的是嵌在讲堂前左壁的学规(xuegui)。书院老夫子刚奉了圣旨颁发学位,就在门口树着书院新立的学位公告板(board)。";
this.exits = { "south": "yz/dongdajie1" };
this.set_item("xuegui", "学规","日讲经书三起,日看纲目数页。\n通晓时务物理参读古文诗赋。\n读书必须过笔会课按时蚤完。\n夜读仍戒晏起疑误定要力争。\n");
this.set_item("shujia", "书架", "一个一尘不染的书架。");
this.set_item("board", "公告板", "本书院奉圣上恩旨自即日起封授学位");
this.no_fight = true;
this.set_npc("yz/zhu");
this.on_leave = function (me, dir) {
if (dir == "north" )
return me.notify_fail("那是朱熹的私人寝室!!");
}