aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fischer@muhq.space>2025-04-03 20:27:05 -0300
committerFlorian Fischer <florian.fischer@muhq.space>2025-08-20 15:57:14 +0200
commit22d1842dd1ffdad35c8ebe268330d717effebf08 (patch)
tree159dccf5e803807a4a455404a6e23fd8af812463 /scripts
parentf4105377e9ecf56819c029bf59cda53ab95eaefa (diff)
downloadmuhqs-game-22d1842dd1ffdad35c8ebe268330d717effebf08.tar.gz
muhqs-game-22d1842dd1ffdad35c8ebe268330d717effebf08.zip
introduce new boss type
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/generate_card.py2
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']: