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

69 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 '../Team Rocket Returns'
const card: Card = {
name: {
en: "Dark Hypno",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
97,
],
hp: 70,
types: [
"Psychic",
"Darkness",
],
evolveFrom: {
en: "Drowzee",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Dark Link",
},
effect: {
en: "Flip a coin. If heads, choose an attack on 1 of your Pokémon in play that has Dark in its name (excluding this one). Dark Link copies that attack except for its Energy cost. (You must still do anything else required for that attack.) (No matter what type that Pokémon is, Dark Hypno's type is still PsychicDarkness.) Dark Hypno performs that attack.\"",
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Black Magic",
},
effect: {
en: "Does 20 damage times the number of your opponent's Benched Pokémon.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card