mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
67 lines
1.8 KiB
TypeScript
67 lines
1.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
dexId: [109],
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Smogo",
|
||
en: "Koffing",
|
||
es: "Koffing",
|
||
it: "Koffing",
|
||
pt: "Koffing",
|
||
de: "Smogon"
|
||
},
|
||
|
||
illustrator: "Pani Kobayashi",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 60,
|
||
types: ["Darkness"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Ascension",
|
||
en: "Ascension",
|
||
es: "Ascensión",
|
||
it: "Ascensione",
|
||
pt: "Ascensão",
|
||
de: "Aufstieg"
|
||
},
|
||
|
||
effect: {
|
||
fr: "Cherchez dans votre deck une carte Évolution de ce Pokémon, puis placez-la sur ce Pokémon pour le faire évoluer. Mélangez ensuite votre deck.",
|
||
en: "Search your deck for a card that evolves from this Pokémon and put it onto this Pokémon to evolve it. Then, shuffle your deck.",
|
||
es: "Busca en tu baraja 1 carta que evolucione de este Pokémon y ponla sobre este Pokémon para hacerlo evolucionar. Después, baraja las cartas de tu baraja.",
|
||
it: "Cerca nel tuo mazzo una carta che si evolve da questo Pokémon e metticela sopra per farlo evolvere. Poi rimischia le carte del tuo mazzo.",
|
||
pt: "Procure por 1 carta no seu baralho que evolua deste Pokémon e coloque-a sobre este Pokémon para evoluí-lo. Em seguida, embaralhe o seu baralho.",
|
||
de: "Durchsuche dein Deck nach 1 Karte, die sich aus diesem Pokémon entwickelt, und lege sie auf dieses Pokémon, um es zu entwickeln. Mische anschließend dein Deck."
|
||
},
|
||
|
||
cost: ["Darkness"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "Its body is full of poisonous gas. It floats into garbage dumps, seeking out the fumes of raw, rotting trash."
|
||
}
|
||
}
|
||
|
||
export default card |