faker 2.22.0 → 2.23.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,110 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Faker
4
+ class Sport < Base
5
+ class << self
6
+ ##
7
+ # Produces a sport from the modern olympics or paralympics, summer or winter.
8
+ #
9
+ # @param include_ancient [Boolean] If true, may produce a sport from the ancient olympics
10
+ # @param include_unusual [Boolean] If true, may produce an unusual (definitely not olympic) sport
11
+ #
12
+ # @return [String]
13
+ #
14
+ # @example
15
+ # Faker::Sport.sport #=> "Football"
16
+ # @example
17
+ # Faker::Sport.sport(include_ancient: true) #=> "Chariot racing"
18
+ # @example
19
+ # Faker::Sport.sport(include_unsual: true) #=> "Flugtag/Birdman"
20
+ # @example
21
+ # Faker::Sport.sport(include_ancient:true, include_unusual: true) #=> "Water polo"
22
+ #
23
+ # @faker.version next
24
+ def sport(include_ancient: false, include_unusual: false)
25
+ sports = fetch_all('sport.summer_olympics') + fetch_all('sport.winter_olympics') + fetch_all('sport.summer_paralympics') + fetch_all('sport.winter_paralympics')
26
+ sports << fetch_all('sport.ancient_olympics') if include_ancient
27
+ sports << fetch_all('sport.unusual') if include_unusual
28
+ sample(sports)
29
+ end
30
+
31
+ ##
32
+ # Produces a sport from the summer olympics.
33
+ #
34
+ # @return [String]
35
+ #
36
+ # @example
37
+ # Faker::Sport.summer_olympics_sport #=> "Archery"
38
+ #
39
+ # @faker.version next
40
+ def summer_olympics_sport
41
+ fetch('sport.summer_olympics')
42
+ end
43
+
44
+ ##
45
+ # Produces a sport from the winter olympics.
46
+ #
47
+ # @return [String]
48
+ #
49
+ # @example
50
+ # Faker::Sport.winter_olympics_sport #=> "Bobsleigh"
51
+ #
52
+ # @faker.version next
53
+ def winter_olympics_sport
54
+ fetch('sport.winter_olympics')
55
+ end
56
+
57
+ ##
58
+ # Produces a sport from the summer paralympics.
59
+ #
60
+ # @return [String]
61
+ #
62
+ # @example
63
+ # Faker::Sport.summer_paralympics_sport #=> "Wheelchair Basketball"
64
+ #
65
+ # @faker.version next
66
+ def summer_paralympics_sport
67
+ fetch('sport.summer_paralympics')
68
+ end
69
+
70
+ ##
71
+ # Produces a sport from the winter paralympics.
72
+ #
73
+ # @return [String]
74
+ #
75
+ # @example
76
+ # Faker::Sport.winter_paralympics_sport #=> "Para Ice Hockey"
77
+ #
78
+ # @faker.version next
79
+ def winter_paralympics_sport
80
+ fetch('sport.winter_paralympics')
81
+ end
82
+
83
+ ##
84
+ # Produces an unusual sport.
85
+ #
86
+ # @return [String]
87
+ #
88
+ # @example
89
+ # Faker::Sport.unusual_sport #=> "Camel Jumping"
90
+ #
91
+ # @faker.version next
92
+ def unusual_sport
93
+ fetch('sport.unusual')
94
+ end
95
+
96
+ ##
97
+ # Produces a sport from the ancient olympics.
98
+ #
99
+ # @return [String]
100
+ #
101
+ # @example
102
+ # Faker::Sport.ancient_olympics_sport #=> "Pankration"
103
+ #
104
+ # @faker.version next
105
+ def ancient_olympics_sport
106
+ fetch('sport.ancient_olympics')
107
+ end
108
+ end
109
+ end
110
+ end
data/lib/faker/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Faker # :nodoc:
4
- VERSION = '2.22.0'
4
+ VERSION = '2.23.0'
5
5
  end
data/lib/faker.rb CHANGED
@@ -13,23 +13,26 @@ I18n.reload! if I18n.backend.initialized?
13
13
 
14
14
  module Faker
15
15
  module Config
16
- @locale = nil
17
- @random = nil
18
-
19
16
  class << self
