🎉 Initialize module repository

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

44
__manifest__.py Normal file
View File

@@ -0,0 +1,44 @@
{
"name": "MVD TCG Deck",
"summary": "Game-neutral deckbuilding, deck lines, and printable reports",
"version": "19.0.10.3.1",
"description": """
Game-neutral deckbuilding layer for the MVD TCG suite.
This module provides the shared deckbuilding primitives used across supported
games:
- decks, boards, deck lines, and reusable deck roles
- add-to-deck flows and text import/export
- generic board and line management
- printable deck reports
- backend image zoom support for deck line card thumbnails
Game-specific rules, analytics, and presentation are added by adapter modules
such as the MTG deck extension.
""",
"category": "Tools",
"author": "Mantjeverse Digital",
"license": "LGPL-3",
"depends": ["mvd_tcg_base", "web"],
"assets": {
"web.assets_backend": [
"mvd_tcg_deck/static/src/js/mvd_deck_zoom_image_field.js",
"mvd_tcg_deck/static/src/xml/mvd_deck_zoom_image_field.xml",
],
},
"data": [
"security/ir.model.access.csv",
"security/mvd_tcg_deck_security.xml",
"data/mvd_tcg_deck_role_data.xml",
"data/mvd_tcg_deck_role_sync.xml",
"views/mvd_tcg_deck_views.xml",
"views/mvd_tcg_add_to_deck_views.xml",
"views/mvd_tcg_deck_text_transfer_views.xml",
"views/mvd_tcg_card_views.xml",
"views/menu_views.xml",
"report/mvd_tcg_deck_report_templates.xml",
"report/mvd_tcg_deck_report_actions.xml",
],
"application": False,
"installable": True,
}