mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
85 lines
1.3 KiB
TypeScript
85 lines
1.3 KiB
TypeScript
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
|