1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/Sun & Moon/Unbroken Bonds/73.ts

67 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Unbroken Bonds'
const card: Card = {
name: {
en: "Koffing",
fr: "Smogo",
es: "Koffing",
it: "Koffing",
pt: "Koffing",
de: "Smogon"
},
illustrator: "Mizue",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
109,
],
hp: 70,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Foul Odor",
fr: "Odeur Fétide",
es: "Olor Pestilente",
it: "Puzza",
pt: "Odor Sujo",
de: "Fäulnisgeruch"
},
effect: {
en: "Both Active Pokémon are now Confused.",
fr: "Les deux Pokémon Actifs sont maintenant Confus.",
es: "Ambos Pokémon Activos pasan a estar Confundidos.",
it: "Entrambi i Pokémon attivi vengono confusi.",
pt: "Ambos os Pokémon Ativos agora estão Confusos.",
de: "Beide Aktiven Pokémon sind jetzt verwirrt."
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card