mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 13:21:58 +00:00
feat: add database update (#825)
This commit is contained in:
53
data/Scarlet & Violet/Black Bolt/109.ts
Normal file
53
data/Scarlet & Violet/Black Bolt/109.ts
Normal file
@@ -0,0 +1,53 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Black Bolt"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Cubchoo",
|
||||
fr: "Polarhume",
|
||||
de: "Petznief",
|
||||
it: "Cubchoo",
|
||||
pt: "Cubchoo",
|
||||
es: "Cubchoo",
|
||||
'es-mx': "Cubchoo"
|
||||
},
|
||||
|
||||
rarity: "Illustration rare",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Water"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
en: "Snotted Up",
|
||||
fr: "Nez Pris",
|
||||
de: "Rotznäsig",
|
||||
it: "Ricoperto di Muco",
|
||||
pt: "Melequento",
|
||||
es: "Moco Loco",
|
||||
'es-mx': "Moco Flojo"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your opponent's next turn, the Defending Pokémon can't use attacks.",
|
||||
fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas utiliser d'attaques.",
|
||||
de: "Während des nächsten Zuges deines Gegners kann das Verteidigende Pokémon keine Attacken einsetzen.",
|
||||
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può usare attacchi.",
|
||||
pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá usar ataques.",
|
||||
es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede usar ataques.",
|
||||
'es-mx': "Durante el próximo turno de tu rival, el Pokémon Defensor no puede usar ataques."
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user