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

58
data/XY/BREAKpoint/18.ts Normal file
View File

@ -0,0 +1,58 @@
import { Card } from '../../../interfaces'
import Set from '../BREAKpoint'
const card: Card = {
name: {
en: "Golduck BREAK",
fr: "Akwakwak TURBO",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
55,
],
hp: 140,
types: [
"Water",
],
evolveFrom: {
en: "Golduck",
fr: "Akwakwak",
},
stage: "BREAK",
abilities: [
{
type: "Ability",
name: {
en: "Hyper Transfer",
fr: "Hyper Transfert",
},
effect: {
en: "As often as you like during your turn (before your attack), you may move a basic Energy from 1 of your Pokémon to another of your Pokémon.",
fr: "Autant de fois que vous le voulez pendant votre tour (avant votre attaque), vous pouvez déplacer une Énergie de base de l'un de vos Pokémon vers un autre de vos Pokémon.",
},
},
],
attacks: [
{
name: {
fr: "Règle des Évolutions TURBO",
},
},
],
}
export default card