mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
39 lines
699 B
TypeScript
39 lines
699 B
TypeScript
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 |