public static TaskStatus GetBottle(AIContext context) { context.CurrentScreen.Write("You pick up the bottle", false); return(TaskStatus.Success); }
public static TaskStatus DropSword(AIContext context) { context.CurrentScreen.Write("You drop the sword", false); return(TaskStatus.Success); }
public static TaskStatus CloseBottle(AIContext context) { context.CurrentScreen.Write("You screw the cork back onto the bottle", false); return(TaskStatus.Success); }
public static TaskStatus SipEmptyBottle(AIContext context) { context.CurrentScreen.Write("The bottle is empty", false); return(TaskStatus.Success); }
public static TaskStatus OpenBottle(AIContext context) { context.CurrentScreen.Write("You unscrew the cork of the bottle", false); return(TaskStatus.Success); }