1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

69 lines
1.2 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 '../Sandstorm'
const card: Card = {
name: {
en: "Cacnea",
fr: "Cacnea",
de: "Tuska"
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
331,
],
hp: 50,
types: [
"Grass",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Poison Payback",
fr: "Retour de poison",
de: "Giftige Abrechnung"
},
effect: {
en: "If Cacnea is your Active Pokémon and is damaged by an opponent's attack (even if Cacnea is Knocked Out), the Attacking Pokémon is now Poisoned.",
fr: "Si Cacnea est votre Pokémon Actif et qu'une attaque de votre adversaire lui inflige des dégâts (même si Cacnea est mis K.O), le Pokémon Attaquant est maintenant Empoisonné.",
de: "Wenn Tuska dein Aktives Pokémon ist und ihm Schaden durch einen gegnerischen Angriff zugefügt wird ( auch wenn Tuska kampfunfähig wird), ist das Angreifende Pokémon jetzt vergiftet."
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Light Punch",
fr: "Poing léger",
de: "Leichter Hieb"
},
damage: 10,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card