1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-30 03:19:55 +00:00

48 lines
653 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
dexId: [278],
set: Set,
name: {
fr: "Goélise",
en: "Wingull",
es: "Wingull",
it: "Wingull",
pt: "Wingull",
de: "Wingull"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Colorless"],
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
fr: "Tornade",
en: "Gust",
es: "Tornado",
it: "Raffica",
pt: "Lufada de Vento",
de: "Windstoß"
},
damage: 30
}],
retreat: 1,
regulationMark: "G",
variants: {
holo: false
},
illustrator: "Kouki Saitou"
}
export default card