mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
98 lines
1.4 KiB
TypeScript
98 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../BREAKpoint'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Swanna",
|
||
fr: "Lakmécygne",
|
||
es: "Swanna",
|
||
it: "Swanna",
|
||
pt: "Swanna",
|
||
de: "Swaroness"
|
||
},
|
||
|
||
illustrator: "sui",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
581,
|
||
],
|
||
|
||
hp: 80,
|
||
|
||
types: [
|
||
"Water",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Ducklett",
|
||
fr: "Couaneton",
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Wing Attack",
|
||
fr: "Cru-Aile",
|
||
es: "Ataque Ala",
|
||
it: "Attacco d’Ala",
|
||
pt: "Ataque de Asa",
|
||
de: "Flügelschlag"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Brave Bird",
|
||
fr: "Rapace",
|
||
es: "Pájaro Osado",
|
||
it: "Baldeali",
|
||
pt: "Pássaro Bravo",
|
||
de: "Sturzflug"
|
||
},
|
||
effect: {
|
||
en: "This Pokémon does 20 damage to itself.",
|
||
fr: "Ce Pokémon s’inflige 20 dégâts.",
|
||
es: "Este Pokémon se hace 20 puntos de daño a sí mismo.",
|
||
it: "Questo Pokémon infligge 20 danni a se stesso.",
|
||
pt: "Este Pokémon causa 20 de danos a ele mesmo.",
|
||
de: "Dieses Pokémon fügt sich selbst 20 Schadenspunkte zu."
|
||
},
|
||
damage: 80,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-20"
|
||
},
|
||
],
|
||
|
||
retreat: 0
|
||
}
|
||
|
||
export default card
|