ES2 MUD LIB :: 東方故事二(ES2) 天朝帝國 mudlib 瀏覽展示
/obj/food/ricedough.c
// ricedough.c
inherit COMBINED_ITEM;
inherit F_FOOD;
void create()
{
set_name("飯糰", ({ "rice dough", "dough", "rice" }));
if( !clonep() ) {
set("unit", "堆");
set("base_unit", "個");
set("base_value", 25);
set("base_weight", 80);
set("food_stuff", 60);
set("long",
"米飯作成的糰子,裡面包著一些肉鬆、煎蛋、油條段兒的小菜。\n");
}
setup();
}