dragon-bot/app/cogs/tarkov.py

213 lines
6.1 KiB
Python
Executable File

from datetime import datetime
from discord.ext import commands
import core_utils
import discord
import os
import random
import requests
import tarkov
if os.getenv("DRAGON_ENV") == "prod":
channel_id = 1097567909640929340
else:
channel_id = 932476007439552522
class Tarkov(commands.Cog):
def __init__(self, bot):
self.bot: commands.Bot = bot
tarkov = discord.SlashCommandGroup("tarkov", "Tarkov related commands")
@tarkov.command(
guild_ids=core_utils.my_guilds,
name="traders",
description="Time until trader resets",
)
async def trader_resets(self, ctx: commands.Context):
await ctx.defer()
embed = discord.Embed(
description="-------", color=discord.Color.blue(), type="rich"
)
embed.set_author(name="PVE Trader Reset Times")
embed.set_thumbnail(
url="https://static.wikia.nocookie.net/escapefromtarkov_gamepedia/images/c/cc/NoFleaAugust2024.png/revision/latest/scale-to-width-down/1000?cb=20240813090927"
)
query = """
{
traders(gameMode:pve) {
name
resetTime
}
}
"""
headers = {"Content-Type": "application/json"}
response = tarkov.query_tarkov_api(query)["traders"]
# Loop through the dataset
for entry in response:
trader_name = entry["name"]
if trader_name in ["BTR Driver", "Lightkeeper"]:
break
# Convert to datetime object
reset_time = datetime.fromisoformat(
entry["resetTime"].replace("Z", "+00:00")
)
# Print the name and formatted time until reset
embed.add_field(
name=trader_name,
value=discord.utils.format_dt(reset_time, style="R"),
inline=True,
)
await ctx.send_followup(embed=embed)
@tarkov.command(
guild_ids=core_utils.my_guilds,
name="lottery",
description="Loadout lottery",
)
async def make_loadout(self, ctx: commands.Context):
weapons = tarkov.request_wiki("Weapons", "Weapons")
armors = tarkov.request_wiki("Armor_vests", "Armor vests")
helmet = tarkov.request_wiki("Headwear", "Headwear")
tarkov.request_wiki("Chest_rigs", "Chest rigs")
backpacks = tarkov.request_wiki("Backpacks", "Backpacks")
gun_mods_trader_level = [
"Use it as it comes from a trader",
tarkov.allowed_level_roll(),
]
tarkov.allowed_level_roll()
embed = discord.Embed(
title="🎲🎰 Loadout Lottery 🎰🎲",
description="Your loadout sir",
color=discord.Color.red(),
type="rich",
)
embed.set_thumbnail(url="https://i.ytimg.com/vi/8He5q7qOzNw/maxresdefault.jpg")
embed.add_field(
name="Armor",
inline=False,
value=random.choice(armors),
)
# if "plate carrier" in armors.lower():
# message += f"\nChest rig: {random.choice(chest_rigs)}"
# embed.add_field(
# name="Armor Trader Level",
# inline=False,
# value=armor_trader_level,
# )
embed.add_field(
name="Weapon",
inline=False,
value=random.choice(weapons),
)
embed.add_field(
name="Ammo Trader level",
inline=False,
value=tarkov.allowed_level_roll()
+ ", "
+ f"{str(random.randint(1,5))} magazines",
)
embed.add_field(
name="Gun mods trader level",
inline=False,
value=random.choice(gun_mods_trader_level),
)
embed.add_field(
name="Helmet",
inline=False,
value=random.choice(helmet),
)
embed.add_field(
name="Backpack",
inline=False,
value=random.choice(backpacks),
)
embed.add_field(name="Ears", inline=False, value=tarkov.allowed_level_roll())
embed.add_field(
name="Throwables", inline=False, value=tarkov.allowed_level_roll()
)
embed.add_field(name="Meds", inline=False, value=tarkov.allowed_level_roll())
await ctx.defer()
await ctx.send_followup(embed=embed)
@tarkov.command(
guild_ids=core_utils.my_guilds,
name="bosses",
description="Boss spawn chances per map",
)
async def boss_spawns(self, ctx: commands.Context):
await ctx.defer()
embed = discord.Embed(
description="-------", color=discord.Color.blue(), type="rich"
)
embed.set_author(name="Boss Spawn chances by map")
embed.set_thumbnail(
url="https://cdna.artstation.com/p/assets/covers/images/057/149/064/smaller_square/jakub-mrowczynski-jakub-mrowczynski-tagilla-thumbnail-001.jpg?1670943952"
)
query = """
{
maps(lang: en, gameMode: pve) {
name
bosses{
spawnChance
boss{
id
}
}
}
}
"""
dont_care = [
"pmcBEAR",
"infectedCivil",
"assault",
"infectedLaborant",
"pmcUSEC",
"infectedAssault",
"infectedPmc",
"ExUsec",
]
headers = {"Content-Type": "application/json"}
response = tarkov.query_tarkov_api(query)["maps"]
# Wasteful, but make a new dict to hold the info we care about
levels = {}
for level in response:
levels[level["name"]] = {
boss["boss"]["id"]: boss["spawnChance"]
for boss in level["bosses"]
if boss["boss"]["id"] not in dont_care
}
for key, value in levels.items():
embed.add_field(
name=key,
value="\n".join(f"{k}: `{v}`" for k, v in value.items()),
inline=False,
)
await ctx.send_followup(embed=embed)
def setup(bot):
bot.add_cog(Tarkov(bot))