27 lines
568 B
C
27 lines
568 B
C
#include <lib.h>
|
|
#include <vendor_types.h>
|
|
#include <meal_types.h>
|
|
inherit LIB_FLASK;
|
|
|
|
void create(){
|
|
::create();
|
|
SetKeyName("cask");
|
|
SetId( ({"cask","keg"}) );
|
|
SetAdjectives( ({"large","wooden","wood"}) );
|
|
SetShort("a wooden cask");
|
|
SetLong("A large wooden cask for containing fluids.");
|
|
SetMass(2000);
|
|
SetBaseCost("silver",10);
|
|
SetVendorType(VT_TREASURE);
|
|
SetFlaskContents("water");
|
|
SetFlaskUses(50);
|
|
SetStrength(5);
|
|
SetMaxFlask(50);
|
|
SetMealType(MEAL_DRINK);
|
|
SetTapped(1);
|
|
}
|
|
|
|
void init(){
|
|
::init();
|
|
}
|