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

70 lines
956 B
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 '../Gym Heroes'
const card: Card = {
name: {
en: "Misty's Starmie",
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
121,
],
hp: 80,
types: [
"Water",
],
evolveFrom: {
en: "Staryu",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Water Gun",
},
effect: {
en: "Does 10 damage plus 10 more damage for each W Energy attached to Misty's Starmie but not used to pay for this attack's Energy cost. You can't add more than 20 damage in this way.",
},
damage: 10,
},
{
cost: [
"Water",
"Water",
"Water",
],
name: {
en: "Bubblebeam",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card