├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ ├── build.yml │ └── jekyll-gh-pages.yml ├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── hellcom.iml ├── inspectionProfiles │ └── Project_Default.xml ├── modules.xml ├── prettier.xml └── vcs.xml ├── .prettierrc.js ├── Dockerfile ├── LICENSE ├── README.md ├── docs ├── _config.yml ├── index.md ├── privacy-policy.md └── terms-of-service.md ├── drizzle.config.ts ├── drizzle ├── 0000_deep_mephistopheles.sql ├── 0001_married_miss_america.sql ├── 0002_mighty_sunset_bain.sql ├── 0003_equal_darwin.sql ├── 0004_calm_medusa.sql ├── 0005_classy_thunderbolt.sql ├── 0006_first_captain_stacy.sql ├── 0007_narrow_dakota_north.sql ├── 0008_solid_slapstick.sql ├── 0009_wonderful_stingray.sql ├── 0010_dark_nova.sql ├── 0011_careless_johnny_blaze.sql └── meta │ ├── 0000_snapshot.json │ ├── 0001_snapshot.json │ ├── 0002_snapshot.json │ ├── 0003_snapshot.json │ ├── 0004_snapshot.json │ ├── 0005_snapshot.json │ ├── 0006_snapshot.json │ ├── 0007_snapshot.json │ ├── 0008_snapshot.json │ ├── 0009_snapshot.json │ ├── 0010_snapshot.json │ ├── 0011_snapshot.json │ └── _journal.json ├── ecosystem.config.js ├── fly.toml ├── fonts └── Monda-Regular.ttf ├── images ├── hd2_sectormap.png ├── hd2_sectormap_2k.png ├── helldiver_bot_logo_alt_transparent.png ├── helldiver_logo_white_ring.png ├── helldiver_logo_white_ring_transparent.png ├── helldiver_logo_yellow_ring.png ├── helldiver_logo_yellow_ring_transparent.png └── hellhelper_bot_logo.png ├── k8s └── deployment.yml ├── nodemon.json ├── package.json ├── scripts ├── filenames.py ├── manual_announcement.ts ├── migrate_db.ts └── strip_db_data.ts ├── src ├── api-wrapper │ ├── api.ts │ ├── assignment.ts │ ├── campaign.ts │ ├── dispatches.ts │ ├── events.ts │ ├── index.ts │ ├── info.ts │ ├── mapping │ │ ├── currency.json │ │ ├── factions.json │ │ ├── index.ts │ │ ├── items.json │ │ ├── planetEvents.json │ │ ├── planets.json │ │ ├── sectors.json │ │ └── sectors.ts │ ├── planets.ts │ ├── players.ts │ ├── seasons.ts │ ├── time.ts │ ├── types.ts │ └── war.ts ├── buttons │ ├── _template.ts │ ├── index.ts │ ├── subscribe.ts │ ├── updates.ts │ └── warbond.ts ├── commands │ ├── _components.ts │ ├── _template.ts │ ├── campaign.ts │ ├── dispatches.ts │ ├── events.ts │ ├── history.ts │ ├── index.ts │ ├── items.ts │ ├── links.ts │ ├── map.ts │ ├── planet.ts │ ├── subscribe.ts │ ├── summary.ts │ ├── superstore.ts │ ├── updates.ts │ ├── warbond.ts │ └── wiki.ts ├── config.ts ├── db │ ├── index.ts │ ├── migrate.ts │ └── schema.ts ├── events │ ├── index.ts │ ├── onInteraction.ts │ ├── onReady.ts │ ├── shutdown.ts │ └── startup.ts ├── handlers │ ├── auth.ts │ ├── canvas.ts │ ├── client.ts │ ├── cron │ │ ├── compareData.ts │ │ ├── dbData.ts │ │ ├── deliverUpdates.ts │ │ └── index.ts │ ├── custom.ts │ ├── dates.ts │ ├── discord │ │ ├── channels.ts │ │ ├── emojis.ts │ │ └── index.ts │ ├── embed.ts │ ├── embeds │ │ ├── components.ts │ │ ├── errors.ts │ │ ├── exports.ts │ │ ├── index.ts │ │ ├── subscribe.ts │ │ └── updates.ts │ ├── graphs.ts │ ├── gzip.ts │ ├── index.ts │ ├── logging.ts │ ├── redis.ts │ ├── update.ts │ └── wiki.ts ├── index.ts ├── interfaces │ ├── command.ts │ └── index.ts ├── select_menus │ ├── channel │ │ ├── _template.ts │ │ └── subscribe.ts │ ├── index.ts │ ├── mention │ │ └── _template.ts │ ├── role │ │ └── _template.ts │ ├── string │ │ └── _template.ts │ └── user │ │ └── _template.ts ├── support.ts └── support_module │ ├── client.ts │ ├── collector.ts │ ├── events │ ├── index.ts │ ├── message.ts │ └── onReady.ts │ └── index.ts ├── tsconfig.json └── wiki ├── automatons ├── berserker.json ├── commissar.json ├── devastator.json ├── dropship.json ├── hulk.json ├── scout_strider.json ├── tank.json └── trooper.json ├── backpacks ├── ballistic_shield_backpack.json ├── guard_dog.json ├── guard_dog_rover.json ├── jump_pack.json ├── shield_generator_pack.json └── supply_pack.json ├── boosters ├── flexible_reinforcement_budget.json ├── hellpod_space_optimisation.json ├── increased_reinforcement_budget.json ├── localisation_confusion.json ├── muscle_enhancement.json ├── stamina_enhancement.json ├── uav_recon_booster.json └── vitality_enhancement.json ├── eagles ├── eagle_110mm_rocket_pods.json ├── eagle_500kg_bomb.json ├── eagle_airstrike.json ├── eagle_cluster_bomb.json ├── eagle_napalm_airstrike.json ├── eagle_smoke_strike.json └── eagle_strafing_run.json ├── emplacements ├── anti_personnel_minefield.json ├── autocannon_sentry.json ├── ems_mortar_sentry.json ├── gatling_sentry.json ├── hmg_emplacement.json ├── incendiary_mines.json ├── machine_gun_sentry.json ├── mortar_sentry.json ├── rocket_sentry.json ├── shield_generator_relay.json └── tesla_tower.json ├── index.json ├── mission_stratagems ├── hellbomb.json ├── reinforce.json ├── resupply.json ├── sos_beacon.json ├── super_earth_flag.json └── upload_data.json ├── objectives ├── activate_e_710_pumps.json ├── activate_terminid_control_system.json ├── blitz_search_and_destroy.json ├── destroy_command_bunkers.json ├── destroy_transmission_network.json ├── eliminate_automaton_hulks.json ├── eliminate_bile_titans.json ├── eliminate_brood_commanders.json ├── eliminate_chargers.json ├── eliminate_devastators.json ├── emergency_evacuation.json ├── eradicate_automaton_forces.json ├── eradicate_terminid_swarm.json ├── launch_icbm.json ├── pump_fuel_to_icbm.json ├── purge_hatcheries.json ├── retrieve_essential_personnel.json ├── retrieve_valuable_data.json ├── sabotage_air_base.json ├── sabotage_supply_bases.json ├── spread_democracy.json ├── terminate_illegal_broadcast.json └── upload_escape_pod_data.json ├── orbitals ├── orbital_120mm_he_barrage.json ├── orbital_380mm_he_barrage.json ├── orbital_airburst_strike.json ├── orbital_ems_strike.json ├── orbital_gas_strike.json ├── orbital_gatling_barrage.json ├── orbital_laser.json ├── orbital_precision_strike.json ├── orbital_railcannon_strike.json ├── orbital_smoke_strike.json └── orbital_walking_barrage.json ├── support_weapons ├── anti_material_rifle.json ├── arc_thrower.json ├── autocannon.json ├── expendable_anti_tank.json ├── flamethrower.json ├── grenade_launcher.json ├── laser_cannon.json ├── machine_gun.json ├── railgun.json ├── recoilless_rifle.json ├── spear.json └── stalwart.json ├── terminids ├── bile_spewer.json ├── bile_titan.json ├── bile_warrior.json ├── brood_commander.json ├── charger.json ├── hunter.json ├── nursing_spewer.json ├── scavenger.json ├── shrieker.json ├── spitter.json ├── stalker.json └── warrior.json └── vehicles └── patriot_exosuit.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/hellcom.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/.idea/hellcom.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/prettier.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/.idea/prettier.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | ...require('gts/.prettierrc.json') 3 | } 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/privacy-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/docs/privacy-policy.md -------------------------------------------------------------------------------- /docs/terms-of-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/docs/terms-of-service.md -------------------------------------------------------------------------------- /drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle.config.ts -------------------------------------------------------------------------------- /drizzle/0000_deep_mephistopheles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/0000_deep_mephistopheles.sql -------------------------------------------------------------------------------- /drizzle/0001_married_miss_america.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/0001_married_miss_america.sql -------------------------------------------------------------------------------- /drizzle/0002_mighty_sunset_bain.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/0002_mighty_sunset_bain.sql -------------------------------------------------------------------------------- /drizzle/0003_equal_darwin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/0003_equal_darwin.sql -------------------------------------------------------------------------------- /drizzle/0004_calm_medusa.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/0004_calm_medusa.sql -------------------------------------------------------------------------------- /drizzle/0005_classy_thunderbolt.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/0005_classy_thunderbolt.sql -------------------------------------------------------------------------------- /drizzle/0006_first_captain_stacy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/0006_first_captain_stacy.sql -------------------------------------------------------------------------------- /drizzle/0007_narrow_dakota_north.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/0007_narrow_dakota_north.sql -------------------------------------------------------------------------------- /drizzle/0008_solid_slapstick.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/0008_solid_slapstick.sql -------------------------------------------------------------------------------- /drizzle/0009_wonderful_stingray.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/0009_wonderful_stingray.sql -------------------------------------------------------------------------------- /drizzle/0010_dark_nova.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/0010_dark_nova.sql -------------------------------------------------------------------------------- /drizzle/0011_careless_johnny_blaze.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "arrowhead_discord_anns" ADD COLUMN "attachment_urls" json; -------------------------------------------------------------------------------- /drizzle/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/meta/0000_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/0001_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/meta/0001_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/0002_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/meta/0002_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/0003_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/meta/0003_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/0004_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/meta/0004_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/0005_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/meta/0005_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/0006_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/meta/0006_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/0007_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/meta/0007_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/0008_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/meta/0008_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/0009_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/meta/0009_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/0010_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/meta/0010_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/0011_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/meta/0011_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/drizzle/meta/_journal.json -------------------------------------------------------------------------------- /ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/ecosystem.config.js -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/fly.toml -------------------------------------------------------------------------------- /fonts/Monda-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/fonts/Monda-Regular.ttf -------------------------------------------------------------------------------- /images/hd2_sectormap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/images/hd2_sectormap.png -------------------------------------------------------------------------------- /images/hd2_sectormap_2k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/images/hd2_sectormap_2k.png -------------------------------------------------------------------------------- /images/helldiver_bot_logo_alt_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/images/helldiver_bot_logo_alt_transparent.png -------------------------------------------------------------------------------- /images/helldiver_logo_white_ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/images/helldiver_logo_white_ring.png -------------------------------------------------------------------------------- /images/helldiver_logo_white_ring_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/images/helldiver_logo_white_ring_transparent.png -------------------------------------------------------------------------------- /images/helldiver_logo_yellow_ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/images/helldiver_logo_yellow_ring.png -------------------------------------------------------------------------------- /images/helldiver_logo_yellow_ring_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/images/helldiver_logo_yellow_ring_transparent.png -------------------------------------------------------------------------------- /images/hellhelper_bot_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/images/hellhelper_bot_logo.png -------------------------------------------------------------------------------- /k8s/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/k8s/deployment.yml -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/package.json -------------------------------------------------------------------------------- /scripts/filenames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/scripts/filenames.py -------------------------------------------------------------------------------- /scripts/manual_announcement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/scripts/manual_announcement.ts -------------------------------------------------------------------------------- /scripts/migrate_db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/scripts/migrate_db.ts -------------------------------------------------------------------------------- /scripts/strip_db_data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/scripts/strip_db_data.ts -------------------------------------------------------------------------------- /src/api-wrapper/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/api-wrapper/api.ts -------------------------------------------------------------------------------- /src/api-wrapper/assignment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/api-wrapper/assignment.ts -------------------------------------------------------------------------------- /src/api-wrapper/campaign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/api-wrapper/campaign.ts -------------------------------------------------------------------------------- /src/api-wrapper/dispatches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/api-wrapper/dispatches.ts -------------------------------------------------------------------------------- /src/api-wrapper/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/api-wrapper/events.ts -------------------------------------------------------------------------------- /src/api-wrapper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/api-wrapper/index.ts -------------------------------------------------------------------------------- /src/api-wrapper/info.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/api-wrapper/mapping/currency.json: -------------------------------------------------------------------------------- 1 | { 2 | "1": "Medals" 3 | } -------------------------------------------------------------------------------- /src/api-wrapper/mapping/factions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/api-wrapper/mapping/factions.json -------------------------------------------------------------------------------- /src/api-wrapper/mapping/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/api-wrapper/mapping/index.ts -------------------------------------------------------------------------------- /src/api-wrapper/mapping/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/api-wrapper/mapping/items.json -------------------------------------------------------------------------------- /src/api-wrapper/mapping/planetEvents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/api-wrapper/mapping/planetEvents.json -------------------------------------------------------------------------------- /src/api-wrapper/mapping/planets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/api-wrapper/mapping/planets.json -------------------------------------------------------------------------------- /src/api-wrapper/mapping/sectors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/api-wrapper/mapping/sectors.json -------------------------------------------------------------------------------- /src/api-wrapper/mapping/sectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/api-wrapper/mapping/sectors.ts -------------------------------------------------------------------------------- /src/api-wrapper/planets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/api-wrapper/planets.ts -------------------------------------------------------------------------------- /src/api-wrapper/players.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/api-wrapper/players.ts -------------------------------------------------------------------------------- /src/api-wrapper/seasons.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/api-wrapper/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/api-wrapper/time.ts -------------------------------------------------------------------------------- /src/api-wrapper/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/api-wrapper/types.ts -------------------------------------------------------------------------------- /src/api-wrapper/war.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/buttons/_template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/buttons/_template.ts -------------------------------------------------------------------------------- /src/buttons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/buttons/index.ts -------------------------------------------------------------------------------- /src/buttons/subscribe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/buttons/subscribe.ts -------------------------------------------------------------------------------- /src/buttons/updates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/buttons/updates.ts -------------------------------------------------------------------------------- /src/buttons/warbond.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/buttons/warbond.ts -------------------------------------------------------------------------------- /src/commands/_components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/commands/_components.ts -------------------------------------------------------------------------------- /src/commands/_template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/commands/_template.ts -------------------------------------------------------------------------------- /src/commands/campaign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/commands/campaign.ts -------------------------------------------------------------------------------- /src/commands/dispatches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/commands/dispatches.ts -------------------------------------------------------------------------------- /src/commands/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/commands/events.ts -------------------------------------------------------------------------------- /src/commands/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/commands/history.ts -------------------------------------------------------------------------------- /src/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/commands/index.ts -------------------------------------------------------------------------------- /src/commands/items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/commands/items.ts -------------------------------------------------------------------------------- /src/commands/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/commands/links.ts -------------------------------------------------------------------------------- /src/commands/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/commands/map.ts -------------------------------------------------------------------------------- /src/commands/planet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/commands/planet.ts -------------------------------------------------------------------------------- /src/commands/subscribe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/commands/subscribe.ts -------------------------------------------------------------------------------- /src/commands/summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/commands/summary.ts -------------------------------------------------------------------------------- /src/commands/superstore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/commands/superstore.ts -------------------------------------------------------------------------------- /src/commands/updates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/commands/updates.ts -------------------------------------------------------------------------------- /src/commands/warbond.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/commands/warbond.ts -------------------------------------------------------------------------------- /src/commands/wiki.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/commands/wiki.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/db/index.ts -------------------------------------------------------------------------------- /src/db/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/db/migrate.ts -------------------------------------------------------------------------------- /src/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/db/schema.ts -------------------------------------------------------------------------------- /src/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/events/index.ts -------------------------------------------------------------------------------- /src/events/onInteraction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/events/onInteraction.ts -------------------------------------------------------------------------------- /src/events/onReady.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/events/onReady.ts -------------------------------------------------------------------------------- /src/events/shutdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/events/shutdown.ts -------------------------------------------------------------------------------- /src/events/startup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/events/startup.ts -------------------------------------------------------------------------------- /src/handlers/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/auth.ts -------------------------------------------------------------------------------- /src/handlers/canvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/canvas.ts -------------------------------------------------------------------------------- /src/handlers/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/client.ts -------------------------------------------------------------------------------- /src/handlers/cron/compareData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/cron/compareData.ts -------------------------------------------------------------------------------- /src/handlers/cron/dbData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/cron/dbData.ts -------------------------------------------------------------------------------- /src/handlers/cron/deliverUpdates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/cron/deliverUpdates.ts -------------------------------------------------------------------------------- /src/handlers/cron/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/cron/index.ts -------------------------------------------------------------------------------- /src/handlers/custom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/custom.ts -------------------------------------------------------------------------------- /src/handlers/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/dates.ts -------------------------------------------------------------------------------- /src/handlers/discord/channels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/discord/channels.ts -------------------------------------------------------------------------------- /src/handlers/discord/emojis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/discord/emojis.ts -------------------------------------------------------------------------------- /src/handlers/discord/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/discord/index.ts -------------------------------------------------------------------------------- /src/handlers/embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/embed.ts -------------------------------------------------------------------------------- /src/handlers/embeds/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/embeds/components.ts -------------------------------------------------------------------------------- /src/handlers/embeds/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/embeds/errors.ts -------------------------------------------------------------------------------- /src/handlers/embeds/exports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/embeds/exports.ts -------------------------------------------------------------------------------- /src/handlers/embeds/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/embeds/index.ts -------------------------------------------------------------------------------- /src/handlers/embeds/subscribe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/embeds/subscribe.ts -------------------------------------------------------------------------------- /src/handlers/embeds/updates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/embeds/updates.ts -------------------------------------------------------------------------------- /src/handlers/graphs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/graphs.ts -------------------------------------------------------------------------------- /src/handlers/gzip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/gzip.ts -------------------------------------------------------------------------------- /src/handlers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/index.ts -------------------------------------------------------------------------------- /src/handlers/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/logging.ts -------------------------------------------------------------------------------- /src/handlers/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/redis.ts -------------------------------------------------------------------------------- /src/handlers/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/update.ts -------------------------------------------------------------------------------- /src/handlers/wiki.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/handlers/wiki.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/interfaces/command.ts -------------------------------------------------------------------------------- /src/interfaces/index.ts: -------------------------------------------------------------------------------- 1 | export * from './command'; 2 | -------------------------------------------------------------------------------- /src/select_menus/channel/_template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/select_menus/channel/_template.ts -------------------------------------------------------------------------------- /src/select_menus/channel/subscribe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/select_menus/channel/subscribe.ts -------------------------------------------------------------------------------- /src/select_menus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/select_menus/index.ts -------------------------------------------------------------------------------- /src/select_menus/mention/_template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/select_menus/mention/_template.ts -------------------------------------------------------------------------------- /src/select_menus/role/_template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/select_menus/role/_template.ts -------------------------------------------------------------------------------- /src/select_menus/string/_template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/select_menus/string/_template.ts -------------------------------------------------------------------------------- /src/select_menus/user/_template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/select_menus/user/_template.ts -------------------------------------------------------------------------------- /src/support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/support.ts -------------------------------------------------------------------------------- /src/support_module/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/support_module/client.ts -------------------------------------------------------------------------------- /src/support_module/collector.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/support_module/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/support_module/events/index.ts -------------------------------------------------------------------------------- /src/support_module/events/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/support_module/events/message.ts -------------------------------------------------------------------------------- /src/support_module/events/onReady.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/support_module/events/onReady.ts -------------------------------------------------------------------------------- /src/support_module/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/src/support_module/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wiki/automatons/berserker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/automatons/berserker.json -------------------------------------------------------------------------------- /wiki/automatons/commissar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/automatons/commissar.json -------------------------------------------------------------------------------- /wiki/automatons/devastator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/automatons/devastator.json -------------------------------------------------------------------------------- /wiki/automatons/dropship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/automatons/dropship.json -------------------------------------------------------------------------------- /wiki/automatons/hulk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/automatons/hulk.json -------------------------------------------------------------------------------- /wiki/automatons/scout_strider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/automatons/scout_strider.json -------------------------------------------------------------------------------- /wiki/automatons/tank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/automatons/tank.json -------------------------------------------------------------------------------- /wiki/automatons/trooper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/automatons/trooper.json -------------------------------------------------------------------------------- /wiki/backpacks/ballistic_shield_backpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/backpacks/ballistic_shield_backpack.json -------------------------------------------------------------------------------- /wiki/backpacks/guard_dog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/backpacks/guard_dog.json -------------------------------------------------------------------------------- /wiki/backpacks/guard_dog_rover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/backpacks/guard_dog_rover.json -------------------------------------------------------------------------------- /wiki/backpacks/jump_pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/backpacks/jump_pack.json -------------------------------------------------------------------------------- /wiki/backpacks/shield_generator_pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/backpacks/shield_generator_pack.json -------------------------------------------------------------------------------- /wiki/backpacks/supply_pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/backpacks/supply_pack.json -------------------------------------------------------------------------------- /wiki/boosters/flexible_reinforcement_budget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/boosters/flexible_reinforcement_budget.json -------------------------------------------------------------------------------- /wiki/boosters/hellpod_space_optimisation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/boosters/hellpod_space_optimisation.json -------------------------------------------------------------------------------- /wiki/boosters/increased_reinforcement_budget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/boosters/increased_reinforcement_budget.json -------------------------------------------------------------------------------- /wiki/boosters/localisation_confusion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/boosters/localisation_confusion.json -------------------------------------------------------------------------------- /wiki/boosters/muscle_enhancement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/boosters/muscle_enhancement.json -------------------------------------------------------------------------------- /wiki/boosters/stamina_enhancement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/boosters/stamina_enhancement.json -------------------------------------------------------------------------------- /wiki/boosters/uav_recon_booster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/boosters/uav_recon_booster.json -------------------------------------------------------------------------------- /wiki/boosters/vitality_enhancement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/boosters/vitality_enhancement.json -------------------------------------------------------------------------------- /wiki/eagles/eagle_110mm_rocket_pods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/eagles/eagle_110mm_rocket_pods.json -------------------------------------------------------------------------------- /wiki/eagles/eagle_500kg_bomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/eagles/eagle_500kg_bomb.json -------------------------------------------------------------------------------- /wiki/eagles/eagle_airstrike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/eagles/eagle_airstrike.json -------------------------------------------------------------------------------- /wiki/eagles/eagle_cluster_bomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/eagles/eagle_cluster_bomb.json -------------------------------------------------------------------------------- /wiki/eagles/eagle_napalm_airstrike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/eagles/eagle_napalm_airstrike.json -------------------------------------------------------------------------------- /wiki/eagles/eagle_smoke_strike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/eagles/eagle_smoke_strike.json -------------------------------------------------------------------------------- /wiki/eagles/eagle_strafing_run.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/eagles/eagle_strafing_run.json -------------------------------------------------------------------------------- /wiki/emplacements/anti_personnel_minefield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/emplacements/anti_personnel_minefield.json -------------------------------------------------------------------------------- /wiki/emplacements/autocannon_sentry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/emplacements/autocannon_sentry.json -------------------------------------------------------------------------------- /wiki/emplacements/ems_mortar_sentry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/emplacements/ems_mortar_sentry.json -------------------------------------------------------------------------------- /wiki/emplacements/gatling_sentry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/emplacements/gatling_sentry.json -------------------------------------------------------------------------------- /wiki/emplacements/hmg_emplacement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/emplacements/hmg_emplacement.json -------------------------------------------------------------------------------- /wiki/emplacements/incendiary_mines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/emplacements/incendiary_mines.json -------------------------------------------------------------------------------- /wiki/emplacements/machine_gun_sentry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/emplacements/machine_gun_sentry.json -------------------------------------------------------------------------------- /wiki/emplacements/mortar_sentry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/emplacements/mortar_sentry.json -------------------------------------------------------------------------------- /wiki/emplacements/rocket_sentry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/emplacements/rocket_sentry.json -------------------------------------------------------------------------------- /wiki/emplacements/shield_generator_relay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/emplacements/shield_generator_relay.json -------------------------------------------------------------------------------- /wiki/emplacements/tesla_tower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/emplacements/tesla_tower.json -------------------------------------------------------------------------------- /wiki/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/index.json -------------------------------------------------------------------------------- /wiki/mission_stratagems/hellbomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/mission_stratagems/hellbomb.json -------------------------------------------------------------------------------- /wiki/mission_stratagems/reinforce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/mission_stratagems/reinforce.json -------------------------------------------------------------------------------- /wiki/mission_stratagems/resupply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/mission_stratagems/resupply.json -------------------------------------------------------------------------------- /wiki/mission_stratagems/sos_beacon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/mission_stratagems/sos_beacon.json -------------------------------------------------------------------------------- /wiki/mission_stratagems/super_earth_flag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/mission_stratagems/super_earth_flag.json -------------------------------------------------------------------------------- /wiki/mission_stratagems/upload_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/mission_stratagems/upload_data.json -------------------------------------------------------------------------------- /wiki/objectives/activate_e_710_pumps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/activate_e_710_pumps.json -------------------------------------------------------------------------------- /wiki/objectives/activate_terminid_control_system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/activate_terminid_control_system.json -------------------------------------------------------------------------------- /wiki/objectives/blitz_search_and_destroy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/blitz_search_and_destroy.json -------------------------------------------------------------------------------- /wiki/objectives/destroy_command_bunkers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/destroy_command_bunkers.json -------------------------------------------------------------------------------- /wiki/objectives/destroy_transmission_network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/destroy_transmission_network.json -------------------------------------------------------------------------------- /wiki/objectives/eliminate_automaton_hulks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/eliminate_automaton_hulks.json -------------------------------------------------------------------------------- /wiki/objectives/eliminate_bile_titans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/eliminate_bile_titans.json -------------------------------------------------------------------------------- /wiki/objectives/eliminate_brood_commanders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/eliminate_brood_commanders.json -------------------------------------------------------------------------------- /wiki/objectives/eliminate_chargers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/eliminate_chargers.json -------------------------------------------------------------------------------- /wiki/objectives/eliminate_devastators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/eliminate_devastators.json -------------------------------------------------------------------------------- /wiki/objectives/emergency_evacuation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/emergency_evacuation.json -------------------------------------------------------------------------------- /wiki/objectives/eradicate_automaton_forces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/eradicate_automaton_forces.json -------------------------------------------------------------------------------- /wiki/objectives/eradicate_terminid_swarm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/eradicate_terminid_swarm.json -------------------------------------------------------------------------------- /wiki/objectives/launch_icbm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/launch_icbm.json -------------------------------------------------------------------------------- /wiki/objectives/pump_fuel_to_icbm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/pump_fuel_to_icbm.json -------------------------------------------------------------------------------- /wiki/objectives/purge_hatcheries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/purge_hatcheries.json -------------------------------------------------------------------------------- /wiki/objectives/retrieve_essential_personnel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/retrieve_essential_personnel.json -------------------------------------------------------------------------------- /wiki/objectives/retrieve_valuable_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/retrieve_valuable_data.json -------------------------------------------------------------------------------- /wiki/objectives/sabotage_air_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/sabotage_air_base.json -------------------------------------------------------------------------------- /wiki/objectives/sabotage_supply_bases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/sabotage_supply_bases.json -------------------------------------------------------------------------------- /wiki/objectives/spread_democracy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/spread_democracy.json -------------------------------------------------------------------------------- /wiki/objectives/terminate_illegal_broadcast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/terminate_illegal_broadcast.json -------------------------------------------------------------------------------- /wiki/objectives/upload_escape_pod_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/objectives/upload_escape_pod_data.json -------------------------------------------------------------------------------- /wiki/orbitals/orbital_120mm_he_barrage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/orbitals/orbital_120mm_he_barrage.json -------------------------------------------------------------------------------- /wiki/orbitals/orbital_380mm_he_barrage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/orbitals/orbital_380mm_he_barrage.json -------------------------------------------------------------------------------- /wiki/orbitals/orbital_airburst_strike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/orbitals/orbital_airburst_strike.json -------------------------------------------------------------------------------- /wiki/orbitals/orbital_ems_strike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/orbitals/orbital_ems_strike.json -------------------------------------------------------------------------------- /wiki/orbitals/orbital_gas_strike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/orbitals/orbital_gas_strike.json -------------------------------------------------------------------------------- /wiki/orbitals/orbital_gatling_barrage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/orbitals/orbital_gatling_barrage.json -------------------------------------------------------------------------------- /wiki/orbitals/orbital_laser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/orbitals/orbital_laser.json -------------------------------------------------------------------------------- /wiki/orbitals/orbital_precision_strike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/orbitals/orbital_precision_strike.json -------------------------------------------------------------------------------- /wiki/orbitals/orbital_railcannon_strike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/orbitals/orbital_railcannon_strike.json -------------------------------------------------------------------------------- /wiki/orbitals/orbital_smoke_strike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/orbitals/orbital_smoke_strike.json -------------------------------------------------------------------------------- /wiki/orbitals/orbital_walking_barrage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/orbitals/orbital_walking_barrage.json -------------------------------------------------------------------------------- /wiki/support_weapons/anti_material_rifle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/support_weapons/anti_material_rifle.json -------------------------------------------------------------------------------- /wiki/support_weapons/arc_thrower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/support_weapons/arc_thrower.json -------------------------------------------------------------------------------- /wiki/support_weapons/autocannon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/support_weapons/autocannon.json -------------------------------------------------------------------------------- /wiki/support_weapons/expendable_anti_tank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/support_weapons/expendable_anti_tank.json -------------------------------------------------------------------------------- /wiki/support_weapons/flamethrower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/support_weapons/flamethrower.json -------------------------------------------------------------------------------- /wiki/support_weapons/grenade_launcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/support_weapons/grenade_launcher.json -------------------------------------------------------------------------------- /wiki/support_weapons/laser_cannon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/support_weapons/laser_cannon.json -------------------------------------------------------------------------------- /wiki/support_weapons/machine_gun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/support_weapons/machine_gun.json -------------------------------------------------------------------------------- /wiki/support_weapons/railgun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/support_weapons/railgun.json -------------------------------------------------------------------------------- /wiki/support_weapons/recoilless_rifle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/support_weapons/recoilless_rifle.json -------------------------------------------------------------------------------- /wiki/support_weapons/spear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/support_weapons/spear.json -------------------------------------------------------------------------------- /wiki/support_weapons/stalwart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/support_weapons/stalwart.json -------------------------------------------------------------------------------- /wiki/terminids/bile_spewer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/terminids/bile_spewer.json -------------------------------------------------------------------------------- /wiki/terminids/bile_titan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/terminids/bile_titan.json -------------------------------------------------------------------------------- /wiki/terminids/bile_warrior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/terminids/bile_warrior.json -------------------------------------------------------------------------------- /wiki/terminids/brood_commander.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/terminids/brood_commander.json -------------------------------------------------------------------------------- /wiki/terminids/charger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/terminids/charger.json -------------------------------------------------------------------------------- /wiki/terminids/hunter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/terminids/hunter.json -------------------------------------------------------------------------------- /wiki/terminids/nursing_spewer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/terminids/nursing_spewer.json -------------------------------------------------------------------------------- /wiki/terminids/scavenger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/terminids/scavenger.json -------------------------------------------------------------------------------- /wiki/terminids/shrieker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/terminids/shrieker.json -------------------------------------------------------------------------------- /wiki/terminids/spitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/terminids/spitter.json -------------------------------------------------------------------------------- /wiki/terminids/stalker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/terminids/stalker.json -------------------------------------------------------------------------------- /wiki/terminids/warrior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/terminids/warrior.json -------------------------------------------------------------------------------- /wiki/vehicles/patriot_exosuit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helldivers-2/discord-bot/HEAD/wiki/vehicles/patriot_exosuit.json --------------------------------------------------------------------------------