📄 dong80.c
字号:
#include <room.h>
#include <ansi.h>
inherit ROOM;
void create()
{
set("short", HIY"王家的灵墓"NOR);
set("long", HIM @LONG
这是传说中光神的的灵墓,通路的中央飘浮著一颗颗闪亮
的红水晶。四周的墙壁和天花板上满布著美丽的壁画和精致
的石雕。四周散发著神秘的光芒。
LONG NOR);
set("magicroom",1);set("outdoors","migong");
set("magicset",1);
set("exits", ([
"west" : __DIR__"dong7"+(random(5)+3),
"east" : __DIR__"dong81",
"north" : __DIR__"dong7"+(random(5)+3),
"south" : __DIR__"dong7"+(random(4)+1),
]));
if (random(3)==0)
set("exits", ([
"west" : __DIR__"dong7"+(random(5)+4),
"east" : __DIR__"dong7"+(random(5)+3),
"north" : __DIR__"dong81",
"south" : __DIR__"dong7"+(random(4)+1),
]));
if (random(3)==0)
set("exits", ([
"west" : __DIR__"dong81",
"east" : __DIR__"dong7"+(random(3)+2),
]));
if (random(4)==0)
set("exits", ([
"south" : __DIR__"dong7"+(random(3)+2),
"north" : __DIR__"dong81",
]));
set("objects", ([
__DIR__"npc/lev5" : 2,
__DIR__"npc/lev6" : 2,
"/clone/box/gboxm" : random(2),
]));
set("no_clean_up", 0);
setup();
replace_program(ROOM);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -