Пример #1
0
void create() {
    ::create();
    set_prevent_get("You cannot take the shack.\n");
    set_name("shack");
    set_short("a rundown shack");
   set_long("Its a rundown shack.");
    set_id(({"house", "shack"}));
Пример #2
0
void create() {
    ::create();
    set_name("mill");
    set_short("A waterwheel");
    set_long("This structure is very tall. Attached to the building is a very large wheel, half immersed in water. The wheel slowly turns in the river's current. Near the top of the tower is a very large fan that spins steadily in the wind.");
    set_prevent_get("After grunting and groaning at the base of the mill for a few moments, you decide that your time would be better spend doing more productive things.");
    set_mass(800);
    set_id(({ "mill", "waterwheel", "windmill" }));
Пример #3
0
void create()
{
 ::create();
   set_name("sign");
   set_short("A sign");
   set_long("A sign against pouting");
   set_prevent_get("No frickin pouting.  Put the sign down!");
   set_value(0);
   set_id(({ "sign" }));
Пример #4
0
void create() {
 ::create();
   set_name("tent");
   set_short("a tent");
   set_long("A large tent made of animal skins.");
   set_prevent_get("You cannot take the tent!");
   set_value(0);
   set_weight(99999);
   set_id(({ "wagon"}));
Пример #5
0
Файл: sign.c Проект: ehershey/pd
void create() {
    ::create();
    set_name("a sign");
    set_short("a run down sign");
    set_long("The sign has been battered "
      "up and is hard to read.");
    set_prevent_get("The sign is tight in "
      "the ground.");
    set_id(({"run down sign","sign"}));
Пример #6
0
void create() {
 ::create();
   set_name("house");
   set_short("a house");
   set_long("A small old run down house. The paint is peeling and some of the windows are cracked. ");
   set_prevent_get("You cannot take a house!");
   set_value(0);
   set_weight(99999);
   set_id(({ "house", "old house", "farm house", "run down house" }));
Пример #7
0
void create() {
 ::create();
   set_name("gates");
   set_short("%^BOLD%^%^BLACK%^Th%^WHITE%^e%^BLACK%^ Gates of "
     "D%^WHITE%^u%^BLACK%^sk%^RESET%^");
   set_long("%^BOLD%^%^BLACK%^Th%^WHITE%^e%^BLACK%^ Gates of "
     "D%^WHITE%^u%^BLACK%^sk%^RESET%^: The gate signifying the northeastern "
     "limits of Tirun. The deathly quiet cemetary is east.");
   set_prevent_get("You cannot take the gates!");
   set_value(0);
   set_weight(99999);
   set_id(({ "gate", "gates", "gates of dusk", "the gates of dusk" }));