mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-17 13:59:55 +00:00
49 lines
783 B
TypeScript
49 lines
783 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 times of continuous rain, they can sometimes be 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
|