The following files are a list of match events.
Each event is on a new line.
Each event element is separated by '|' . For example, the event 'The player shoots at goal|Just wide of the target' consists of 2 elements for this event.
Each element is shown in turn on the match view with a delay in between so user can read (the delay is based on the game speed)
Each event has 'key' items that are contained within square brackets. For example <PLAYER1> and will be replaced with relevant information. A list of events are shown below.

-------------------------------------------------------------------------------
File Match Events
-------------------------------------------------------------------------------
Goal_A.txt			If there's a goal by an attacker.
Goal_D.txt			If there's a goal by a defender.
Goal_G.txt			If there's a goal by a goalkeeper(VERY rare).
Goal_M.txt			If there's a goal by a midfielder.
Goal_Pen.txt		Successful penalty.

Miss_A.txt			If there's a missed chance by an attacker.
Miss_D.txt			If there's a missed chance by a defender.
Miss_G.txt			If there's a missed chance by a goalkeeper(again, very rare).
Miss_M.txt			If there's a missed chance by a midfielder.
Miss_Pen.txt		Missed penalty.

Injury.txt			The player has to come off injured.
RedCard.txt			The player is sent off.
Sub.txt				The player is replaced with another.
YellowCard.txt		The player is given a yellow card.

-------------------------------------------------------------------------------
Event Keys
-------------------------------------------------------------------------------
<PLAYER1> 	- the player selected for this event. For example <PLAYER1> in Goal_A.txt would be the goal scorer player name (an attacker in this case).
<PLAYER2>	- This is only used in the Sub.txt and is the NEW player coming on to replace the old player.
<TEAM1>		- Our team name i.e. Chelsea, Liverpool, etc.
<TEAM2>		- Opponent team name i.e. Chelsea, Liverpool, etc.
<GOAL> 		- this is a special element as it should flash in game to signal a goal (i.e. like championship manager goal event)
<G1> 		- This is the team goalkeeper. Will only ever be one of these!
<D1>, <D2> 	- Randomly selected defender (inc DL, DC and DR). Max 2 of these. NOTE: this cannot be same as <PLAYER1> and D1 must be different from D2
<M1>, <M2> 	- Randomly selected midfielder (inc ML, MC, MR). Max 2 of these. NOTE: this cannot be same as <PLAYER1> and M1 must be different from M2
<A1> 		- Randomly selected attacker. Max 1 of these. NOTE: this cannot be same as <PLAYER1>. Also, this will not be used in Attacker events as they may only play 1 attacker in that formation.

If, for some reason, a player is not available at that position... i.e. the goal keeper is sent off, then just pick ANY player that's not already been used for <PLAYER1>, <G1>, <D1>, <D2>, <M1>, <M2> or <A1>.

-------------------------------------------------------------------------------
Example
-------------------------------------------------------------------------------
To identify the event to use we need...

	Event type: Goal, Missed attempt, Penalty success/failure, red/yellow card, injury or substitute.
	Player Involved in event.
	Player Position (if Goal or missed event)

Lets say we are Man Utd, we scored a goal and Paul Pogba (Midfielder) is the scorer.

1) We'd pick the file based on the event/player position. In this case Goal_M.txt for goal and midfielder.

2) We'd pick a random line(i.e. event) from the selected file. For example...
	'<M1> makes a beautiful tackle in midfield|The ball falls to <PLAYER1> who charges up field and tries his luck from distance|<GOAL>|What a strike by <PLAYER1>!!!'
	
3) We'd then replace any <> keys with relevant information. i.e. <PLAYER1> would be replaced by 'Pogba', <M1> by a random midfielder, etc.
	'J. Mata makes a beautiful tackle in midfield...|The ball falls to P.Pogba who charges up field and tries his luck from distance...|<GOAL>|What a strike by P.Pogba!!!'
	
4) The event would then be displayed on the match view as follows...
	J. Mata makes a beautiful tackle in midfield...
	The ball falls to P.Pogba who charges up field and tries his luck from distance...
	GOAL *Flashing*
	What a strike by P.Pogba!!!

