class Faker::Games::Witcher
Public Class Methods
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
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
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