1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon afd3a664ae
Fixed most POP sets (#99)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:23:45 +02:00

71 lines
847 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../POP Series 5'
const card: Card = {
name: {
en: "Pikachu δ",
},
illustrator: "Ryo Ueda",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
25,
],
hp: 40,
types: [
"Metal",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Electric Punch",
},
damage: 10,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Heavy Metal",
},
effect: {
en: "Flip a coin for each Metal Energy attached to Pikachu. This attack does 10 damage plus 20 more damage for each heads.",
},
damage: "10+",
},
],
weaknesses: [
{
type: "Fighting"
},
],
retreat: 1,
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card