1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 15:49:55 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

78 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Plasma Freeze'
const card: Card = {
name: {
en: "Tornadus-EX",
fr: "Boréas-EX",
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
641,
],
hp: 180,
types: [
"Colorless",
],
suffix: "EX",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Windfall",
fr: "Rafale de Vent",
},
effect: {
en: "Shuffle your hand into your deck. Then, draw 6 cards.",
fr: "Mélangez votre main avec votre deck. Ensuite, piochez 6 cartes.",
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Jet Blast",
fr: "Rafale d'Explosions",
},
effect: {
en: "Does 30 more damage for each Plasma Energy attached to this Pokémon.",
fr: "Inflige 30 dégâts supplémentaires pour chaque Énergie Plasma attachée à ce Pokémon.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 2,
}
export default card