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