20
- attr_writer :locale, :random
17
+ def locale=(new_locale)
18
+ Thread.current[:faker_config_locale] = new_locale
19
+ end
21
20
 
22
21
  def locale
23
22
  # Because I18n.locale defaults to :en, if we don't have :en in our available_locales, errors will happen
24
- @locale || (I18n.available_locales.include?(I18n.locale) ? I18n.locale : I18n.available_locales.first)
23
+ Thread.current[:faker_config_locale] || (I18n.available_locales.include?(I18n.locale) ? I18n.locale : I18n.available_locales.first)
25
24
  end
26
25
 
27
26
  def own_locale
28
- @locale
27
+ Thread.current[:faker_config_locale]
28
+ end
29
+
30
+ def random=(new_random)
31
+ Thread.current[:faker_config_random] = new_random
29
32
  end
30
33
 
31
34
  def random
32
- @random || Random
35
+ Thread.current[:faker_config_random] || Random
33
36
  end
34
37
  end
35
38
  end
@@ -41,6 +44,8 @@ module Faker
41
44
  Letters = ULetters + LLetters
42
45
 
43
46
  class << self
47
+ attr_reader :flexible_key
48
+
44
49
  NOT_GIVEN = Object.new
45
50
 
46
51
  ## by default numerify results do not start with a zero
@@ -87,7 +92,7 @@ module Faker
87
92
  .gsub(/(\\?.)\{(\d+),(\d+)\}/) { |_match| Regexp.last_match(1) * sample(Array(Range.new(Regexp.last_match(2).to_i, Regexp.last_match(3).to_i))) } # A{1,2} becomes A or AA or \d{3} becomes \d\d\d
88
93
  .gsub(/\((.*?)\)/) { |match| sample(match.gsub(/[()]/, '').split('|')) } # (this|that) becomes 'this' or 'that'
89
94
  .gsub(/\[([^\]]+)\]/) { |match| match.gsub(/(\w-\w)/) { |range| sample(Array(Range.new(*range.split('-')))) } } # All A-Z inside of [] become C (or X, or whatever)
90
- .gsub(/\[([^\]]+)\]/) { |_match| sample(Regexp.last_match(1).split('')) } # All [ABC] become B (or A or C)
95
+ .gsub(/\[([^\]]+)\]/) { |_match| sample(Regexp.last_match(1).chars) } # All [ABC] become B (or A or C)
91
96
  .gsub('\d') { |_match| sample(Numbers) }
92
97
  .gsub('\w') { |_match| sample(Letters) }
93
98
  end
@@ -185,9 +190,9 @@ module Faker
185
190
  # girls_name: ["Alice", "Cheryl", "Tatiana"]
186
191
  # Then you can call Faker::Name.girls_name and it will act like #first_name
187
192
  def method_missing(mth, *args, &block)
188
- super unless @flexible_key
193
+ super unless flexible_key
189
194
 
190
- if (translation = translate("faker.#{@flexible_key}.#{mth}"))
195
+ if (translation = translate("faker.#{flexible_key}.#{mth}"))
191
196
  sample(translation)
192
197
  else
193
198
  super
@@ -7,7 +7,7 @@ module Faker
7
7
  base = alphabet.size
8
8
 
9
9
  lv = 0
10
- str.split('').reverse.each_with_index { |v, i| lv += v.unpack1('C') * 256**i }
10
+ str.chars.reverse.each_with_index { |v, i| lv += v.unpack1('C') * 256**i }
11
11
 
12
12
  ret = +''
13
13
  while lv.positive?
@@ -2,16 +2,9 @@
2
2
 
3
3
  module Faker
4
4
  class UniqueGenerator
5
- @marked_unique = Set.new # Holds names of generators with unique values
6
-
7
- class << self
8
- attr_reader :marked_unique
9
- end
10
-
11
5
  def initialize(generator, max_retries)
12
6
  @generator = generator
13
7
  @max_retries = max_retries
14
- @previous_results = Hash.new { |hash, key| hash[key] = Set.new }
15
8
  end
16
9
 
17
10
  def method_missing(name, *arguments)
@@ -20,9 +13,9 @@ module Faker
20
13
  @max_retries.times do
21
14
  result = @generator.public_send(name, *arguments)
22
15
 
