class Faker::Games::Tarkov

Public Class Methods

boss() click to toggle source

Produces a random boss from Escape from Tarkov.

@return [String]

@example

Faker::Games::Tarkov.boss #=> "Tagilla"

@faker.version next

# File lib/faker/games/tarkov.rb, line 68
def boss
  fetch('tarkov.bosses')
end
faction() click to toggle source

Produces a random faction from Escape from Tarkov.

@return [String]

@example

Faker::Games::Tarkov.faction #=> "USEC"

@faker.version next

# File lib/faker/games/tarkov.rb, line 81
def faction
  fetch('tarkov.factions')
end
fence_quest() click to toggle source

Produces a random quest from Fence from Escape from Tarkov.

@return [String]

@example

Faker::Games::Tarkov.fence_quest #=> "Compensation for Damage - Wager"

@faker.version next

# File lib/faker/games/tarkov.rb, line 199
def fence_quest
  fetch('tarkov.quests.fence')
end
item() click to toggle source

Produces a random item from Escape from Tarkov.

@return [String]

@example

Faker::Games::Tarkov.item #=> "Diary"

@faker.version next

# File lib/faker/games/tarkov.rb, line 42
def item
  fetch('tarkov.items')
end
jaeger_quest() click to toggle source

Produces a random quest from Jaeger from Escape from Tarkov.

@return [String]

@example

Faker::Games::Tarkov.jaeger_quest #=> "The Tarkov Shooter - Part 1"

@faker.version next

# File lib/faker/games/tarkov.rb, line 186
def jaeger_quest
  fetch('tarkov.quests.jaeger')
end
location() click to toggle source

Produces a random location from Escape from Tarkov.

@return [String]

@example

Faker::Games::Tarkov.location #=> "Customs"

@faker.version next

# File lib/faker/games/tarkov.rb, line 16
def location
  fetch('tarkov.locations')
end
mechanic_quest() click to toggle source

Produces a random quest from Mechanic from Escape from Tarkov.

@return [String]

@example

Faker::Games::Tarkov.mechanic_quest #=> "Signal - Part 4"

@faker.version next

# File lib/faker/games/tarkov.rb, line 160
def mechanic_quest
  fetch('tarkov.quests.mechanic')
end
peacekeeper_quest() click to toggle source

Produces a random quest from Peacekeeper from Escape from Tarkov.

@return [String]

@example

Faker::Games::Tarkov.peacekeeper_quest #=> "Overpopulation"

@faker.version next

# File lib/faker/games/tarkov.rb, line 147
def peacekeeper_quest
  fetch('tarkov.quests.peacekeeper')
end
prapor_quest() click to toggle source

Produces a random quest from Prapor from Escape from Tarkov.

@return [String]

@example

Faker::Games::Tarkov.prapor_quest #=> "Easy Job - Part 2

@faker.version next

# File lib/faker/games/tarkov.rb, line 108
def prapor_quest
  fetch('tarkov.quests.prapor')
end
quest() click to toggle source

Produces a random quest from a random trader from Escape from Tarkov.

@return [String]

@example

Faker::Games::Tarkov.quest #=> "The Key to Success"

@faker.version next

# File lib/faker/games/tarkov.rb, line 94
def quest
  @traders = %w[prapor therapist skier peacekeeper mechanic ragman jaeger fence]
  fetch("tarkov.quests.#{@traders.sample}")
end
ragman_quest() click to toggle source

Produces a random quest from Ragman from Escape from Tarkov.

@return [String]

@example

Faker::Games::Tarkov.ragman_quest #=> "Hot Delivery"

@faker.version next

# File lib/faker/games/tarkov.rb, line 173
def ragman_quest
  fetch('tarkov.quests.ragman')
end
skier_quest() click to toggle source

Produces a random quest from Skier from Escape from Tarkov.

@return [String]

@example

Faker::Games::Tarkov.skier_quest #=> "Safe Corridor"

@faker.version next

# File lib/faker/games/tarkov.rb, line 134
def skier_quest
  fetch('tarkov.quests.skier')
end
therapist_quest() click to toggle source

Produces a random quest from Therapist from Escape from Tarkov.

@return [String]

@example

Faker::Games::Tarkov.therapist_quest #=> "Supply Plans"

@faker.version next

# File lib/faker/games/tarkov.rb, line 121
def therapist_quest
  fetch('tarkov.quests.therapist')
end
trader() click to toggle source

Produces a random trader from Escape from Tarkov.

@return [String]

@example

Faker::Games::Tarkov.trader #=> "Prapor"

@faker.version next

# File lib/faker/games/tarkov.rb, line 29
def trader
  fetch('tarkov.traders')
end
weapon() click to toggle source

Produces a random weapon from Escape from Tarkov.

@return [String]

@example

Faker::Games::Tarkov.weapon #=> "AK-74N"

@faker.version next

# File lib/faker/games/tarkov.rb, line 55
def weapon
  fetch('tarkov.weapons')
end