diff options
| author | Florian Fischer <florian.fischer@muhq.space> | 2025-04-03 20:27:05 -0300 |
|---|---|---|
| committer | Florian Fischer <florian.fischer@muhq.space> | 2025-04-04 09:44:18 -0300 |
| commit | c48445573a586fc8bfce0a0ac52da378a6b34637 (patch) | |
| tree | d0ce4553500f71795ac3c7a8eecf86d2fc9b5418 /scripts | |
| parent | f45fd022288696aad3ccbdd0c5b9d76969eee741 (diff) | |
| download | muhqs-game-c48445573a586fc8bfce0a0ac52da378a6b34637.tar.gz muhqs-game-c48445573a586fc8bfce0a0ac52da378a6b34637.zip | |
introduce new boss type
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/generate_card.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/generate_card.py b/scripts/generate_card.py index 6500a480..ce14d5a4 100755 --- a/scripts/generate_card.py +++ b/scripts/generate_card.py @@ -191,7 +191,7 @@ def generate_latex(card: MutableMapping, language='en'): if 'buy' in card: card_content += f'\\cardbuycost{{{card["buy"]}}}\n' - if card['type'] == 'unit': + if card['type'] == 'unit' or card['type'] == 'boss': unit_stats = [] abilities = [] for key in ['ai', 'health', 'movement', 'attack']: |
