mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 06:42:10 +00:00
65 lines
793 B
TypeScript
65 lines
793 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Unified Minds'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Toxapex",
|
||
fr: "Prédastérie",
|
||
es: "Toxapex",
|
||
it: "Toxapex",
|
||
pt: "Toxapex",
|
||
de: "Aggrostella"
|
||
},
|
||
illustrator: "chibi",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
748,
|
||
],
|
||
hp: 110,
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
evolveFrom: {
|
||
en: "Mareanie",
|
||
fr: "Vorastérie",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
"Psychic",
|
||
],
|
||
name: {
|
||
en: "Spike Shot",
|
||
fr: "Tir d’Épines",
|
||
es: "Disparo Púas",
|
||
it: "Sparaculeo",
|
||
pt: "Disparo de Espinhos",
|
||
de: "Dornensalve"
|
||
},
|
||
|
||
damage: 70,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|