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

67 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 '../Gym Heroes'
const card: Card = {
name: {
en: "Misty's Tentacruel",
},
illustrator: "Ken Sugimori",
rarity: "Rare Holo",
category: "Pokemon",
set: Set,
dexId: [
73,
],
hp: 70,
types: [
"Water",
],
evolveFrom: {
en: "Tentacool",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Flee",
},
effect: {
en: "If an attack does damage to Misty's Tentacruel while it's your Active Pokémon, you may switch it with 1 of your Benched Pokémon, which prevents all other effects of that attack on Misty's Tentacruel. This power can't be used if Misty's Tentacruel is already Asleep, Confused, or Paralyzed.",
},
},
],
attacks: [
{
cost: [
"Water",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Jellyfish Poison",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned. If tails, the Defending Pokémon is now Confused.",
},
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card