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:
53
data/Scarlet & Violet/Black Bolt/060.ts
Normal file
53
data/Scarlet & Violet/Black Bolt/060.ts
Normal file
@@ -0,0 +1,53 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Black Bolt"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Escavalier",
|
||||
fr: "Lançargot",
|
||||
de: "Cavalanzas",
|
||||
it: "Escavalier",
|
||||
pt: "Escavalier",
|
||||
es: "Escavalier",
|
||||
'es-mx': "Escavalier"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Metal"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Metal"],
|
||||
|
||||
name: {
|
||||
en: "Wild Lances",
|
||||
fr: "Lances Sauvages",
|
||||
de: "Wilde Lanzen",
|
||||
it: "Lance Feroci",
|
||||
pt: "Lanças Selvagens",
|
||||
es: "Lanzas Salvajes",
|
||||
'es-mx': "Lanzas Salvajes"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 30 damage to itself.",
|
||||
fr: "Ce Pokémon s'inflige aussi 30 dégâts.",
|
||||
de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu.",
|
||||
it: "Questo Pokémon infligge anche 30 danni a se stesso.",
|
||||
pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.",
|
||||
es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.",
|
||||
'es-mx': "Este Pokémon también se hace 30 puntos de daño a sí mismo."
|
||||
},
|
||||
|
||||
damage: 90
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user