mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
62 lines
1022 B
TypeScript
62 lines
1022 B
TypeScript
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 |