mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-04 08:32:10 +00:00
102 lines
2.0 KiB
TypeScript
102 lines
2.0 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: "pl1-29",
|
|
localId: 29,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Golduck",
|
|
fr: "Akwakwak",
|
|
},
|
|
|
|
hp: 90,
|
|
|
|
type: [
|
|
Type.WATER,
|
|
],
|
|
|
|
dexId: 55,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl1/29/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl1/29/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl1/29/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl1/29/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Psyduck",
|
|
fr: "Psykokwak",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 10,
|
|
name: "Kouki Saitou"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Swim",
|
|
fr: "Nager",
|
|
},
|
|
text: {
|
|
en: "If your opponent has any Water Energy attached to any of his or her Pokémon, you may do 30 damage to any 1 Benched Pokémon instead. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
|
fr: "Si les Pokémon de votre adversaire possèdent de l'Énergie Water, vous pouvez infliger 30 dégâts à n'importe lequel des Pokémon de Banc. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc).",
|
|
},
|
|
damage: 30
|
|
},{
|
|
cost: [
|
|
Type.WATER,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Water Slide",
|
|
fr: "Toboggan d'O",
|
|
},
|
|
text: {
|
|
en: "You may move all Energy cards attached to Golduck to 1 of your Benched Pokémon. If you do, this attack does 40 damage plus 20 more damage.",
|
|
fr: "Vous pouvez déplacer toutes les cartes Énergie attachées à Akwakwak sur 1 de vos Pokémon de Banc. Cette attaque inflige alors 40 dégâts plus 20 dégâts supplémentaires.",
|
|
},
|
|
damage: 40
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.LIGHTNING,
|
|
value: "+20"
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.Rare,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Platinum",
|
|
code: "pl1"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|