1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00
Florian Bouillon 151c00be78
Updated informations (#23)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 20:35:35 +02:00

24 lines
472 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Rebel Clash'
const card: Card = {
name: {
en: "Galar Mine",
fr: "Mine de Galar"
},
illustrator: "5ban Graphics",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "The Retreat Cost of both Active Pokémon is ColorlessColorless more.",
fr: "Le Coût de Retraite des deux Pokémon Actifs est augmenté de ColorlessColorless."
},
trainerType: "Stadium"
}
export default card