mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 02:40:11 +00:00
33 lines
566 B
TypeScript
33 lines
566 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Dragon Majesty'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Dragon Talon",
|
||
fr: "Serre de Dragon",
|
||
},
|
||
illustrator: "Toyste Beach",
|
||
rarity: "Rare",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Si le Pokémon Dragon auquel cette carte est attachée est votre Pokémon Actif et qu’il subit les dégâts d’une attaque de votre adversaire (même si le Pokémon est mis K.O.), placez 3 marqueurs de dégâts sur le Pokémon Attaquant.",
|
||
},
|
||
trainerType: "Tool",
|
||
|
||
}
|
||
|
||
export default card
|