mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-02 12:19:53 +00:00
36 lines
976 B
TypeScript
36 lines
976 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Leaf Cape",
|
|
fr: "Cape Sylvestre",
|
|
es: "Capa Hoja",
|
|
it: "Mantello Silvestre",
|
|
de: "Blätterumhang",
|
|
'pt-br': "Capa de Folha",
|
|
ko: "리프망토"
|
|
},
|
|
|
|
illustrator: "Toyste Beach",
|
|
rarity: "Two Diamond",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "The {G} Pokémon this card is attached to gets +30 HP.",
|
|
fr: "Cette carte octroie + 30 PV au Pokémon {G} auquel elle est attachée.",
|
|
es: "El Pokémon {G} al que esté unida esta carta obtiene 30 PS más.",
|
|
it: "Il Pokémon {G} a cui è assegnata questa carta ha +30 PS.",
|
|
de: "Das {G}-Pokémon, an das diese Karte angelegt ist, erhält + 30 KP.",
|
|
'pt-br': "O Pokémon {G} ao qual esta carta está ligada recebe +30 PS.",
|
|
ko: "이 카드를 붙이고 있는 {G}포켓몬의 최대 HP를 +30한다."
|
|
},
|
|
|
|
trainerType: "Tool",
|
|
boosters: ["solgaleo"]
|
|
}
|
|
|
|
export default card
|