1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 13:52:13 +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

82 lines
1.8 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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Tyranitar V",
fr: "Tyranocif V",
es: "Tyranitar V",
it: "Tyranitar V",
pt: "Tyranitar V",
de: "Despotar V"
},
illustrator: "Ayaka Yoshida",
rarity: "Rare",
category: "Pokemon",
hp: 230,
types: ["Darkness"],
attacks: [{
name: {
en: "Cragalanche",
fr: "Lapidalanche",
es: "Rocalud",
it: "Valanghiaia",
pt: "Rochavalanche",
de: "Grolllawine"
},
effect: {
en: "Discard the top 2 cards of your opponents deck.",
fr: "Défaussez les 2 cartes du dessus du deck de votre adversaire.",
es: "Descarta las 2 primeras cartas de la baraja de tu rival.",
it: "Scarta le prime due carte del mazzo del tuo avversario.",
pt: "Descarte as 2 cartas de cima do baralho do seu oponente.",
de: "Lege die obersten 2 Karten des Decks deines Gegners auf seinen Ablagestapel."
},
damage: 60,
cost: ["Darkness", "Colorless", "Colorless"]
}, {
name: {
en: "Single Strike Crush",
fr: "Écrasement Poing Final",
es: "Aplastamiento Golpe Brusco",
it: "Schianto Colpo Singolo",
pt: "Esmagamento Golpe Decisivo",
de: "Fokussierter-Angriff-Zermalmer"
},
effect: {
en: "Discard the top 4 cards of your deck.",
fr: "Défaussez les 4 cartes du dessus de votre deck.",
es: "Descarta las 4 primeras cartas de tu baraja.",
it: "Scarta le prime quattro carte del tuo mazzo.",
pt: "Descarte as 4 cartas de cima do seu baralho.",
de: "Lege die obersten 4 Karten deines Decks auf deinen Ablagestapel."
},
damage: 240,
cost: ["Darkness", "Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "E",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card