mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
89 lines
1.4 KiB
TypeScript
89 lines
1.4 KiB
TypeScript
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
|