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
|
# frozen_string_literal: true
module Faker
class Games
class Control < Base
class << self
##
# Produces the name of a character from Control.
#
# @return [String]
#
# @example
# Faker::Games::Control.character #=> "Jesse Faden"
#
# @faker.version 2.13.0
def character
fetch('games.control.character')
end
##
# Produces the name of a location from Control.
#
# @return [String]
#
# @example
# Faker::Games::Control.location #=> "Dimensional Research"
#
# @faker.version 2.13.0
def location
fetch('games.control.location')
end
##
# Produces the name of an Object of Power (OoP)
#
# @return [String]
#
# @example
# Faker::Games::Control.object_of_power #=> "Hotline"
#
# @faker.version 2.13.0
def object_of_power
fetch('games.control.object_of_power')
end
##
# Produces the name of an Altered Item
#
# @return [String]
#
# @example
# Faker::Games::Control.altered_item #=> "Rubber Duck"
#
# @faker.version 2.13.0
def altered_item
fetch('games.control.altered_item')
end
##
# Produces the location of an Altered World Event (AWE)
#
# @return [String]
#
# @example
# Faker::Games::Control.altered_world_event #=> "Ordinary, Wisconsin"
#
# @faker.version 2.13.0
def altered_world_event
fetch('games.control.altered_world_event')
end
##
# Produces a line from the Hiss incantation
#
# @return [String]
#
# @example
# Faker::Games::Control.hiss #=> "Push the fingers through the surface into the wet."
#
# @faker.version 2.13.0
def hiss
fetch('games.control.hiss')
end
##
# < Produces a line/quote/message from The Board >
#
# @return [String]
#
# @example
# Faker::Games::Control.the_board #=> "< You/We wield the Gun/You. The Board appoints you. Congratulations, Director. >"
#
# @faker.version 2.13.0
def the_board
fetch('games.control.the_board')
end
##
# Produces a quote from Control
#
# @return [String]
#
# @example
# Faker::Games::Control.quote #=> "He never liked fridge duty"
#
# @faker.version 2.13.0
def quote
fetch('games.control.quote')
end
end
end
end
end
|