1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

22 lines
377 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Call of Legends'
const card: Card = {
name: {
en: "Cheerleader's Cheer",
de: "Cheerleader-Jubel"
},
illustrator: "Kouki Saitou",
rarity: "Uncommon",
category: "Trainer",
set: Set,
trainerType: "Supporter",
effect: {
de: "Ziehe 3 Karten. Dein Gegner kann 1 Karte ziehen."
}
}
export default card