diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-09-18 13:43:27 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-10-18 14:29:16 +0200 |
| commit | 2fc0b18195c60f550b9a63809ebf9563e468a471 (patch) | |
| tree | a78f010fab56b161eb0295661858389466504658 /scripts | |
| parent | bcacc40f114e119f5f550f776de19f56e8edf543 (diff) | |
| download | muhqs-game-2fc0b18195c60f550b9a63809ebf9563e468a471.tar.gz muhqs-game-2fc0b18195c60f550b9a63809ebf9563e468a471.zip | |
use fontawesome5 instead of fontawesome
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/generate_latex.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/generate_latex.py b/scripts/generate_latex.py index c8407eca..282f0a7f 100755 --- a/scripts/generate_latex.py +++ b/scripts/generate_latex.py @@ -80,7 +80,7 @@ def generate_card(card_name: str, card: MutableMapping): attack = card.get('attack', None) if attack: - attack_sym = '\\faSword' + attack_sym = '\\faFistRaised' if "Range" in attack: attack_sym = '\\ding{246}' # stats += f'\\\\ {attack_sym}: {attack}' @@ -97,7 +97,7 @@ def generate_card(card_name: str, card: MutableMapping): if full_action: if ability_block: ability_block += '\\\\ ' - ability_block += f'\\faRotateRight: {full_action}' + ability_block += f'\\faRedo: {full_action}' card_content += f'\cardsplitcontent{{{stats}}}{{{ability_block}}}' else: |
