class Faker::Games::StreetFighter

Public Class Methods

character() click to toggle source

Produces the name of a playable character from Street Fighter.

@return [String]

@example

Faker::Games::StreetFighter.character #=> "Ryu"

@faker.version 2.14.0

# File lib/faker/games/street_fighter.rb, line 16
def character
  fetch('games.street_fighter.characters')
end
move() click to toggle source

Produces the name of a move from Street Fighter.

@return [String]

@example

Faker::Games::StreetFighter.move #=> "Shoryuken"

@faker.version 2.14.0

# File lib/faker/games/street_fighter.rb, line 55
def move
  fetch('games.street_fighter.moves')
end
quote() click to toggle source

Produces a quote from Street Fighter.

@return [String]

@example

Faker::Games::StreetFighter.quote #=> "Go home and be a family man."

@faker.version 2.14.0

# File lib/faker/games/street_fighter.rb, line 42
def quote
  fetch('games.street_fighter.quotes')
end
stage() click to toggle source

Produces the name of a stage from Street Fighter.

@return [String]

@example

Faker::Games::StreetFighter.stage #=> "Volcanic Rim"

@faker.version 2.14.0

# File lib/faker/games/street_fighter.rb, line 29
def stage
  fetch('games.street_fighter.stages')
end