mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-27 05:12:11 +00:00
80 lines
1.6 KiB
TypeScript
80 lines
1.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Secret Wonders'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Golduck",
|
|
fr: "Akwakwak",
|
|
de: "Entoron"
|
|
},
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
55,
|
|
],
|
|
hp: 90,
|
|
types: [
|
|
"Water",
|
|
],
|
|
evolveFrom: {
|
|
en: "Psyduck",
|
|
fr: "Psykokwak",
|
|
},
|
|
stage: "Stage1",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Psychic",
|
|
],
|
|
name: {
|
|
en: "Encore",
|
|
fr: "Encore",
|
|
de: "Zugabe"
|
|
},
|
|
effect: {
|
|
en: "Choose 1 of the Defending Pokémon's attacks. That Pokémon can use only that attack during your opponent's next turn.",
|
|
fr: "Choisissez 1 des attaques du Pokémon Défenseur. Ce Pokémon ne peut utiliser que cette attaque lors du prochain tour de votre adversaire.",
|
|
de: "Wähle 1 Angriff des Verteidigenden Pokémon. Dieses Pokémon kann im nächsten Zug deines Gegners nur den gewählten Angriff einsetzen."
|
|
},
|
|
damage: 20,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Water",
|
|
"Psychic",
|
|
],
|
|
name: {
|
|
en: "Break Beam",
|
|
fr: "Rayon brisant",
|
|
de: "Unterbrecherstrahl"
|
|
},
|
|
effect: {
|
|
en: "You may do 40 damage plus 20 more damage. If you do, Golduck is now Confused.",
|
|
fr: "Vous pouvez infliger 40 dégâts plus 20 dégâts supplémentaires. Akwakwak devient alors Confus.",
|
|
de: "Du kannst diesen Angriff 40 Schadenspunkte plus 20 weitere Schadenspunkte zufügen lassen. Wenn du das machst, ist Entoron jetzt verwirrt."
|
|
},
|
|
damage: "40+",
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Lightning",
|
|
value: "+20"
|
|
},
|
|
],
|
|
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|