faker 2.7.0 → 2.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6cacd4170df63c267efee25b7e575509b1ff16528a143a916e90c6381bd48a8b
4
- data.tar.gz: 7165d20574c9994f703d6c5b473b42125c27421754c7e387e3d34d5c174307e7
3
+ metadata.gz: 29798f78b1587b989eb395b41be5d0851b1e8ce2ee6488d1a4291dcaca7e8713
4
+ data.tar.gz: 67694fb9ec2495bd11a85278962b5941326e24891fce2f9f9fb5a9baa4efa424
5
5
  SHA512:
6
- metadata.gz: 5fc24fc4438f8737f09597f0f8b7be162f5d609c3e8b7799423eae173635d0762688f51e4790e915913e6e263ba9dbb45f6f02829f4ff5cf1fab724e4118acbd
7
- data.tar.gz: ca6e471b882bca1b98ab777d6dfdf8798f4cb061d4c98781a8e93869d979ba8eefdf98541387fa309d745cd67fcb5a91b7adc8a23f647da3c8a705291b5f1989
6
+ metadata.gz: 2e968a3d663d459014b85287e0e2867cbcd8198acf82efe1e342af18990aadf090ba60c3771af8d79587a2ee95e16638922993f061f1f8437e45464f5bfd7a60
7
+ data.tar.gz: 2a66801d474d23dfae78a6fb4c0b74b3a59f2af066b679d31ef6ad9862037151c85a429beda138d771d76d5ae3e7aa111b27ccd85e0a0fb4984c7b304fe8fe22
@@ -1,5 +1,45 @@
1
1
  # Change Log
2
2
 
