1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

fix: Add E-Card French Translations (#166)

* fix: Add E-Card French Translations

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

* fix: Fixed Cards without rarity

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-11-22 19:07:35 +00:00
committed by GitHub
parent d4be6fa84f
commit 8ef099273e
351 changed files with 2187 additions and 889 deletions

View File

@ -0,0 +1,70 @@
import { Card } from '../../../interfaces'
import Set from '../Aquapolis'
const card: Card = {
name: {
en: "Golduck",
},
illustrator: "Sumiyoshi Kizuki",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
55,
],
hp: 70,
types: [
"Water",
],
evolveFrom: {
en: "Psyduck",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Slash",
},
damage: 20,
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Distortion Beam",
fr: "Rayon de distorsion"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Asleep. If tails, the Defending Pokémon is now Confused.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Endormi. Si c'est pile, le Pokémon Défenseur est maintenant Confus."
},
damage: 30,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card