1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 05:11:58 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/053.ts

44 lines
698 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Qwilfish"
},
illustrator: "Shin Nagasawa",
rarity: "Two Diamond",
category: "Pokemon",
hp: 80,
types: ["Water"],
description: {
en: "Be cautious if this Pokémon starts sucking in\nwater—it will soon attack by scattering the toxic\nspikes that grow all over its body."
},
stage: "Basic",
attacks: [{
name: {
en: "Poison Sting"
},
damage: 20,
cost: ["Water"],
effect: {
en: "Your opponent's Active Pokémon is now Poisoned."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 2
}
export default card