1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00

69 lines
938 B
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 '../Neo Destiny'
const card: Card = {
name: {
en: "Dark Exeggutor",
},
illustrator: "Toshinao Aoki",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
103,
],
hp: 60,
types: [
"Psychic",
],
evolveFrom: {
en: "Exeggcute",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Triple Headbutt",
},
effect: {
en: "Flip 3 coins. This attack does 10 damage times the number of heads.",
},
damage: 10,
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "MAX Burst",
},
effect: {
en: "Flip a number of coins equal to the number of Energy cards attached to your opponent's Pokémon. This attack does 20 damage times the number of heads.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card