1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-11 16:31:58 +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,75 @@
import { Card } from '../../../interfaces'
import Set from '../Next Destinies'
const card: Card = {
name: {
en: "Shaymin-EX",
fr: "Shaymin-EX",
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
492,
],
hp: 110,
types: [
"Grass",
],
suffix: "EX",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Synthesis",
fr: "Synthèse",
},
effect: {
en: "Search your deck for a Grass Energy card and attach it to 1 of your Pokémon. Shuffle your deck afterward.",
fr: "Cherchez une carte Énergie Grass dans votre deck et attachez-la à 1 de vos Pokémon. Mélangez ensuite votre deck.",
},
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Revenge Blast",
fr: "Explo-Vengeance",
},
effect: {
en: "Does 30 more damage for each Prize card your opponent has taken.",
fr: "Inflige 30 dégâts supplémentaires pour chaque carte Récompense que votre adversaire a récupérée.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
retreat: 1,
}
export default card