1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

33 lines
923 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"
}
export default card