1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-19 14:49:55 +00:00

70 lines
1.1 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 '../Boundaries Crossed'
const card: Card = {
name: {
en: "Whirlipede",
fr: "Scobolide",
},
illustrator: "match",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
544,
],
hp: 100,
types: [
"Psychic",
],
evolveFrom: {
en: "Venipede",
fr: "Venipatte",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Poison Point",
fr: "Point Poison",
},
effect: {
en: "If this Pokémon is your Active Pokémon and is damaged by an opponent's attack (even if this Pokémon is Knocked Out), the Attacking Pokémon is now Poisoned.",
fr: "Si ce Pokémon est votre Pokémon Actif et qu'il subit les dégâts d'une attaque de votre adversaire (même si ce Pokémon est mis K.O.), le Pokémon Attaquant est maintenant Empoisonné.",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Spinning Attack",
fr: "Attaque Tournante",
},
damage: 50,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 3,
}
export default card