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