1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
2021-11-12 17:24:19 +01:00

85 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Neo Revelation'
const card: Card = {
name: {
en: "Quagsire",
fr: "Maraiste"
},
illustrator: "Yuka Morii",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
195,
],
hp: 70,
types: [
"Water",
],
evolveFrom: {
en: "Wooper",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
"Fighting",
],
name: {
en: "Mud Slap",
fr: "Coud'boue"
},
damage: 30,
},
{
cost: [
"Water",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Whirlpool",
fr: "Lessiveuse"
},
effect: {
en: "If the Defending Pokémon has any Energy cards attached to it, choose 1 of them and discard it.",
fr: "Si des cartes Énergie sont attachées au Pokémon Défenseur, choisissez 1 d'elle et défaussez-la."
},
damage: 40,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-30"
},
],
description: {
fr: "Comme il est très insouciant et peu attentif, il se cogne dans les rochers ou les quilles des bateaux quand il nage."
}
}
export default card