1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

73 lines
1.2 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Pangoro",
fr: "Pandarbare",
es: "Pangoro",
it: "Pangoro",
pt: "Pangoro",
de: "Pandagro"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 140,
types: ["Darkness"],
evolveFrom: {
en: "Pancham",
fr: "Pandespiègle",
es: "Pancham",
it: "Pancham",
pt: "Pancham",
de: "Pam-Pam"
},
stage: "Stage1",
retreat: 4,
regulationMark: "E",
illustrator: "HYOGONOSUKE",
description: {
en: "Using its leaf, Pangoro can predict the moves of its opponents. It strikes with punches that can turn a dump truck into scrap with just one hit."
},
attacks: [{
cost: ["Darkness", "Darkness", "Colorless"],
name: {
en: "Knocking Hammer"
},
damage: 90,
effect: {
en: "Discard the top card of your opponent's deck."
}
}, {
cost: ["Darkness", "Darkness", "Darkness", "Colorless"],
name: {
en: "Shakedown"
},
damage: 150,
effect: {
en: "Discard a random card from your opponent's hand."
}
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card