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

37 lines
1.2 KiB
JavaScript

this.inherits(ROOM);
this.name = "小花园"
this.no_fight = true;
this.desc = "这是你家的花园,迎面是一个小池塘,池塘里一群群的鱼儿游来游去,边上摆着一些奇形怪状的石头,水池的两旁种满了花花草草,郁郁葱葱,看上去有不少的珍惜品种"
this.exits = { "southwest": "home/yuanzi" };
this.can_diaoyu = true;
this.can_caiyao = true;
this.on_enter = function (me) {
if (me.master) {
me.actions = [
{ cmd: "dc " + me.id + " diao", name: "让" + me.name + "钓鱼" },
{ cmd: "dc " + me.id + " cai", name: "让" + me.name + "采药" }
];
if (me.query_skill('guanshanjue', 0) >= 100) {
me.actions.push({ cmd: "dc " + me.id + " wk", name: "让" + me.name + "挖矿" });
}
me.master_json = null;
}
}
this.on_leave = function (me) {
if (me.master) {
me.actions = null;
me.master_json = null;
}
}
this.add_action("diao", "钓鱼", function (me) {
return WORLD.COMMANDS['diaoyu'].enter(me);
});
this.add_action("xkwk", "挖矿", function (me) {
return WORLD.COMMANDS['wk'].enter(me);
});
this.add_action("cai", "采药", function (me) {
return WORLD.COMMANDS['caiyao'].enter(me);
});