1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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,40 @@
import { Card } from "../../../interfaces"
import Set from "../SVP Black Star Promos"
const card: Card = {
set: Set,
name: {
en: "Pikachu",
pt: "Pikachu",
},
rarity: "None",
category: "Pokemon",
hp: 50,
types: ["Lightning"],
stage: "Basic",
attacks: [
{
cost: ["Lightning", "Lightning", "Colorless"],
name: {
en: "Scrappy Spark",
pt: "Faísca Obstinada"
},
effect: {
en: "Flip a coin until you get tails. This attack does 30 more damage for each heads.",
pt: "Jogue uma moeda até que saia coroa. Este ataque causará 30 pontos de dano a mais para cada cara."
},
damage: "30+"
}
],
retreat: 1,
regulationMark: "H"
}
export default card