mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
69 lines
1.7 KiB
TypeScript
69 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolutions'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Koffing",
|
||
fr: "Smogo",
|
||
es: "Koffing",
|
||
it: "Koffing",
|
||
pt: "Koffing",
|
||
de: "Smogon"
|
||
},
|
||
illustrator: "Mitsuhiro Arita",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
109,
|
||
],
|
||
hp: 60,
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
"Psychic",
|
||
],
|
||
name: {
|
||
en: "Foul Gas",
|
||
fr: "Gaz Infect",
|
||
es: "Gas Pestilente",
|
||
it: "Gas Puzzolente",
|
||
pt: "Gás Fedido",
|
||
de: "Garstiger Gestank"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Poisoned. If tails, your opponent's Active Pokémon is now Confused.",
|
||
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Empoisonné. Si c'est pile, le Pokémon Actif de votre adversaire est maintenant Confus.",
|
||
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Envenenado. Si sale cruz, el Pokémon Activo de tu rival pasa a estar Confundido.",
|
||
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene avvelenato. Se esce croce, il Pokémon attivo del tuo avversario viene confuso.",
|
||
pt: "Jogue uma moeda. Se sair cara, o Pokémon Ativo do seu oponente será Envenenado. Se sair coroa, o Pokémon Ativo do seu oponente ficará Confuso.",
|
||
de: "Wirf 1 Münze. Bei \"Kopf\" ist das Aktive Pokémon deines Gegners jetzt vergiftet. Bei \"Zahl\" ist das Aktive Pokémon deines Gegners jetzt verwirrt."
|
||
},
|
||
damage: 10,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|