mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-03 20:39:55 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
25 lines
543 B
TypeScript
25 lines
543 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Darkness Ablaze'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Cape of Toughness",
|
||
fr: "Cape d’Endurance"
|
||
},
|
||
|
||
illustrator: "inose yukie",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
set: Set,
|
||
|
||
effect: {
|
||
en: "The Basic Pokémon this card is attached to gets +50 HP, except Pokémon-GX.",
|
||
fr: "Cette carte ajoute 50 PV au Pokémon de base auquel elle est attachée, sauf s’il s’agit d’un Pokémon-GX."
|
||
},
|
||
|
||
trainerType: "Tool",
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|