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/015.ts
Normal file
53
data/Scarlet & Violet/Black Bolt/015.ts
Normal file
@@ -0,0 +1,53 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Black Bolt"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Larvesta",
|
||||
fr: "Pyronille",
|
||||
de: "Ignivor",
|
||||
it: "Larvesta",
|
||||
pt: "Larvesta",
|
||||
es: "Larvesta",
|
||||
'es-mx': "Larvesta"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Peck Off",
|
||||
fr: "Picpic Piqueur",
|
||||
de: "Lospicken",
|
||||
it: "Sbeccata",
|
||||
pt: "Arrancar com Bico",
|
||||
es: "Picotear",
|
||||
'es-mx': "Picotear"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Before doing damage, discard all Pokémon Tools from your opponent's Active Pokémon.",
|
||||
fr: "Avant d'infliger des dégâts, défaussez tous les Outils Pokémon du Pokémon Actif de votre adversaire.",
|
||||
de: "Bevor du Schaden zufügst, lege alle Pokémon-Ausrüstungen vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel.",
|
||||
it: "Prima di infliggere danni, scarta tutte le carte Oggetto Pokémon dal Pokémon attivo del tuo avversario.",
|
||||
pt: "Antes de causar dano, descarte todas as Ferramentas Pokémon do Pokémon Ativo do seu oponente.",
|
||||
es: "Antes de infligir daño, descarta todas las Herramientas Pokémon del Pokémon Activo de tu rival.",
|
||||
'es-mx': "Antes de infligir daño, descarta todas las Herramientas Pokémon del Pokémon Activo de tu rival."
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user