1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

85 lines
1.3 KiB
TypeScript
Raw Permalink 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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Psyduck",
fr: "Psykokwak",
es: "Psyduck",
it: "Psyduck",
pt: "Psyduck",
de: "Enton"
},
illustrator: "sui",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
54,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Scratch",
fr: "Griffe",
es: "Arañazo",
it: "Graffio",
pt: "Arranhão",
de: "Kratzer"
},
damage: 10,
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Confusion Wave",
fr: "Vague de Confusion",
es: "Ola de Confusión",
it: "Confusionda",
pt: "Onda de Confusão",
de: "Verwirrende Welle"
},
effect: {
en: "Both Active Pokémon are now Confused.",
fr: "Les deux Pokémon Actifs sont maintenant Confus.",
es: "Ambos Pokémon Activos pasan a estar Confundidos.",
it: "Entrambi i Pokémon attivi vengono confusi.",
pt: "Ambos os Pokémon Ativos agora estão Confusos.",
de: "Beide Aktiven Pokémon sind jetzt verwirrt."
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card