1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 21:02:02 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/052.ts

44 lines
643 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Quagsire"
},
illustrator: "Kagemaru Himeno",
rarity: "Two Diamond",
category: "Pokemon",
hp: 130,
types: ["Water"],
evolveFrom: {
en: "Wooper"
},
description: {
en: "It has an easygoing nature. It doesn't care if it\nbumps its head on boats and boulders\nwhile swimming."
},
stage: "Stage1",
attacks: [{
name: {
en: "Surf"
},
damage: 80,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 3
}
export default card