mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-29 02:59:53 +00:00
33 lines
512 B
TypeScript
33 lines
512 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Dragons Exalted'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Rescue Scarf",
|
|
fr: "Foulard de Sauvetage",
|
|
},
|
|
illustrator: "Ryo Ueda",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Si le Pokémon auquel cette carte est attachée est mis K.O. par les dégâts d'une attaque, placez-le dans votre main. (Défaussez toutes les cartes attachées au Pokémon mis K.O.)",
|
|
},
|
|
trainerType: "Tool",
|
|
|
|
}
|
|
|
|
export default card
|