1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon df23371cb4
fix: Add most POP series French translations (#170)
* fix: Added most of the translations

Some translations aren't available or are user made without a card image depicted

Signed-off-by: Avior <github@avior.me>

* fix: Add sets French translations

Signed-off-by: Avior <github@avior.me>
2021-11-16 10:08:20 +01:00

70 lines
1.4 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "Luvdisc",
fr: "Lovdisc"
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
370,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Paralyzing Kiss",
fr: "Baiser paralysant"
},
effect: {
en: "If there are 2 Defending Pokémon in play, choose 1 of the Defending Pokémon. That Pokémon is now Paralyzed. (If there is only 1 Defending Pokémon, this attack does nothing.)",
fr: "S'il y a 2 Pokémon Défenseurs en jeu, choisissez-en un. Ce Pokémon est maintenant Paralysé. (S'il n'y a qu'1 Pokémon Défenseur, cette attaque est sans effet.)"
},
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Fast Stream",
fr: "Torrent"
},
effect: {
en: "Move 1 Energy card attached to the Defending Pokémon to the other Defending Pokémon. (Ignore this effect if your opponent has only 1 Defending Pokémon.)",
fr: "Prenez une carte Énergie attachée au Pokémon Défenseur et attachez-la à l'autre Pokémon Défenseur. (Ne tenez pas compte de cet effet si votre adversaire ne possède qu'un seul Pokémon Défenseur)."
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning"
},
],
retreat: 1
}
export default card