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

91 lines
1.5 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 '../BW Black Star Promos'
const card: Card = {
name: {
en: "Tornadus-EX",
fr: "Boréas ex",
},
illustrator: "Ryo Ueda",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
641,
],
hp: 170,
types: [
"Colorless",
],
suffix: "EX",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Blow Through",
fr: "Grosse Bourrasque",
},
effect: {
en: "If there is any Stadium card in play, this attack does 30 more damage.",
fr: "S'il y a une carte Stade en jeu, cette attaque inflige 30 dégâts supplémentaires.",
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Power Blast",
fr: "Violente Déflagration",
},
effect: {
en: "Flip a coin. If tails, discard an Energy attached to this Pokémon.",
fr: "Lancez une pièce. Si c'est pile, défaussez une Énergie attachée à ce Pokémon.",
},
damage: 100,
},
{
name: {
en: "Pokémon EX Rule",
fr: "Règle pour les Pokémon ex",
},
effect: {
en: "When a Pokémon-EX has been Knocked Out, your opponent takes 2 Prize cards.",
fr: "Lorsqu'un Pokémon-EX est mis K.O., l'adversaire récupère 2 cartes Récompense.",
},
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card