aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/generate_latex.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/generate_latex.py b/scripts/generate_latex.py
index cabed084..f2906308 100755
--- a/scripts/generate_latex.py
+++ b/scripts/generate_latex.py
@@ -99,7 +99,7 @@ def generate_card(card_name: str, card: MutableMapping):
effect = card.get('effect', None)
if effect:
- ability_block += f'Effect: {effect}'
+ ability_block += f'{effect}'
full_action = card.get('full_action', None)
if full_action:
@@ -127,7 +127,7 @@ def generate_card(card_name: str, card: MutableMapping):
# card_content += f'\cardsplitcontent{{\\faRecycle: {card["durability"]}}}{{{card["effect"]}}}'
card_content += f'\cardsplitcontent{{Durability: {card["durability"]}}}{{{card["effect"]}}}\n'
else:
- print('WARNING: unknown card type {card["type"]}!')
+ print(f'WARNING: unknown card type {card["type"]}!')
if 'play' in card:
card_content += f'\cardplaycost{{{card["play"]}}}\n'