class Faker::Cosmere

Public Class Methods

allomancer() click to toggle source

Produces a random allomancer.

@return [String]

@example

Faker::Cosmere.allomancer #=> "Coinshot"

@faker.version 1.9.2

# File lib/faker/default/cosmere.rb, line 94
def allomancer
  sample(allomancers)
end
aon() click to toggle source

Produces a random aon.

@return [String]

@example

Faker::Cosmere.aon #=> "Rao"

@faker.version 1.9.2

# File lib/faker/default/cosmere.rb, line 16
def aon
  sample(aons)
end
feruchemist() click to toggle source

Produces a random feruchemist.

@return [String]

@example

Faker::Cosmere.feruchemist #=> "Archivist"

@faker.version 1.9.2

# File lib/faker/default/cosmere.rb, line 107
def feruchemist
  sample(feruchemists)
end
herald() click to toggle source

Produces a random herald.

@return [String]

@example

Faker::Cosmere.herald #=> "Ishar"

@faker.version 1.9.2

# File lib/faker/default/cosmere.rb, line 120
def herald
  sample(heralds)
end
knight_radiant() click to toggle source

Produces a random knight radiant.

@return [String]

@example

Faker::Cosmere.knight_radiant #=> "Truthwatcher"

@faker.version 1.9.2

# File lib/faker/default/cosmere.rb, line 68
def knight_radiant
  sample(knights_radiant)
end
metal() click to toggle source

Produces a random metal.

@return [String]

@example

Faker::Cosmere.metal #=> "Brass"

@faker.version 1.9.2

# File lib/faker/default/cosmere.rb, line 81
def metal
  sample(metals)
end
shard() click to toggle source

Produces a random shard.

@return [String]

@example

Faker::Cosmere.shard #=> "Ambition"

@faker.version 1.9.2

# File lib/faker/default/cosmere.rb, line 42
def shard
  sample(shards)
end
shard_world() click to toggle source

Produces a random shard world.

@return [String]

@example

Faker::Cosmere.shard_world #=> "Yolen"

@faker.version 1.9.2

# File lib/faker/default/cosmere.rb, line 29
def shard_world
  sample(shard_worlds)
end
spren() click to toggle source

Produces a random spren.

@return [String]

@example

Faker::Cosmere.spren #=> "Flamespren"

@faker.version 1.9.2

# File lib/faker/default/cosmere.rb, line 133
def spren
  sample(sprens)
end
surge() click to toggle source

Produces a random surge.

@return [String]

@example

Faker::Cosmere.surge #=> "Progression"

@faker.version 1.9.2

# File lib/faker/default/cosmere.rb, line 55
def surge
  sample(surges)
end