renamed the Popes/0-card trumps from Earthman deck (feat. new apps.epic migrations to reseed); fixes to card deck horizontal scroll speed, game_kit.html, to make scrolling feel more natural

This commit is contained in:
Disco DeDisco
2026-04-01 14:45:53 -04:00
parent 441def9a34
commit 1aaf353066
5 changed files with 150 additions and 9 deletions

View File

@@ -213,13 +213,11 @@ class TarotCard(models.Model):
CUPS = "CUPS"
SWORDS = "SWORDS"
PENTACLES = "PENTACLES" # Fiorentine 4th suit
COINS = "COINS" # Earthman 4th suit (Ossum / Stone)
SUIT_CHOICES = [
(WANDS, "Wands"),
(CUPS, "Cups"),
(SWORDS, "Swords"),
(PENTACLES, "Pentacles"),
(COINS, "Coins"),
]
deck_variant = models.ForeignKey(
@@ -282,7 +280,6 @@ class TarotCard(models.Model):
self.WANDS: 'fa-wand-sparkles',
self.CUPS: 'fa-trophy',
self.SWORDS: 'fa-gun',
self.COINS: 'fa-star',
self.PENTACLES: 'fa-star',
}.get(self.suit, '')