mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-21 15:49:55 +00:00
74 lines
1.2 KiB
TypeScript
74 lines
1.2 KiB
TypeScript
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
|