23
- next if @previous_results[[name, arguments]].include?(result)
16
+ next if previous_results[[name, arguments]].include?(result)
24
17
 
25
- @previous_results[[name, arguments]] << result
18
+ previous_results[[name, arguments]] << result
26
19
  return result
27
20
  end
28
21
 
@@ -39,8 +32,17 @@ module Faker
39
32
 
40
33
  RetryLimitExceeded = Class.new(StandardError)
41
34
 
35
+ def previous_results
36
+ Thread.current[:faker_unique_generator_previous_results] ||= {}
37
+ Thread.current[:faker_unique_generator_previous_results][@generator] ||= Hash.new { |hash, key| hash[key] = Set.new }
38
+ end
39
+
42
40
  def clear
43
- @previous_results.clear
41
+ previous_results.clear
42
+ end
43
+
44
+ def self.marked_unique
45
+ Thread.current[:faker_unique_generator_marked_unique] ||= Set.new
44
46
  end
45
47
 
46
48
  def self.clear
@@ -51,7 +53,7 @@ module Faker
51
53
  def exclude(name, arguments, values)
52
54
  values ||= []
53
55
  values.each do |value|
54
- @previous_results[[name, arguments]] << value
56
+ previous_results[[name, arguments]] << value
55
57
  end
56
58
  end
57
59
  end
@@ -4,30 +4,49 @@ en:
4
4
  type:
5
5
  - server
6
6
  - workstation
7
- platform:
7
+ platform:
8
8
  - Linux
9
9
  - macOS
10
10
  - Windows
11
+ - OpenBSD
12
+ - TempleOS
13
+ - Plan 9
11
14
  os:
12
15
  linux:
13
- - RHEL 6.10
16
+ - RHEL 9.0
14
17
  - RHEL 7.7
15
- - CentOS 8
18
+ - RHEL 6.10
19
+ - CentOS 8.5
16
20
  - CentOS 7
17
21
  - CentOS 6
22
+ - Debian 11.4.0
18
23
  - Debian 10.10.3
19
24
  - Debian 9.9.10
20
- - Ubuntu Server 18.04
25
+ - Ubuntu Server 22.04
26
+ - Ubuntu Server 20.04
21
27
  - Ubuntu Server 19.10
28
+ - Ubuntu Server 18.04
29
+ - ArchLinux 2022.08.05
22
30
  - ArchLinux 2020.02.01
31
+ - openSUSE Leap 15.4
23
32
  - openSUSE Leap 15.1
33
+ - Ubuntu Desktop 22.04
34
+ - Ubuntu Desktop 20.04
24
35
  - Ubuntu Desktop 18.04
25
36
  - Ubuntu Desktop 19.10
37
+ openbsd:
38
+ - OpenBSD 7.1
39
+ - OpenBSD 6
40
+ templeos:
41
+ - TempleOS 5.03
42
+ plan 9:
43
+ - Plan 9 Fourth Edition
26
44
  macos:
27
45
  - Catalina (10.15)
28
46
  - Mojave (10.14)
29
47
  - High Sierra (10.13)
30
48
  windows:
49
+ - Windows 11
31
50
  - Windows 10
32
51
  - Windows 8.1
33
52
  - Windows 7
@@ -2,4 +2,12 @@ en:
2
2
  faker:
3
3
  file:
4
4
  extension: ["flac", "mp3", "wav", "bmp", "gif", "jpeg", "jpg", "png", "tiff", "css", "csv", "html", "js", "json", "txt", "mp4", "avi", "mov", "webm", "doc", "docx", "xls", "xlsx", "ppt", "pptx", "odt", "ods", "odp", "pages", "numbers", "key", "pdf"]
