1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 17:27:52 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

73 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
name: {
en: "Trevenant VMAX",
fr: "Desséliande VMAX",
es: "Trevenant VMAX",
it: "Trevenant VMAX",
pt: "Trevenant VMAX",
de: "Trombork VMAX"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 320,
types: ["Grass"],
stage: "VMAX",
illustrator: "MUGENUP",
attacks: [{
name: {
en: "Missing in the Forest",
fr: "Perdus en Forêt",
es: "Desaparecidos en el Bosque",
it: "Persi nella Foresta",
pt: "Missing in the Forest",
de: "Verschollen im Wald"
},
effect: {
en: "This attack does 40 damage for each Supporter card in your opponents discard pile.",
fr: "Cette attaque inflige 40 dégâts pour chaque carte Supporter dans la pile de défausse de votre adversaire.",
es: "Este ataque hace 40 puntos de daño por cada carta de Partidario en la pila de descartes de tu rival.",
it: "Questo attacco infligge 40 danni per ogni carta Aiuto nella pila degli scarti del tuo avversario.",
pt: "This attack does 40 damage for each Supporter card in your opponents discard pile.",
de: "Diese Attacke fügt für jede Unterstützerkarte im Ablagestapel deines Gegners 40 Schadenspunkte zu."
},
damage: "40×",
cost: ["Grass", "Colorless"]
}, {
name: {
en: "Max Tree",
fr: "Arbromax",
es: "Maxiárbol",
it: "Dynatronco",
pt: "Max Tree",
de: "Dyna-Baum"
},
damage: 180,
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3
}
export default card