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

72 lines
913 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Gothitelle",
},
illustrator: "Eri Yamaki",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 140,
types: [
"Psychic",
],
evolveFrom: {
en: "Gothorita",
},
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Mind Bend",
},
effect: {
en: "Your opponents Active Pokémon is now Confused.",
},
damage: 40,
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Bend",
},
effect: {
en: "Choose 2 random cards from your opponents hand. Your opponent reveals those cards and shuffles them into their deck.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-30"
},
],
retreat: 2,
}
export default card