mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
33 lines
633 B
TypeScript
33 lines
633 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Stormfront'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Poké Blower +",
|
|
fr: "Poké Blower +",
|
|
},
|
|
illustrator: "Ryo Ueda",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Vous pouvez jouer 2 Poké Coup + en même temps. Si vous jouez 1 Poké Coup +, lancez une pièce. Si c'est face, placez 1 marqueur de dégât sur 1 des Pokémon de votre adversaire. Si vous jouez 2 Poké Coup +, choisissez 1 des Pokémon de Banc de votre adversaire et échangez-le avec 1 de ses Pokémon Actifs.",
|
|
},
|
|
trainerType: "Item",
|
|
|
|
}
|
|
|
|
export default card
|