mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-01 15:12:10 +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>
68 lines
947 B
TypeScript
68 lines
947 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Steam Siege'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Xerneas BREAK",
|
||
fr: "Xerneas TURBO",
|
||
},
|
||
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
716,
|
||
],
|
||
|
||
hp: 150,
|
||
|
||
types: [
|
||
"Fairy",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Xerneas",
|
||
fr: "Xerneas",
|
||
},
|
||
|
||
stage: "BREAK",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fairy",
|
||
"Fairy",
|
||
],
|
||
name: {
|
||
en: "Life Stream",
|
||
fr: "Règle des Évolutions TURBO",
|
||
},
|
||
effect: {
|
||
en: "This attack does 20 damage times the amount of Energy attached to all of your Pokémon.",
|
||
},
|
||
damage: "20×",
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fairy",
|
||
"Fairy",
|
||
],
|
||
name: {
|
||
fr: "Flux Vital",
|
||
},
|
||
effect: {
|
||
fr: "Cette attaque inflige 20 dégâts multipliés par le nombre d’Énergies attachées à tous vos Pokémon.",
|
||
},
|
||
damage: "20×",
|
||
|
||
},
|
||
],
|
||
|
||
retreat: 0
|
||
}
|
||
|
||
export default card
|