mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-31 03:50:46 +00:00
57 lines
805 B
TypeScript
57 lines
805 B
TypeScript
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: "Common",
|
|
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 |