1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-19 18:59:17 +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,77 @@
import { Card } from '../../../interfaces'
import Set from '../Plasma Freeze'
const card: Card = {
name: {
en: "Tornadus-EX",
fr: "Boréas-EX",
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
641,
],
hp: 180,
types: [
"Colorless",
],
suffix: "EX",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Windfall",
fr: "Rafale de Vent",
},
effect: {
en: "Shuffle your hand into your deck. Then, draw 6 cards.",
fr: "Mélangez votre main avec votre deck. Ensuite, piochez 6 cartes.",
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Jet Blast",
fr: "Rafale d'Explosions",
},
effect: {
en: "Does 30 more damage for each Plasma Energy attached to this Pokémon.",
fr: "Inflige 30 dégâts supplémentaires pour chaque Énergie Plasma attachée à ce Pokémon.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 2,
}
export default card