1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Extradimensional Crisis/012.ts

48 lines
772 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Extradimensional Crisis"
const card: Card = {
set: Set,
name: {
en: "Sharpedo"
},
illustrator: "Yumi",
rarity: "Two Diamond",
category: "Pokemon",
hp: 90,
types: ["Water"],
evolveFrom: {
en: "Carvanha"
},
description: {
en: "As soon as it catches the scent of prey, Sharpedo\nwill jet seawater from its backside, hurtling\ntoward the target to attack at 75 mph."
},
stage: "Stage1",
attacks: [{
name: {
en: "Crunch"
},
damage: 50,
cost: ["Water", "Colorless"],
effect: {
en: "Flip a coin. If heads, discard a random Energy from your opponent's Active Pokémon."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card