1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

96 lines
1.3 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 '../Rebel Clash'
const card: Card = {
dexId: [278],
name: {
en: "Wingull",
fr: "Goélise",
es: "Wingull",
it: "Wingull",
pt: "Wingull",
de: "Wingull"
},
illustrator: "0313",
rarity: "Common",
category: "Pokemon",
set: Set,
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Collect",
fr: "Collecte",
es: "Coleccionar",
it: "Tassa",
pt: "Coleta",
de: "Sammeln"
},
effect: {
en: "Draw a card.",
fr: "Piochez une carte.",
es: "Roba 1 carta.",
it: "Pesca una carta.",
pt: "Compre 1 carta.",
de: "Ziehe 1 Karte."
},
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Wave Splash",
fr: "Grosse Vague",
es: "Chapoteo Ondulante",
it: "Schizzi d'Onda",
pt: "Onda Borrifante",
de: "Wellenplatscher"
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
retreat: 1,
hp: 70,
types: ["Water"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Basic",
description: {
en: "It makes its nest on sheer cliffs. Riding the sea breeze, it glides up into the expansive skies."
}
}
export default card