mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 05:11:58 +00:00
feat: add database update (#825)
This commit is contained in:
67
data/Scarlet & Violet/Black Bolt/069.ts
Normal file
67
data/Scarlet & Violet/Black Bolt/069.ts
Normal file
@@ -0,0 +1,67 @@
|
||||
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: "Common",
|
||||
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
|
Reference in New Issue
Block a user