module FFaker::Game

def title

def title
  case rand(0..1)
  when 0 then simple_title
  when 1 then title_with_prefix
  end
end