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