1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

86 lines
1.6 KiB
TypeScript
Raw Permalink 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 '../Power Keepers'
const card: Card = {
name: {
en: "Dusclops",
fr: "Teraclope",
de: "Zwirrklop"
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
356,
],
hp: 80,
types: [
"Psychic",
],
evolveFrom: {
en: "Duskull",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Dark Mind",
fr: "Sombre-esprit",
de: "Finsteres Gemüt"
},
effect: {
en: "Does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Inflige 20 dégâts à 1 des Pokémon de Banc de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
de: "Dieser Angriff fügt 1 Pokémon auf der Bank deines Gegners 20 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
damage: 20,
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Mysterious Light",
fr: "Lumière mystérieuse",
de: "Geheimnisvolles Licht"
},
effect: {
en: "If Phoebe's Stadium is in play, the Defending Pokémon is now Confused.",
fr: "Si Stade de Spectra est en jeu, le Pokémon Défenseur est maintenant Confus.",
de: "Wenn Antonias Stadion im Spiel ist, ist das Verteidigende Pokémon jetzt verwirrt."
},
damage: 50,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card