1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 05:11:58 +00:00

add cards svp promos en & pt and add abbreviations official stellar crown (#662)

This commit is contained in:
Helio Filho
2025-02-19 19:59:39 -03:00
committed by GitHub
parent a597759d9d
commit 0158daf40d
11 changed files with 487 additions and 1 deletions

View File

@@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../SVP Black Star Promos"
const card: Card = {
set: Set,
name: {
en: "Leafeon",
pt: "Leafeon",
},
rarity: "None",
category: "Pokemon",
hp: 120,
types: ["Grass"],
stage: "Stage1",
attacks: [
{
cost: ["Colorless"],
name: {
en: "Leaflet Blessings",
pt: "Bênçãos das Folhinhas",
},
effect: {
en: "Attach a Basic Grass Energy card from your hand to 1 of your Benched Pokémon. If you do, heal all damage from that Pokémon.",
pt: "Ligue uma carta de Energia Grama Básica da sua mão a 1 dos seus Pokémon no Banco. Se fizer isso, cure todo o dano daquele Pokémon."
},
},
{
cost: ["Grass", "Colorless"],
name: {
en: "Solar Beam",
pt: "Raio Solar",
},
damage: "70"
},
],
retreat: 1,
regulationMark: "H"
}
export default card