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

72 lines
1.0 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: "Dusclops",
fr: "Téraclope",
},
illustrator: "Akira Komayama",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
356,
],
hp: 80,
types: [
"Psychic",
],
evolveFrom: {
en: "Duskull",
fr: "Skelénox",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Astonish",
fr: "Étonnement",
},
effect: {
en: "Choose a random card from your opponent's hand. Your opponent reveals that card and shuffles it into his or her deck.",
fr: "Choisissez une carte au hasard de la main de votre adversaire. Votre adversaire montre la carte choisie et la mélange avec son deck.",
},
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Psyshot",
fr: "Piqûre Psy",
},
damage: 40,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
retreat: 2,
}
export default card