mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-10 15:19:55 +00:00
34 lines
1020 B
TypeScript
34 lines
1020 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Mythical Island"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Leaf",
|
|
fr: "Leaf",
|
|
es: "Hoja",
|
|
it: "Leaf",
|
|
de: "Leaf",
|
|
'pt-br': "Leaf",
|
|
ko: "리프"
|
|
},
|
|
|
|
illustrator: "En Morikura",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "During this turn, the Retreat Cost of your Active Pokémon is 2 less.",
|
|
fr: "Pendant ce tour, le Coût de Retraite de votre Pokémon Actif est diminué de 2 Énergies.",
|
|
es: "Durante este turno, el Coste de Retirada de tu Pokémon Activo es de 2 menos.",
|
|
it: "Durante questo turno, il costo di ritirata del tuo Pokémon attivo è ridotto di 2.",
|
|
de: "Während dieses Zuges verringern sich die Rückzugskosten deines Aktiven Pokémon um 2.",
|
|
'pt-br': "Durante este turno, o custo de Recuo do seu Pokémon Ativo é 2 a menos.",
|
|
ko: "이 차례에 자신의 배틀 포켓몬의 후퇴에 필요한 에너지를 2개 적게 만든다."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
rarity: "Two Star"
|
|
}
|
|
|
|
export default card |