1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 17:57:51 +00:00

74 lines
1.3 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 '../Platinum'
const card: Card = {
name: {
en: "Toxicroak G",
fr: "Coatox ",
de: "Toxiquak G"
},
illustrator: "Ryota Saito",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
454,
],
hp: 90,
types: [
"Psychic",
],
stage: "Basic",
suffix: "SP",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Anticipation",
fr: "Anticipation",
de: "Anticipation"
},
effect: {
en: "Prevent all effects of attacks, excluding damage, done to Toxicroak .",
fr: "Prévenez tous les effets d'attaques, dégâts exclus, infligés à Coatox .",
de: "Prevent all effects of attacks, excluding damage, done to Toxicroak G."
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Deep Poison",
fr: "Poison profond",
de: "Deep Poison"
},
effect: {
en: "If the Defending Pokémon is Poisoned, this attack does 20 damage plus 40 more damage.",
fr: "Si le Pokémon Défenseur est Empoisonné, cette attaque inflige 20 dégâts plus 40 dégâts supplémentaires.",
de: "If the Defending Pokémon is Poisoned, this attack does 20 damage plus 40 more damage."
},
damage: "20+",
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card