mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +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>
70 lines
1.0 KiB
TypeScript
70 lines
1.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../BREAKthrough'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Noivern BREAK",
|
|
fr: "Bruyverne TURBO",
|
|
},
|
|
|
|
illustrator: "5ban Graphics",
|
|
rarity: "Ultra Rare",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
715,
|
|
],
|
|
|
|
hp: 130,
|
|
|
|
types: [
|
|
"Dragon",
|
|
],
|
|
|
|
evolveFrom: {
|
|
en: "Noivern",
|
|
fr: "Bruyverne",
|
|
},
|
|
|
|
stage: "BREAK",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Psychic",
|
|
"Darkness",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Synchro Woofer",
|
|
fr: "Règle des Évolutions TURBO",
|
|
},
|
|
effect: {
|
|
en: "If you have the same number of cards in your hand as your opponent, this attack does 80 more damage.",
|
|
},
|
|
damage: "70+",
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Psychic",
|
|
"Darkness",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
fr: "Fréquence Synchro",
|
|
},
|
|
effect: {
|
|
fr: "Si vous avez le même nombre de cartes dans votre main que votre adversaire, cette attaque inflige 80 dégâts supplémentaires.",
|
|
},
|
|
damage: "70+",
|
|
|
|
},
|
|
],
|
|
|
|
retreat: 0
|
|
}
|
|
|
|
export default card
|