class Faker::Games::SuperSmashBros

Public Class Methods

fighter() click to toggle source

Produces the name of a fighter from the Smash Bros games.

@return [String]

@example

Faker::Games::SuperSmashBros.fighter #=> "Mario"

@faker.version 1.9.2

# File lib/faker/games/super_smash_bros.rb, line 16
def fighter
  fetch('games.super_smash_bros.fighter')
end
stage() click to toggle source

Produces the name of a stage from the Smash Bros games.

@return [String]

@example

Faker::Games::SuperSmashBros.stage #=> "Final Destination"

@faker.version 1.9.2

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