1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

40 lines
1011 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Chilling Reign'
const card: Card = {
set: Set,
name: {
fr: "Butte du Dynarbre",
en: "Dyna Tree Hill",
es: "Colina del Maxiárbol",
it: "Collina Dynalbero",
pt: "Colina Dinárvore",
de: "Hügel des Dyna-Baums"
},
illustrator: "Oswaldo KATO",
rarity: "Uncommon",
category: "Trainer",
effect: {
fr: "Les Pokémon (les vôtres et ceux de votre adversaire) ne peuvent pas être soignés.",
en: "Pokémon (both yours and your opponents) cant be healed.",
es: "Los Pokémon (tanto tuyos como de tu rival) no pueden ser curados.",
it: "I Pokémon, sia tuoi che del tuo avversario, non possono essere curati.",
pt: "Os Pokémon (seus e do seu oponente) não podem ser curados.",
de: "Pokémon (deine und die deines Gegners) können nicht geheilt werden."
},
trainerType: "Stadium",
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card