mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-27 18:39:54 +00:00
33 lines
437 B
TypeScript
33 lines
437 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Unified Minds'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Blizzard Town",
|
||
fr: "Blizzarville",
|
||
},
|
||
illustrator: "Ryo Ueda",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Les Pokémon auxquels il reste 40 PV ou moins (les vôtres et ceux de votre adversaire) ne peuvent pas attaquer.",
|
||
},
|
||
trainerType: "Stadium",
|
||
|
||
}
|
||
|
||
export default card
|