mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-21 15:49:55 +00:00
* 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>
50 lines
1.3 KiB
TypeScript
50 lines
1.3 KiB
TypeScript
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 |