1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00

76 lines
1.9 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: "Cacturne",
fr: "Cacturne",
de: "Noktuska"
},
illustrator: "Atsuko Nishida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
332,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Cacnea",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Poison Payback",
fr: "Retour de poison",
de: "Poison Payback"
},
effect: {
en: "If Cacturne is your Active Pokémon and is damaged by an opponent's attack (even if Cacturne is Knocked Out), the Attacking Pokémon is now Poisoned.",
fr: "Si Cacturne est votre Pokémon Actif et qu'une attaque de votre adversaire lui inflige des dégâts (même si Cacturne est mis K.O), le Pokémon Attaquant est maintenant Empoisonné.",
de: "If Cacturne is your Active Pokémon and is damaged by an opponent's attack (even if Cacturne is Knocked Out), the Attacking Pokémon is now Poisoned."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Feint Attack",
fr: "Feinte",
de: "Feint Attack"
},
effect: {
en: "Choose 1 of your opponent's Pokémon. This attack does 40 damage to that Pokémon. This attack's damage isn't affected by Weakness, Resistance, Poke-Powers, Poke-Bodies or any other effects on that Pokémon.",
fr: "Choisissez un des Pokémon de votre adversaire. Cette attaque lui inflige 40 dégâts. Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance, les Poké-Powers, les Poké-Bodies ou tout autre effet.",
de: "Choose 1 of your opponent's Pokémon. This attack does 40 damage to that Pokémon. This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies or any other effects on that Pokémon."
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card