5
- mime_type: ["application/atom+xml", "application/ecmascript", "application/EDI-X12", "application/EDIFACT", "application/json", "application/javascript", "application/ogg", "application/pdf", "application/postscript", "application/rdf+xml", "application/rss+xml", "application/soap+xml", "application/font-woff", "application/xhtml+xml", "application/xml-dtd", "application/xop+xml", "application/zip", "application/gzip", "audio/basic", "audio/L24", "audio/mp4", "audio/mpeg", "audio/ogg", "audio/vorbis", "audio/vnd.rn-realaudio", "audio/vnd.wave", "audio/webm", "image/gif", "image/jpeg", "image/pjpeg", "image/png", "image/svg+xml", "image/tiff", "image/vnd.microsoft.icon", "message/http", "message/imdn+xml", "message/partial", "message/rfc822", "model/example", "model/iges", "model/mesh", "model/vrml", "model/x3d+binary", "model/x3d+vrml", "model/x3d+xml", "multipart/mixed", "multipart/alternative", "multipart/related", "multipart/form-data", "multipart/signed", "multipart/encrypted", "text/cmd", "text/css", "text/csv", "text/html", "text/javascript", "text/plain", "text/vcard", "text/xml", "video/mpeg", "video/mp4", "video/ogg", "video/quicktime", "video/webm", "video/x-matroska", "video/x-ms-wmv", "video/x-flv"]
5
+ mime_type:
6
+ application: ["application/atom+xml", "application/ecmascript", "application/EDI-X12", "application/EDIFACT", "application/json", "application/javascript", "application/ogg", "application/pdf", "application/postscript", "application/rdf+xml", "application/rss+xml", "application/soap+xml", "application/font-woff", "application/xhtml+xml", "application/xml-dtd", "application/xop+xml", "application/zip", "application/gzip"]
7
+ audio: ["audio/basic", "audio/L24", "audio/mp4", "audio/mpeg", "audio/ogg", "audio/vorbis", "audio/vnd.rn-realaudio", "audio/vnd.wave", "audio/webm"]
8
+ image: ["image/gif", "image/jpeg", "image/pjpeg", "image/png", "image/svg+xml", "image/tiff", "image/vnd.microsoft.icon"]
9
+ message: ["message/http", "message/imdn+xml", "message/partial", "message/rfc822"]
10
+ model: ["model/example", "model/iges", "model/mesh", "model/vrml", "model/x3d+binary", "model/x3d+vrml", "model/x3d+xml"]
11
+ multipart: ["multipart/mixed", "multipart/alternative", "multipart/related", "multipart/form-data", "multipart/signed", "multipart/encrypted"]
12
+ text: ["text/cmd", "text/css", "text/csv", "text/html", "text/javascript", "text/plain", "text/vcard", "text/xml"]
13
+ video: ["video/mpeg", "video/mp4", "video/ogg", "video/quicktime", "video/webm", "video/x-matroska", "video/x-ms-wmv", "video/x-flv"]
@@ -48,6 +48,8 @@ en:
48
48
  - /6706#########{5,6}L/
49
49
  - /6771#########{5,6}L/
50
50
  - /6709#########{5,6}L/
51
+ condominium_fiscal_code:
52
+ IT: "#########"
51
53
  vat_number:
52
54
  AT: "ATU########"
53
55
  AR: "AR###########"
@@ -79,7 +81,7 @@ en:
79
81
  HR: "HR### ### ### ##"
80
82
  "NO": "NO#########"
81
83
  HU: "HU########"
82
- IT: "IT##########"
84
+ IT: "IT###########"
83
85
  LT:
84
86
  - "LT#########"
85
87
  - "LT############"
@@ -6,4 +6,4 @@ en:
6
6
  islands: ["Dawn Island", "Goat Island", "Shells Town", "Organ Islands", "Island of Rare Animals", "Gecko Islands", "Conomi Islands", "Loguetown", "Kumate Island", "Mirrorball Island", "Tequila Wolf", "Cozia", "Ohara", "Ilusia", "Thriller Bark", "Toroa", "Las Camp", "Kano Country", "Germa Kingdom", "Lvneel Kingdom", "Micqueot", "Spider Miles", "Flevance", "Rubeck Island", "Swallow Island", "Minion Island", "Rakesh", "Notice", "Briss Kingdom", "Karate Island", "Centaurea", "Torino Kingdom", "Baterilla", "Black Drum Kingdom", "Fishman Island", "Amazon Lily", "Impel Down", "Rasukaina", "Cactus Island", "Little Garden", "Holliday Island", "Drum Island", "Alabasta", "Nanimonai Island", "Jaya", "Long Ring Long Land", "Water 7", "Enies Lobby", "San Faldo", "Pucci", "St. Poplar", "Florian Triangle", "Sabaody Archipelago", "Marineford", "Vira", "Banaro Island", "Yuki's Island", "Buggy's Treasure Island", "G-2", "Karakuri Island", "Mamoiro Island", "Boin Archipelago", "Namakura Island", "Kuraigana Island", "Merveille", "G-1", "Yukiryu Island", "Baltigo", "Wano Country", "Edd War", "Floodvalter", "G-5", "Laftel", "Whole Cake Island", "Cacao Island", "Jam Island", "Nuts Island", "Cheese Island", "Biscuits Island", "Candy Island", "Milk Island", "Punk Hazard", "Raijin Island", "Risky Red Island", "Mystoria Island", "Dressrosa", "Green Bit", "Zou", "Prodence Kingdom", "Applenine Island", "Karai Bari Island", "Broc Coli Island", "Elbaf", "Skypiea", "Weatheria"]
