mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
86 lines
2.1 KiB
TypeScript
86 lines
2.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../SWSH Black Star Promos'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Eldegoss",
|
||
fr: "Blancoton",
|
||
es: "Eldegoss",
|
||
it: "Eldegoss",
|
||
pt: "Eldegoss",
|
||
de: "Cottomi"
|
||
},
|
||
|
||
illustrator: "Mina Nakai",
|
||
rarity: "None",
|
||
category: "Pokemon",
|
||
hp: 80,
|
||
types: ["Grass"],
|
||
|
||
evolveFrom: {
|
||
en: "Gossifleur",
|
||
fr: "Tournicoton"
|
||
},
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Blessing of Fluff",
|
||
fr: "Bénédiction Douillette",
|
||
es: "Bendición Sedosa",
|
||
it: "Preghiera della Morbidezza",
|
||
pt: "Blessing of Fluff",
|
||
de: "Flauschsegen"
|
||
},
|
||
|
||
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 Grass, puis attachez-les à vos Pokémon de Banc comme il vous plaît. Mélangez ensuite votre deck.",
|
||
es: "Busca en tu baraja hasta 3 cartas de Energía Grass y únelas a tus Pokémon en Banca de la manera que desees. Después, baraja las cartas de tu baraja.",
|
||
it: "Cerca nel tuo mazzo fino a tre carte Energia Grass e assegnale ai tuoi Pokémon in panchina nel modo che preferisci. Poi rimischia le carte del tuo mazzo.",
|
||
pt: "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.",
|
||
de: "Durchsuche dein Deck nach bis zu 3 Grass-Energiekarten und lege sie beliebig an die Pokémon auf deiner Bank an. Mische anschließend dein Deck."
|
||
},
|
||
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Leafage",
|
||
fr: "Feuillage",
|
||
es: "Follaje",
|
||
it: "Fogliame",
|
||
pt: "Leafage",
|
||
de: "Blattwerk"
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Grass"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
|
||
description: {
|
||
en: "The cotton on the head of this Pokémon can be spun into a glossy, gorgeous yarn—a Galar regional specialty."
|
||
},
|
||
|
||
stage: "Stage1",
|
||
dexId: [830],
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|