faker 1.1.2 → 3.1.1

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