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:
57
data/Scarlet & Violet/Black Bolt/087.ts
Normal file
57
data/Scarlet & Violet/Black Bolt/087.ts
Normal file
@@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Black Bolt"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Snivy",
|
||||
fr: "Vipélierre",
|
||||
de: "Serpifeu",
|
||||
it: "Snivy",
|
||||
pt: "Snivy",
|
||||
es: "Snivy",
|
||||
'es-mx': "Snivy"
|
||||
},
|
||||
|
||||
rarity: "Illustration rare",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass"],
|
||||
|
||||
name: {
|
||||
en: "Tackle",
|
||||
fr: "Charge",
|
||||
de: "Tackle",
|
||||
it: "Azione",
|
||||
pt: "Investida",
|
||||
es: "Placaje",
|
||||
'es-mx': "Tacleada"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Grass", "Grass"],
|
||||
|
||||
name: {
|
||||
en: "Vine Whip",
|
||||
fr: "Fouet Lianes",
|
||||
de: "Rankenhieb",
|
||||
it: "Frustata",
|
||||
pt: "Chicote de Vinha",
|
||||
es: "Látigo Cepa",
|
||||
'es-mx': "Látigo Cepa"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user