1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 02:59:53 +00:00

33 lines
383 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Dragons Exalted'
const card: Card = {
name: {
en: "Giant Cape",
fr: "Cape Géante",
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Cette carte ajoute 20 PV au Pokémon auquel elle est attachée.",
},
trainerType: "Tool",
}
export default card