mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +00:00
33 lines
540 B
TypeScript
33 lines
540 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Primal Clash'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Archie's Ace in the Hole",
|
|
fr: "Dernier Recours d'Arthur",
|
|
},
|
|
illustrator: "Yusuke Ohmura",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Vous pouvez jouer cette carte seulement lorsque c'est la dernière carte dans votre main.\n\nPlacez un Pokémon Water de votre pile de défausse sur votre Banc. Ensuite, piochez 5 cartes.",
|
|
},
|
|
trainerType: "Supporter",
|
|
|
|
}
|
|
|
|
export default card
|