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:
40
data/Scarlet & Violet/SVP Black Star Promos/190.ts
Normal file
40
data/Scarlet & Violet/SVP Black Star Promos/190.ts
Normal 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
|
Reference in New Issue
Block a user