1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-20 11:09:19 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

104
cards/bw/bw7/35.ts Normal file
View File

@ -0,0 +1,104 @@
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: "bw7-35",
localId: 35,
// Card informations
name: {
en: "Golduck",
fr: "Akwakwak",
},
hp: 90,
type: [
Type.WATER,
],
dexId: 55,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw7/35/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw7/35/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw7/35/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw7/35/high.png",
},
},
evolveFrom: {
en: "Psyduck",
fr: "Psykokwak",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 0,
name: "Kagemaru Himeno"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Amnesia",
fr: "Amnésie",
},
text: {
en: "Choose 1 of the Defending Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.",
fr: "Choisissez 1 des attaques du Pokémon Défenseur. Le Pokémon ciblé ne peut pas utiliser l'attaque choisie pendant le prochain tour de votre adversaire.",
},
damage: 20
},{
cost: [
Type.WATER,
Type.WATER
],
name: {
en: "Aquafall",
fr: "Aquasplash",
},
text: {
en: "Discard all Energy attached to this Pokémon.",
fr: "Défaussez toutes les Énergies attachées à ce Pokémon.",
},
damage: 90
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Boundaries Crossed",
code: "bw7"
}
}
export default card