mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 09:59:19 +00:00
feat: Add Scarlet & Violet Promos (#607)
* feat: ADd set datas Signed-off-by: Avior <git@avior.me> * feat: Add cards Signed-off-by: Avior <git@avior.me> --------- Signed-off-by: Avior <git@avior.me>
This commit is contained in:
50
data/Scarlet & Violet/SVP Black Star Promos/101.ts
Normal file
50
data/Scarlet & Violet/SVP Black Star Promos/101.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SVP Black Star Promos"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pikachu",
|
||||
fr: "Pikachu",
|
||||
es: "Pikachu",
|
||||
it: "Pikachu",
|
||||
pt: "Pikachu",
|
||||
de: "Pikachu"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Lightning", "Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Scrappy Spark",
|
||||
fr: "Étincelle Querelleuse",
|
||||
es: "Chispa Intrépida",
|
||||
it: "Scintilla Combattiva",
|
||||
pt: "Faísca Obstinada",
|
||||
de: "Rauffunke"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin until you get tails. This attack does 30 more damage for each heads.",
|
||||
fr: "Lancez une pièce jusqu'à obtenir un côté pile. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face.",
|
||||
es: "Lanza 1 moneda hasta que salga cruz. Este ataque hace 30 puntos de daño más por cada cara.",
|
||||
it: "Lancia una moneta finché non esce croce. Questo attacco infligge 30 danni in più ogni volta che esce testa.",
|
||||
pt: "Jogue uma moeda até sair coroa. Este ataque causa 30 pontos de dano a mais para cada cara.",
|
||||
de: "Wirf so lange 1 Münze, bis sie Zahl zeigt. Diese Attacke fügt 30 Schadenspunkte mehr pro Kopf zu."
|
||||
},
|
||||
|
||||
damage: "30+"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user