7
7
  locations: ["Foosha Village", "Mt. Colubo", "Gray Terminal", "Midway Forest", "Goa Kingdom", "Orange Town", "Syrup Village", "Shimotsuki Village", "Baratie", "Gosa Village", "Cocoyashi Village", "Arlong Park", "Ryugu Kingdom", "Reverse Mountain", "Twin Cape", "Mariejois", "Whiskey Peak", "Bighorn", "Drum Rockies", "Cocoa Weed", "Gyasta", "Robelie", "Sandora Desert", "Sandora River", "Rainbase", "Yuba", "Erumalu", "Nanohana", "Katorea", "Spiders Cafe", "Alubarna", "Tamarisk", "Suiren", "Mock Town", "Sea Train Area", "Totto Land", "Acacia", "Sebio", "Moon", "Birka", "Angel Island", "Upper Yard", "Shandia Village", "Heaven's Gate", "Clouds End", "Rommel Kingdom", "Eight Nine Island", "High Mountain", "Nakrowa", "Land of Ice", "Great Kingdom"]
8
8
  quotes: ["I love heroes, but I don't want to be one. Do you even know what a hero is!? For example, you have some meat. Pirates will feast on the meat, but the hero will distribute it among the people! I want to eat the meat!", "Don't ever think there's any perfect society made by humans!! If you think that way you'll overlook the enemy!! Don't be fooled by appearances!", "If I can't even protect my captain's dream, then whatever ambition I have is nothing but talk! Luffy must be the man who becomes the Pirate King!", "Old man, everyone!! And you.. Luffy. Even though I've been good for nothing my whole life, even though I have the blood of a demon within me... You guys still loved me! Thank you so much!!", "Compared to the \"righteous\" greed of the rulers, the criminals of the world seem much more honorable. When scum rules the world, only more scum is born.", "Pirates are evil? The Marines are righteous?... Justice will prevail, you say? But of course it will! Whoever wins this war becomes justice!", "When do you think people die? When they are shot through the heart by the bullet of a pistol? No. When they are ravaged by an incurable disease? No... It’s when they're forgotten!", "You can spill drinks on me, even spit on me. I'll just laugh about it. But If you dare to hurt my friends... I won't forgive you!", "The government says your existence is a crime, but no matter what kind of weapons you may hold, just being alive isn't a sin! There's no crime in living!", "ONE PIECE IS REAL!", "It's not some sort of special power. He has the ability to make allies of everyone he meets. And that is the most fearsome ability on the high seas.", "I want to live!", "Maybe nothing in this world happens by accident. As everything happens for a reason, our destiny slowly takes form.", "Food is a gift from god. Spices are a gift from the devil. It looks like it was a bit too spicy for you.", "I don't care now. I wanted to look like a human because I wanted friends. Now I want to be a monster who's helpful to Luffy!", "Miracles only happen to those who never give up.", "Stop counting only those things you have lost! What is gone, is gone! So ask yourself this. What is there... that still remains to you?!", "If you want to protect something, do it right! Don't let them get their way anymore!", "The royalty and nobles are behind the fire... Believe me... This town smells worse than Gray Terminal. It smells like rotten people! If I stay here... I'll never be free! I'm... ashamed to be born a noble!", "There comes a time when a man has to stand and fight! That time is when his friends' dreams are being laughed at! And I won't let you laugh at that!", "To true friendship, how long you've known each other means nothing.", "When the world shoves you around, you just gotta stand up and shove back. It's not like somebody's gonna save you if you start babbling excuses.", "People's dreams... Never end!", "If you kill yourself, I'll kill you!", "I don't wanna live a thousand years. If I just live through today, that'll be enough."]
