mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
34 lines
622 B
TypeScript
34 lines
622 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Hidden Fates'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Blaine’s Last Stand",
|
||
fr: "Dernière Chance d’Auguste",
|
||
},
|
||
illustrator: "Ken Sugimori",
|
||
rarity: "Rare",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Vous ne pouvez jouer cette carte que si c’est votre dernière carte en main.\n\nPiochez 2 cartes pour chacun de vos Pokémon Fire en jeu.",
|
||
en: "You can play this card only when it is the last card in your hand.\n\nDraw 2 cards for each Fire Pokémon you have in play."
|
||
},
|
||
trainerType: "Supporter",
|
||
|
||
}
|
||
|
||
export default card
|