1
0
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:
2025-07-19 18:58:03 +02:00
committed by GitHub
parent aa68bfccf2
commit 651346dff7
354 changed files with 21377 additions and 7 deletions

View 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: "Illustration rare",
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