diff options
| author | Florian Fischer <florian.fischer@muhq.space> | 2025-04-03 20:27:05 -0300 |
|---|---|---|
| committer | Florian Fischer <florian.fischer@muhq.space> | 2025-08-20 15:57:14 +0200 |
| commit | 22d1842dd1ffdad35c8ebe268330d717effebf08 (patch) | |
| tree | 159dccf5e803807a4a455404a6e23fd8af812463 /scripts | |
| parent | f4105377e9ecf56819c029bf59cda53ab95eaefa (diff) | |
| download | muhqs-game-22d1842dd1ffdad35c8ebe268330d717effebf08.tar.gz muhqs-game-22d1842dd1ffdad35c8ebe268330d717effebf08.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']: |
