mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-03 13:01:57 +00:00
67 lines
1.4 KiB
TypeScript
67 lines
1.4 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Black Bolt"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Fraxure",
|
|
fr: "Incisache",
|
|
de: "Sharfax",
|
|
it: "Fraxure",
|
|
pt: "Fraxure",
|
|
es: "Fraxure",
|
|
'es-mx': "Fraxure"
|
|
},
|
|
|
|
rarity: "Illustration rare",
|
|
category: "Pokemon",
|
|
hp: 100,
|
|
types: ["Dragon"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Bite",
|
|
fr: "Morsure",
|
|
de: "Biss",
|
|
it: "Morso",
|
|
pt: "Mordida",
|
|
es: "Mordisco",
|
|
'es-mx': "Mordida"
|
|
},
|
|
|
|
damage: 30
|
|
}, {
|
|
cost: ["Fighting", "Metal"],
|
|
|
|
name: {
|
|
en: "Boundless Power",
|
|
fr: "Puissance Illimitée",
|
|
de: "Unbegrenzte Kraft",
|
|
it: "Potere Incontenibile",
|
|
pt: "Poder Ilimitado",
|
|
es: "Poder Ilimitado",
|
|
'es-mx': "Poder Ilimitado"
|
|
},
|
|
|
|
effect: {
|
|
en: "During your next turn, this Pokémon can't use attacks.",
|
|
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser d'attaques.",
|
|
de: "Während deines nächsten Zuges kann dieses Pokémon keine Attacken einsetzen.",
|
|
it: "Durante il tuo prossimo turno, questo Pokémon non può usare attacchi.",
|
|
pt: "Durante o seu próximo turno, este Pokémon não poderá usar ataques.",
|
|
es: "Durante tu próximo turno, este Pokémon no puede usar ataques.",
|
|
'es-mx': "Durante tu próximo turno, este Pokémon no puede usar ataques."
|
|
},
|
|
|
|
damage: 90
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "I"
|
|
}
|
|
|
|
export default card |