3
+ ## [v2.8.0](https://github.com/faker-ruby/faker/tree/v2.8.0) (2019-12-01)
4
+
5
+ ## Bugfixes
6
+
7
+ - [PR #1563](https://github.com/faker-ruby/faker/pull/1563)
8
+ Fix generating routing number [@psienko](https://github.com/psienko)
9
+
10
+ ## Chores
11
+
12
+ - [PR #1835](https://github.com/faker-ruby/faker/pull/1835)
13
+ Remove duplicate method description [@pacso](https://github.com/pacso)
14
+
15
+ ## Documentation
16
+
17
+ - [PR #1837](https://github.com/faker-ruby/faker/pull/1837)
18
+ docs: Internet #email, #domain do not control TLD [@olleolleolle](https://github.com/olleolleolle)
19
+ - [PR #1833](https://github.com/faker-ruby/faker/pull/1833) Explain safe_email method [@swrobel](https://github.com/swrobel)
20
+ - [PR #1810](https://github.com/faker-ruby/faker/pull/1810) Add yard docs for Faker::Coffee methods [@LuanGB](https://github.com/LuanGB)
21
+ - [PR #1803](https://github.com/faker-ruby/faker/pull/1803)
22
+ add YARD doc for Faker::Coin [@sap1enza](https://github.com/sap1enza) [@connorshea](https://github.com/connorshea)
23
+ - [PR #1799](https://github.com/faker-ruby/faker/pull/1799) Remove 'See below examples' for consistency [@DevUsmanGhani](https://github.com/DevUsmanGhani)
24
+ - [PR #1793](https://github.com/faker-ruby/faker/pull/1793) add Faker::Relationship YARD docs [@DevUsmanGhani](https://github.com/DevUsmanGhani)
25
+
26
+ ## Feature Request
27
+
28
+ - [PR #1808](https://github.com/faker-ruby/faker/pull/1808) Adds domain option for Internet email and domain_name methods [@tiagofsilva](https://github.com/tiagofsilva)
29
+
30
+ ## Update locales
31
+
32
+ - [PR #1841](https://github.com/faker-ruby/faker/pull/1841)
33
+ Fix strange result from `Lorem.word` in ja locale [@yujideveloper](https://github.com/yujideveloper)
34
+ - [PR #1839](https://github.com/faker-ruby/faker/pull/1839)
35
+ added new heroes, new maps and almost all of the quotes [@TCsTheMechanic](https://github.com/TCsTheMechanic)
36
+
37
+ ## Update local dependencies
38
+
39
+ - [PR #1831](https://github.com/faker-ruby/faker/pull/1831) Update rake requirement from = 13.0.0 to = 13.0.1 [@DevUsmanGhani](https://github.com/DevUsmanGhani)
40
+
41
+ ------------------------------------------------------------------------------
42
+
3
43
  ## [v2.7.0](https://github.com/faker-ruby/faker/tree/v2.7.0) (2019-11-01)
4
44
 
5
45
  This version:
@@ -58,8 +58,11 @@ module Faker
58
58
 
59
59
  def checksum(num_string)
60
60
  num_array = num_string.split('').map(&:to_i)
61
- digit = (7 * (num_array[0] + num_array[3] + num_array[6]) + 3 * (num_array[1] + num_array[4] + num_array[7]) + 9 * (num_array[2] + num_array[5])) % 10
62
- digit == num_array[8]
61
+ (
62
+ 7 * (num_array[0] + num_array[3] + num_array[6]) +
63
+ 3 * (num_array[1] + num_array[4] + num_array[7]) +
64
+ 9 * (num_array[2] + num_array[5])
65
+ ) % 10
63
66
  end
64
67
 
65
68
  def compile_routing_number
@@ -85,12 +88,15 @@ module Faker
85
88
  end
86
89
 
87
90
  def valid_routing_number
88
- for _ in 0..50
89
- micr = compile_routing_number
91
+ routing_number = compile_routing_number
92
+ checksum = checksum(routing_number)
93
+ return routing_number if valid_checksum?(routing_number, checksum)
90
94
 
91
- break if checksum(micr)
92
- end
93
- micr
95
+ routing_number[0..7] + checksum.to_s
96
+ end
97
+
98
+ def valid_checksum?(routing_number, checksum)
99
+ routing_number[8].to_i == checksum
94
100
  end
95
101
 
96
102
  def compile_fraction(routing_num)
@@ -5,24 +5,69 @@ module Faker
5
5
  flexible :coffee
6
6
 
7
7
  class << self
8
+ ##
9
+ # Produces a random blend name.
10
+ #
11
+ # @return [String]
12
+ #
13
+ # @example
14
+ # Faker::Coffee.blend_name #=> "Major Java"
15
+ #
16
+ # @faker.version 1.9.0
8
17
  def blend_name
9
18
  parse('coffee.blend_name')
10
19
  end
11
20
 
21
+ ##
22
+ # Produces a random coffee origin place.
23
+ #
24
+ # @return [String]
25
+ #
26
+ # @example
27
+ # Faker::Coffee.origin #=> "Oaxaca, Mexico"
28
+ #
29
+ # @faker.version 1.9.0
12
30
  def origin
13
31
  country = fetch('coffee.country')
14
32
  region = fetch("coffee.regions.#{search_format(country)}")
15
33
  "#{region}, #{country}"
16
34
  end
17
35
 
36
+ ##
37
+ # Produces a random coffee variety.
38
+ #
39
+ # @return [String]
40
+ #
41
+ # @example
42
+ # Faker::Coffee.variety #=> "Red Bourbon"
43
+ #
44
+ # @faker.version 1.9.0
18
45
  def variety
19
46
  fetch('coffee.variety')
20
47
  end
21
48
 
49
+ ##
50
+ # Produces a string containing a random description of a coffee's taste.
51
+ #
52
+ # @return [String]
53
+ #
54
+ # @example
55
+ # Faker::Coffee.notes #=> "dull, tea-like, cantaloupe, soy sauce, marshmallow"
56
+ #
57
+ # @faker.version 1.9.0
22
58
  def notes
23
59
  parse('coffee.notes')
24
60
  end
25
61
 
62
+ ##
63
+ # Produces a random coffee taste intensity.
64
+ #
65
+ # @return [String]
66
+ #
67
+ # @example
68
+ # Faker::Coffee.intensifier #=> "mild"
69
+ #
70
+ # @faker.version 1.9.0
26
71
  def intensifier
27
72
  fetch('coffee.intensifier')
28
73
  end
@@ -3,10 +3,28 @@
3
3
  module Faker
4
4
  class Coin < Base
5
5
  class << self
6
+ ##
7
+ # Retrieves a random coin from any country.
8
+ #
9
+ # @return [String]
10
+ #
11
+ # @example
12
+ # Faker::Coin.name #=> "Brazilian Real"
13
+ #
14
+ # @faker.version 1.9.2
6
15
  def name
7
16
  fetch('currency.name')
8
17
  end
9
18
 
19
+ ##
20
+ # Retrieves a face to a flipped coin
21
+ #
22
+ # @return [String]
23
+ #
24
+ # @example
25
+ # Faker::Coin.flip #=> "Heads"
26
+ #
27
+ # @faker.version 1.9.2
10
28
  def flip
11
29
  fetch('coin.flip')
12
30
  end
@@ -3,16 +3,16 @@
3
3
  module Faker
4
4
  class Internet < Base
5
5
  class << self
6
- def email(legacy_name = NOT_GIVEN, legacy_separators = NOT_GIVEN, name: nil, separators: nil)
6
+ def email(legacy_name = NOT_GIVEN, legacy_separators = NOT_GIVEN, name: nil, separators: nil, domain: nil)
7
7
  warn_for_deprecated_arguments do |keywords|
8
8
  keywords << :name if legacy_name != NOT_GIVEN
9
9
  keywords << :separators if legacy_separators != NOT_GIVEN
10
10
  end
11
11
 
12
12
  if separators
13
- [username(specifier: name, separators: separators), domain_name].join('@')
13
+ [username(specifier: name, separators: separators), domain_name(domain: domain)].join('@')
14
14
  else
15
- [username(specifier: name), domain_name].join('@')
15
+ [username(specifier: name), domain_name(domain: domain)].join('@')
16
16
  end
17
17
  end
18
18
 
@@ -135,14 +135,15 @@ module Faker
135
135
  temp
136
136
  end
137
137
 
138
- def domain_name(legacy_subdomain = NOT_GIVEN, subdomain: false)
138
+ def domain_name(legacy_subdomain = NOT_GIVEN, subdomain: false, domain: nil)
139
139
  warn_for_deprecated_arguments do |keywords|
140
140
  keywords << :subdomain if legacy_subdomain != NOT_GIVEN
141
141
  end
142
142
 
143
143
  with_locale(:en) do
144
- domain_elements = [Char.prepare(domain_word), domain_suffix]
145
- domain_elements.unshift(Char.prepare(domain_word)) if subdomain
144
+ given_domain_word = domain || domain_word
145
+ domain_elements = [Char.prepare(given_domain_word), domain_suffix]
146
+ domain_elements.unshift(Char.prepare(given_domain_word)) if subdomain
146
147
  domain_elements.join('.')
147
148
  end
148
149
  end
@@ -5,6 +5,15 @@ module Faker
5
5
  flexible :relationship
6
6
 
7
7
  class << self
8
+ ##
9
+ # Produces a random family relationship.
10
+ #
11
+ # @return [String]
12
+ #
13
+ # @example
14
+ # Faker::Relationship.familial #=> "Grandfather"
15
+ #
16
+ # @faker.version 1.9.2
8
17
  def familial(legacy_connection = NOT_GIVEN, connection: nil)
9
18
  warn_for_deprecated_arguments do |keywords|
10
19
  keywords << :connection if legacy_connection != NOT_GIVEN
@@ -26,18 +35,54 @@ module Faker
26
35
  fetch('relationship.familial.' + connection)
27
36
  end
28
37
 
38
+ ##
39
+ # Produces a random in-law relationship.
40
+ #
41
+ # @return [String]
42
+ #
43
+ # @example
44
+ # Faker::Relationship.in_law #=> "Brother-in-law"
45
+ #
46
+ # @faker.version 1.9.2
29
47
  def in_law
30
48
  fetch('relationship.in_law')
31
49
  end
32
50
 
51
+ ##
52
+ # Produces a random spouse relationship.
53
+ #
54
+ # @return [String]
55
+ #
56
+ # @example
57
+ # Faker::Relationship.spouse #=> "Husband"
58
+ #
59
+ # @faker.version 1.9.2
33
60
  def spouse
34
61
  fetch('relationship.spouse')
35
62
  end
36
63
 
64
+ ##
65
+ # Produces a random parent relationship.
66
+ #
67
+ # @return [String]
68
+ #
69
+ # @example
70
+ # Faker::Relationship.parent #=> "Father"
71
+ #
72
+ # @faker.version 1.9.2
37
73
  def parent
38
74
  fetch('relationship.parent')
39
75
  end
40
76
 
77
+ ##
78
+ # Produces a random sibling relationship.
79
+ #
80
+ # @return [String]
81
+ #
82
+ # @example
83
+ # Faker::Relationship.sibling #=> "Sister"
84
+ #
85
+ # @faker.version 1.9.2
41
86
  def sibling
42
87
  fetch('relationship.sibling')
43
88
  end
@@ -43,7 +43,7 @@ module Faker
43
43
  end
44
44
 
45
45
  ##
46
- # Produces a random national team name from a group. See below examples
46
+ # Produces a random national team name from a group.
47
47
  #
48
48
  # @return [String]
49
49
  #
@@ -62,7 +62,7 @@ module Faker
62
62
  end
63
63
 
64
64
  ##
65
- # Produces a random name from national team roster. See below examples.
65
+ # Produces a random name from national team roster.
66
66
  #
67
67
  # @return [String]
68
68
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Faker #:nodoc:
4
- VERSION = '2.7.0'
4
+ VERSION = '2.8.0'
5
5
  end
@@ -2,40 +2,2625 @@ en:
2
2
  faker:
3
3
  games:
4
4
  overwatch:
5
- heroes: ["Ana", "Bastion", "D.va", "Doomfist", "Genji", "Hanzo", "Junkrat", "Lucio", "McCree", "Mei", "Mercy", "Moira", "Orisa", "Pharah", "Reaper", "Reinhardt", "Roadhog", "Soldier 76", "Sombra", "Symmetra", "Torbjorn", "Tracer", "Widowmaker", "Winston", "Wrecking Ball", "Zarya", "Zenyatta"]
6
- locations: ["Adlersbrunn", "Ayutthaya", "Black Forest", "Blizzard World", "Busan", "Busan Stadium", "Castillo", "Château Guillard", "Dorado", "Ecopoint: Antarctica", "Eichenwalde", "Estádio das Rãs", "Hanamura", "Hollywood", "Horizon Lunar Colony", "Ilios", "Junkertown", "King's Row", "Lijiang Tower", "Nepal", "Numbani", "Oasis", "Petra", "Rialto", "Route 66", "Temple of Anubis", "Volskaya Industries", "Watchpoint: Gibraltar"]
5
+ heroes: ["Ana", "Ashe", "Baptiste", "Bastion", "Brigitte", "D.va", "Doomfist", "Genji", "Hanzo", "Junkrat", "Lucio", "McCree", "Mei", "Mercy", "Moira", "Orisa", "Pharah", "Reaper", "Reinhardt", "Roadhog", "Sigma", "Soldier 76", "Sombra", "Symmetra", "Torbjorn", "Tracer", "Widowmaker", "Winston", "Wrecking Ball", "Zarya", "Zenyatta"]
6
+ locations: ["Adlersbrunn", "Ayutthaya", "Black Forest", "Blizzard World", "Busan", "Busan Stadium", "Castillo", "Château Guillard", "Dorado", "Ecopoint: Antarctica", "Eichenwalde", "Hanamura", "Estádio das Rãs", "Hanamura", "Havana", "Hollywood", "Horizon Lunar Colony", "Ilios", "Junkertown", "King's Row", "Lijiang Tower", "Necropolis", "Nepal", "Numbani", "Oasis", "Paris", "Petra", "Rialto", "Route 66", "Temple of Anubis", "Volskaya Industries", "Watchpoint: Gibraltar"]
7
7
  quotes: [
8
- "Activating Self Destruct Sequence.",
9
- "Alla till mig!",
10
- "Area denied.",
11
- "Bombs away!",
12
- "Clearing the area.",
13
- "Die! Die! Die!",
14
- "Dòng zhù! Bùxǔ zǒu!",
15
- "EMP activated!",
16
- "Experience tranquility.",
17
- "Fire at will!",
8
+ #--------------------------Ana's quotes--------------------------
9
+ "Get back in the fight",
10
+ "I have you covered",
11
+ "I have your back",
12
+ "Take your medicine",
13
+ "Watching your back",
14
+ "Go to sleep",
15
+ "Sleep",
16
+ "(Arabic) Sleep (Male)",
17
+ "(Arabic) Sleep (Female)",
18
+ "Lights out",
19
+ "Oh, you look tired",
20
+ "Feeling sleepy",
21
+ "Bedtime, habibti",
22
+ "I think justice could use a little nap",
23
+ "This will help",
24
+ "(Arabic) This will help",
25
+ "Walk it off",
26
+ "This will only hurt for a minute",
27
+ "Heal up",
28
+ "This is going to hurt",
29
+ "The pain is coming",
30
+ "(Arabic) Show them your strength!",
31
+ "(Arabic) Show them your strength! (Female)",
32
+ "Nano Boost administered",
33
+ "Never stop fighting for what you believe in",
34
+ "Stick to the plan, and if you get in trouble...",
35
+ "Look after yourselves out there...",
36
+ "Lissa fi nas lazem ahmehom",
37
+ "(Arabic) Repetition teaches the smart",
38
+ "Old soldiers are hard to kill",
39
+ "This is much better than a cabana on the beach",
40
+ "Patched up",
41
+ "My shots find their mark",
42
+ "Correct choice",
43
+ "You made the right decision",
44
+ "Thank you, Angela",
45
+ "Ana checking in",
46
+ "Sniper, keep moving",
47
+ "Enemy in my sights",
48
+ "Enemy contact",
49
+ "Enemy turret sighted",
50
+ "Locate their teleporter",
51
+ "They have a teleporter. Find and destroy it",
52
+ "Enemy teleporter at my location",
53
+ "I found the shield generator",
54
+ "Behind you",
55
+ "Watch your back!",
56
+ "Locking down the objective",
57
+ "Someone get that payload moving",
58
+ "You need adult supervision",
59
+ "Who taught you to fight like that",
60
+ "Enemy down",
61
+ "Back off",
62
+ "Experience always wins in the end",
63
+ "Learn from the pain (Arabic)",
64
+ "Mother knows best",
65
+ "Settle down old man",
66
+ "Speed isnt everything",
67
+ "One shot, one kill",
68
+ "Someday Reinhardt, but not today",
69
+ "Enemy turret destroyed",
70
+ "Enemy teleporter destroyed",
71
+ "Hands off",
72
+ "Fareeha! My daughter!",
73
+ "Reinhardt!",
74
+ "Jack, I was supposed to protect you",
75
+ "Hello",
76
+ "(Arabic) Hello",
77
+ "Azayak",
78
+ "Hello there",
79
+ "Thanks",
80
+ "(Arabic) I am thankful",
81
+ "(Arabic) Thanks",
82
+ "Understood",
83
+ "Acknowledged",
84
+ "I need healing",
85
+ "Need healing",
86
+ "Group up at my position",
87
+ "Group up with me",
88
+ "Rendez-vous at my position",
89
+ "My ultimate is charging",
90
+ "Nano boost is charging",
91
+ "Nano boost is ready to deploy",
92
+ "My ultimate is ready",
93
+ "Justice delivered",
94
+ "Children, behave",
95
+ "Everyone dies",
96
+ "Go on, I can wait",
97
+ "It takes a woman to know it",
98
+ "Mother knows best",
99
+ "No scope needed",
100
+ "Need someone to tuck you in",
101
+ "What are you thinking",
102
+ "Witness me",
103
+ "You know nothing",
104
+ "Learn from the pain",
105
+ "This is much better than retirement",
106
+ "Are you scared",
107
+ "More lost than the moon in winter",
108
+ "I make my own luck",
109
+ "Damn",
110
+ "The Ghost watches",
111
+ "Follow me, if you want to live",
112
+ "Shh. The adults are talking",
113
+ "You need to learn to relax",
114
+ "Heh, you always were a charmer",
115
+ "Wanting a better life for you is all I ever...",
116
+ "What happened to you, Gabriel",
117
+ "You never gave me much choice",
118
+ "Right. Except for the part where you became a...",
119
+ "Reinhardt, I must say you are looking quite...",
120
+ "You of all people are going to ask me that",
121
+ "Seems like neither of us like being dead very much",
122
+ "That one time",
123
+ "Well, I had to come back. I was worried...",
124
+ "Gerard was a fool to love someone like you",
125
+ "It feels good to be home",
126
+ "Captain Amari, reporting for duty"
127
+ #--------------------------Ashe's quotes--------------------------
128
+ , "Fire in the hole!",
129
+ "Here it comes!",
130
+ "Take a step back!",
131
+ "Get outta here!",
132
+ "Back off!",
133
+ "Get in there, B.O.B",
134
+ "My business, my rules.ogg",
135
+ "Nice to spend some time in a clubhouse.ogg",
136
+ "Not my idea of a good life.",
137
+ "Follow my lead",
138
+ "Get in the saddle and lets ride",
139
+ "Time to change things up",
140
+ "That was not in the plan",
141
+ "Nothing wrong with a little self improvement",
142
+ "Patched up",
143
+ "Much better",
144
+ "Let me handle it",
145
+ "I get the idea",
146
+ "Just point me in the right direction",
147
+ "I am feeling UNSTOPPABLE!",
148
+ "Oh, come on!",
149
+ "Damn!",
150
+ "Hallelujah",
151
+ "Woo. I owe you one",
152
+ "Ashe here",
153
+ "Enemy sniper! Get ya head down!",
154
+ "Enemy sniper! Keep your eyes open.",
155
+ "Watch out for that sniper!",
156
+ "Spotted them",
157
+ "Eyes on the bad guys",
158
+ "Enemy turret up ahead!",
159
+ "We need to take out that turret!",
160
+ "You need to learn the rules",
161
+ "Right on schedule",
162
+ "You have to watch out for the one percent",
163
+ "Courtesy of the Deadlock Gang",
164
+ "Poser",
165
+ "I stick up for my crew",
166
+ "See ya, space cowboy",
167
+ "Squid needs more seasoning",
168
+ "Woo! that was fun!",
169
+ "Wanna try again",
170
+ "Gets the job done",
171
+ "Better safe than sorry",
172
+ "See ya later",
173
+ "Outta my space",
174
+ "You just went boom!",
175
+ "Woohoo!",
176
+ "Now that gets the blood pumping!",
177
+ "Leave this to me",
178
+ "Do I have to do everything myself",
179
+ "You can all just take it easy!",
180
+ "You picked the wrong fight",
181
+ "You should join my crew",
182
+ "Hey",
183
+ "Hello",
184
+ "Thanks",
185
+ "Thank you",
186
+ "Understood",
187
+ "I got it",
188
+ "Stop the payload",
189
+ "Get over here",
190
+ "Everybody come over here",
191
+ "My ultimate is almost ready",
192
+ "My ultimate is ready",
193
+ "Get ready for B.O.B",
194
+ "We have an understanding",
195
+ "Burn it all down",
196
+ "How do you even live",
197
+ "I run this show",
198
+ "Just taking out the trash",
199
+ "Need me to repeat myself",
200
+ "This is a stick up",
201
+ "Try and keep it together",
202
+ "Watch your language",
203
+ "Girl who has everything",
204
+ "No one likes a squealer",
205
+ "Ready for the fireworks",
206
+ "You that sound like a bad thing",
207
+ "Brave of you to show your face around here, Jesse",
208
+ "On the dartboard",
209
+ "What did you do with it Jesse",
210
+ "Too competent"
211
+ #--------------------------Baptiste's quotes--------------------------
212
+ , "Ultimate - Light Em Up",
213
+ "Ultimate - Vide Bal Sou Yo",
214
+ "No wasted effort",
215
+ "I call that a professional courtesy",
216
+ "I think we got off on the wrong foot",
217
+ "Have you considered a different line of work",
218
+ "Well, you tried your best",
219
+ "That was satisfying",
220
+ "Was you or me, brother",
221
+ "Was you or me, sister",
222
+ "Felt good when I woke up in the morning"
223
+ #--------------------------Bastion's quotes--------------------------
224
+ , "Ultimate - Woo Woo Woo Whee Woo Whee",
225
+ "15227",
226
+ "4543",
227
+ "Time Running Out Attack - Wooooooo Woo Dee Doo Woo",
228
+ "Boo doo boo doo",
229
+ "15303",
230
+ "Doo-woo",
231
+ "Beeple",
232
+ "Boo boo doo de doo",
233
+ "Bweeeeeeeeeee",
234
+ "Chirr chirr chirr",
235
+ "Dah-dah weeeee",
236
+ "Dun dun boop boop",
237
+ "Dweet dweet dweet",
238
+ "Hee hoo hoo",
239
+ "Sh-sh-sh dwee!",
240
+ "Zwee",
241
+ "Dwee wee woh"
242
+ #--------------------------Brigitte's quotes--------------------------
243
+ , "Family Vacation"
244
+ #--------------------------D.Va's quotes--------------------------
245
+ , "APM jom ollyo bolkka",
246
+ "Defense Matrix activated",
247
+ "Get through this",
248
+ "Time to raise my APM",
249
+ "Boosters engaged",
250
+ "Bunny hop",
251
+ "Buseuteo on",
252
+ "Taking off",
253
+ "Nal ra gan da",
254
+ "Nerf this!",
255
+ "Activating Self Destruct Sequence",
256
+ "All systems checked out",
257
+ "MEKA activated",
258
+ "Suiting up",
259
+ "Game on",
260
+ "Bailing out",
261
+ "BRB",
262
+ "Ejecting",
263
+ "I play to win!",
264
+ "Gameface on",
265
+ "Think you can keep up with me",
266
+ "MEKA leads the way!",
267
+ "Ready, player 1",
268
+ "D.Va reengaging!",
269
+ "Jjajeungna",
270
+ "Igeon Sagiya",
271
+ "Press start to continue",
272
+ "Extra life!",
273
+ "Healed up",
274
+ "Fully operational",
275
+ "Im on fire",
276
+ "Weapon Systems Overloaded",
277
+ "Weapons Optimised",
278
+ "Damn It",
279
+ "Ding",
280
+ "Thanks For The Love",
281
+ "Thanks For Your Support",
282
+ "Save That For The Hall Of Fame",
283
+ "Gasp",
284
+ "Aww, No fair!",
285
+ "D.Va online",
286
+ "Enemy Spotted",
287
+ "Enemy turret ahead",
288
+ "Hey! They have a teleporter!",
289
+ "Enemy teleporter located",
290
+ "Behind you!",
291
+ "You Better Get Out Of The Way",
292
+ "I Am Unstoppable",
293
+ "Looks Like Another Victory, Just A Little Longer",
294
+ "Enemies Taking The Point, Time To Show My Skills",
295
+ "Check Me Out, Securing The Point",
296
+ "This Objective Has My Name Written All Over It",
297
+ "Enemy down",
298
+ "Target eliminated",
299
+ "Are you even trying",
300
+ "I thought you were going to be a challenge",
301
+ "Get owned",
302
+ "One For My Highlight Reel",
303
+ "MVP D.Va",
304
+ "Assa",
305
+ "I still love you",
306
+ "Shut down",
307
+ "Kill streak",
308
+ "High score for sure",
309
+ "Enemy turret destroyed",
310
+ "Ouch",
311
+ "Pow",
312
+ "Nice shot",
313
+ "Revenge is sweet",
314
+ "Hi",
315
+ "Hiya!",
316
+ "Annyeong",
317
+ "Thanks",
318
+ "Thank you",
319
+ "Gam sa",
320
+ "Got it",
321
+ "Okay",
322
+ "Understood",
323
+ "Roger",
324
+ "Attack the objective",
325
+ "Defend the objective",
326
+ "Move the payload",
327
+ "Stop the payload",
328
+ "Need healing",
329
+ "I need healing",
330
+ "I need armor",
331
+ "I need shields",
332
+ "Group up",
333
+ "Group up here",
334
+ "Group up with me!",
335
+ "Join me!",
336
+ "Ultimate charging",
337
+ "Ultimate almost ready",
338
+ "Ultimate ready",
339
+ "Love D.Va",
340
+ "AFK",
341
+ "Aw yeah",
342
+ "D.Va 1 bad guys 0",
343
+ "GG",
344
+ "I play to win korean",
345
+ "Easy mode",
346
+ "Lol",
347
+ "No hacks required",
348
+ "Winky face",
349
+ "Haepi hallowin",
350
+ "Its me Someone must be hacking",
351
+ "I hope we dont get banned",
352
+ "Only if I can get yours too! I love your new album!",
353
+ "16-bit hero",
354
+ "Of course",
355
+ "Hey! Hands Off",
356
+ "If you wanna give me some upgrades",
357
+ "Who are you calling a child",
358
+ "A giant gorilla Just like in those old...",
359
+ "The Destruction Caused By The Omnics Here, It Reminds Me Of Home",
360
+ "Blizzard games",
361
+ "This is my kind of city",
362
+ "All systems buzzing!",
363
+ "Bzzzzzz!",
364
+ "I am not the Easter Bunny"
365
+ #--------------------------Doomfist's quotes--------------------------
366
+ , "Rising Uppercut",
367
+ "Rising fist",
368
+ "Meteor Strike!",
369
+ "Incoming!",
370
+ "Only through conflict do we evolve",
371
+ "Once the mission starts, no more messing around",
372
+ "My work is not done",
373
+ "The battle goes on",
374
+ "Defeat makes me stronger",
375
+ "Lose the battle, win the war",
376
+ "Much better",
377
+ "Just what I needed",
378
+ "I am on fire!",
379
+ "Move, or get run over",
380
+ "As though I needed the help",
381
+ "I like how that feels",
382
+ "This will be over quickly",
383
+ "Damn!",
384
+ "Is that all (Voted Epic)",
385
+ "You know my name",
386
+ "What did you expect",
387
+ "Doomfist here",
388
+ "Sniper, keep your head down",
389
+ "I found the enemy",
390
+ "Spotted a turret",
391
+ "Enemy turret ahead!",
392
+ "Behind you",
393
+ "Take cover",
394
+ "I am unstoppable!",
395
+ "Our enemies defeat is on hand, do not let up",
396
+ "Time, our enemies are out of time",
397
+ "Time is running out, we can not fail!",
398
+ "Get them off our objective, now!",
399
+ "I am securing the objective",
400
+ "Everyone, get on the objective!",
401
+ "Why is the payload stopped",
402
+ "I am personally seeing to the payload",
403
+ "Moving the payload and nothing is going to stop it",
404
+ "Winners stay on the payload",
405
+ "Stop the payload!",
406
+ "Stop the payload, now!",
407
+ "History will forget you",
408
+ "Rethinking your life decisions",
409
+ "Stay out of my way",
410
+ "Is that all (Final Blow)",
411
+ "Come at the king, you better not miss",
412
+ "Not strong enough",
413
+ "Does anyone else want to try me",
414
+ "Enemy turret destroyed",
415
+ "Well done!",
416
+ "Less work for me!",
417
+ "Hello!",
418
+ "Hello there",
419
+ "Hey there",
420
+ "Thank you",
421
+ "Thanks",
422
+ "I heard you",
423
+ "Understood",
424
+ "I need healing!",
425
+ "Heal me!",
426
+ "Group up with me",
427
+ "On me!",
428
+ "My ultimate is charging",
429
+ "Meteor Strike is charging",
430
+ "Meteor Strike is almost ready!",
431
+ "My ultimate is almost ready!",
432
+ "Meteor Strike ready to be unleashed",
433
+ "Ready to meteor drop!",
434
+ "My ultimate is ready",
435
+ "Meteor Drop is ready. Get in position!",
436
+ "Meteor Strike is ready. Get in position!",
437
+ "Try me",
438
+ "Go and sit down",
439
+ "K.O.",
440
+ "One punch is all I need",
441
+ "Spare me the commentary",
442
+ "Talk to the fist",
443
+ "Combo breaker!",
444
+ "You Must be Joking",
445
+ "I hope that the girl gave you more than a new coat of paint",
446
+ "Have you ever been hit by a giant, genetically engineered gorilla I could arrange it for you...",
447
+ "Human strength will only get you so far",
448
+ "Omnics will not be kept down forever. The ashes of the crisis still smolder",
449
+ "This city is a powder keg that could ignite the world. And Talon is the flame",
450
+ "I think your flight is delayed",
451
+ "The world changed after the crisis. It is due for another test"
452
+ #--------------------------Genji's quotes--------------------------
453
+ , "I am ready",
454
+ "Try Me",
455
+ "Hajime",
456
+ "Sono teido ka",
457
+ "Honki o misete miro",
458
+ "The dragon becomes me!",
459
+ "Flow Like Water",
460
+ "again",
461
+ "I return to the fight",
462
+ "I will not falter",
463
+ "I will not waste this chance",
464
+ "Let us hope for a different outcome",
465
+ "Tatakai wa owaran",
466
+ "Much Better",
467
+ "I am healed",
468
+ "I am repaired",
469
+ "My warrior spirit burns",
470
+ "The advantage is mine",
471
+ "wa ga kokoro ha ryuu no kokoro",
472
+ "Strength flows through me",
473
+ "Chikara ga minagitte kuru",
474
+ "I am unstoppable",
475
+ "kuso!",
476
+ "It was nothing",
477
+ "Our enemies return",
478
+ "Genji here",
479
+ "Genji is with you",
480
+ "Sniper",
481
+ "Enemy turret",
482
+ "Enemy teleporter detected",
483
+ "heh i found the teleporter",
484
+ "Our enemies have deployed a shield generator",
485
+ "Behind you",
486
+ "Watch yourself",
487
+ "Victory draws near",
488
+ "Defend as one",
489
+ "The battle draws to its conclusion",
490
+ "Time is against us",
491
+ "Our point is under attack guests",
492
+ "We are losing the objective",
493
+ "Our enemies have the upper",
494
+ "I am taking the objective",
495
+ "The objective is mine",
496
+ "We must press our",
497
+ "The payload is stopped",
498
+ "Push the payload",
499
+ "Push forward",
500
+ "The payload moves",
501
+ "Keep the payload in motion",
502
+ "Stop the payload",
503
+ "The payload is moving",
504
+ "We need to stop the payload",
505
+ "I Learned That From My Brother",
506
+ "Like cutting through silk",
507
+ "Know yourself in the face of death",
508
+ "Think upon your actions",
509
+ "An excellent fight",
510
+ "Kono teido ka",
511
+ "Yoshi!",
512
+ "Kamai Tachi",
513
+ "Kaze Yo",
514
+ "Oitsukeru kana",
515
+ "I am victorious this time",
516
+ "Mock death at your own peril",
517
+ "My aim is unerring",
518
+ "Enemy turret destroyed",
519
+ "Enemy teleporter destroyed",
520
+ "The enemy teleporter",
521
+ "Angela!",
522
+ "I wiill avenge you",
523
+ "Hello",
524
+ "Yo",
525
+ "Greetings",
526
+ "Thank you",
527
+ "I understand",
528
+ "Very well",
529
+ "Understood",
530
+ "I need healing",
531
+ "I Require Healing",
532
+ "Group Up",
533
+ "Group Up Here",
534
+ "Join me",
535
+ "My ultimate is charging",
536
+ "My ultimate is almost ready",
537
+ "My ult is ready",
538
+ "The dragon and I are one",
539
+ "A steady blade balances the soul",
540
+ "Kuso",
541
+ "Kakugo",
542
+ "Measure twice, cut once",
543
+ "Mada mada!",
544
+ "Hah! Simple",
545
+ "Yoshi!",
546
+ "You are only human",
547
+ "I was hoping for a challenge",
548
+ "My halloween costume, cyborg ninja",
549
+ "Happy Halloween.oga",
550
+ "Merry Christmas",
551
+ "To know yourself, is to be at peace",
552
+ "Kaedama",
553
+ "Life and death balance on the edge of my blade",
554
+ "You Seem Nice",
555
+ "An elegant weapon",
556
+ "It is not too late to change your course, brother",
557
+ "So this is what has become of you. A pity",
558
+ "That was your dream. Not mine",
559
+ "We shall see, brother",
560
+ "I am certain of it",
561
+ "What would our father think",
562
+ "I find the company more agreeable these days",
563
+ "I am a different man now. I am whole",
564
+ "I am at peace with who I was",
565
+ "Our paths cross for now",
566
+ "I always liked working with you",
567
+ "The heart of a man still beats",
568
+ "Does-the-suffering-of-the-omnics-here",
569
+ "And you, master",
570
+ "That was another life",
571
+ "Fukushu",
572
+ "I passed many an hour",
573
+ "Even here I feel an outcast",
574
+ "Fantastic Technique",
575
+ "Break the limit",
576
+ "Unbreakable Body",
577
+ "Henshin",
578
+ "Arigato gozaimashita",
579
+ "Any chocolates brother",
580
+ "Akemashite Omedetou Gozaimasu",
581
+ "The winds of death are strong",
582
+ "I still have much to learn"
583
+ #--------------------------HAL-Fred_Glitchbot's quotes--------------------------
584
+ #--------------------------Hanzo's quotes--------------------------
585
+ , "Marked",
586
+ "Marked by the dragon",
587
+ "See that which is unseen",
588
+ "Unleash the storm",
589
+ "Strike like lightning",
590
+ "Have a taste of this",
591
+ "The storm breaks",
592
+ "Swift as the wind",
593
+ "The noose tightens",
594
+ "My arrows find their marks",
595
+ "Focusing",
596
+ "Let the dragon consume you!",
597
+ "The dragon is sated",
598
+ "You have been judged",
599
+ "The dragon consumes",
600
+ "With every death, comes honor. With honor, redemption",
601
+ "I grow tired of waiting",
602
+ "If you sit by the river long enough",
603
+ "It is time to act",
604
+ "Try to keep up",
605
+ "The dragon awakens",
606
+ "My brother is dead",
607
+ "Again",
608
+ "A minor setback",
609
+ "I am not deterred",
610
+ "I will not be defeated so easily",
611
+ "I must redeem myself",
612
+ "I must reclaim my honor",
613
+ "Start over at the beginning",
614
+ "Never surrender",
615
+ "Nothing ventured, nothing gained",
616
+ "I am healed",
617
+ "I am restored",
618
+ "My warrior spirit burns",
619
+ "The dragon rages within me",
620
+ "The dragon stirs within me!",
621
+ "My power grows stronger",
622
+ "The Dragon Awakens",
623
+ "You honor me",
624
+ "Strive for perfection",
625
+ "They have returned from death",
626
+ "Hanzo at your service",
627
+ "Sniper",
628
+ "The enemy is here",
629
+ "Enemy turret ahead",
630
+ "They possess a teleporter",
631
+ "Time is running out Attack",
632
+ "We cannot lose Attack",
633
+ "Time grows short",
634
+ "Keep pushing forward",
635
+ "They are taking the objective stop them",
636
+ "Stop them now clear the point",
637
+ "Get the payload moving",
638
+ "We must move the payload",
639
+ "We cannot stop now move the payload",
640
+ "I have taken the payload",
641
+ "I am moving the payload",
642
+ "The payload is moving join me",
643
+ "Stop the payload",
644
+ "Haha perfect",
645
+ "Hardly a challenge",
646
+ "Is that the best you can do",
647
+ "So predictable",
648
+ "Never second best!",
649
+ "Target practice",
650
+ "Unworthy",
651
+ "Hm, weakling",
652
+ "You are nothing",
653
+ "You will never amount to anything",
654
+ "You do not want me for your enemy",
655
+ "Just as when we were boys",
656
+ "You were never my equal!",
657
+ "So much death",
658
+ "They fall before me",
659
+ "Again! And Again!",
660
+ "The dragon hungers",
661
+ "An inspired perfomance",
662
+ "Enemy turret destroyed",
663
+ "Uncouth",
664
+ "Pest",
665
+ "Pfe",
666
+ "You have some skill",
667
+ "Hello",
668
+ "I greet you",
669
+ "Greetings",
670
+ "Thank you",
671
+ "You have my thanks",
672
+ "Understood",
673
+ "I understand",
674
+ "Very well",
675
+ "I need healing",
676
+ "Need healing",
677
+ "I need armor",
678
+ "I need shields",
679
+ "Group up",
680
+ "Group up here",
681
+ "Group up with me",
682
+ "Join me",
683
+ "My ultimate is charging",
684
+ "My ultimate is almost ready",
685
+ "My ultimate is ready",
686
+ "I am ready to unleash the dragon",
687
+ "Expect nothing less",
688
+ "Flow like water",
689
+ "From one thing know ten thousand things",
690
+ "Hm",
691
+ "I do what I must",
692
+ "The outcome was never in doubt",
693
+ "Never second best!",
694
+ "Remember this moment",
695
+ "Sake",
696
+ "I choose you spirit dragon",
697
+ "Step into the dojo",
698
+ "Ignore all distractions",
699
+ "You are already dead",
700
+ "a gift for you",
701
+ "You may call yourself my brother...",
702
+ "you are mistaken brother",
703
+ "You will never amount to anything",
704
+ "Where did you hide your treasure",
705
+ "Unsofisticated Taste",
706
+ "I would wager on my bow against your rifle any day",
707
+ "But at what cost",
708
+ "We are nothing alike",
709
+ "All of this was to be mine",
710
+ "I will take back what is mine by birthright",
711
+ "The master of the Shimada Clan has returned",
712
+ "This is the home of the Shimada Clan. My home",
713
+ "This was once my home. No longer",
714
+ "My enemies fall like cherry blossoms",
715
+ "such beauty is wasted",
716
+ "The wolf stirs from his den",
717
+ "The wolf marks his prey",
718
+ "Lone wolf ultimate",
719
+ "The wolf hunts for his prey",
720
+ "The wolf is sated",
721
+ "The wolf feasts",
722
+ "The wolf awakens",
723
+ "The wolf howls within me",
724
+ "The wolf stirs within me",
725
+ "I am ready to unleash the wolf",
726
+ "I choose you, Spirit Wolf",
727
+ "The wolf hungers",
728
+ "Scatter",
729
+ "Simple geometry",
730
+ "Strike at the heart",
731
+ "The art of deception",
732
+ "My arrow finds its mark",
733
+ "My aim is true"
734
+ #--------------------------Junker_Queen's quotes--------------------------
735
+ #--------------------------Junkrat's quotes--------------------------
736
+ , "Perfect",
737
+ "Surprise!",
738
+ "Here we go",
739
+ "The hunter lays a trap for his prey",
740
+ "giggles - 13015",
741
+ "Dont move",
742
+ "Hold Still",
743
+ "Stepped in it",
744
+ "Watch your step",
18
745
  "Fire in the hole!",
19
- "Freeze! Don't move!",
20
- "Géill do mo thoil!",
21
- "Hammer DOWN!",
746
+ "Ladies and gentlemen, start your engines",
747
+ "come out and play",
748
+ "i love my job",
749
+ "Rest in pieces",
750
+ "Hard to just sit around",
751
+ "just taking five",
752
+ "misfits and freaks",
753
+ "Remember, Remember, What The Heck Was I Saying Again",
754
+ "I Would Kill For Some Boba, Milk Tea, Half Sweet",
755
+ "new years resolution",
756
+ "Back for more",
757
+ "Blow it up again1",
758
+ "You wont get rid of me",
759
+ "I love it when that happens",
760
+ "Holy dooley..",
761
+ "takes a lickin keeps on tickin",
762
+ "All patched up",
763
+ "much better",
764
+ "Im on fire more than usual",
765
+ "Piece of junk!",
766
+ "Damn It",
767
+ "My Genius Is Finally Recognized",
768
+ "sniff brings a tear to my eye",
769
+ "thank you thank you",
770
+ "Looks Like They Were Just Playing Dead",
771
+ "Junkrat primed and ready",
772
+ "sniper",
773
+ "enemy turret up ahead",
774
+ "find the teleporter",
775
+ "Found Their Teleporter, Time To Blow It Up",
776
+ "point belongs to us ya dingus",
777
+ "Mine, mine, mine. This is my point",
778
+ "The Point Is Mine",
779
+ "Whys the payload stopped",
780
+ "Moving The Payload, Clear A Path",
781
+ "we need to pump the brakes on the payload",
782
+ "brings tears to me eyes",
783
+ "everything is going up in flames",
784
+ "hole in one",
785
+ "stay outta the kitchen",
786
+ "ya dipstick",
787
+ "Back To The Scrapheap",
788
+ "Why so serious",
789
+ "humming",
790
+ "Enemy Turret Just Blew Up",
791
+ "enemy teleporter scrapped",
792
+ "Hands off the merchandise!",
793
+ "Out Of My Face You Drongo",
794
+ "That Must Have Hurt",
795
+ "I knew there was a reason",
796
+ "i can always count on you mate",
797
+ "Hey Im the only one who gets to kill the big lug",
798
+ "Revenge is a dish best served flaming hot!",
799
+ "Gday",
800
+ "Gday cobber",
801
+ "Cheers mate",
802
+ "Ta",
803
+ "Thanks, mate",
804
+ "Gotcha",
805
+ "Sure",
806
+ "Okay",
807
+ "I need healing",
808
+ "Join up with me",
809
+ "RIP-Tire Ready To Roll!",
810
+ "Tick Tock, Tick Tock, Tick Tock",
811
+ "Blow it up again2",
812
+ "Anyone want some BBQ",
813
+ "Brrring!",
814
+ "Coming up explodey",
815
+ "good morning",
816
+ "Happy birthday",
817
+ "Have a nice day",
818
+ "Its the little things",
819
+ "Kaboom!",
820
+ "Shiny",
821
+ "Smile!",
822
+ "I Give It A Ten",
823
+ "happy halloween",
824
+ "merry christmas",
825
+ "gong xi fa cai",
826
+ "Get cold just looking at ya",
827
+ "Thats cold",
828
+ "You hook em",
829
+ "Joke ol pigface",
830
+ "Try not to get us killed out there",
831
+ "cheers mate the cavalrys here",
832
+ "Look at one of those bombs",
833
+ "comic relief",
834
+ "Me old tunnel",
835
+ "party time",
836
+ "Stole crown jewels",
837
+ "this place makes me sick",
838
+ "Bots into the light",
839
+ "Be an Atheist",
840
+ "this place is a bit posh for me",
841
+ "you think theres something worth stealing",
842
+ "fire usually would not be a good thing",
843
+ "fire not good",
844
+ "early bird gets the worm",
845
+ "get ready for a shock",
846
+ "Ladies and gentlemen he working on a century",
847
+ "just look at this thing!",
848
+ "finders keepers",
849
+ "God save the king",
850
+ "Be an Atheist"
851
+ #--------------------------McCree's quotes--------------------------
852
+ , "Pardon me",
853
+ "Easy",
854
+ "Hold up now",
855
+ "Excuse Me",
856
+ "Now, hold on",
857
+ "Whoa there",
858
+ "Draw!",
859
+ "Step right up",
860
+ "Did someone call the undertaker",
861
+ "Get it done",
862
+ "Back In The Saddle Again",
863
+ "Back Into The Mix",
864
+ "All Patched Up",
865
+ "Just What The Doctor Ordered",
866
+ "Much better",
867
+ "I Feel Like A Man Possessed",
868
+ "Sniper, Keep Your Eyes Peeled",
869
+ "Enemy Turret Here",
870
+ "Enemy Teleporter Spotted",
871
+ "Taking the point",
872
+ "Payload Stopped",
873
+ "Payload Secure, Move Out",
874
+ "Bang",
875
+ "Bullseye",
876
+ "Dead to rights",
877
+ "Gotcha",
878
+ "Happy trails",
879
+ "Never had a chance",
880
+ "Never Much Liked You",
881
+ "No payment required",
882
+ "Too slow",
883
+ "You need to work on that aim",
884
+ "Thought I Saw A Ghost",
885
+ "Enemy Turret Destroyed",
886
+ "Enemy Teleporter Destroyed",
887
+ "Nice One",
888
+ "Remind Me To Stay Off Your Bad Side",
889
+ "Just A Matter Of Time",
890
+ "Hello",
891
+ "Hey There",
892
+ "Howdy",
893
+ "Hey",
894
+ "Achknowledged",
895
+ "I Need A Doctor",
896
+ "Form Up Here",
897
+ "My Ultimate Is Ready, Saddle Up",
898
+ "You Know What Time It Is",
899
+ "Watch and learn",
900
+ "After you",
901
+ "Happens To The Best Of Us",
902
+ "Reach for the sky",
903
+ "Wanted Dead or alive",
904
+ "You Done",
905
+ "Boom goes the dynamite",
906
+ "I hear you pumpkin",
907
+ "Trick or Treat",
908
+ "This calls for a celebration",
909
+ "Hair of the dog",
910
+ "How do you like me now",
911
+ "D.Va, just tell me one thing whered"
912
+ #--------------------------Mei's quotes--------------------------
913
+ , "Ice wall, coming up",
914
+ "This will stop them",
915
+ "Haha, watch this",
916
+ "Blocking Them Off",
917
+ "Yikes!",
918
+ "Oh my gosh",
919
+ "Anyone want a popsicle",
920
+ "You got iced",
921
+ "Our world is worth fighting for",
922
+ "I have to get back in the fight",
923
+ "Woah, That Was Going Great, Until The End",
924
+ "Everyone is counting on me",
925
+ "Wait For Me",
926
+ "That could have gone better",
927
+ "This fight is not over yet",
928
+ "Healed up",
929
+ "Much better",
930
+ "Whoa! Look out. Here I come",
931
+ "Grrr",
932
+ "Thumbs up to that",
933
+ "Thanks everyone",
934
+ "Oh, it was nothing really",
935
+ "Sometimes I surprise myself",
936
+ "Stunned",
937
+ "Mei checking in",
938
+ "Sniper! Look out",
939
+ "Enemies here",
940
+ "Enemy turret ahead",
941
+ "Hey, They Have A Teleporter, Help Me Find It",
942
+ "Find The Teleporter",
943
+ "Hey, I Found Their Teleporter",
944
+ "Get to cover",
945
+ "Behind you",
946
+ "Everyone! Stay out of my way",
947
+ "Nothing can stop me",
948
+ "Nothing can stop Mei",
949
+ "Come on everyone, just a little bit longer",
950
+ "Our hard work will be for nothing",
951
+ "Our point is under attack",
952
+ "Setting Up On The Objective",
953
+ "Push the payload",
954
+ "Payload stopped, all hands on deck",
955
+ "Hey! The payload stopped",
956
+ "Moving the payload. Backup requested",
957
+ "Is Nothing Personal",
958
+ "I Can Take Care Of Myself",
959
+ "Serves You Right",
960
+ "You were asking for it",
961
+ "Cold as ice!",
962
+ "Hey! Be reasonable",
963
+ "Ooh, sorry about that",
964
+ "Oops, sorry",
965
+ "Hey! Stay out of my way",
966
+ "Enemy turret down",
967
+ "Enemy teleporter down",
968
+ "Shield generator destroyed",
969
+ "Final Blow - You Were Asking For It",
970
+ "Enemy team is down! Now is our chance",
971
+ "Hi 1",
972
+ "Hi 2",
973
+ "Hiya",
974
+ "Thank you!",
975
+ "Thanks",
976
+ "Understood",
977
+ "Okay 2",
978
+ "I Need Healing",
979
+ "Need Health",
980
+ "Group Up With Me",
981
+ "Group Up",
982
+ "Group Up Here",
983
+ "Join Me",
984
+ "My ultimate is ready!",
985
+ "Hang In There",
986
+ "A-Mei-Zing",
987
+ "Hey, chill out!",
988
+ "I Hope You Learned Your Lesson",
989
+ "Okay 1",
990
+ "Ouch, Are You Okay",
991
+ "That Was Great",
992
+ "Yay 1",
993
+ "You have to let it go",
994
+ "Overcome All Obstacles",
995
+ "Scary",
996
+ "I got you something",
997
+ "I was only trying to help",
998
+ "So mean... honestly",
999
+ "Bastion, you would make the perfect research assistant",
1000
+ "Youre just no good bully",
1001
+ "Look somewhere else",
1002
+ "Hey, McCree, do you know what time it is",
1003
+ "I love your glasses, so cute!",
1004
+ "We should compare notes some time",
1005
+ "Zarya How can you even pick up all that weight",
1006
+ "I love it here in the mountains. I wish I could go climbing!",
1007
+ "I Think I Might Be A Little Overdressed For This Place",
1008
+ "Look at all the snow!",
1009
+ "Winston. I think one of these equations is wrong",
1010
+ "Mei on duty",
1011
+ "Happy holidays",
1012
+ "Home sweet home",
1013
+ "Do you think",
1014
+ "Ouch that stings"
1015
+ #--------------------------Mercy's quotes--------------------------
1016
+ #--------------------------Moira's quotes--------------------------
1017
+ , "The Struggle for martial superiority",
1018
+ "When faced with a setback, we must challenge our assumptions.",
1019
+ "We must all make sacrifices in the name of science.flac",
1020
+ "My power is overwhelming!",
1021
+ "Slowly they realize that failure is all that awaits them",
1022
+ "Our enemies believe that they can take our objective. They are mistaken",
1023
+ "The payload moves towards our desired outcome.flac",
1024
+ "That we should fail in stopping the payload has no reasonable explanation",
1025
+ "We must keep our enemies from further progress towards their goal",
1026
+ "Situational awareness could save your life-- I recommend it",
1027
+ "Perhaps, next time, you should not stand in the way of the orb",
1028
+ "Your contributions to the furtherance of science are to be commended",
1029
+ "My keen analytical mind detects a pattern forming",
1030
+ "Much more talkative now arent you Genji",
1031
+ "Your body seems to be adapting well",
1032
+ "Started any wars",
1033
+ "Look at this world Symmetra",
1034
+ "Your state of Chronal Uncertainty",
1035
+ "A dreamer",
1036
+ "We are all in the gutter, but some of us are looking at the stars",
1037
+ "The government here has such a medieval view towards omnics",
1038
+ "If only the world could see the wonders that science has built.flac",
1039
+ "This is now my home... as much as any other.flac"
1040
+ #--------------------------Orisa's quotes--------------------------
1041
+ , "Fortifying defenses",
1042
+ "Standing ground",
1043
+ "Holding position",
1044
+ "Establishing defense point",
1045
+ "Navigation systems to defense",
1046
+ "Engaging fortifications",
1047
+ "Defense mode activated",
1048
+ "Not budging",
1049
+ "Digging in",
1050
+ "Dont move",
1051
+ "Stop right there",
1052
+ "Not so fast",
1053
+ "Halt",
1054
+ "Youre not getting away",
1055
+ "Stop",
1056
+ "You are advised to move behind my barrier",
1057
+ "Barrier activated",
1058
+ "For your own safety, get behind the barrier",
1059
+ "Please move behind the barrier",
1060
+ "I recommend moving behind my barrier",
1061
+ "This will be your shield!",
1062
+ "Please move behind the barrier2",
1063
+ "Barrier status critical",
1064
+ "Caution. Barrier has taken heavy damage",
1065
+ "My barrier is failing. Recommend",
1066
+ "Warning barrier failing",
1067
+ "Barrier integrity compromised",
1068
+ "Barrier destroyed. Please move to safety",
1069
+ "Barrier destroyed.",
1070
+ "Cease your resistance!",
1071
+ "Team up for special attack",
1072
+ "Your safety is my primary concern",
1073
+ "For optimal chance",
1074
+ "Executing pre-combat",
1075
+ "I will simulate our",
1076
+ "I must rejoin my team",
1077
+ "I still have a job",
1078
+ "Rebooting",
1079
+ "Archiving combat data",
1080
+ "System restart init",
1081
+ "Analyzing previous combat",
1082
+ "I am not ready to be",
1083
+ "Installing Updates",
1084
+ "Updates installed",
1085
+ "System health stabilizing",
1086
+ "Systems restored",
1087
+ "Systems repaired",
1088
+ "System integrity restored",
1089
+ "Your aid is appreciated",
1090
+ "Thank you(healed)",
1091
+ "Exceeding expected combat values",
1092
+ "Weapon systems optimized",
1093
+ "Damage output increased",
1094
+ "Lethality level increased",
1095
+ "I feel unstoppable",
1096
+ "System output overloaded",
1097
+ "Thank you. But I still have",
1098
+ "I was only following my programming",
1099
+ "Running post-match diagnostics",
1100
+ "Performance analysis Epic!",
1101
+ "Performance analysis Legendary!",
1102
+ "Saving record of exceptional combat",
1103
+ "Enemies reviving. Prepare",
1104
+ "Was that the Iris",
1105
+ "Orisa online",
1106
+ "Alert! Sniper located.",
1107
+ "Sniper detected. Threat level",
1108
+ "Enemy detected straigth ahead",
1109
+ "Enemy detected to our rear",
1110
+ "Enemy dected on the left",
1111
+ "Enemy dected on the right",
1112
+ "Enemy detected above us",
1113
+ "Enemy detected below us",
1114
+ "Behind you",
1115
+ "enemy turrent located",
1116
+ "Priority task find the enemy tele",
1117
+ "Enemy teleporter located",
1118
+ "Enemy teleported destroyed",
1119
+ "Enemy shield generator located",
1120
+ "Enemy shield generator destroyed",
1121
+ "Current combat simulations",
1122
+ "Analysis of recent performance trends",
1123
+ "If we continue upon this trajectory",
1124
+ "We have no choice",
1125
+ "Mission window closing",
1126
+ "A repeat of our past performance",
1127
+ "We must improve or we",
1128
+ "The enemy is taking the objective",
1129
+ "Unauthoried personnel detected",
1130
+ "Intruders have breached",
1131
+ "Our objective is under attack",
1132
+ "Taking possession of the objective",
1133
+ "Taking control of the objective",
1134
+ "Securing the objective. Backup",
1135
+ "Initiating objective capture routine",
1136
+ "Payload stopped in a no-stop zone",
1137
+ "We must get the payload",
1138
+ "Payload has stalled",
1139
+ "Commandeering the payload",
1140
+ "I am moving with the payload",
1141
+ "Moving the payload",
1142
+ "I am escorting the payload",
1143
+ "The payload is moving. Reroute",
1144
+ "The payload must be halted",
1145
+ "We must capture and impound",
1146
+ "Enemy is moving the payload",
1147
+ "I have the flag. Heading",
1148
+ "I have taken the flag. Initiating",
1149
+ "We must ge our flag back",
1150
+ "Recover our flag",
1151
+ "We must secure our flag immediately",
1152
+ "The enemy has taken possession",
1153
+ "Flag capture protocol completed",
1154
+ "Enemy flag captured. New instructions",
1155
+ "We need to increase our flag security",
1156
+ "We must not let that happened again",
1157
+ "Enemy has lost possession of our",
1158
+ "Priority objective recover the flag",
1159
+ "Dropping the flag",
1160
+ "Relinquishing the flag",
1161
+ "I have sent our flag back to base",
1162
+ "Our flag is safe",
1163
+ "I told you to stop resisting",
1164
+ "Vital signs negative",
1165
+ "Threat neutralized",
1166
+ "Goodbye",
1167
+ "You were warned",
1168
+ "I am programmed to avoid",
1169
+ "For Numbani",
1170
+ "You are advised to cease",
1171
+ "Stay there. The authorities",
1172
+ "Saving record for future",
1173
+ "Are you in distress",
1174
+ "System operating at maximum",
1175
+ "Empathy module not responding",
1176
+ "Exceeding standard performance",
1177
+ "Enemy turret neutralized",
1178
+ "Fist bump!",
1179
+ "Stand back!",
1180
+ "Excuse me!",
1181
+ "Reinhardt, you are",
1182
+ "Reinhardt,I will",
1183
+ "Zarya, I wish to",
1184
+ "Now I can delete you",
1185
+ "Hello",
1186
+ "Greetings",
1187
+ "Thanks",
1188
+ "Thank you",
1189
+ "Affirmative2",
1190
+ "Understood",
1191
+ "Requesting healing",
1192
+ "Healing would be appreciated",
1193
+ "I need healing",
1194
+ "I believe we need a healer.",
1195
+ "Requesting shields",
1196
+ "Armor would be appreciated",
1197
+ "Requesting armor",
1198
+ "Rally at my position",
1199
+ "Group up with me",
1200
+ "Group up",
1201
+ "My ultimate is charging",
1202
+ "Supercharger powering up",
1203
+ "My ultimate is almost ready",
1204
+ "Supercharger is almost ready to be deployed",
1205
+ "My ultimate is ready",
1206
+ "Supercharger is ready to be deployed",
1207
+ "My ultimate is ready, come to",
1208
+ "My Supercharger is ready to be deployed",
1209
+ "Current outlook",
1210
+ "Do you need a hug",
1211
+ "Efi will not be happy about this",
1212
+ "Error 404. Sarcasm module not found",
1213
+ "Medical assistance has been requested",
1214
+ "Would you like my analysis of the situation",
1215
+ "No parking",
1216
+ "Shine your eyes",
1217
+ "That does not compute",
1218
+ "Who is ready to party",
1219
+ "Some functionality may still be in beta",
1220
+ "I have a bad feeling about this",
1221
+ "Are you satisfied with your protection",
1222
+ "Thank you for your compliance",
1223
+ "golden",
1224
+ "Be careful when crossing the street",
1225
+ "Thank you E54",
1226
+ "It is remarkable",
1227
+ "Scanning E54",
1228
+ "Doomfist, you will be brought",
1229
+ "My artificial intelligence makes",
1230
+ "Actually, Efi spent most of her",
1231
+ "I do not know about this Viskar",
1232
+ "Reinhardt I have allocated",
1233
+ "Reinhardt - What an odd compliment",
1234
+ "Reinhardt - Why is your shield",
1235
+ "My systems protected",
1236
+ "I consider Reinhardt to be",
1237
+ "Tracer, is it wrong",
1238
+ "Efi would be honored",
1239
+ "Zarya I have learned",
1240
+ "Tekharta Zenyatta",
1241
+ "Before Efi",
1242
+ "I will protect this city",
1243
+ "I wish Efi",
1244
+ "Catchphrase",
1245
+ "One electric sheep",
1246
+ "I must ask Efi",
1247
+ "System restarting",
1248
+ "Systems rebooted",
1249
+ "Virus detected",
1250
+ "Systems compromised",
1251
+ "On a scale",
1252
+ "I consider Reinhardt"
1253
+ #--------------------------Pharah's quotes--------------------------
1254
+ , "Clearing The Area",
1255
+ "Get Back!",
1256
+ "Move back",
1257
+ "Justice rains from above!",
1258
+ "Rocket Barrage incoming!",
1259
+ "Justice is done",
1260
+ "I will protect the innocent",
1261
+ "All Systems Checked Out, Ready For Combat Maneuvers",
1262
+ "System Check Initiated, Green Across The Board, And Ready For Action",
1263
+ "Back Into The Fray",
1264
+ "Back In Action",
1265
+ "I Will Not Fail Again",
1266
+ "My Team Needs Me",
1267
+ "Raptora Systems Online",
1268
+ "Back online",
1269
+ "Health Restored",
1270
+ "Much Better",
1271
+ "I Am On Fire",
1272
+ "Operating at maximum efficiency",
1273
+ "I Will Not Waste This Opportunity",
1274
+ "I Am Empowered",
1275
+ "Damn",
1276
+ "Clear Skies Ahead",
1277
+ "After Action Report, Unstoppable",
1278
+ "I Served With Distinction",
1279
+ "Pharah, reporting",
1280
+ "Sniper detected",
1281
+ "Contact",
1282
+ "Turret Detected",
1283
+ "Locate The Teleporter",
1284
+ "They Have A Teleporter",
1285
+ "Friendly Down",
1286
+ "Systems At Max 1",
1287
+ "I am unstoppable",
1288
+ "Time Is Running Out, Press The Attack",
1289
+ "Defend The Point, Strike As One",
1290
+ "In Range Of The Objective, Form Up On Me",
1291
+ "Moving the Payload, fall in behind me",
1292
+ "We Need To Stop The Payload",
1293
+ "Tango, Down",
1294
+ "Right On Target",
1295
+ "Target Eliminated",
1296
+ "Final Blow - You Got Served",
1297
+ "Sorry, Reinhardt",
1298
+ "(vs McCree) Got you this time, Jesse",
1299
+ "You made a tactical error",
1300
+ "I Always Get My Prey",
1301
+ "Operating At Maximum Efficiency",
1302
+ "Hostiles eliminated",
1303
+ "Targets neutralized",
1304
+ "Clearing the board",
1305
+ "Enemy turret down",
1306
+ "Enemy turret destroyed",
1307
+ "Enemy Teleporter Destroyed",
1308
+ "Down",
1309
+ "Stay Down",
1310
+ "Cretin",
1311
+ "Reinhardt, You still got it!",
1312
+ "Enemy team neutralized",
1313
+ "Hello 1",
1314
+ "Hello 2",
1315
+ "Greetings",
1316
+ "Thank You 1",
1317
+ "Thank You 2",
1318
+ "Thanks",
1319
+ "You Have My Thanks",
1320
+ "I Copy",
1321
+ "Understood",
1322
+ "Achknowledged",
1323
+ "I Require Healing",
1324
+ "I Need Healing",
1325
+ "Form Up",
1326
+ "Group Up",
1327
+ "Group Up With Me",
1328
+ "Group up here",
1329
+ "My ultimate is charging",
1330
+ "My ultimate is almost ready",
1331
+ "Barrage Ready",
1332
+ "My Ultimate Is Ready",
1333
+ "Put your security in my hands",
1334
+ "Aerial superiority achieved",
1335
+ "Fly like an Egyptian",
1336
+ "Flying the friendly skies",
1337
+ "Leave This To A Professional",
1338
+ "Not A Chance",
1339
+ "Play nice, play Pharah",
1340
+ "Rocket jump. That sounds dangerous",
1341
+ "Shot Down",
1342
+ "Sorry, but I need to jet",
1343
+ "We Are In This Together",
1344
+ "Want to know the forecast",
1345
+ "I keep the peace",
1346
+ "I am the Rocket Queen",
1347
+ "Fly casual",
1348
+ "Try me",
1349
+ "Then I have nothing to worry about",
1350
+ "I always dreamed of the day we would fight together",
1351
+ "McCree, where did you learn to shoot like that",
1352
+ "See you in the air",
1353
+ "I had a poster of you on my wall when I was younger",
1354
+ "I lost many good soldiers here",
1355
+ "I Always Dreamed Of Being Stationed Here",
1356
+ "Thunderbird systems online"
1357
+ #--------------------------Reaper's quotes--------------------------
1358
+ , "Death comes",
1359
+ "Die die die",
1360
+ "clearing the area",
1361
+ "Hero Selected - Death Walks Among You",
1362
+ "During Set Up - The Reckoning Draws Near",
1363
+ "During Set Up - Time, To Kill",
1364
+ "Respawn - Vengeance Shall Be Mine",
1365
+ "Respawn - The Grave Cannot Hold Me",
1366
+ "Voted Epic - Menacing Laughter",
1367
+ "Voted Legendary - Finally Some Recognition",
1368
+ "Sniper",
1369
+ "enemy turret ahead",
1370
+ "Unstoppable",
1371
+ "The Darkness Consumes You",
1372
+ "Death becomes you",
1373
+ "You never were a good student",
1374
+ "Never liked you much",
1375
+ "This is how it should have been",
1376
+ "You always did have a high opinion of yourself",
1377
+ "Another one off the list",
1378
+ "Stupid monkey",
1379
+ "thanks",
1380
+ "Get me some armor",
1381
+ "group up",
1382
+ "My ultimate is ready",
1383
+ "What are you looking at",
1384
+ "Dead man walking",
1385
+ "Havent I Killed You",
1386
+ "If it Lives I can kill it",
1387
+ "next",
1388
+ "moving on",
1389
+ "I taught you everything you know",
1390
+ "You Look Ridiculous",
1391
+ "You tell me, Doc",
1392
+ "And you sure know how to play boy scout",
1393
+ "I need to pay visit to a friend",
1394
+ "This is where I picked up the ingrate",
1395
+ "my mistake"
1396
+ #--------------------------Reinhardt's quotes--------------------------
1397
+ , "Come out and face me",
1398
+ "Is That The Best You Can Do",
1399
+ "Get Behind Me",
1400
+ "I will hold the line",
1401
+ "Bring it on",
1402
+ "Barrier activated",
1403
+ "Barrier is giving out!",
1404
+ "Barrier is failing!",
1405
+ "Barrier destroyed!",
1406
+ "Hammer Down!",
1407
+ "No lying down on the job!",
1408
+ "And stay down!",
1409
+ "Justice will be done",
1410
+ "We shall prove ourselves in glorious combat!",
1411
+ "Again! Again!",
1412
+ "Back into the fray",
1413
+ "This is not over",
1414
+ "I will not give up the fight",
1415
+ "Back, and ready for more!",
1416
+ "There is still more to my tale!",
1417
+ "Haha! Still kicking!",
1418
+ "Wait for me!",
1419
+ "Ah",
1420
+ "Ah, I feel like a new man!",
1421
+ "Much better!",
1422
+ "You honor me",
1423
+ "Yes!",
1424
+ "Are you ready, Here I come!",
1425
+ "I feel powerful!",
1426
+ "I am unstoppable!",
1427
+ "Unacceptable",
1428
+ "Ah, impressive, if I do say so myself!",
1429
+ "One hundred percent German power!",
1430
+ "What A Performance",
1431
+ "I Am The Champion",
1432
+ "They Are Back For More",
1433
+ "Reinhardt at your service",
1434
+ "Sniper!",
1435
+ "Sniper! Fight toe-to-toe you coward!",
1436
+ "i have found the enemy",
1437
+ "Enemy Turret Ahead",
1438
+ "Our enemies have a teleporter!",
1439
+ "Steel yourselves",
1440
+ "Make Every Second Count, Crush Their Defences",
1441
+ "We Are Out Of Time, Attack",
1442
+ "The Enemy Is At Our Doorstep, Drive Them Back",
1443
+ "They Are Taking Our Point, Throw Them Back",
1444
+ "I Am Capturing The Objective, Try And Stop Me",
1445
+ "The Objective Is Mine, Join Me If You Will",
1446
+ "Taking The Objective, Join Me In Glory",
1447
+ "The Payload Has Come To A Halt, Get It Moving",
1448
+ "Moving The Payload, Join Me",
1449
+ "They Are Moving The Payload, We Must Stop Them",
1450
+ "Do i have your attention yet",
1451
+ "Too Strong",
1452
+ "This old dog",
1453
+ "Splendid!",
1454
+ "Got You",
1455
+ "Feel my power!",
1456
+ "When All You Have Is A Hammer, Everyone Else Is A Nail",
1457
+ "Out Of My Way",
1458
+ "Im not even close to done",
1459
+ "Enemy turret destroyed",
1460
+ "Enemy Teleporter Destroyed",
1461
+ "I Slay Dragons",
1462
+ "Traitor",
1463
+ "Not Strong Enough",
1464
+ "Leave Some Glory To Me",
1465
+ "Well Done My Friend",
1466
+ "Ana Would Be Proud",
1467
+ "Well Done My Diminutive Swedish Friend",
1468
+ "I Owed You One",
1469
+ "Challenge accepted",
1470
+ "The Enemy Team Is Eliminated, We Have The Advantage",
1471
+ "Greetings",
1472
+ "Hello",
1473
+ "Hello!",
1474
+ "Thank you",
1475
+ "Thank you, my friend!",
1476
+ "Much obliged!",
1477
+ "Acknowledged!",
1478
+ "Understood",
1479
+ "Right away!",
1480
+ "Need healing",
1481
+ "I need healing!",
1482
+ "I need armor! Ehh... more armor",
1483
+ "Join me!",
1484
+ "Group up with me!",
1485
+ "Group up!",
1486
+ "Group up here!",
1487
+ "I Stand With You",
1488
+ "My ultimate is charging",
1489
+ "My ultimate is almost ready!",
1490
+ "My ultimate is ready!",
1491
+ "Earthshatter, ready!",
1492
+ "I salute you",
1493
+ "Are you afraid",
1494
+ "Bring Me Another",
1495
+ "Catch phrase",
1496
+ "Crusader online",
1497
+ "Crushing Machine",
1498
+ "German Engineering",
1499
+ "Honor and glory",
1500
+ "Respect your elders",
1501
+ "This old dog",
1502
+ "Smashing",
1503
+ "Are you chicken",
1504
+ "Easy does it",
1505
+ "Unstoppable",
1506
+ "Beer!",
1507
+ "Honor, justice, reinhardt",
1508
+ "And You Are Looking As Lovely As Ever",
1509
+ "We Old-Timers Must Stick Together, Teach These Kids A Thing Or Two",
1510
+ "Ana, How Can This Be, I Thought You Were Dead",
1511
+ "I killed many of your kind here Bastion",
1512
+ "You kids today with your techno music. You should enjoy the classics, like Hasselhoff!",
1513
+ "Never, I Will Fight To My Last Breath",
1514
+ "Brigitte Has Made Her Choice, I Would Have Her At My Side",
1515
+ "I remember that poster",
1516
+ "You always did take good care of my armor!",
1517
+ "Nervous. Me. Never!",
1518
+ "Keep Training, And Maybe Some Day You Could Learn To Handle A Real Weapon",
1519
+ "This Is The Home Town Of My Master, Balderich, He Was Born Here, And He Died Here",
1520
+ "Too Much Blood Was Spilt In My Country During The War",
1521
+ "We Fought A Terrible Battle Here, Many Crusaders Lost Their Lives",
1522
+ "I remember being posted here. It was good for my tan",
1523
+ "For Balderich",
1524
+ "I am purified",
1525
+ "Fall back",
1526
+ "Is my hero"
1527
+ #--------------------------Retribution's quotes--------------------------
1528
+ #--------------------------Roadhog's quotes--------------------------
1529
+ , "Come here",
1530
+ "get down",
1531
+ "Grounded",
1532
+ "Here Little Piggy",
1533
+ "Squeal For Me",
1534
+ "Ultimate - Maniacal Laughter",
1535
+ "fired up",
1536
+ "what are you lookin at",
1537
+ "stay out of my way",
1538
+ "Roadhog, Rides Again",
1539
+ "back for more",
1540
+ "Muahahaha, Yeah!",
1541
+ "oh goodie",
1542
+ "No Way",
1543
+ "easy",
1544
+ "only thing you can count on",
1545
+ "Roadhog time",
1546
+ "sniper",
1547
+ "enemy turret here",
1548
+ "find their teleporter",
1549
+ "Found their teleporter",
1550
+ "i am unstoppable",
1551
+ "come over here",
1552
+ "Out Of Time, Attack",
1553
+ "Point Is Mine, Property Of Roadhog",
1554
+ "get on the attack now",
1555
+ "payload moving out",
1556
+ "stop the payload",
1557
+ "stop that payload",
1558
+ "stop them",
1559
+ "Sit Down",
1560
+ "hurts so good",
1561
+ "no pain no gain",
1562
+ "peace and quiet",
1563
+ "Nice Mask",
1564
+ "enemy turret destroyed",
1565
+ "Enemy teleporter destroyed",
1566
+ "go on ask me what the other one says",
1567
+ "it says left",
1568
+ "About time you did something useful",
1569
+ "someone finally shut him up",
1570
+ "less work for me",
1571
+ "Hey",
1572
+ "hi",
1573
+ "Thanks",
1574
+ "Thank You",
1575
+ "Need healing",
1576
+ "Bleeding Like A Stuck Pig",
1577
+ "group up with me",
1578
+ "join me",
1579
+ "My ultimate is ready Come on!",
1580
+ "Ready To Go Whole Hog",
1581
+ "Ultimate Ready",
1582
+ "Welcome, To The Apocalypse",
1583
+ "Like Taking Candy From A Baby",
1584
+ "Got Something To Say",
1585
+ "Hook, Line And Sinker",
1586
+ "Life Is Pain, So Is Death",
1587
+ "Piece Of Cake",
1588
+ "Push Off",
1589
+ "Say Bacon One More Time",
1590
+ "Violence Is Usually The Answer",
1591
+ "want some candy",
1592
+ "ho ho ho",
1593
+ "you chicken",
1594
+ "shut up",
1595
+ "Hey. Stay out of trouble",
1596
+ "try and stay out of trouble",
1597
+ "try me",
1598
+ "Mm... Pretty place Be a shame to have to kill someone here",
1599
+ "God Save The King",
1600
+ "Pretty sure theyre still mad",
1601
+ "Now I know why they call this place dorado",
1602
+ "woop woop",
1603
+ "anchors away",
1604
+ "gone fishin",
1605
+ "arrr matey",
1606
+ "come closer",
1607
+ "Ultimate - Eat This",
1608
+ "Oooh, they stocked up again",
1609
+ "idiot",
1610
+ "everyone has a plan til they get punched in the mouth",
1611
+ "a reward fit for a king",
1612
+ "whatever you say",
1613
+ "shiny",
1614
+ "No job too big, no score too small",
1615
+ "so much drama"
1616
+ #--------------------------Sigma's quotes--------------------------
1617
+ , "Activating the barrier!",
1618
+ "Barrier in place!",
1619
+ "Observe the barrier!",
1620
+ "Back to me!",
1621
+ "Retrieving the barrier!",
1622
+ "Barrier integrity failing!",
1623
+ "Barrier is about to break!",
1624
+ "Barrier is fracturing!",
1625
+ "Barrier is under attack!",
1626
+ "Barrier is under heavy fire!",
1627
+ "Barrier is unstable!",
1628
+ "Barrier experiment failed!",
1629
+ "Barrier is out of existence!",
1630
+ "My barrier is destroyed! 2",
1631
+ "The barrier no longer exists!",
1632
+ "Give me a moment! One moment!!",
1633
+ "Give me a moment to think!",
1634
+ "Look at this pattern!",
1635
+ "This pattern!",
1636
+ "The equation... what was that equation again",
1637
+ "The dragon has been consumed",
1638
+ "Draw",
1639
+ "I felt a chill",
1640
+ "Justice has embraced me",
1641
+ "Not fast enough",
1642
+ "Gravity is shackled!",
1643
+ "I have harnessed the harness",
1644
+ "Impact!",
1645
+ "What an impact!",
1646
+ "Wholly predictable!",
1647
+ "(Dutch) The universe sings to me!",
1648
+ "(Ultimate) What is that melody",
1649
+ "And they all fall down!",
1650
+ "Fall!",
1651
+ "No one escapes gravity!",
1652
+ "To dust you shall return!",
1653
+ "There is no obligation",
1654
+ "A lovely day for field research",
1655
+ "(distracted humming) Oh! I see. (clears throat)",
1656
+ "Double... triple... quadruple check your math!",
1657
+ "Soon we will see if the hypotheses are correct",
1658
+ "We need a moment to ensure all our equations are correct",
1659
+ "Begin the experiment",
1660
+ "(Dutch) (laughs) You never know how things will turn out",
1661
+ "An unexpected but not unwelcome development",
1662
+ "If only the answers were simple",
1663
+ "Stardust to stardust",
1664
+ "The breakthrough was near... I-I could feel it",
1665
+ "The equations were correct... the problem must lie elsewhere",
1666
+ "A marked improvement",
1667
+ "Condition restored",
1668
+ "(Dutch) I feel much better",
1669
+ "Much better",
1670
+ "Everything is falling into place!",
1671
+ "Not to be academic, but I believe that one would call this being on fire",
1672
+ "The universe flows through me",
1673
+ "What a curious feeling!",
1674
+ "What is this power",
1675
+ "It cannot be stopped",
1676
+ "With power such possibility",
1677
+ "No no no!",
1678
+ "This does not compute!",
1679
+ "(Dutch) Gosh darn it!",
1680
+ "It seems we have a consensus",
1681
+ "Simple arithmetic",
1682
+ "(chuckle) My theories are confirmed",
1683
+ "Peer reviewed",
1684
+ "Impossible! An enemy returns",
1685
+ "A scientific miracle",
1686
+ "Where was I",
1687
+ "Sigma present",
1688
+ "Evidence suggests a sniper ahead",
1689
+ "Enemies in our orbit",
1690
+ "Enemy turret ahead",
1691
+ "The enemy has a teleporter",
1692
+ "Behind you!",
1693
+ "If we continue upon this trajectory, a less than satisfying outcome is a certainty",
1694
+ "This may yield a positive outcome. We must hurry!",
1695
+ "Entity terminated",
1696
+ "(Dutch) Jackpot!",
1697
+ "Like Newton and the apple",
1698
+ "Surely there is a more elegant solution",
1699
+ "The mysteries of the universe are open to you now",
1700
+ "The theories are correct!",
1701
+ "Poor practices",
1702
+ "Give Dr. Winston my regards",
1703
+ "(Dutch) (laughs) The monkey is out of the bag",
1704
+ "An elementary application!",
1705
+ "(sighs) Like the impression of a dying star",
1706
+ "Revolutionary",
1707
+ "What is this... violence",
1708
+ "Ah! The results are reproducible!",
1709
+ "(laughs) A welcome recurrence. ",
1710
+ "The experiment produces consistent results! We should continue",
1711
+ "(Dutch) Calling the shots for now!",
1712
+ "The data pool increases",
1713
+ "Enemy turret theory disproven",
1714
+ "Enemy teleporter eliminated",
1715
+ "Back!",
1716
+ "Oh, pardon ",
1717
+ "Unfortunate",
1718
+ "Always nice to see a colleague at work",
1719
+ "Simply brilliant!",
1720
+ "(Dutch) Hello",
1721
+ "Hello",
1722
+ "(Dutch) Hi!",
1723
+ "Oh, hello",
1724
+ "(Dutch) Thank you",
1725
+ "Thank you",
1726
+ "Acknowledged",
1727
+ "Confirmed",
1728
+ "Understood",
1729
+ "Defend the objective!",
1730
+ "Keep them from the objective!",
1731
+ "Onto the objective",
1732
+ "Take the objective!",
1733
+ "To succeed, the objective must be taken",
1734
+ "Aid the payload on its trajectory!",
1735
+ "Bring the payload to a stop!",
1736
+ "The payload most move!",
1737
+ "Capture the enemy flag!",
1738
+ "Defend the flag!",
1739
+ "Do not let the flag fall into their hands!",
1740
+ "Take the enemy flag!",
1741
+ "I require healing",
1742
+ "Need Healing 2",
1743
+ "Need Healing",
1744
+ "Assemble at this location",
1745
+ "Assemble at this location 2",
1746
+ "Group up here",
1747
+ "Group up here 2",
1748
+ "Following your lead",
1749
+ "Ult Charging 3",
1750
+ "Ult Charging",
1751
+ "Ult Charging 2",
1752
+ "Ult Almost Ready 2",
1753
+ "Ult Almost Ready",
1754
+ "Ult Ready",
1755
+ "Ult Ready 2",
1756
+ "dr odeorain",
1757
+ "i saw you at lunas cabaret",
1758
+ "(laughs) Get down with Sigma tonight, like a stroopwafel!",
1759
+ "By looking far out into space we are also looking far back into time, back toward the horizon of the universe",
1760
+ "This is all Greek to me",
1761
+ "Tempus fugit"
1762
+ #--------------------------Soldier:_76's quotes--------------------------
1763
+ #--------------------------Sombra's quotes--------------------------
1764
+ , "Initiating the hack",
1765
+ "Iniciando el hackeo",
1766
+ "Here I am",
1767
+ "Looking for me",
1768
+ "Been here all along",
1769
+ "Hey there",
1770
+ "Miss me",
1771
+ "Gotcha",
1772
+ "He vuelto",
1773
+ "Be right back",
1774
+ "Beacon in place",
1775
+ "Always leave yourself a back door",
1776
+ "I might need this later",
1777
+ "Ahorita regreso",
1778
+ "Translocating",
1779
+ "See you later",
1780
+ "Cheers, love",
1781
+ "Apagando las luces",
1782
+ "EMP activated!",
1783
+ "Reboot and try again",
1784
+ "We all make mistakes",
1785
+ "Ya estoy lista para ese trago",
1786
+ "Hora de empezar de nuevo",
1787
+ "No manches",
1788
+ "Intentamos otra vez",
1789
+ "Feeling much better",
1790
+ "Mucho mejor",
1791
+ "Much better",
1792
+ "You have good taste",
1793
+ "Damn it",
1794
+ "Someone has to pull their weight around here",
1795
+ "I thought so",
1796
+ "Do I win a prize",
1797
+ "It was nothing",
1798
+ "Sombra online",
1799
+ "Sniper! Ten cuidado",
1800
+ "Enemies on my radar",
1801
+ "El enemigo esta aqui.flac",
1802
+ "Enemigo detectado",
1803
+ "Enemy turret here",
1804
+ "Find the teleporter",
1805
+ "Someone find their teleporter!",
1806
+ "Located their teleporter",
1807
+ "They have a shield generator.",
1808
+ "Found the shield generator.",
1809
+ "Get to cover!",
1810
+ "I am unstoppable!",
1811
+ "The objective is compromised",
1812
+ "Taking the objective. A little help would be appreciated!",
1813
+ "Someone needs to get the payload moving!",
1814
+ "We need to get the payload back on track",
1815
+ "Payload Defense",
1816
+ "Lighten up",
1817
+ "Oh, pobrecita",
1818
+ "Oh, pobrecito",
1819
+ "Lo siento",
1820
+ "Buenas noches",
1821
+ "Taradita",
1822
+ "Sorry Gabe",
1823
+ "Huy! Que Miedo!.flac",
1824
+ "Amateur hour",
1825
+ "Te pasas de lanza.",
1826
+ "Que triste",
1827
+ "Enemy Turret offline",
1828
+ "I blew up the tire, if anyone was wondering",
1829
+ "Down for the count!",
1830
+ "Back off!",
1831
+ "I know Kung Fu",
1832
+ "I knew you were good for something.flac",
1833
+ "Must be some reason I keep you around",
1834
+ "Buen Tiro!",
1835
+ "Hey",
1836
+ "Yonda",
1837
+ "Thanks!",
1838
+ "Thank you!",
1839
+ "Got you!",
1840
+ "I got it",
1841
+ "I need healing!",
1842
+ "Need healing over here!",
1843
+ "Shields por favor!",
1844
+ "I could use some shields!",
1845
+ "Armor por favor!",
1846
+ "Come over here!",
1847
+ "EMP charged",
1848
+ "My ultimate is ready",
1849
+ "My ultimate is ready. Get in there!",
1850
+ "My EMP is almost charged",
1851
+ "My ultimate is almost ready",
1852
+ "Boop!",
1853
+ "De pelos",
1854
+ "Did you mean to do that",
1855
+ "Good one",
1856
+ "Hack the planet",
1857
+ "Just squishing a bug",
1858
+ "Mess with the best and die like the rest",
1859
+ "If you hold the information, you hold all the cards",
1860
+ "You trying to be scary",
1861
+ "I can be nice",
1862
+ "Pleasure working with you McCree. If that is your real name",
1863
+ "So what are we doing here, boss",
1864
+ "What can I say. A girl just has to have the latest tech",
1865
+ "Your friend, Katya Volskaya. What will you say when you learn the truth",
1866
+ "Back home... I should go drop by the bakery",
1867
+ "Do you ever stop and just look up at the sky. I hear you can see all sorts of things",
1868
+ "I wonder how my friend is doing",
1869
+ "Aloha",
1870
+ "Hey dude",
1871
+ "We need that payload to make a 180",
1872
+ "Damn ankle busters",
1873
+ "Mine deployed",
1874
+ "Hasta luego",
1875
+ "Too close for comfort",
1876
+ "Cinco cuatro tres dos uno",
1877
+ "Five, four, three, two, one"
1878
+ #--------------------------Symmetra's quotes--------------------------
1879
+ , "From light into being",
1880
+ "Turret deployed",
1881
+ "Turret online",
1882
+ "Aligning defense system",
1883
+ "Defenses in place",
1884
+ "Turret in place",
1885
+ "Sentry deployed",
1886
+ "Sentry Turret placed",
1887
+ "Turret was destroyed",
1888
+ "My defenses are weakened",
1889
+ "Intruder detected",
1890
+ "My sentry was destroyed",
1891
+ "The true enemy of humanity is disorder",
1892
+ "If everyone performs their function",
1893
+ "Do not deviate from the plan",
1894
+ "I will shape order from chaos",
1895
+ "Order will be restored",
1896
+ "A momentary lapse",
1897
+ "Death is an illusion",
1898
+ "My work is not complete",
1899
+ "I will correct my mistakes",
1900
+ "I will follow my path",
1901
+ "There is still much to be done",
1902
+ "Much better",
1903
+ "I am restored",
1904
+ "I have reached peak performance levels",
1905
+ "My full potential is unlocked",
1906
+ "My power grows",
1907
+ "System Optimized",
1908
+ "Our fates are entwined",
1909
+ "Perfect alignment",
1910
+ "Damn",
1911
+ "A performance worthy of repetition",
1912
+ "Ah, that is the way!",
1913
+ "As it should be",
1914
+ "I will show you the path",
1915
+ "They have revived",
1916
+ "Symmetra reporting",
1917
+ "Sniper",
1918
+ "I have located the enemy",
1919
+ "Enemy turret ahead",
1920
+ "The enemy possesses a teleporter, we must locate it",
1921
+ "We must locate their teleporter",
1922
+ "Enemy teleporter located. We must destroy it",
1923
+ "Behind you!",
1924
+ "Do not let up, victory will soon be ours",
1925
+ "If we work in unison, our defense will be impenetrable",
1926
+ "Defend together! It will not be long now",
1927
+ "Attack now or we are defeated!",
1928
+ "Secure the objective!",
1929
+ "Time grows short but we must fight to the end",
1930
+ "Time is running out, we must not fail",
1931
+ "Align our attack, move the payload",
1932
+ "I am at the objective, we must take it quickly",
1933
+ "I am claiming the objective, support me",
1934
+ "I am taking the objective, all is going according to plan",
1935
+ "We must hold the point against their attack!",
1936
+ "Reinforce our defenses, we must hold them back!",
1937
+ "Consolidate our defenses on the point!",
1938
+ "The payload moves, as must we",
1939
+ "The payload moves to its destination all according to plan",
1940
+ "The payload is moving, converge upon it",
1941
+ "The payload is moving, we must pull together",
1942
+ "Together we must stop the payload, this is the way it must be",
1943
+ "We must stop the payload!",
1944
+ "The payload has stopped, we must get it moving",
1945
+ "The payload has stopped, we must get our plan back on track",
1946
+ "Just as expected",
1947
+ "Order is restored",
1948
+ "The balance shifts in my favor",
1949
+ "Perception is your weakness",
1950
+ "Why do you struggle against your fate",
1951
+ "You are unworthy of the true reality",
1952
+ "Know your place",
1953
+ "Perfection",
1954
+ "You are trapped in your own mind",
1955
+ "This is the order of things",
1956
+ "That was for your own good",
1957
+ "You lack imagination",
1958
+ "You were not meant for greatness",
1959
+ "All according to plan.",
1960
+ "A punishment for your crimes",
1961
+ "Everything in its place",
1962
+ "The pattern develops",
1963
+ "This is the shape of things to come",
1964
+ "Enemy turret destroyed An inferior design",
1965
+ "Enemy turret destroyed",
1966
+ "Enemy teleporter destroyed. Hm",
1967
+ "Get back",
1968
+ "Know your place2",
1969
+ "Shameful",
1970
+ "You perform your function admirably",
1971
+ "Well executed",
1972
+ "I had not forgotten you",
1973
+ "The enemy team has been eliminated",
1974
+ "All enemies eliminated",
1975
+ "Hello",
1976
+ "Hello 2",
1977
+ "Greetings",
1978
+ "Thank you",
1979
+ "You have my thanks",
1980
+ "Understood",
1981
+ "I understand",
1982
+ "Acknowledged",
1983
+ "I need healing",
1984
+ "I require healing",
1985
+ "Form up",
1986
+ "Group up",
1987
+ "Group up with me",
1988
+ "Group up here",
1989
+ "My ultimate is charging",
1990
+ "My Teleporter is almost ready to deploy",
1991
+ "My ultimate is almost ready",
1992
+ "My ultimate ability is ready",
1993
+ "Teleporter ready for deployment",
1994
+ "My teleporter is ready to deploy",
1995
+ "Such a lack of imagination",
1996
+ "Everything by design",
1997
+ "Exquisite",
1998
+ "How unsightly",
1999
+ "Impressive",
2000
+ "Perfect harmony",
2001
+ "Precisely",
2002
+ "I will put you in your place",
2003
+ "Welcome to my reality",
2004
+ "Why do you struggle",
2005
+ "Hard work and dedication pays off",
2006
+ "Work with a street ruffian",
2007
+ "What you call freedom is an illusion that causes more harm than good",
2008
+ "What you call freedom, I call anarchy.",
2009
+ "Vishkar is building a better future",
2010
+ "You should return what you stole",
2011
+ "Of course science obeys the laws of nature",
2012
+ "Armor How positively medieval",
2013
+ "This would be a perfect location for a Vishkar development",
2014
+ "Creating a barrier",
2015
+ "Projecting a barrier",
2016
+ "Projecting barrier",
2017
+ "I will shield you Photon Barrier",
2018
+ "I will shield us",
2019
+ "This will protect you",
2020
+ "This will protect us",
2021
+ "Barrier is on its way",
2022
+ "Photon Barrier Deployed",
2023
+ "Instancing Photon Barrier",
2024
+ "Shield engaged",
2025
+ "I will shield you",
2026
+ "Be shielded",
2027
+ "You are shielded",
2028
+ "Shield matrix established",
2029
+ "Everyone is protected",
2030
+ "Turret available for deployment",
2031
+ "Defensive matrix established.ogg",
2032
+ "There is a gap in my defense matrix",
2033
+ "Teleporter on-line. I have opened the path",
2034
+ "Teleporter on-line. We move swiftly",
2035
+ "Shield generator online. You are protected",
2036
+ "Shield generator online. Defense matrix established",
2037
+ "Shield matrix established Shield Generator",
2038
+ "Protect the teleporter.",
2039
+ "Teleporter is under attack",
2040
+ "My shield generator is under attack",
2041
+ "Teleporter destroyed",
2042
+ "My teleporter has been destroyed",
2043
+ "My teleporter has been destroyed. The path is closed",
2044
+ "My teleporter has been destroyed. The way is closed",
2045
+ "Teleporter offline",
2046
+ "My teleporter is offline",
2047
+ "Teleporter offline. The path is closed",
2048
+ "My teleporter is offline. The path is closed",
2049
+ "My teleporter is offline. The way is closed",
2050
+ "My shield generator has been destroyed",
2051
+ "My shield generator is offline"
2052
+ #--------------------------Tracer's quotes--------------------------
2053
+ , "Blink laugh",
2054
+ "Whee!",
2055
+ "Whoa",
2056
+ "Blink Wicked",
2057
+ "yeah",
2058
+ "Just in time",
2059
+ "Now, where were we",
2060
+ "Got ya!",
2061
+ "Gotcha",
2062
+ "Nailed it!",
2063
+ "Right on target",
2064
+ "Bombs away!",
22
2065
  "Here ya go!",
23
- "It's high noon.",
24
- "Ladies and gentlemen, start your engines!",
25
- "MOLTEN CORE!",
26
- "Minefield deployed.",
27
- "Nano Boost administered.",
28
- "Nerf this!",
29
- "Ogon' po gotovnosti!",
30
- "Oh, let's break it down!",
31
- "Pass into the Iris.",
32
- "Rally to me!",
33
- "Step right up.",
34
- "Surrender to my will!",
35
- "Time's up!",
36
- "Vamos esculachar!",
37
2066
  "Wait for it...",
38
- "Warīhum quwitak!",
39
- "You're powered up, get in there.",
40
- "¡Apagando las luces!"
2067
+ "You need a time out",
2068
+ "Cracking",
2069
+ "Oi this is no time for standing around",
2070
+ "Wait for me",
2071
+ "Well that just happened",
2072
+ "Back to work",
2073
+ "Back in the fight!",
2074
+ "All eyes on me!",
2075
+ "im in the zone",
2076
+ "Sensational!",
2077
+ "Aww thanks loves",
2078
+ "Excelsior",
2079
+ "Aww yeah",
2080
+ "nice save",
2081
+ "Tracer here",
2082
+ "Sniper",
2083
+ "There they are",
2084
+ "Enemy turret ahead",
2085
+ "Find their teleporter",
2086
+ "Found their teleporter!",
2087
+ "Behind you",
2088
+ "Recall Gasp",
2089
+ "The objective is mine",
2090
+ "defend the objective",
2091
+ "payloads moving",
2092
+ "payloads stopped",
2093
+ "This time stay down",
2094
+ "Speed Kills",
2095
+ "Sorry, cap!",
2096
+ "Death comes!",
2097
+ "No one likes a thief",
2098
+ "That felt good",
2099
+ "squished",
2100
+ "Sorry, big guy!",
2101
+ "Looks like you need a time out!",
2102
+ "Get stuffed!",
2103
+ "Ha! Bet that smarts!",
2104
+ "Ha! Fantastic!",
2105
+ "Ha! Tip-Top!",
2106
+ "Brilliant!",
2107
+ "Wicked!",
2108
+ "Nice one!",
2109
+ "Enemy turret down",
2110
+ "Enemy teleporter destroyed",
2111
+ "pow",
2112
+ "And stay down",
2113
+ "down for the count",
2114
+ "Take that!",
2115
+ "you can be my wingman",
2116
+ "nice one rein",
2117
+ "enemy team eliminated",
2118
+ "Hiya",
2119
+ "heya",
2120
+ "Hi",
2121
+ "Thank you",
2122
+ "Thanks",
2123
+ "Thanks love",
2124
+ "Understood",
2125
+ "I need healing",
2126
+ "I could use some healing",
2127
+ "hey doc",
2128
+ "I need shields",
2129
+ "I could use some shields",
2130
+ "I need armor",
2131
+ "group up",
2132
+ "Group up here",
2133
+ "Group up with me",
2134
+ "My ultimate is charging",
2135
+ "My ultimate is almost ready",
2136
+ "Pulse bomb ready",
2137
+ "you got it2",
2138
+ "Aww rubbish",
2139
+ "Be right back",
2140
+ "Check me out",
2141
+ "Keep calm and Tracer on",
2142
+ "She shoots she scores",
2143
+ "The world could always use more heroes",
2144
+ "I have this under control",
2145
+ "Looks like you need a time out",
2146
+ "Eat my dust",
2147
+ "Time Out",
2148
+ "Ooh scary",
2149
+ "Boo!",
2150
+ "Ho ho ho!",
2151
+ "dont be daft",
2152
+ "sorry im late",
2153
+ "Time is on my side",
2154
+ "did I miss something",
2155
+ "I knew I forgot something",
2156
+ "Over my dead body",
2157
+ "lucio ill race ya",
2158
+ "Then stay out of our way!",
2159
+ "mei youre the real hero",
2160
+ "Okay, Dad!",
2161
+ "wont be a problem if you just disappear",
2162
+ "dont think i dont recognize",
2163
+ "dont think im happy about that",
2164
+ "Oh, Winston! Got your favorite!",
2165
+ "I think static noises",
2166
+ "honor to meet",
2167
+ "Back in my old stomping ground",
2168
+ "Pub anyone",
2169
+ "Should we nip to the pub",
2170
+ "I could murder a chippie",
2171
+ "I could murder a chip sarnie",
2172
+ "i wonder if i left anything",
2173
+ "tosser",
2174
+ "False start",
2175
+ "I got my second wind",
2176
+ "Whew I think I hit the wall",
2177
+ "On your marks get set go",
2178
+ "here comes t racer",
2179
+ "Dashing through the snow",
2180
+ "Ho ho ho",
2181
+ "Got ya something",
2182
+ "I think I heard some slay bells",
2183
+ "You were on the naughty list",
2184
+ "Ohh sorry Santa",
2185
+ "Cheers love the holidays are here",
2186
+ "youre going on my nice list",
2187
+ "Get out of there",
2188
+ "Ive got you covered"
2189
+ #--------------------------Training_bot's quotes--------------------------
2190
+ #--------------------------Uprising's quotes--------------------------
2191
+ #--------------------------Widowmaker's quotes--------------------------
2192
+ , "Dans ma ligne de mire",
2193
+ "I see you, do you see me",
2194
+ "Allez, montre-toi",
2195
+ "Ah, je te vois",
2196
+ "My gift to you",
2197
+ "Oh. Did that sting",
2198
+ "Watch your step",
2199
+ "La veuve tisse sa toile",
2200
+ "No one can hide from my sight",
2201
+ "One shot, one kill",
2202
+ "Huh, here I am",
2203
+ "Now You have my attention",
2204
+ "Rendez-vous avec la mort",
2205
+ "I needed that",
2206
+ "Much better",
2207
+ "You must like me",
2208
+ "Merci",
2209
+ "be alert they are back",
2210
+ "havent had enough",
2211
+ "Widowmaker here",
2212
+ "Widowmaker, au rapport",
2213
+ "Sniper. Leave this to me",
2214
+ "Sniper... amateur",
2215
+ "We need to defend the objective",
2216
+ "Goodbye Adieu",
2217
+ "A beautiful death",
2218
+ "Americans",
2219
+ "Like mother, like daughter",
2220
+ "Death becomes you",
2221
+ "Pathetic",
2222
+ "Shameful",
2223
+ "Please",
2224
+ "such artistry",
2225
+ "Talon strikes",
2226
+ "Hello there",
2227
+ "Hello",
2228
+ "Merci",
2229
+ "Understood",
2230
+ "Acknowledged",
2231
+ "i need healing",
2232
+ "I need shields",
2233
+ "Need armor",
2234
+ "Group up here",
2235
+ "A single death can change everything",
2236
+ "Encore",
2237
+ "Let them eat cake",
2238
+ "Cherchez la femme",
2239
+ "Magnifique",
2240
+ "une balle un mort",
2241
+ "Step into my parlor. said the spider to the fly",
2242
+ "the perfomance is about to",
2243
+ "your emotions make you",
2244
+ "You were once a legend, but what are you now. Just a shell of a woman ",
2245
+ "This is no place for children",
2246
+ "that would be the last mistake",
2247
+ "it would be a shame if something",
2248
+ "An annoyance",
2249
+ "so predictable tracer",
2250
+ "i dont even feel the cold",
2251
+ "no one can hide from the huntress",
2252
+ "the huntress gets her prey"
2253
+ #--------------------------Winston's quotes--------------------------
2254
+ , "Coming through",
2255
+ "Pardon me",
2256
+ "Excuse me for dropping in",
2257
+ "Hello there",
2258
+ "Barrier activated",
2259
+ "Barrier up",
2260
+ "This will protect us",
2261
+ "Barrier failing!",
2262
+ "Ultimate - Roar",
2263
+ "I seem to have, uh, lost my temper",
2264
+ "I, uh, appear to have lost control",
2265
+ "Ahem, uh, where were we",
2266
+ "Ahem, um, pardon me",
2267
+ "Imagination is the essence of discovery",
2268
+ "Together, we can solve any problem",
2269
+ "Further experimentation required",
2270
+ "Hmm, once more unto the breach",
2271
+ "Onward and upward!",
2272
+ "Reengaging",
2273
+ "Through the miracle of science!",
2274
+ "Vital signs normalizing",
2275
+ "Damage output increased",
2276
+ "Weapon system optimized!",
2277
+ "Feeling drained",
2278
+ "Every little bit counts",
2279
+ "Enemies reengaging!",
2280
+ "Winston reporting",
2281
+ "Sniper! Be careful",
2282
+ "Enemy detected",
2283
+ "Enemies detected!",
2284
+ "Turret ahead, use caution",
2285
+ "They have a teleporter somewhere",
2286
+ "We need to locate their teleporter!",
2287
+ "Behind you!",
2288
+ "Take cover!",
2289
+ "I need a hand here!",
2290
+ "I could use some help!",
2291
+ "Uh, little help here",
2292
+ "Feeling powerful!",
2293
+ "By my calculations, our defenses will hold",
2294
+ "Haha, countdown to defensive victory initiated",
2295
+ "Uh, cursory evaluation suggests time is running out",
2296
+ "If we work together",
2297
+ "The odds are in our favor, press the attack!",
2298
+ "Our enemies are taking the point!",
2299
+ "Payload stalled!",
2300
+ "Uh, we have to get this thing moving again",
2301
+ "We need to move the payload!",
2302
+ "Escorting the payload",
2303
+ "You know what they say, a payload in motion stays in motion",
2304
+ "Payload in transit",
2305
+ "It appears the payload is moving!",
2306
+ "We must intercept the payload",
2307
+ "We need to stop the payload!",
2308
+ "One for the archives",
2309
+ "Would you like to donate your body to science",
2310
+ "You, stay away from my computer systems",
2311
+ "Enemy turret neutralized",
2312
+ "Enemy teleporter destroyed",
2313
+ "Nice shot!",
2314
+ "Tracer, no!",
2315
+ "Hello",
2316
+ "Hey",
2317
+ "Hi there",
2318
+ "Thanks",
2319
+ "Thank you",
2320
+ "Thank you!",
2321
+ "Acknowledged",
2322
+ "Absolutely!",
2323
+ "Got it",
2324
+ "You got it!",
2325
+ "Need healing!",
2326
+ "I need healing",
2327
+ "I could use some healing",
2328
+ "Need armour",
2329
+ "I need armour!",
2330
+ "Need shields",
2331
+ "I could use some shields",
2332
+ "We could use a healer",
2333
+ "Group up!",
2334
+ "Group up with me",
2335
+ "Form up!",
2336
+ "My ultimate is charging",
2337
+ "My ultimate is almost ready!",
2338
+ "My ultimate is ready!",
2339
+ "Curious",
2340
+ "How embarrassing!",
2341
+ "No, I do not want a banana",
2342
+ "Natural selection!",
2343
+ "No monkey business",
2344
+ "Did someone say peanut butter",
2345
+ "Sorry about that!",
2346
+ "The power of science!",
2347
+ "Houston, we have a problem",
2348
+ "This is not a costume",
2349
+ "I, uh, got you something",
2350
+ "That was awesome!",
2351
+ "I Get That A Lot",
2352
+ "Uhm, okay, I guess. We got this big mission coming up-- Oh, I get it",
2353
+ "Genji, this is just like old times",
2354
+ "Oh, uhm, thanks, I like yours, too",
2355
+ "Someone has to",
2356
+ "Need any adjustments to your chronal accelerator",
2357
+ "For the last time, no more bananas!",
2358
+ "I would kill for some tacos",
2359
+ "You know, they asked me to be in a movie once",
2360
+ "Horizon Lunar Colony Map - The First Day Or So",
2361
+ "A city run by scientists, smart",
2362
+ "Now is the winter of our discontent",
2363
+ "Happy holidays!",
2364
+ "Overwatch made mistakes in the past, I hope that we can fix them",
2365
+ "Five, four, three, two, one",
2366
+ "In five, four, three, two, one",
2367
+ "Always liked working with you too",
2368
+ "I like to leave the heavy lifting"
2369
+ #--------------------------Wrecking_Ball's quotes--------------------------
2370
+ #--------------------------Zarya's quotes--------------------------
2371
+ , "Barrier activated",
2372
+ "Bring it",
2373
+ "Give me your best shot",
2374
+ "Ready for battle",
2375
+ "Is that all youve got",
2376
+ "That tickles",
2377
+ "Maximum charge",
2378
+ "Fire at will!",
2379
+ "Gravity kills",
2380
+ "Do you even lift",
2381
+ "Together we are strong",
2382
+ "Be sure to stretch",
2383
+ "During Set Up - Just Like In Training Visualize Then Execute",
2384
+ "Give me another shot",
2385
+ "Respawn - I Will Never Surrender",
2386
+ "Much better",
2387
+ "I am on fire Everyone follow me",
2388
+ "I am even stronger",
2389
+ "Now see what I can do",
2390
+ "Laugh",
2391
+ "Voted Epic - Hard Work Is Its Own Reward",
2392
+ "Voted Legendary - I Do It For My Country",
2393
+ "A second chance",
2394
+ "They have been revived",
2395
+ "Zarya, ready for duty",
2396
+ "Sniper, be wary",
2397
+ "Enemy contact",
2398
+ "Enemy turret ahead",
2399
+ "They must have a teleporter",
2400
+ "Teleporter located",
2401
+ "We are out of time attack",
2402
+ "This is it, push forward!",
2403
+ "Push forward",
2404
+ "They are running out of time, we must hold them back",
2405
+ "They must not get past",
2406
+ "Just a little longer, turn them back",
2407
+ "Turn them back",
2408
+ "I am taking the objective, reinforce this position",
2409
+ "I claim this objective, stand with me",
2410
+ "Everyone, on the objective",
2411
+ "Get on the objective, we cannot let it fall into their hands",
2412
+ "Push them back",
2413
+ "Escorting the payload",
2414
+ "I am moving the payload fall in with me",
2415
+ "Let us stop the payload together",
2416
+ "The payload is moving, halt their progress",
2417
+ "They are moving the payload, stop them!",
2418
+ "The payload stopped get it moving",
2419
+ "We need to get the payload moving",
2420
+ "Primary objective, move the payload",
2421
+ "Final Blow - I Am The Champion",
2422
+ "Your team was depending on you",
2423
+ "I am just getting warmed up",
2424
+ "Final Blow - Check Out This Gun",
2425
+ "Final Blow - Promising..... But Not Good Enough",
2426
+ "Never Trust",
2427
+ "Enemy turret eliminated",
2428
+ "The enemy teleporter is destroyed",
2429
+ "Take the pain",
2430
+ "Weak",
2431
+ "Nice shot",
2432
+ "Remember me",
2433
+ "Hello - Privet",
2434
+ "Thank you",
2435
+ "Thank - Spasibo",
2436
+ "Acknowledged",
2437
+ "I am injured",
2438
+ "Need armour",
2439
+ "Join me",
2440
+ "Get down give me twenty",
2441
+ "I can bench more than you",
2442
+ "I will break you",
2443
+ "Are you in need of personal training",
2444
+ "Big, fuzzy Siberian bear",
2445
+ "Born in Battle",
2446
+ "I have destroyed more of your kind than I can count",
2447
+ "How do I trust a man who is half machine",
2448
+ "Reinhardt. You said you would arm wrestle me. Nervous",
2449
+ "I will not let the fate that befell this place happen to my country!",
2450
+ "The humans who live here are fools to trust the omnics",
2451
+ "Katya is a hero to my people. We must protect what she has built"
2452
+ #--------------------------Zenyatta's quotes--------------------------
2453
+ , "Be one with the Universe",
2454
+ "Be reborn",
2455
+ "Embrace tranquility",
2456
+ "Free your mind",
2457
+ "Gaze into the Iris",
2458
+ "Open your mind",
2459
+ "Walk in harmony",
2460
+ "We walk in harmony my student",
2461
+ "We are as one my sister",
2462
+ "Bask in the shadow of doubt",
2463
+ "Darkness falls",
2464
+ "There is chaos within you",
2465
+ "There is disquiet in your soul",
2466
+ "You are your own worst enemy",
2467
+ "I know the doubts that plague you",
2468
+ "You have much to learn",
2469
+ "Experience tranquility",
2470
+ "Pass into the Iris",
2471
+ "True self is without form",
2472
+ "A chance to focus",
2473
+ "A closed mind is already defeated",
2474
+ "A disciplined mind is your most dependable ally",
2475
+ "Consider only victory, make defeat an impossibility in your mind",
2476
+ "A momentary setback",
2477
+ "A temporary setback",
2478
+ "Adversity is an opportunity for change",
2479
+ "Overconfidence is a flimsy shield",
2480
+ "Pain is an excellent teacher",
2481
+ "Repetition is the path to mastery",
2482
+ "The cycle begins anew",
2483
+ "The outcome is not preordained",
2484
+ "I am made whole",
2485
+ "I am restored",
2486
+ "My systems are restored",
2487
+ "I am on fire",
2488
+ "I am on fire, but an extinguisher is not required",
2489
+ "I feel the warmth of the Iris flowing through me",
2490
+ "Energy flows through me",
2491
+ "My spirit is strong",
2492
+ "Now to strike",
2493
+ "I feel greatly empowered",
2494
+ "I feel unstoppable!",
2495
+ "I welcome adversity",
2496
+ "Excellence is its own reward",
2497
+ "Wonderful",
2498
+ "The gods have selected me",
2499
+ "Our enemies return",
2500
+ "I return",
2501
+ "Zenyatta is here",
2502
+ "I see a sniper",
2503
+ "Sniper",
2504
+ "Enemy detected",
2505
+ "The enemy is here",
2506
+ "A turret lies before us, it is quite real",
2507
+ "A turret lies in our way",
2508
+ "The enemy possesses a teleporter",
2509
+ "We must locate their teleporter",
2510
+ "Behind you",
2511
+ "Get out of there!",
2512
+ "I need help",
2513
+ "I require assistance",
2514
+ "Falter now, and we will succumb to defeat",
2515
+ "Victory is within our grasp hold strong",
2516
+ "Time grows short attack",
2517
+ "Time is an illusion",
2518
+ "We must focus our attack upon the payload",
2519
+ "We must wrest victory from the jaws of time",
2520
+ "Our objective will soon belong to the enemy",
2521
+ "Destiny has drawn me to the objective",
2522
+ "I am becoming one with the objective",
2523
+ "I am taking the objective, join me",
2524
+ "The payload must be moved",
2525
+ "The payload rests idle",
2526
+ "My path has converged with that of the payload",
2527
+ "The payload and I move as one",
2528
+ "The payload proceeds on its path",
2529
+ "The payload moves closer to the threshold of our defeat",
2530
+ "The payload moves like a stone",
2531
+ "A lesson in humility",
2532
+ "Do not be discouraged everyone begins in ignorance",
2533
+ "Hatred is not strategy",
2534
+ "If you do not bend, you break",
2535
+ "In anger you defeat only yourself",
2536
+ "One cannot survive on strength alone",
2537
+ "You must learn from your mistakes",
2538
+ "You refuse to learn",
2539
+ "Your weakness is revealed",
2540
+ "I win this round, Genji",
2541
+ "The master still has a few tricks",
2542
+ "Move too quickly and you overlook much",
2543
+ "Justice is defined by the hand that claims it",
2544
+ "Eager to Learn",
2545
+ "Revenge is not justice",
2546
+ "All-Knowing",
2547
+ "I feel neither joy nor remorse amidst such death",
2548
+ "A glimpse of mastery",
2549
+ "The turret is no more",
2550
+ "The turret no longer exists",
2551
+ "Impressive",
2552
+ "Well done Genji",
2553
+ "To hold a grudge is unhealthy- for you",
2554
+ "Our enemies have been eliminated but they will return",
2555
+ "The enemy team has been eliminated",
2556
+ "The enemy team is not in existence for now",
2557
+ "Greetings",
2558
+ "Peace be upon you",
2559
+ "My thanks",
2560
+ "Thank you",
2561
+ "You have my thanks",
2562
+ "Acknowledged",
2563
+ "I am in agreement",
2564
+ "I understand",
2565
+ "Understood",
2566
+ "I need healing",
2567
+ "I require healing",
2568
+ "I need armor",
2569
+ "I require armor",
2570
+ "I need shields",
2571
+ "I require shields",
2572
+ "Come here for healing",
2573
+ "Come to me for healing",
2574
+ "Form Up",
2575
+ "Group up",
2576
+ "Group up here",
2577
+ "Group up with me",
2578
+ "Join me",
2579
+ "My ultimate ability is ready",
2580
+ "My ultimate is ready, proceed without fear",
2581
+ "Ready for Transcendence",
2582
+ "We are in harmony",
2583
+ "Death is whimsical today",
2584
+ "Do I think, does a submarine swim",
2585
+ "Free your mind",
2586
+ "Hello world",
2587
+ "I dreamt I was a butterfly",
2588
+ "I think, therefore I am",
2589
+ "I will not juggle",
2590
+ "Life is more than a series of ones and zeroes",
2591
+ "Peace and blessings be upon you all",
2592
+ "The Iris embraces you",
2593
+ "Always strive for improvement",
2594
+ "Trick or treat",
2595
+ "No snowflake ever falls in the wrong place",
2596
+ "Every rooster crows in its own pen",
2597
+ "How Disappointing",
2598
+ "Tell me your thoughts, my friend",
2599
+ "It is good to fight alongside one of my brightest pupils",
2600
+ "Even the teacher can learn from his student",
2601
+ "I sense within you the same rage that once consumed your brother",
2602
+ "Do you have any dreams",
2603
+ "I would be happy to teach you",
2604
+ "To us all, I miss him greatly",
2605
+ "And I will watch your back in turn",
2606
+ "So this is where you grew up. You must show me around",
2607
+ "If only human and omnic could learn to live in peace here",
2608
+ "It does, my brother Mondatta gave much to improve their lives, but it was not to be",
2609
+ "It is good to return, but am I still welcome here",
2610
+ "I can feel the embrace of the Iris so strongly here",
2611
+ "How wonderful, a place where omnic and human live as equals",
2612
+ "What a fascinating place",
2613
+ "Be one with the darkness",
2614
+ "Walk in shadow",
2615
+ "Embrace oblivion",
2616
+ "We walk in the shadows, my apprentice",
2617
+ "Darkness envelops all",
2618
+ "Be consumed by the shadows",
2619
+ "Listen to the whispers of madness",
2620
+ "Experience nothingness",
2621
+ "Pass into the unknown",
2622
+ "Zenyatta is everywhere",
2623
+ "Curses and Madness be upon you all",
2624
+ "The Iris consumes you",
2625
+ "Trick or Treat"
41
2626
  ]