mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +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
91 lines
2.0 KiB
TypeScript
91 lines
2.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Chilling Reign'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Boréas V",
|
||
en: "Tornadus V",
|
||
es: "Tornadus V",
|
||
it: "Tornadus V",
|
||
pt: "Tornadus V",
|
||
de: "Boreos V"
|
||
},
|
||
|
||
illustrator: "PLANETA Mochizuki",
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
hp: 210,
|
||
types: ["Colorless"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Grosse Bourrasque",
|
||
en: "Blow Through",
|
||
es: "Gran Torbellino",
|
||
it: "Colposecco",
|
||
pt: "Sopro Intenso",
|
||
de: "Durchdringender Strahl"
|
||
},
|
||
|
||
effect: {
|
||
fr: "Si un Stade est en jeu, cette attaque inflige 20 dégâts supplémentaires.",
|
||
en: "If a Stadium is in play, this attack does 20 more damage.",
|
||
es: "Si hay un Estadio en juego, este ataque hace 20 puntos de daño más.",
|
||
it: "Se c'è in gioco una carta Stadio, questo attacco infligge 20 danni in più.",
|
||
pt: "Se um Estádio estiver em jogo, este ataque causará 20 pontos de dano a mais.",
|
||
de: "Wenn eine Stadionkarte im Spiel ist, fügt diese Attacke 20 Schadenspunkte mehr zu."
|
||
},
|
||
|
||
damage: "20+",
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
fr: "Marteau Impitoyable",
|
||
en: "Blasting Hammer",
|
||
es: "Martillo Explosivo",
|
||
it: "Martello Distruttivo",
|
||
pt: "Martelada Avassaladora",
|
||
de: "Sprengender Hammer"
|
||
},
|
||
|
||
effect: {
|
||
fr: "Défaussez une Énergie de ce Pokémon.",
|
||
en: "Discard an Energy from this Pokémon.",
|
||
es: "Descarta 1 Energía de este Pokémon.",
|
||
it: "Scarta un'Energia da questo Pokémon.",
|
||
pt: "Descarte 1 Energia deste Pokémon.",
|
||
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
|
||
},
|
||
|
||
damage: 180,
|
||
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "E",
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
suffix: "V"
|
||
}
|
||
|
||
export default card
|