mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
only missing the secrets cards as they are secret :D Signed-off-by: Avior <florian.bouillon@delta-wings.net>
25 lines
592 B
TypeScript
25 lines
592 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Chilling Reign'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Saturnin",
|
||
en: "Avery"
|
||
},
|
||
|
||
illustrator: "Ken Sugimori",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
fr: "Piochez 3 cartes. Si vous avez pioché des cartes de cette façon, votre adversaire défausse ses Pokémon de Banc jusqu’à en avoir 3.",
|
||
en: "Draw 3 cards. If you drew any cards in this way, your opponent discards Pokémon from their Bench until they have 3."
|
||
},
|
||
|
||
trainerType: "Supporter",
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |