1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +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,39 @@
import { Card } from "../../../interfaces"
import Set from "../SVP Black Star Promos"
const card: Card = {
set: Set,
name: {
en: "Pikachu with Grey Felt Hat",
pt: "Pikachu com Chapéu de feltro Cinza"
},
rarity: "None",
category: "Pokemon",
hp: 60,
types: ["Lightning"],
stage: "Basic",
attacks: [
{
cost: ["Lightning"],
name: {
en: "Pika-Portrait",
pt: "Pika-Retrato"
},
effect: {
en: "Search your deck for a Pikachu and put it onto your Bench. Then, shuffle your deck.",
pt: "Procure por um Pikachu em seu baralho e coloque-o no seu Banco. Em seguida, embaralhe seu baralho."
},
}
],
retreat: 1,
regulationMark: "H"
}
export default card