mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
105 lines
1.8 KiB
TypeScript
105 lines
1.8 KiB
TypeScript
import Card from '../../../interfaces/Card'
|
|
import Type from '../../../interfaces/Type'
|
|
import Tag from '../../../interfaces/Tag'
|
|
import Rarity from '../../../interfaces/Rarity'
|
|
import AbilityType from '../../../interfaces/AbilityType'
|
|
import Category from '../../../interfaces/Category'
|
|
|
|
const card: Card = {
|
|
|
|
// ids
|
|
id: "dp3-28",
|
|
localId: 28,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Golduck",
|
|
fr: "Akwakwak",
|
|
},
|
|
|
|
hp: 90,
|
|
|
|
type: [
|
|
Type.WATER,
|
|
],
|
|
|
|
dexId: 55,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp3/28/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp3/28/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/dp/dp3/28/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/dp/dp3/28/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Psyduck",
|
|
fr: "Psykokwak",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 5,
|
|
name: "Ken Sugimori"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.PSYCHIC
|
|
],
|
|
name: {
|
|
en: "Encore",
|
|
fr: "Encore",
|
|
},
|
|
text: {
|
|
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.",
|
|
},
|
|
damage: 20
|
|
},{
|
|
cost: [
|
|
Type.WATER,
|
|
Type.PSYCHIC
|
|
],
|
|
name: {
|
|
en: "Break Beam",
|
|
fr: "Rayon brisant",
|
|
},
|
|
text: {
|
|
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.",
|
|
},
|
|
damage: 40
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.LIGHTNING,
|
|
value: "+20"
|
|
}],
|
|
|
|
|
|
|
|
retreat: 1,
|
|
|
|
rarity: Rarity.Rare,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Secret Wonders",
|
|
code: "dp3"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|