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

62 lines
868 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 '../Generations'
const card: Card = {
name: {
en: "M Blastoise-EX",
fr: "M-Tortank-EX",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
9,
],
hp: 220,
types: [
"Water",
],
evolveFrom: {
en: "Blastoise-EX",
fr: "Tortank-EX",
},
stage: "MEGA",
attacks: [
{
cost: [
"Water",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Dread Launcher",
fr: "Lanceur d'Effroi",
},
effect: {
en: "Flip a coin. If tails, discard 2 Water Energy attached to this Pokémon.",
fr: "Lancez une pièce. Si c'est pile, défaussez 2 Énergies Water attachées à ce Pokémon.",
},
damage: 180,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card