mtg-decks-downloader

Tool to download Magic: The Gathering decklists from the Internet
git clone https://kevincorvisier.fr/git/mtg-decks-downloader.git
Log | Files | Refs | README

application.properties (1159B)


      1 cache.database=/home/kebi/Documents/mtg/cache.db
      2 
      3 ignore.players=Moreau,\u30E2\u30ED\u30FC
      4 replace-archetypes=Mono Red[MiddleSchool]|Burn,Sligh|Burn,Other|Rogue,Goblin[Middle School]|Goblins
      5 
      6 #
      7 # Default values
      8 #
      9 
     10 # Maximum number of decklists to download per archetype, once reached for an archetype, any decklist of this archetype will be ignored
     11 archetype-limit=${limit}
     12 
     13 # Comma-separated list of banlist files. Any deck containing one of the cards in the banlists will be ignored
     14 banlists=error-prone-cards.txt
     15 
     16 # Maximum number of decklist to download, once reached the current configuration will end, the program will move to the next one or stop
     17 limit=100
     18 
     19 # When true, only decks containing only AI playable cards will be saved, the other will be ignored
     20 only-ai-playable-cards=true
     21 
     22 # Minimum number of players for a tournament from TCDecks to be taken into account, tournament with less players will be ignored
     23 tcdecks.tournament.players.min=0
     24 
     25 # When enabled, a card pool is created containing cards from all decks that have been considered for inclusion
     26 card-pool.enabled=false
     27 # Name of the file to save the card pool to
     28 card-pool.output-file=
     29