1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

81 lines
2.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 '../Celestial Storm'
const card: Card = {
name: {
en: "Cacnea",
fr: "Cacnea",
es: "Cacnea",
it: "Cacnea",
pt: "Cacnea",
de: "Tuska"
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
331,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Poison Payback",
fr: "Retour de Poison",
es: "Venganza Veneno",
it: "Fiamme Ustionanti",
pt: "Revide Venenoso",
de: "Giftige Abrechnung"
},
effect: {
en: "If this Pokémon is your Active Pokémon and is damaged by an opponents attack (even if this Pokémon is Knocked Out), the Attacking Pokémon is now Poisoned.",
fr: "Si ce Pokémon est votre Pokémon Actif et quil subit les dégâts dune attaque de votre adversaire (même si ce Pokémon est mis K.O.), le Pokémon Attaquant est maintenant Empoisonné.",
es: "Si este Pokémon es tu Pokémon Activo y resulta dañado por un ataque de tu rival (incluso si este Pokémon queda Fuera de Combate), el Pokémon Atacante pasa a estar Envenenado.",
it: "Se questo Pokémon è il tuo Pokémon attivo e viene danneggiato da un attacco del tuo avversario, anche se viene messo KO, il Pokémon attaccante viene avvelenato.",
pt: "Se este Pokémon for o seu Pokémon Ativo e for danificado por um ataque do seu oponente (mesmo que este Pokémon seja Nocauteado), o Pokémon Atacante será Envenenado.",
de: "Wenn dieses Pokémon dein Aktives Pokémon ist und durch eine Attacke deines Gegners Schaden erhält (auch wenn dieses Pokémon dadurch kampfunfähig wird), ist das Angreifende Pokémon jetzt vergiftet."
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Light Punch",
fr: "Poing Léger",
es: "Puño Ligero",
it: "Pugnetto",
pt: "Soco de Luz",
de: "Leichter Hieb"
},
damage: 10,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card