1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-09 02:37:50 +00:00

77 lines
1.0 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Majestic Dawn'
const card: Card = {
name: {
en: "Stunky",
fr: "Moufouette",
de: "Skunkapuh"
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
434,
],
hp: 60,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Poison Gas",
fr: "Gaz toxik",
de: "Giftwolke"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Empoisonné.",
de: "Wirf 1 Münze. Bei 'Kopf' ist das Verteidigende Pokémon jetzt vergiftet."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Slash",
fr: "Tranche",
de: "Schlitzer"
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
value: "+10"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card