1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-19 06:49:53 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

82 lines
1.2 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 '../Boundaries Crossed'
const card: Card = {
name: {
en: "Swanna",
fr: "Lakmécygne",
},
illustrator: "Suwama Chiaki",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
581,
],
hp: 90,
types: [
"Water",
],
evolveFrom: {
en: "Ducklett",
fr: "Couaneton",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Aerial Ace",
fr: "Aéropique",
},
effect: {
en: "Flip a coin. If heads, this attack does 20 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.",
},
damage: 20,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Defog",
fr: "Anti-Brume",
},
effect: {
en: "You may discard any Stadium card in play. If you do, this attack does 40 more damage.",
fr: "Vous pouvez défausser une carte Stade en jeu. Dans ce cas, cette attaque inflige 40 dégâts supplémentaires.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card