1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-13 21:35:10 +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,67 @@
import { Card } from '../../../interfaces'
import Set from '../Sword & Shield'
const card: Card = {
name: {
en: "Eldegoss",
fr: "Blancoton",
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Gossifleur",
fr: "Tournicoton",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Blessing of Fluff",
fr: "Bénédiction Douillette",
},
effect: {
en: "Search your deck for up to 3 Grass Energy cards and attach them to your Benched Pokémon in any way you like. Then, shuffle your deck.",
fr: "Cherchez dans votre deck jusquà 3 cartes Énergie Plante, puis attachez-les à vos Pokémon de Banc comme il vous plaît. Mélangez ensuite votre deck.",
},
},
{
cost: [
"Grass",
],
name: {
en: "Leafage",
fr: "Feuillage",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card