1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

72
data/XY/BREAKpoint/17.ts Normal file
View File

@ -0,0 +1,72 @@
import { Card } from '../../../interfaces'
import Set from '../BREAKpoint'
const card: Card = {
name: {
en: "Golduck",
fr: "Akwakwak",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
55,
],
hp: 100,
types: [
"Water",
],
evolveFrom: {
en: "Psyduck",
fr: "Psykokwak",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Derail",
fr: "Déraillement",
},
effect: {
en: "Discard a Special Energy attached to your opponent's Active Pokémon.",
fr: "Défaussez une Énergie spéciale attachée au Pokémon Actif de votre adversaire.",
},
damage: 20,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Hydro Splash",
fr: "Hydro-Éclaboussure",
},
damage: 70,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card