mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 05:11:58 +00:00
44 lines
643 B
TypeScript
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 |