🎉 Initialize module repository

This commit is contained in:
Marc Wempe
2026-04-03 23:08:58 +02:00
commit 685c3296f1
23 changed files with 4022 additions and 0 deletions

34
__manifest__.py Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "MVD TCG MTG Scryfall",
"summary": "Scryfall import and refresh connector for the MTG adapter",
"version": "19.0.8.8.0",
"description": """
Scryfall connector for the Magic: The Gathering adapter.
This module is responsible for synchronizing MTG reference data from Scryfall:
- single-card lookup
- controlled set and batch imports
- refresh runs for cards and sets
- localized translations and localized card images
- import logging and run tracking
The connector enriches MTG reference cards but keeps commerce and deckbuilding
concerns in separate modules.
""",
"category": "Tools",
"author": "Mantjeverse Digital",
"license": "LGPL-3",
"depends": ["mvd_tcg_base", "mvd_tcg_mtg"],
"data": [
"security/ir.model.access.csv",
"views/res_config_settings_views.xml",
"views/mvd_tcg_mtg_card_views.xml",
"views/mvd_tcg_mtg_set_views.xml",
"views/mvd_tcg_mtg_scryfall_import_run_views.xml",
"views/mvd_tcg_mtg_lookup_views.xml",
"views/mvd_tcg_mtg_scryfall_import_views.xml",
"views/menu_views.xml",
],
"application": False,
"installable": True,
}