class Faker::Games::FinalFantasyXIV

Public Class Methods

character() click to toggle source

Produces the name of a character from FFXIV.

@return [String]

@example

Faker::Games::FinalFantasyXIV.character #=> "Y'shtola Rhul"

@faker.version next

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

Produces a data center from Final Fantasy XIV.

@return [String]

@example

Faker::Games::FinalFantasyXIV.data_center #=> "Aether"

@faker.version next

# File lib/faker/games/final_fantasy_xiv.rb, line 54
def data_center
  fetch('games.final_fantasy_xiv.data_centers')
end
job() click to toggle source

Produces a job name from Final Fantasy XIV. Either a battle or non-battle playable job.

@return [String]

@example

Faker::Games::FinalFantasyXIV.job #=> "Paladin"

@faker.version next

# File lib/faker/games/final_fantasy_xiv.rb, line 29
def job
  fetch('games.final_fantasy_xiv.jobs')
end
race() click to toggle source

Produces the name of a playable race from Final Fantasy XIV.

@return [String]

@example

Faker::Games::FinalFantasyXIV.race #=> "Miqo'te"

@faker.version next

# File lib/faker/games/final_fantasy_xiv.rb, line 41
def race
  fetch('games.final_fantasy_xiv.races')
end
zone() click to toggle source

Produces a geographical zone from Final Fantasy XIV.

@return [String]

@example

Faker::Games::FinalFantasyXIV.zone #=> "Eastern La Noscea"

@faker.version next

# File lib/faker/games/final_fantasy_xiv.rb, line 67
def zone
  fetch('games.final_fantasy_xiv.zones')
end