1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +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

99 lines
1.8 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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Swanna",
fr: "Lakmécygne",
es: "Swanna",
it: "Swanna",
pt: "Swanna",
de: "Swaroness"
},
illustrator: "Yukiko Baba",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
581,
],
hp: 110,
types: [
"Water",
],
evolveFrom: {
en: "Ducklett",
fr: "Couaneton",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Tailwind",
fr: "Vent Arrière",
es: "Viento Afín",
it: "Ventoincoda",
pt: "Vento de Cauda",
de: "Rückenwind"
},
effect: {
en: "Attach an Energy card from your hand to 1 of your Pokémon.",
fr: "Attachez une carte Énergie de votre main à lun de vos Pokémon.",
es: "Une 1 carta de Energía de tu mano a 1 de tus Pokémon.",
it: "Assegna una carta Energia dalla tua mano a uno dei tuoi Pokémon.",
pt: "Ligue 1 carta de Energia da sua mão a 1 dos seus Pokémon.",
de: "Lege 1 Energiekarte aus deiner Hand an 1 deiner Pokémon an."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Air Slash",
fr: "Lame dAir",
es: "Tajo Aéreo",
it: "Eterelama",
pt: "Golpe de Ar",
de: "Luftschnitt"
},
effect: {
en: "Discard an Energy from this Pokémon.",
fr: "Défaussez une Énergie de ce Pokémon.",
es: "Descarta 1 Energía de este Pokémon.",
it: "Scarta unEnergia assegnata a questo Pokémon.",
pt: "Descarte 1 Energia deste Pokémon.",
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
},
damage: 70,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card