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