mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
* Updated Kalos Starter Set data Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed XY set Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed some more XY sets Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Some more fixes Signed-off-by: Avior <florian.bouillon@delta-wings.net> * More updated :D Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Finished update in English Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Updated XY datas Signed-off-by: Avior <florian.bouillon@delta-wings.net>
66 lines
904 B
TypeScript
66 lines
904 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Fates Collide'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Carbink BREAK",
|
|
fr: "Strassie TURBO",
|
|
},
|
|
|
|
illustrator: "5ban Graphics",
|
|
rarity: "Ultra Rare",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
703,
|
|
],
|
|
|
|
hp: 110,
|
|
|
|
types: [
|
|
"Fighting",
|
|
],
|
|
|
|
evolveFrom: {
|
|
en: "Carbink",
|
|
fr: "Strassie",
|
|
},
|
|
|
|
stage: "BREAK",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Fighting",
|
|
],
|
|
name: {
|
|
en: "Diamond Gift",
|
|
fr: "Règle des Évolutions TURBO",
|
|
},
|
|
effect: {
|
|
en: "Attach 2 Energy cards from your discard pile to 1 of your Fighting Pokémon.",
|
|
},
|
|
damage: 20,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Fighting",
|
|
],
|
|
name: {
|
|
fr: "Cadeau de Diamant",
|
|
},
|
|
effect: {
|
|
fr: "Attachez 2 cartes Énergie de votre pile de défausse à l'un de vos Pokémon Fighting.",
|
|
},
|
|
damage: 20,
|
|
|
|
},
|
|
],
|
|
|
|
retreat: 0
|
|
}
|
|
|
|
export default card
|