1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-21 11:29:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,73 @@
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: "Fightning",
value: "×2"
},
],
retreat: 1,
}
export default card