1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-04 12:49:54 +00:00

48 lines
792 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Gastrodon"
},
illustrator: "Aya Kusube",
rarity: "Two Diamond",
category: "Pokemon",
hp: 120,
types: ["Water"],
evolveFrom: {
en: "Shellos"
},
description: {
en: "They normally inhabit rocky seashores, but in<br />times of continuous rain, they can sometimes be<br />found in the mountains, far from the sea."
},
stage: "Stage1",
attacks: [{
name: {
en: "Muddy Water"
},
damage: 60,
cost: ["Water", "Colorless", "Colorless"],
effect: {
en: "This attack also does 20 damage to 1 of your opponent's Benched Pokémon."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 3
}
export default card