Esempio n. 1
0
 public virtual string useOn(GameState state)
 {
     state.commandFailed();
     return "You don't know how to use it with that.";
 }
Esempio n. 2
0
 public virtual string travel(GameState state)
 {
     state.commandFailed();
     return "That doesn't make sense.";
 }
Esempio n. 3
0
 public virtual string use(GameState state, Player player)
 {
     state.commandFailed();
     return "It has no immediately obvious use.";
 }
Esempio n. 4
0
 public virtual string reload(GameState state)
 {
     state.commandFailed();
     return "That isn't a weapon.";
 }
Esempio n. 5
0
 public virtual string talk(GameState state)
 {
     state.commandFailed();
     return "You try to strike up a conversation but get no reply.";
 }
Esempio n. 6
0
 public virtual string pickUp(GameState state, Player player)
 {
     state.commandFailed();
     return "You can't pick that up.";
 }
Esempio n. 7
0
 public virtual string read(GameState state)
 {
     state.commandFailed();
     return "There's nothing to read.";
 }
Esempio n. 8
0
 public virtual string open(GameState state)
 {
     state.commandFailed();
     return "You can't open that.";
 }
Esempio n. 9
0
 public virtual string openObject(GameState state)
 {
     state.commandFailed();
     return "That isn't something you can open.";
 }
Esempio n. 10
0
 public virtual string equip(GameState state, Player player)
 {
     state.commandFailed();
     return "You can't equip that.";
 }
Esempio n. 11
0
 public virtual string equip(GameState state)
 {
     state.commandFailed();
     return "That's not something you can equip.";
 }
Esempio n. 12
0
 public virtual string eat(GameState state, Player player)
 {
     state.commandFailed();
     return "you can't eat that.";
 }
Esempio n. 13
0
 public virtual string drop(GameState state, Player player)
 {
     state.commandFailed();
     return "You're not holding that.";
 }
Esempio n. 14
0
 public virtual string close(GameState state)
 {
     state.commandFailed();
     return "You can't close that.";
 }
Esempio n. 15
0
 public virtual string attackPlayer(GameState state, Player player)
 {
     state.commandFailed();
     return "You can't attack that.";
 }
Esempio n. 16
0
 public virtual string attack(GameState state, Player player)
 {
     state.commandFailed();
     return "You're not attacking that...";
 }