ES2 MUD LIB :: 東方故事二(ES2) 天朝帝國 mudlib 瀏覽展示

/d/snow/obj/literate_book.c

HOME :: d :: snow :: obj :: literate_book.c
/*  basic_book.c

    Copyright (C) 1994-2000 Annihilator 

    This program is a part of ES2 mudlib. Permission is granted to use,
    modify, copy or distribute this program provided this copyright notice
    remains intact and subject to the restriction that this program MAY
    NOT be used in any way for monetary gain.

    Details of terms and conditions is available in the Copyright.ES2 file.
    If you don't receive this file along with this program, write to the
    primary author of ES2 mudlib: Annihilator 
*/

inherit ITEM;
inherit F_STUDY;

void create()
{
    set_name("【幼學輯要】", "book of elementary", "book");
    set_weight(1000);
    if( !clonep() ) {
        set("unit", "本");
        set("value", 200);
        set("long",
            "這本書是民間一般私塾教導幼童啟蒙所用的教科書,內容\n"
            "十分淺顯,大致說一些尊親、忠君的基本道理。\n");
        set("required/skill", ([
    "literate" : 1,
        ]));
        set("content", ([
    "literate" : 10
        ]));
    }
    setup();
}

HOME :: d :: snow :: obj :: literate_book.c