1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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,31 @@
import { Card } from '../../../interfaces'
import Set from '../Yello A Alternate'
const card: Card = {
name: {
fr: "Professeur Platane",
},
illustrator: "Naoki Saito",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Défaussez votre main et piochez 7 cartes.",
},
trainerType: "Supporter",
}
export default card

View File

@ -0,0 +1,58 @@
import { Card } from '../../../interfaces'
import Set from '../Yello A Alternate'
const card: Card = {
name: {
fr: "M-Élecsprint-ex",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 210,
types: [
"Lightning",
],
evolveFrom: {
fr: "Élecsprint-ex",
},
stage: "MEGA",
attacks: [
{
cost: [
"Lightning",
"Colorless",
],
name: {
fr: "Éclair Turbo",
},
effect: {
fr: "Attachez 2 cartes Énergie de base de votre pile de défausse à l'un de vos Pokémon de Banc.",
},
damage: 110,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
}
export default card

View File

@ -0,0 +1,66 @@
import { Card } from '../../../interfaces'
import Set from '../Yello A Alternate'
const card: Card = {
name: {
fr: "Voltali-ex",
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 160,
types: [
"Lightning",
],
suffix: "EX",
attacks: [
{
cost: [
"Lightning",
],
name: {
fr: "Météores",
},
effect: {
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance ou tout autre effet en action sur le Pokémon Actif de votre adversaire.",
},
damage: 30,
},
{
name: {
fr: "Rayon Flash",
},
effect: {
fr: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Basic Pokémon.",
},
damage: "{L}{C}{C}",
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
}
export default card

View File

@ -0,0 +1,77 @@
import { Card } from '../../../interfaces'
import Set from '../Yello A Alternate'
const card: Card = {
name: {
fr: "Zygarde-ex",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 190,
types: [
"Fightning",
],
suffix: "EX",
attacks: [
{
cost: [
"Fightning",
],
name: {
fr: "Vibration Terrestre",
},
effect: {
fr: "S'il y a une carte Stade en jeu, cette attaque inflige 20 dégâts supplémentaires.",
},
damage: "20+",
},
{
cost: [
"Fightning",
"Colorless",
],
name: {
fr: "Tempête Cellulaire",
},
effect: {
fr: "Soignez 30 dégâts à ce Pokémon.",
},
damage: 60,
},
{
cost: [
"Fightning",
"Fightning",
"Colorless",
],
name: {
fr: "Force Chtonienne",
},
damage: 100,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card

View File

@ -0,0 +1,54 @@
import { Card } from '../../../interfaces'
import Set from '../Yello A Alternate'
const card: Card = {
name: {
fr: "M-Lucario-ex",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 220,
types: [
"Fightning",
],
evolveFrom: {
fr: "Lucario-ex",
},
stage: "MEGA",
attacks: [
{
cost: [
"Fightning",
"Fightning",
"Fightning",
],
name: {
fr: "Poing Imminent",
},
effect: {
fr: "Défaussez une Énergie attachée au Pokémon Actif de votre adversaire.",
},
damage: 140,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card

View File

@ -0,0 +1,31 @@
import { Card } from '../../../interfaces'
import Set from '../Yello A Alternate'
const card: Card = {
name: {
fr: "Courrier du Dresseur",
},
illustrator: "Toyste Beach",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Regardez les 4 cartes du dessus de votre deck. Vous pouvez montrer une carte Dresseur que vous y trouvez (à part Courrier du Dresseur) et l'ajouter à votre main. Mélangez les autres cartes avec votre deck.",
},
trainerType: "Item",
}
export default card