Files
mvd_tcg_mtg/__manifest__.py
2026-04-03 23:08:57 +02:00

40 lines
1.4 KiB
Python

{
"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,
}