Faker::Game.franchise # => "Titan Battler"
Faker::Game.ability_measurement # => "Mana"
Generates the singular form of an in-game currency.
Faker::Game.currency # => "Gem"
Faker::Game.hero # => "Knight"
Faker::Game.enemy # => "Ghoul"
Includes the name of a fictitious game creator.
Faker::Game.prefix # => "Ryley Lang's Witch Fighter"
Faker::Game.subtitle # => "Silver Titans"
Generates a full game name, sometimes with a franchise title.
Faker::Game.name # => "Ghoul Killer IV"
Forces a franchise prefix.
Faker::Game.name_with_franchise # => "Aida Bahringer's Insurgent Hunter 4: Iron Tangos"
Generates an RPGesque name for a fictional region.
Faker::Game::Place.name # => "The Snowy Caves"
These are all RPG/fantasy-style.
Faker::Game::Character.name # => "Byrlad Smithearthgrad"
Chance of either a neutral, evil, or good title.
Faker::Game::Character.name_with_title # => "Byrwren Tyrwindearthborn, the Guard of Winterrealm"
Selects one of the following achievement names at random.
Faker::Game::Achievement.name # => "Gather 170 Orbs"
Faker::Game::Achievement.assassination # => "Kill The Dark Wrencher Of Beasts"
Faker::Game::Achievement.earn # => "Find 1070 Gems"
Faker::Game::Achievement.discover # => "Discover The Icy South"
Faker::Game::Achievement.kill_enemies # => "Kill 240 Insurgents"
Poke around the source for all sorts of helpers for generating these.
Faker::Game::CharacterTitle.good # => "the light-bringer"
Faker::Game::CharacterTitle.evil # => "horrible flesh mutilator"
Faker::Game::CharacterTitle.neutral # => "hunter of hinterland"
Bug reports and pull requests are welcome on GitHub at https://github.com/chrisb/faker-game.