1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-27 22:39:18 +00:00
Files
cards-database/data/Sun & Moon/Sun & Moon/63.ts

73 lines
1.2 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 '../Sun & Moon'
const card: Card = {
name: {
en: "Toxapex",
fr: "Prédastérie",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
748,
],
hp: 110,
types: [
"Psychic",
],
evolveFrom: {
en: "Mareanie",
fr: "Vorastérie",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Toxic Spikes",
fr: "Pics Toxik",
},
effect: {
en: "Whenever your opponent's Active Pokémon retreats, their new Active Pokémon is Poisoned.",
fr: "Lorsque le Pokémon Actif de votre adversaire bat en retraite, son nouveau Pokémon Actif est Empoisonné.",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Venoshock",
fr: "Choc Venin",
},
effect: {
en: "If your opponent's Active Pokémon is Poisoned, this attack does 50 more damage.",
fr: "Si le Pokémon Actif de votre adversaire est Empoisonné, cette attaque inflige 50 dégâts supplémentaires.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 3,
}
export default card