aboutsummaryrefslogtreecommitdiff
path: root/data/cards/base
Commit message (Collapse)AuthorAgeFilesLines
* fix shield implementation by removing superfluous whitespaceFlorian Fischer2025-09-061-1/+1
|
* do not use mixed case in englishFlorian Fischer2025-08-2011-11/+11
|
* clarify fighter's additional action effectFlorian Fischer2025-08-201-2/+2
|
* fix german typo in fighterFlorian Fischer2025-08-201-1/+1
|
* unify equipment effect wordingFlorian Fischer2025-08-204-8/+8
|
* update missionaryFlorian Fischer2025-08-202-2/+3
| | | | | | | Limit the range of the missionary's full action but increase its effectivnes. The missionary could only really be used unthreatened over multiple turns. Since any unit can be disbanded during upkeep before it is evangelized, the missionary is only a slow destroy effect. Now it is way more potent controlling cheaper units with the first action but it has to be close to the enemy unit making it more vulnerable.
* change how tokens and especially misinformations are handledFlorian Fischer2022-03-312-5/+4
| | | | | | | | | | | Currently misinformation token are not working as intended, because they could not be part of a players deck because they are tokens. But it is a fundamental part of their design that they delute a players deck. So handle them like other real cards withou buycost like farmers. Specify that tokens can not exists in discard piles or decks and that cards without buy cost can not be part of stores or drafts.
* fix invariant that a cards file name is its english nameFlorian Fischer2022-01-031-0/+0
|
* fix wormtongue's english oracle textFlorian Fischer2022-01-021-2/+2
|
* [generate_card] generalize list filed handling, add babelFlorian Fischer2021-10-101-1/+1
| | | | | | | * Use lists wehere appropriate * Fix some typos * Rename thieve to thief * units add \n after upkeep cost
* Translated AIs and use "adjacent" instead of "in range 1"Florian Fischer2021-09-031-2/+2
|
* fix some more internationalization issuesFlorian Fischer2021-03-281-1/+1
|
* add german version of cardsFlorian Fischer2021-03-2719-37/+107
| | | | | | | | | Translatable properties now have the language as subkey (currently en, de). generate_card.py takes an optional argument to select the language. The latex/Makefile has two new targets de and en each building all cards under latex/cards/<lang> and latex/build/<lang>
* s/counters/marksFlorian Fischer2021-03-251-1/+1
|
* [cards] use effect and full_action as human readable rules textFlorian Fischer2021-03-011-3/+1
|
* rework how cards are defined and generatedFlorian Fischer2021-02-2819-0/+133
Card definitions are now stored in data/cards/ in a subdirectory for each set as YAML files. YAML is still human readable but stricter and better to handle in code than ini. The latex filesystem layout resembles the card definition layout and is created by the Makefile from the YAML card definitions and must not be regenerated each time by hand.