int full;
id(str) {
if (str == "beer" && full)
return 1;
return str == "bottle";
}
short() {
if (full)
return "bottle of beer";
return "empty bottle";
}
/* The shop only buys empty bottles ! */
query_value()
{
if (!full) return 10;
return 0;
}
long() {
write(short() + ".\n");
}
reset(arg) {
if (arg)
return;
full = 1;
}
drink(str)
{
if (str && str != "beer" && str != "from bottle")
return 0;
if (!full)
return 0;
if (!this_player()->drink_alcohol(2))
return 1;
full = 0;
write("It is really good beer!\n");
say(this_player()->query_name() +
" drinks a bottle of beer.\n");
return 1;
}
init() {
add_action("drink", "drink");
}
get() {
return 1;
}
query_weight() {
return 1;
}