1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-22 03:49:19 +00:00
Files
cards-database/data/Black & White/Black & White/37.ts
Florian Bouillon e21ea0646e Added BW translation (#65)
* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-09-02 12:01:58 +02:00

83 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Black & White'
const card: Card = {
name: {
en: "Swanna",
fr: "Lakmécygne",
es: "Swanna",
it: "Swanna",
pt: "Swanna",
de: "Swaroness"
},
illustrator: "Naoyo Kimura",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
581,
],
hp: 90,
types: [
"Water",
],
evolveFrom: {
en: "Ducklett",
fr: "Couaneton",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Feather Dance",
fr: "Danse-Plume",
},
effect: {
en: "During your next turn, each of this Pokémon's attacks does 40 more damage(before applying Weakness and Resistance).",
fr: "Pendant votre prochain tour, chaque attaque de ce Pokémon inflige 40 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance).",
},
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Aqua Ring",
fr: "Anneau Hydro",
},
effect: {
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
fr: "Échangez ce Pokémon avec 1 de vos Pokémon de Banc.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card