mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
41 lines
1008 B
TypeScript
41 lines
1008 B
TypeScript
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 opponent's) can't 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
|