class Faker::Games::Witcher

Public Class Methods

book() click to toggle source

Produces the name of a book from The Witcher.

@return [String]

@example

Faker::Games::Witcher.book #=> "Sword of Destiny"

@faker.version 2.18.0

# File lib/faker/games/witcher.rb, line 120
def book
  fetch('games.witcher.books')
end
character() click to toggle source

Produces the name of a character from The Witcher.

@return [String]

@example

Faker::Games::Witcher.character #=> "Triss Merigold"

@faker.version 1.8.3

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

Produces the name of a location from The Witcher.

@return [String]

@example

Faker::Games::Witcher.location #=> "Novigrad"

@faker.version 1.8.3

# File lib/faker/games/witcher.rb, line 55
def location
  fetch('games.witcher.locations')
end
monster() click to toggle source

Produces the name of a monster from The Witcher.

@return [String]

@example

Faker::Games::Witcher.monster #=> "Katakan"

@faker.version 1.8.3

# File lib/faker/games/witcher.rb, line 81
def monster
  fetch('games.witcher.monsters')
end
potion() click to toggle source

Produces the name of a potion from The Witcher.

@return [String]

@example

Faker::Games::Witcher.potion #=> "Gadwall"

@faker.version 2.18.0

# File lib/faker/games/witcher.rb, line 107
def potion
  fetch('games.witcher.potions')
end
quote() click to toggle source

Produces a quote from The Witcher.

@return [String]

@example

Faker::Games::Witcher.quote #=> "No Lollygagin'!"

@faker.version 1.8.3

# File lib/faker/games/witcher.rb, line 68
def quote
  fetch('games.witcher.quotes')
end
school() click to toggle source

Produces the name of a school from The Witcher.

@return [String]

@example

Faker::Games::Witcher.school #=> "Wolf"

@faker.version 1.8.3

# File lib/faker/games/witcher.rb, line 42
def school
  fetch('games.witcher.schools')
end
sign() click to toggle source

Produces the name of a sign from The Witcher.

@return [String]

@example

Faker::Games::Witcher.sign #=> "Igni"

@faker.version 2.18.0

# File lib/faker/games/witcher.rb, line 94
def sign
  fetch('games.witcher.signs')
end
witcher() click to toggle source

Produces the name of a witcher from The Witcher.

@return [String]

@example

Faker::Games::Witcher.witcher #=> "Geralt of Rivia"

@faker.version 1.8.3

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