🎉 Initialize module repository

This commit is contained in:
Marc Wempe
2026-04-03 23:08:57 +02:00
commit bf9156b973
190 changed files with 4090 additions and 0 deletions

39
__manifest__.py Normal file
View File

@@ -0,0 +1,39 @@
{
"name": "MVD TCG MTG",
"summary": "Magic: The Gathering reference adapter for the MVD TCG suite",
"version": "19.0.9.5.1",
"description": """
Magic: The Gathering adapter built on top of MVD TCG Base.
This module adds MTG-specific reference data and presentation:
- sets, colors, rarities, finishes, formats, card types, and keywords
- MTG card fields such as mana cost, oracle text, collector number, and faces
- MTG-focused search, views, and symbol rendering in the Odoo backend
It does not import data on its own. External sources such as Scryfall are
handled by dedicated connector modules.
""",
"category": "Tools",
"author": "Mantjeverse Digital",
"license": "LGPL-3",
"depends": ["mvd_tcg_base", "web"],
"data": [
"security/ir.model.access.csv",
"data/mvd_tcg_game_data.xml",
"data/mvd_tcg_mtg_taxonomy_data.xml",
"views/mvd_tcg_mtg_set_views.xml",
"views/mvd_tcg_mtg_taxonomy_views.xml",
"views/mvd_tcg_mtg_card_views.xml",
"views/menu_views.xml",
],
"assets": {
"web.assets_backend": [
"mvd_tcg_mtg/static/src/js/fields/mtg_symbol_catalog.js",
"mvd_tcg_mtg/static/src/js/fields/mtg_symbols_field.js",
"mvd_tcg_mtg/static/src/xml/mtg_symbols_field.xml",
"mvd_tcg_mtg/static/src/scss/mtg_symbols_field.scss",
],
},
"application": False,
"installable": True,
}