├── .github └── workflows │ └── pyinstaller-action.yaml ├── .gitignore ├── README.md ├── api └── foundryVTT │ ├── FoundryTranslator.py │ ├── examples │ ├── EXAMPLE_FOUNDRY_GRENADE.json │ ├── EXAMPLE_FOUNDRY_GUN.json │ ├── EXAMPLE_FOUNDRY_POTION.json │ ├── EXAMPLE_FOUNDRY_RELIC.json │ └── EXAMPLE_FOUNDRY_SHIELD.json │ └── templates │ ├── fvtt_grenade_template.json │ ├── fvtt_gun_template.json │ ├── fvtt_potion_template.json │ ├── fvtt_relic_template.json │ └── fvtt_shield_template.json ├── app ├── GrenadeTab.py ├── GunTab.py ├── MeleeTab.py ├── PotionTab.py ├── RelicTab.py ├── ShieldTab.py └── tab_utils.py ├── classes ├── Grenade.py ├── GrenadeImage.py ├── Gun.py ├── GunImage.py ├── GunPDF.py ├── MeleeWeapon.py ├── Potion.py ├── PotionImage.py ├── Relic.py ├── RelicImage.py ├── Shield.py ├── ShieldImage.py └── json_reader.py ├── main.py ├── output ├── grenades │ └── EXAMPLE.png ├── guns │ └── EXAMPLE.pdf ├── melees │ └── EXAMPLE.png ├── potions │ └── EXAMPLE.png ├── relics │ └── EXAMPLE.png └── shields │ └── EXAMPLE.png ├── requirements.txt ├── resources ├── CONFIG.json ├── DEFAULT_CONFIG.json ├── GunTemplate.pdf ├── GunTemplateSplitSmall.pdf ├── badass_rank.json ├── chests │ ├── cache.json │ ├── cache_size.json │ ├── dice_chest.json │ └── unassuming_chest.json ├── elements │ ├── elemental_table.json │ └── elemental_type.json ├── enemy_drop.json ├── guns │ ├── guild_table.json │ ├── gun_cost.json │ ├── gun_table.json │ ├── gun_types.json │ ├── gun_types_mccoby.json │ ├── gun_types_robmwj.json │ ├── lexicon.json │ ├── prefix.json │ ├── rarity_table.json │ └── redtext.json ├── images │ ├── LootGeneratorIconBlue.ico │ ├── die_icons │ │ ├── 1d10.png │ │ ├── 1d12.png │ │ ├── 1d20.png │ │ ├── 1d4.png │ │ ├── 1d6.png │ │ ├── 1d8.png │ │ └── PLACEHOLDER.png │ ├── element_icons │ │ ├── CorroShock.png │ │ ├── Corrosion.png │ │ ├── Cryo.png │ │ ├── ExplosivCryo.png │ │ ├── Explosive.png │ │ ├── Incendiary.png │ │ ├── Incendiation.png │ │ ├── PLACEHOLDER.png │ │ ├── Radiation.png │ │ └── Shock.png │ ├── grenade_images │ │ ├── bl2_grenades.json │ │ ├── bl3_grenades.json │ │ └── bltps_grenades.json │ ├── guild_icons │ │ ├── ALAS.png │ │ ├── ASHEN.png │ │ ├── BLACKPOWDER.png │ │ ├── DAHLIA.png │ │ ├── FERIORE.png │ │ ├── HYPERIUS.png │ │ ├── MALEFACTOR.png │ │ ├── PANGOBLIN.png │ │ ├── PLACEHOLDER.png │ │ ├── SKULDUGGER.png │ │ ├── STOKER.png │ │ └── TORGUE.png │ ├── gun_icons │ │ ├── Combat rifle.png │ │ ├── PLACEHOLDER.png │ │ ├── Pistol.png │ │ ├── Rocket launcher.png │ │ ├── SMG.png │ │ ├── Shotgun.png │ │ └── Sniper rifle.png │ ├── gun_images │ │ ├── bl1_guns.json │ │ ├── bl2_guns.json │ │ ├── bl3_guns.json │ │ ├── bltps_guns.json │ │ └── blwl_guns.json │ ├── potion_images │ │ └── bltps_ozkits.json │ ├── rarity_images │ │ ├── common_background.png │ │ ├── epic_background.png │ │ ├── legendary_background.png │ │ ├── rare_background.png │ │ └── uncommon_background.png │ ├── relic_images │ │ ├── bl2_relics.json │ │ ├── bl3_relics.json │ │ ├── bltps_relics.json │ │ └── blw_relics.json │ └── shield_images │ │ ├── bl1_shields.json │ │ ├── bl2_shields.json │ │ ├── bl3_shields.json │ │ ├── bltps_shields.json │ │ └── blwl_shields.json └── misc │ ├── grenades │ ├── grenade.json │ ├── grenade_cost.json │ ├── grenade_guild.json │ └── grenade_lexicon.json │ ├── melees │ ├── guild_table.json │ └── prefix.json │ ├── potions │ ├── potion.json │ └── tina_potion.json │ ├── relics │ ├── relic.json │ ├── relic_class.json │ ├── relic_cost.json │ └── relic_lexicon.json │ └── shields │ ├── shield.json │ ├── shield_cost.json │ ├── shield_guild.json │ └── shield_lexicon.json ├── tests └── test_rng.py └── tools └── scrape_lemon.py /.github/workflows/pyinstaller-action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/.github/workflows/pyinstaller-action.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/README.md -------------------------------------------------------------------------------- /api/foundryVTT/FoundryTranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/api/foundryVTT/FoundryTranslator.py -------------------------------------------------------------------------------- /api/foundryVTT/examples/EXAMPLE_FOUNDRY_GRENADE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/api/foundryVTT/examples/EXAMPLE_FOUNDRY_GRENADE.json -------------------------------------------------------------------------------- /api/foundryVTT/examples/EXAMPLE_FOUNDRY_GUN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/api/foundryVTT/examples/EXAMPLE_FOUNDRY_GUN.json -------------------------------------------------------------------------------- /api/foundryVTT/examples/EXAMPLE_FOUNDRY_POTION.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/api/foundryVTT/examples/EXAMPLE_FOUNDRY_POTION.json -------------------------------------------------------------------------------- /api/foundryVTT/examples/EXAMPLE_FOUNDRY_RELIC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/api/foundryVTT/examples/EXAMPLE_FOUNDRY_RELIC.json -------------------------------------------------------------------------------- /api/foundryVTT/examples/EXAMPLE_FOUNDRY_SHIELD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/api/foundryVTT/examples/EXAMPLE_FOUNDRY_SHIELD.json -------------------------------------------------------------------------------- /api/foundryVTT/templates/fvtt_grenade_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/api/foundryVTT/templates/fvtt_grenade_template.json -------------------------------------------------------------------------------- /api/foundryVTT/templates/fvtt_gun_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/api/foundryVTT/templates/fvtt_gun_template.json -------------------------------------------------------------------------------- /api/foundryVTT/templates/fvtt_potion_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/api/foundryVTT/templates/fvtt_potion_template.json -------------------------------------------------------------------------------- /api/foundryVTT/templates/fvtt_relic_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/api/foundryVTT/templates/fvtt_relic_template.json -------------------------------------------------------------------------------- /api/foundryVTT/templates/fvtt_shield_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/api/foundryVTT/templates/fvtt_shield_template.json -------------------------------------------------------------------------------- /app/GrenadeTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/app/GrenadeTab.py -------------------------------------------------------------------------------- /app/GunTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/app/GunTab.py -------------------------------------------------------------------------------- /app/MeleeTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/app/MeleeTab.py -------------------------------------------------------------------------------- /app/PotionTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/app/PotionTab.py -------------------------------------------------------------------------------- /app/RelicTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/app/RelicTab.py -------------------------------------------------------------------------------- /app/ShieldTab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/app/ShieldTab.py -------------------------------------------------------------------------------- /app/tab_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/app/tab_utils.py -------------------------------------------------------------------------------- /classes/Grenade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/classes/Grenade.py -------------------------------------------------------------------------------- /classes/GrenadeImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/classes/GrenadeImage.py -------------------------------------------------------------------------------- /classes/Gun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/classes/Gun.py -------------------------------------------------------------------------------- /classes/GunImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/classes/GunImage.py -------------------------------------------------------------------------------- /classes/GunPDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/classes/GunPDF.py -------------------------------------------------------------------------------- /classes/MeleeWeapon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/classes/MeleeWeapon.py -------------------------------------------------------------------------------- /classes/Potion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/classes/Potion.py -------------------------------------------------------------------------------- /classes/PotionImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/classes/PotionImage.py -------------------------------------------------------------------------------- /classes/Relic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/classes/Relic.py -------------------------------------------------------------------------------- /classes/RelicImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/classes/RelicImage.py -------------------------------------------------------------------------------- /classes/Shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/classes/Shield.py -------------------------------------------------------------------------------- /classes/ShieldImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/classes/ShieldImage.py -------------------------------------------------------------------------------- /classes/json_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/classes/json_reader.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/main.py -------------------------------------------------------------------------------- /output/grenades/EXAMPLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/output/grenades/EXAMPLE.png -------------------------------------------------------------------------------- /output/guns/EXAMPLE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/output/guns/EXAMPLE.pdf -------------------------------------------------------------------------------- /output/melees/EXAMPLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/output/melees/EXAMPLE.png -------------------------------------------------------------------------------- /output/potions/EXAMPLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/output/potions/EXAMPLE.png -------------------------------------------------------------------------------- /output/relics/EXAMPLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/output/relics/EXAMPLE.png -------------------------------------------------------------------------------- /output/shields/EXAMPLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/output/shields/EXAMPLE.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/CONFIG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/CONFIG.json -------------------------------------------------------------------------------- /resources/DEFAULT_CONFIG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/DEFAULT_CONFIG.json -------------------------------------------------------------------------------- /resources/GunTemplate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/GunTemplate.pdf -------------------------------------------------------------------------------- /resources/GunTemplateSplitSmall.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/GunTemplateSplitSmall.pdf -------------------------------------------------------------------------------- /resources/badass_rank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/badass_rank.json -------------------------------------------------------------------------------- /resources/chests/cache.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/chests/cache_size.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/chests/dice_chest.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/chests/unassuming_chest.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/elements/elemental_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/elements/elemental_table.json -------------------------------------------------------------------------------- /resources/elements/elemental_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/elements/elemental_type.json -------------------------------------------------------------------------------- /resources/enemy_drop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/enemy_drop.json -------------------------------------------------------------------------------- /resources/guns/guild_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/guns/guild_table.json -------------------------------------------------------------------------------- /resources/guns/gun_cost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/guns/gun_cost.json -------------------------------------------------------------------------------- /resources/guns/gun_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/guns/gun_table.json -------------------------------------------------------------------------------- /resources/guns/gun_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/guns/gun_types.json -------------------------------------------------------------------------------- /resources/guns/gun_types_mccoby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/guns/gun_types_mccoby.json -------------------------------------------------------------------------------- /resources/guns/gun_types_robmwj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/guns/gun_types_robmwj.json -------------------------------------------------------------------------------- /resources/guns/lexicon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/guns/lexicon.json -------------------------------------------------------------------------------- /resources/guns/prefix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/guns/prefix.json -------------------------------------------------------------------------------- /resources/guns/rarity_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/guns/rarity_table.json -------------------------------------------------------------------------------- /resources/guns/redtext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/guns/redtext.json -------------------------------------------------------------------------------- /resources/images/LootGeneratorIconBlue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/LootGeneratorIconBlue.ico -------------------------------------------------------------------------------- /resources/images/die_icons/1d10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/die_icons/1d10.png -------------------------------------------------------------------------------- /resources/images/die_icons/1d12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/die_icons/1d12.png -------------------------------------------------------------------------------- /resources/images/die_icons/1d20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/die_icons/1d20.png -------------------------------------------------------------------------------- /resources/images/die_icons/1d4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/die_icons/1d4.png -------------------------------------------------------------------------------- /resources/images/die_icons/1d6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/die_icons/1d6.png -------------------------------------------------------------------------------- /resources/images/die_icons/1d8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/die_icons/1d8.png -------------------------------------------------------------------------------- /resources/images/die_icons/PLACEHOLDER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/die_icons/PLACEHOLDER.png -------------------------------------------------------------------------------- /resources/images/element_icons/CorroShock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/element_icons/CorroShock.png -------------------------------------------------------------------------------- /resources/images/element_icons/Corrosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/element_icons/Corrosion.png -------------------------------------------------------------------------------- /resources/images/element_icons/Cryo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/element_icons/Cryo.png -------------------------------------------------------------------------------- /resources/images/element_icons/ExplosivCryo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/element_icons/ExplosivCryo.png -------------------------------------------------------------------------------- /resources/images/element_icons/Explosive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/element_icons/Explosive.png -------------------------------------------------------------------------------- /resources/images/element_icons/Incendiary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/element_icons/Incendiary.png -------------------------------------------------------------------------------- /resources/images/element_icons/Incendiation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/element_icons/Incendiation.png -------------------------------------------------------------------------------- /resources/images/element_icons/PLACEHOLDER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/element_icons/PLACEHOLDER.png -------------------------------------------------------------------------------- /resources/images/element_icons/Radiation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/element_icons/Radiation.png -------------------------------------------------------------------------------- /resources/images/element_icons/Shock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/element_icons/Shock.png -------------------------------------------------------------------------------- /resources/images/grenade_images/bl2_grenades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/grenade_images/bl2_grenades.json -------------------------------------------------------------------------------- /resources/images/grenade_images/bl3_grenades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/grenade_images/bl3_grenades.json -------------------------------------------------------------------------------- /resources/images/grenade_images/bltps_grenades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/grenade_images/bltps_grenades.json -------------------------------------------------------------------------------- /resources/images/guild_icons/ALAS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/guild_icons/ALAS.png -------------------------------------------------------------------------------- /resources/images/guild_icons/ASHEN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/guild_icons/ASHEN.png -------------------------------------------------------------------------------- /resources/images/guild_icons/BLACKPOWDER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/guild_icons/BLACKPOWDER.png -------------------------------------------------------------------------------- /resources/images/guild_icons/DAHLIA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/guild_icons/DAHLIA.png -------------------------------------------------------------------------------- /resources/images/guild_icons/FERIORE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/guild_icons/FERIORE.png -------------------------------------------------------------------------------- /resources/images/guild_icons/HYPERIUS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/guild_icons/HYPERIUS.png -------------------------------------------------------------------------------- /resources/images/guild_icons/MALEFACTOR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/guild_icons/MALEFACTOR.png -------------------------------------------------------------------------------- /resources/images/guild_icons/PANGOBLIN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/guild_icons/PANGOBLIN.png -------------------------------------------------------------------------------- /resources/images/guild_icons/PLACEHOLDER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/guild_icons/PLACEHOLDER.png -------------------------------------------------------------------------------- /resources/images/guild_icons/SKULDUGGER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/guild_icons/SKULDUGGER.png -------------------------------------------------------------------------------- /resources/images/guild_icons/STOKER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/guild_icons/STOKER.png -------------------------------------------------------------------------------- /resources/images/guild_icons/TORGUE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/guild_icons/TORGUE.png -------------------------------------------------------------------------------- /resources/images/gun_icons/Combat rifle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/gun_icons/Combat rifle.png -------------------------------------------------------------------------------- /resources/images/gun_icons/PLACEHOLDER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/gun_icons/PLACEHOLDER.png -------------------------------------------------------------------------------- /resources/images/gun_icons/Pistol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/gun_icons/Pistol.png -------------------------------------------------------------------------------- /resources/images/gun_icons/Rocket launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/gun_icons/Rocket launcher.png -------------------------------------------------------------------------------- /resources/images/gun_icons/SMG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/gun_icons/SMG.png -------------------------------------------------------------------------------- /resources/images/gun_icons/Shotgun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/gun_icons/Shotgun.png -------------------------------------------------------------------------------- /resources/images/gun_icons/Sniper rifle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/gun_icons/Sniper rifle.png -------------------------------------------------------------------------------- /resources/images/gun_images/bl1_guns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/gun_images/bl1_guns.json -------------------------------------------------------------------------------- /resources/images/gun_images/bl2_guns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/gun_images/bl2_guns.json -------------------------------------------------------------------------------- /resources/images/gun_images/bl3_guns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/gun_images/bl3_guns.json -------------------------------------------------------------------------------- /resources/images/gun_images/bltps_guns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/gun_images/bltps_guns.json -------------------------------------------------------------------------------- /resources/images/gun_images/blwl_guns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/gun_images/blwl_guns.json -------------------------------------------------------------------------------- /resources/images/potion_images/bltps_ozkits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/potion_images/bltps_ozkits.json -------------------------------------------------------------------------------- /resources/images/rarity_images/common_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/rarity_images/common_background.png -------------------------------------------------------------------------------- /resources/images/rarity_images/epic_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/rarity_images/epic_background.png -------------------------------------------------------------------------------- /resources/images/rarity_images/legendary_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/rarity_images/legendary_background.png -------------------------------------------------------------------------------- /resources/images/rarity_images/rare_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/rarity_images/rare_background.png -------------------------------------------------------------------------------- /resources/images/rarity_images/uncommon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/rarity_images/uncommon_background.png -------------------------------------------------------------------------------- /resources/images/relic_images/bl2_relics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/relic_images/bl2_relics.json -------------------------------------------------------------------------------- /resources/images/relic_images/bl3_relics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/relic_images/bl3_relics.json -------------------------------------------------------------------------------- /resources/images/relic_images/bltps_relics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/relic_images/bltps_relics.json -------------------------------------------------------------------------------- /resources/images/relic_images/blw_relics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/relic_images/blw_relics.json -------------------------------------------------------------------------------- /resources/images/shield_images/bl1_shields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/shield_images/bl1_shields.json -------------------------------------------------------------------------------- /resources/images/shield_images/bl2_shields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/shield_images/bl2_shields.json -------------------------------------------------------------------------------- /resources/images/shield_images/bl3_shields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/shield_images/bl3_shields.json -------------------------------------------------------------------------------- /resources/images/shield_images/bltps_shields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/shield_images/bltps_shields.json -------------------------------------------------------------------------------- /resources/images/shield_images/blwl_shields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/images/shield_images/blwl_shields.json -------------------------------------------------------------------------------- /resources/misc/grenades/grenade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/misc/grenades/grenade.json -------------------------------------------------------------------------------- /resources/misc/grenades/grenade_cost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/misc/grenades/grenade_cost.json -------------------------------------------------------------------------------- /resources/misc/grenades/grenade_guild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/misc/grenades/grenade_guild.json -------------------------------------------------------------------------------- /resources/misc/grenades/grenade_lexicon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/misc/grenades/grenade_lexicon.json -------------------------------------------------------------------------------- /resources/misc/melees/guild_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/misc/melees/guild_table.json -------------------------------------------------------------------------------- /resources/misc/melees/prefix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/misc/melees/prefix.json -------------------------------------------------------------------------------- /resources/misc/potions/potion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/misc/potions/potion.json -------------------------------------------------------------------------------- /resources/misc/potions/tina_potion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/misc/potions/tina_potion.json -------------------------------------------------------------------------------- /resources/misc/relics/relic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/misc/relics/relic.json -------------------------------------------------------------------------------- /resources/misc/relics/relic_class.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/misc/relics/relic_class.json -------------------------------------------------------------------------------- /resources/misc/relics/relic_cost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/misc/relics/relic_cost.json -------------------------------------------------------------------------------- /resources/misc/relics/relic_lexicon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/misc/relics/relic_lexicon.json -------------------------------------------------------------------------------- /resources/misc/shields/shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/misc/shields/shield.json -------------------------------------------------------------------------------- /resources/misc/shields/shield_cost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/misc/shields/shield_cost.json -------------------------------------------------------------------------------- /resources/misc/shields/shield_guild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/misc/shields/shield_guild.json -------------------------------------------------------------------------------- /resources/misc/shields/shield_lexicon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/resources/misc/shields/shield_lexicon.json -------------------------------------------------------------------------------- /tests/test_rng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/tests/test_rng.py -------------------------------------------------------------------------------- /tools/scrape_lemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qu-gg/BnB-LootGenerator/HEAD/tools/scrape_lemon.py --------------------------------------------------------------------------------