1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

89 lines
1.4 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 Genesis'
const card: Card = {
name: {
en: "Quagsire",
fr: "Maraistre",
de: "Morlord"
},
illustrator: "Atsuko Nishida",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
195,
],
hp: 70,
types: [
"Water",
],
evolveFrom: {
en: "Wooper",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
"Water",
],
name: {
en: "Surf",
fr: "Surf",
de: "Surf"
},
damage: 30,
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Earthquake",
fr: "Séisme",
de: "Earthquake"
},
effect: {
en: "Does 10 damage to each of your own Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Inflige 10 dégâts à chacun des Pokémon de votre Banc. (Ne pas appliquer la Faiblesse et la Résistance aux Pokémon du Banc.)",
de: "Does 10 damage to each of your own Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)"
},
damage: 60,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-30"
},
],
description: {
fr: "Comme il est très insouciant et peu attentif, il se cogne souvent dans les rochers ou les quilles des bateaux lorsqu'il nage."
}
}
export default card