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:
73
data/Black & White/Plasma Freeze/110.ts
Normal file
73
data/Black & White/Plasma Freeze/110.ts
Normal 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
|
Reference in New Issue
Block a user