1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-21 03:29:17 +00:00

feat: Add remaining Sword & Shield promos (#768)

This commit is contained in:
2025-05-26 13:53:06 +02:00
committed by GitHub
parent 25df3092d2
commit 8c77025f4e
285 changed files with 10818 additions and 868 deletions

View File

@ -0,0 +1,58 @@
import { Card } from "../../../interfaces"
import Set from "../SWSH Black Star Promos"
const card: Card = {
set: Set,
name: {
fr: "Bulbizarre",
de: "Bisasam",
es: "Bulbasaur",
pt: "Bulbasaur",
it: "Bulbasaur",
en: "Bulbasaur"
},
rarity: "None",
category: "Pokemon",
hp: 70,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
fr: "Fouet Lianes",
de: "Rankenhieb",
es: "Látigo Cepa",
pt: "Chicote de Vinha",
it: "Frustata",
en: "Vine Whip"
},
damage: 10
}, {
cost: ["Grass", "Colorless"],
name: {
fr: "Tranch'Herbe",
de: "Rasierblatt",
es: "Hoja Afilada",
pt: "Folha Navalha",
it: "Foglielama",
en: "Razor Leaf"
},
damage: 20
}],
retreat: 2,
regulationMark: "F",
description: {
en: "There is a plant seed on its back right from the day this Pokémon is born. The seed slowly grows larger."
}
}
export default card