mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
82 lines
1.7 KiB
TypeScript
82 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../SWSH Black Star Promos'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Pikachu",
|
||
fr: "Pikachu",
|
||
es: "Pikachu",
|
||
it: "Pikachu",
|
||
pt: "Pikachu",
|
||
de: "Pikachu"
|
||
},
|
||
|
||
illustrator: "Hideki Ishikawa",
|
||
rarity: "None",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Lightning"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Iron Tail",
|
||
fr: "Queue de Fer",
|
||
es: "Cola Férrea",
|
||
it: "Codacciaio",
|
||
pt: "Iron Tail",
|
||
de: "Eisenschweif"
|
||
},
|
||
|
||
effect: {
|
||
en: "Flip a coin until you get tails. This attack does 30 damage for each heads.",
|
||
fr: "Lancez une pièce jusqu'à obtenir un côté pile. Cette attaque inflige 30 dégâts pour chaque côté face.",
|
||
es: "Lanza 1 moneda hasta que salga cruz. Este ataque hace 30 puntos de daño por cada cara.",
|
||
it: "Lancia una moneta finché non esce croce. Questo attacco infligge 30 danni ogni volta che esce testa.",
|
||
pt: "Flip a coin until you get tails. This attack does 30 damage for each heads.",
|
||
de: "Wirf so lange 1 Münze, bis zum ersten Mal das Ergebnis Zahl kommt. Diese Attacke fügt 30 Schadenspunkte pro Kopf zu."
|
||
},
|
||
|
||
damage: "30×",
|
||
cost: ["Colorless", "Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Electro Ball",
|
||
fr: "Boule Élek",
|
||
es: "Bola Voltio",
|
||
it: "Energisfera",
|
||
pt: "Electro Ball",
|
||
de: "Elektroball"
|
||
},
|
||
|
||
damage: 60,
|
||
cost: ["Lightning", "Lightning", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
|
||
description: {
|
||
en: "Pikachu that can generate powerful electricity have cheek sacs that are extra soft and super stretchy."
|
||
},
|
||
|
||
stage: "Basic",
|
||
dexId: [25],
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|