File: witcher.rb

package info (click to toggle)
ruby-faker 3.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,360 kB
  • sloc: ruby: 20,654; makefile: 6; sh: 6
file content (126 lines) | stat: -rw-r--r-- 2,892 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# frozen_string_literal: true

module Faker
  class Games
    class Witcher < Base
      class << self
        ##
        # Produces the name of a character from The Witcher.
        #
        # @return [String]
        #
        # @example
        #   Faker::Games::Witcher.character #=> "Triss Merigold"
        #
        # @faker.version 1.8.3
        def character
          fetch('games.witcher.characters')
        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
        def witcher
          fetch('games.witcher.witchers')
        end

        ##
        # Produces the name of a school from The Witcher.
        #
        # @return [String]
        #
        # @example
        #   Faker::Games::Witcher.school #=> "Wolf"
        #
        # @faker.version 1.8.3
        def school
          fetch('games.witcher.schools')
        end

        ##
        # Produces the name of a location from The Witcher.
        #
        # @return [String]
        #
        # @example
        #   Faker::Games::Witcher.location #=> "Novigrad"
        #
        # @faker.version 1.8.3
        def location
          fetch('games.witcher.locations')
        end

        ##
        # Produces a quote from The Witcher.
        #
        # @return [String]
        #
        # @example
        #   Faker::Games::Witcher.quote #=> "No Lollygagin'!"
        #
        # @faker.version 1.8.3
        def quote
          fetch('games.witcher.quotes')
        end

        ##
        # Produces the name of a monster from The Witcher.
        #
        # @return [String]
        #
        # @example
        #   Faker::Games::Witcher.monster #=> "Katakan"
        #
        # @faker.version 1.8.3
        def monster
          fetch('games.witcher.monsters')
        end

        ##
        # Produces the name of a sign from The Witcher.
        #
        # @return [String]
        #
        # @example
        #   Faker::Games::Witcher.sign #=> "Igni"
        #
        # @faker.version 2.18.0
        def sign
          fetch('games.witcher.signs')
        end

        ##
        # Produces the name of a potion from The Witcher.
        #
        # @return [String]
        #
        # @example
        #   Faker::Games::Witcher.potion #=> "Gadwall"
        #
        # @faker.version 2.18.0
        def potion
          fetch('games.witcher.potions')
        end

        ##
        # Produces the name of a book from The Witcher.
        #
        # @return [String]
        #
        # @example
        #   Faker::Games::Witcher.book #=> "Sword of Destiny"
        #
        # @faker.version 2.18.0
        def book
          fetch('games.witcher.books')
        end
      end
    end
  end
end