1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

72 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 '../Sun & Moon'
const card: Card = {
name: {
en: "Wingull",
fr: "Goélise",
es: "Wingull",
it: "Wingull",
pt: "Wingull",
de: "Wingull"
},
illustrator: "Aya Kusube",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
278,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Roost",
fr: "Atterrissage",
es: "Respiro",
it: "Trespolo",
pt: "Poleiro",
de: "Ruheort"
},
effect: {
en: "Heal 30 damage from this Pokémon. It cant retreat during your next turn.",
fr: "Soignez 30 dégâts à ce Pokémon. Il ne peut pas battre en retraite pendant votre prochain tour.",
es: "Cura 30 puntos de daño a este Pokémon. No puede retirarse durante tu próximo turno.",
it: "Cura questo Pokémon da 30 danni. Non può ritirarsi durante il tuo prossimo turno.",
pt: "Cure 30 pontos de dano deste Pokémon. Este Pokémon não poderá recuar durante a sua próxima vez de jogar.",
de: "Heile 30 Schadenspunkte bei diesem Pokémon. Es kann sich während deines nächsten Zuges nicht zurückziehen."
},
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card