9
- akumas_no_mi: ["Gomu Gomu no Mi", "Hana Hana no Mi", "Doru Doru no Mi", "Baku Baku no Mi", "Mane Mane no Mi", "Supa Supa no Mi", "Ori Ori no Mi", "Bane Bane no Mi", "Noro Noro no Mi", "Doa Doa no Mi", "Awa Awa no Mi", "Beri Beri no Mi", "Sabi Sabi no Mi", "Shari Shari no Mi", "Yomi Yomi no Mi", "Kage Kage no Mi", "Horo Horo no Mi", "Suke Suke no Mi", "Nikyu Nikyu no Mi", "Mero Mero no Mi", "Doku Doku no Mi", "Horu Horu no Mi", "Choki Choki no Mi", "Gura Gura no Mi", "Fuwa Fuwa no Mi", "Woshu Woshu no Mi", "Mato Mato no Mi", "Ope Ope no Mi", "Buki Buki no Mi", "Bari Bari no Mi", "Nui Nui no Mi", "Giro Giro no Mi", "Ato Ato no Mi", "Jake Jake no Mi", "Pamu Pamu no Mi", "Sui Sui no Mi", "Hira Hira no Mi", "Ishi Ishi no Mi", "Nagi Nagi no Mi", "Ito Ito no Mi", "Shiro Shiro no Mi", "Chiyu Chiyu no Mi", "Ushi Ushi no Mi", "Hito Hito no Mi", "Tori Tori no Mi", "Inu Inu no Mi", "Neko Neko no Mi", "Zou Zou no Mi", "Hebi Hebi no Mi", "Sara Sara no Mi", "Mushi Mushi no Mi", "Batto Batto no Mi", "Mogu Mogu no Mi", "Uma Uma no Mi", "Kame Kame no Mi", "Moku Moku no Mi", "Mera Mera no Mi", "Suna Suna no Mi", "Goro Goro no Mi", "Hie Hie no Mi", "Pika Pika no Mi", "Magu Magu no Mi", "Numa Numa no Mi", "Gasu Gasu no Mi", "Yuki Yuki no Mi"]
9
+ akuma_no_mi: ["Gomu Gomu no Mi", "Hana Hana no Mi", "Doru Doru no Mi", "Baku Baku no Mi", "Mane Mane no Mi", "Supa Supa no Mi", "Ori Ori no Mi", "Bane Bane no Mi", "Noro Noro no Mi", "Doa Doa no Mi", "Awa Awa no Mi", "Beri Beri no Mi", "Sabi Sabi no Mi", "Shari Shari no Mi", "Yomi Yomi no Mi", "Kage Kage no Mi", "Horo Horo no Mi", "Suke Suke no Mi", "Nikyu Nikyu no Mi", "Mero Mero no Mi", "Doku Doku no Mi", "Horu Horu no Mi", "Choki Choki no Mi", "Gura Gura no Mi", "Fuwa Fuwa no Mi", "Woshu Woshu no Mi", "Mato Mato no Mi", "Ope Ope no Mi", "Buki Buki no Mi", "Bari Bari no Mi", "Nui Nui no Mi", "Giro Giro no Mi", "Ato Ato no Mi", "Jake Jake no Mi", "Pamu Pamu no Mi", "Sui Sui no Mi", "Hira Hira no Mi", "Ishi Ishi no Mi", "Nagi Nagi no Mi", "Ito Ito no Mi", "Shiro Shiro no Mi", "Chiyu Chiyu no Mi", "Ushi Ushi no Mi", "Hito Hito no Mi", "Tori Tori no Mi", "Inu Inu no Mi", "Neko Neko no Mi", "Zou Zou no Mi", "Hebi Hebi no Mi", "Sara Sara no Mi", "Mushi Mushi no Mi", "Batto Batto no Mi", "Mogu Mogu no Mi", "Uma Uma no Mi", "Kame Kame no Mi", "Moku Moku no Mi", "Mera Mera no Mi", "Suna Suna no Mi", "Goro Goro no Mi", "Hie Hie no Mi", "Pika Pika no Mi", "Magu Magu no Mi", "Numa Numa no Mi", "Gasu Gasu no Mi", "Yuki Yuki no Mi"]
@@ -0,0 +1,121 @@
1
+ en:
2
+ faker:
3
+ sport:
4
+ summer_olympics: # Source https://olympics.com/en/sports/summer-olympics
5
+ - 3x3 basketball
6
+ - Archery
7
+ - Artistic gymnastics
8
+ - Artistic swimming
9
+ - Athletics
10
+ - Badminton
11
+ - Baseball # Technically part of "Baseball Softball" according to IOC website
12
+ - Basketball
13
+ - Beach volleyball
14
+ - BMX freestyle
15
+ - BMX racing
16
+ - Boxing
17
+ - Canoe/kayak flatwater
18
+ - Canoe/kayak slalom
19
+ - Diving
20
+ - Equestrian
21
+ - Fencing
22
+ - Football
23
+ - Golf
24
+ - Handball
25
+ - Hockey
26
+ - Judo
27
+ - Karate
28
+ - Marathon swimming
29
+ - Modern pentathlon
30
+ - Mountain bike
31
+ - Rhythmic gymnastics
32
+ - Road cycling
33
+ - Rowing
34
+ - Rugby
35
+ - Sailing
36
+ - Shooting
37
+ - Skateboarding
38
+ - Softball # Technically part of "Baseball Softball" according to IOC website
39
+ - Sport climbing
40
+ - Surfing
41
+ - Swimming
42
+ - Table tennis
43
+ - Taekwondo
44
+ - Tennis
45
+ - Track cycling
46
+ - Trampoline
47
+ - Triathlon
48
+ - Volleyball
49
+ - Water polo
50
+ - Weight lifting
51
+ - Wrestling
52
+ winter_olympics: # Source https://olympics.com/en/sports/winter-olympics
53
+ - Alpine skiing
54
+ - Biathlon
55
+ - Bobsleigh
56
+ - Cross-country
57
+ - Curling
58
+ - Figure skating
59
+ - Freestyle skiing
60
+ - Ice hockey
61
+ - Luge
62
+ - Nordic combined
63
+ - Short track speed skating
64
+ - Skeleton
65
+ - Ski jumping
66
+ - Snowboard
67
+ - Speed skating
68
+ summer_paralympics: # Source https://www.paralympic.org/sports
69
+ - Archery
70
+ - Athletics
71
+ - Badminton
72
+ - Boccia
73
+ - Canoe
74
+ - Cycling
75
+ - Equestrian
76
+ - Football (5-a-side)
77
+ - Goalball
78
+ - Judo
79
+ - Powerlifting
80
+ - Rowing
81
+ - Shooting
82
+ - Sitting volleyball
83
+ - Swimming
84
+ - Table tennis
85
+ - Taekwondo
86
+ - Triathlon
87
+ - Wheelchair basketball
88
+ - Wheelchair fencing
89
+ - Wheelchair rugby
90
+ - Wheelchair tennis
91
+ winter_paralympics: # Source https://www.paralympic.org/sports
92
+ - Alpine skiing
93
+ - Biathlon
94
+ - Cross-country skiing
95
+ - Para ice hockey
96
+ - Snowboard
97
+ - Wheelchair curling
98
+ ancient_olympics: # Source https://olympics.com/ioc/ancient-olympic-games/the-sports-events
99
+ - Boxing
100
+ - Chariot racing
101
+ - Discus
102
+ - Horse racing
103
+ - Long jump
104
+ - Pankration
105
+ - Pentathlon
106
+ - Running
107
+ - Wrestling
108
+ unusual:
109
+ - Apple Racing
110
+ - Ban'ei
111
+ - Bathtubbing
112
+ - Bed racing
113
+ - Botaoshi
114
+ - Beer Can Regatta
115
+ - Black pudding throwing
116
+ - Bog snorkelling
117
+ - Bottle kicking
118
+ - Camel jumping
119
+ - Camel wrestling
120
+ - Flugtag/Birdman
121
+ - Kastenlauf (Beer crate running)