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

74 lines
1.2 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: "Thundurus-EX",
fr: "Fulguris-EX",
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
642,
],
hp: 170,
types: [
"Lightning",
],
suffix: "EX",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Raiden Knuckle",
fr: "Appel Foudroyant",
},
effect: {
en: "Attach an Energy card from your discard pile to 1 of your Benched Team Plasma Pokémon.",
fr: "Attachez une carte Énergie de votre pile de défausse à 1 de vos Pokémon de la Team Plasma sur votre Banc.",
},
damage: 30,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Thunderous Noise",
fr: "Grondement Tonitruant",
},
effect: {
en: "If this Pok<6F><6B>mon has any Plasma Energy attached to it, discard an Energy attached to the Defending Pokémon.",
fr: "Si de l'Énergie Plasma est attachée à ce Pokémon, défaussez une Énergie attachée au Pokémon Défenseur.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
}
export default card