1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 13:39:54 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

102 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Tyranitar",
fr: "Tyranocif",
es: "Tyranitar",
it: "Tyranitar",
pt: "Tyranitar",
de: "Despotar"
},
illustrator: "nagimiso",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 180,
types: [
"Fighting",
],
evolveFrom: {
en: "Pupitar",
fr: "Ymphect"
},
attacks: [
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Bedrock Breaker",
fr: "Brise Fondation",
es: "Rompecimientos",
it: "Infrangiroccia",
pt: "Quebrador de Alicerce",
de: "Felsgrundbrecher"
},
effect: {
en: "Discard a Stadium in play.",
fr: "Défaussez un Stade en jeu.",
es: "Descarta un Estadio en juego.",
it: "Scarta una carta Stadio in gioco.",
pt: "Descarte 1 Estádio em jogo.",
de: "Lege 1 Stadionkarte im Spiel auf den Ablagestapel."
},
damage: 120,
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Mountain Swing",
fr: "Frappe Montagneuse",
es: "Embestida Montaña",
it: "Oscillamonte",
pt: "Tacada Montanhosa",
de: "Bergschwinger"
},
effect: {
en: "Discard the top 5 cards of your deck.",
fr: "Défaussez les 5 cartes du dessus de votre deck.",
es: "Descarta las 5 primeras cartas de tu baraja.",
it: "Scarta le prime cinque carte del tuo mazzo.",
pt: "Descarte as 5 cartas de cima do seu baralho.",
de: "Lege die obersten 5 Karten deines Decks auf deinen Ablagestapel."
},
damage: 250,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 4,
regulationMark: "D",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card