1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-10 15:19:55 +00:00

35 lines
943 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Giant Cape",
fr: "Cape Géante",
es: "Capa Gigante",
it: "Mantello Gigante",
de: "Riesige Robe",
'pt-br': "Capa Gigante",
ko: "커다란망토"
},
illustrator: "Ryo Ueda",
rarity: "Two Diamond",
category: "Trainer",
effect: {
en: "The Pokémon this card is attached to gets +20 HP.",
fr: "Cette carte octroie + 20 PV au Pokémon auquel elle est attachée.",
es: "El Pokémon al que esté unida esta carta obtiene 20 PS más.",
it: "Il Pokémon a cui è assegnata questa carta ha +20 PS.",
de: "Das Pokémon, an das diese Karte angelegt ist, erhält + 20 KP.",
'pt-br': "O Pokémon ao qual esta carta está ligada recebe +20 PS.",
ko: "이 카드를 붙이고 있는 포켓몬의 최대 HP를 +20한다."
},
trainerType: "Tool",
boosters: ["dialga"]
}
export default card