Ejemplo n.º 1
0
 /// <summary>Fired after the event has executed and the injury flag set on the person.</summary>
 /// <param name="person">Person whom is now injured by whatever you say they are here.</param>
 /// <returns>Describes what type of physical injury has come to the person.</returns>
 protected abstract string OnPostInjury(Entity.Person.Person person);
Ejemplo n.º 2
0
 /// <summary>Fired after the event has executed and the injury flag set on the person.</summary>
 /// <param name="person">Person whom is now injured by whatever you say they are here.</param>
 /// <returns>Describes what type of physical injury has come to the person.</returns>
 protected override string OnPostInjury(Entity.Person.Person person)
 {
     return($"{person.Name} has a concussion.");
 }
Ejemplo n.º 3
0
 /// <summary>Fired after the event has executed and the injury flag set on the person.</summary>
 /// <param name="person">Person whom is now injured by whatever you say they are here.</param>
 /// <returns>Describes what type of physical injury has come to the person.</returns>
 protected override string OnPostInjury(Entity.Person.Person person)
 {
     return($"{person.Name} has sprained a muscle.");
 }
Ejemplo n.º 4
0
 /// <summary>Fired after the event has executed and the injury flag set on the person.</summary>
 /// <param name="person">Person whom is now injured by whatever you say they are here.</param>
 /// <returns>Describes what type of physical injury has come to the person.</returns>
 protected override string OnPostInjury(Entity.Person.Person person)
 {
     return($"{person.Name} is suffering from exhaustion.");
 }
Ejemplo n.º 5
0
 /// <summary>Fired after the event has executed and the infection flag set on the person.</summary>
 /// <param name="person">Person whom is now infected by whatever you say they are here.</param>
 /// <returns>Name or type of infection the person is currently affected with.</returns>
 protected override string OnPostInfection(Entity.Person.Person person)
 {
     return($"{person.Name} has gangrene.");
 }
Ejemplo n.º 6
0
 /// <summary>Fired after the event has executed and the infection flag set on the person.</summary>
 /// <param name="person">Person whom is now infected by whatever you say they are here.</param>
 /// <returns>Name or type of infection the person is currently affected with.</returns>
 protected override string OnPostInfection(Entity.Person.Person person)
 {
     return($"{person.Name} has typhoid fever.");
 }
Ejemplo n.º 7
0
 /// <summary>Fired after the event has executed and the injury flag set on the person.</summary>
 /// <param name="person">Person whom is now injured by whatever you say they are here.</param>
 /// <returns>Describes what type of physical injury has come to the person.</returns>
 protected override string OnPostInjury(Entity.Person.Person person)
 {
     return($"{person.Name} has a sprained shoulder.");
 }
Ejemplo n.º 8
0
 /// <summary>Fired after the event has executed and the infection flag set on the person.</summary>
 /// <param name="person">Person whom is now infected by whatever you say they are here.</param>
 /// <returns>Name or type of infection the person is currently affected with.</returns>
 protected override string OnPostInfection(Entity.Person.Person person)
 {
     return($"{person.Name} has dysentery.");
 }
Ejemplo n.º 9
0
 /// <summary>Fired after the event has executed and the infection flag set on the person.</summary>
 /// <param name="person">Person whom is now infected by whatever you say they are here.</param>
 /// <returns>Name or type of infection the person is currently affected with.</returns>
 protected abstract string OnPostInfection(Entity.Person.Person person);
Ejemplo n.º 10
0
 /// <summary>Fired after the event has executed and the injury flag set on the person.</summary>
 /// <param name="person">Person whom is now injured by whatever you say they are here.</param>
 /// <returns>Describes what type of physical injury has come to the person.</returns>
 protected override string OnPostInjury(Entity.Person.Person person)
 {
     return($"{person.Name} has broken their arm.");
 }