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-03 20:27:05 -0300 |
| commit | 1301be4d20280ad52c7e40067129cc7284886240 (patch) | |
| tree | 9b8a290b11541387ecf371b780057e3d84921161 /scripts/generate_card.py | |
| parent | 2ee42003433b2faeda4ded1bc6557a6eaf3720ff (diff) | |
| download | muhqs-game-boss.tar.gz muhqs-game-boss.zip | |
introduce new boss typeboss
Diffstat (limited to 'scripts/generate_card.py')
| -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']: |
