class Faker::Games::Control

Public Class Methods

altered_item() click to toggle source

Produces the name of an Altered Item

@return [String]

@example

Faker::Games::Control.altered_item #=> "Rubber Duck"

@faker.version 2.13.0

# File lib/faker/games/control.rb, line 55
def altered_item
  fetch('games.control.altered_item')
end
altered_world_event() click to toggle source

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

# File lib/faker/games/control.rb, line 68
def altered_world_event
  fetch('games.control.altered_world_event')
end
character() click to toggle source

Produces the name of a character from Control.

@return [String]

@example

Faker::Games::Control.character #=> "Jesse Faden"

@faker.version 2.13.0

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

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

# File lib/faker/games/control.rb, line 81
def hiss
  fetch('games.control.hiss')
end
location() click to toggle source

Produces the name of a location from Control.

@return [String]

@example

Faker::Games::Control.location #=> "Dimensional Research"

@faker.version 2.13.0

# File lib/faker/games/control.rb, line 29
def location
  fetch('games.control.location')
end
object_of_power() click to toggle source

Produces the name of an Object of Power (OoP)

@return [String]

@example

Faker::Games::Control.object_of_power #=> "Hotline"

@faker.version 2.13.0

# File lib/faker/games/control.rb, line 42
def object_of_power
  fetch('games.control.object_of_power')
end
quote() click to toggle source

Produces a quote from Control

@return [String]

@example

Faker::Games::Control.quote #=> "He never liked fridge duty"

@faker.version 2.13.0

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

< 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

# File lib/faker/games/control.rb, line 94
def the_board
  fetch('games.control.the_board')
end