mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
67 lines
1.3 KiB
TypeScript
67 lines
1.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Fates Collide'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Koffing",
|
||
fr: "Smogo",
|
||
es: "Koffing",
|
||
it: "Koffing",
|
||
pt: "Koffing",
|
||
de: "Smogon"
|
||
},
|
||
illustrator: "sui",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
109,
|
||
],
|
||
hp: 60,
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
],
|
||
name: {
|
||
en: "Division",
|
||
fr: "Division",
|
||
es: "División",
|
||
it: "Serie",
|
||
pt: "Divisão",
|
||
de: "Teilung"
|
||
},
|
||
effect: {
|
||
en: "Search your deck for up to 2 Koffing and put them onto your Bench. Shuffle your deck afterward.",
|
||
fr: "Cherchez jusqu'à 2 Smogo dans votre deck et placez-les sur votre Banc. Mélangez ensuite votre deck.",
|
||
es: "Busca en tu baraja hasta 2 Koffing y ponlos en tu Banca. Baraja las cartas de tu baraja después.",
|
||
it: "Cerca nel tuo mazzo fino a due Koffing e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.",
|
||
pt: "Procure em seu baralho até 2 Koffing e coloque-os no seu Banco. Em seguida, embaralhe seus cards.",
|
||
de: "Durchsuche dein Deck nach bis zu 2 Smogon und lege sie auf deine Bank. Mische anschließend dein Deck."
|
||
},
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|