1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

62 lines
1022 B
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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Toxizap",
en: "Toxel",
es: "Toxel",
it: "Toxel",
pt: "Toxel",
de: "Toxel"
},
illustrator: "Kouki Saitou",
rarity: "Shiny rare",
category: "Pokemon",
hp: 70,
types: ["Lightning"],
attacks: [{
name: {
fr: "Gifle",
en: "Slap",
es: "Bofetón",
it: "Sberla",
pt: "Tapa",
de: "Hieb"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
fr: "Choc Statique",
en: "Static Shock",
es: "Impacto Estático",
it: "Shock Statico",
pt: "Choque de Estática",
de: "Statischer Schock"
},
damage: 20,
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "D",
stage: "Basic",
description: {
en: "It stores poison in an internal poison sac and secretes that poison through its skin. If you touch this Pokémon, a tingling sensation follows."
}
}
export default card