1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

33 lines
514 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Lost Thunder'
const card: Card = {
name: {
en: "Wait and See Hammer",
fr: "Marteau Attends-Voir",
},
illustrator: "Yoshinobu Saito",
rarity: "Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Vous ne pouvez utiliser cette carte que si vous jouez en second et uniquement pendant votre premier tour. \n\nDéfaussez une Énergie de lun des Pokémon de votre adversaire.",
},
trainerType: "Item",
}
export default card