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

57 lines
971 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Pancham",
fr: "Pandespiègle",
es: "Pancham",
it: "Pancham",
pt: "Pancham",
de: "Pam-Pam"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Fighting"],
stage: "Basic",
retreat: 2,
regulationMark: "E",
illustrator: "Mina Nakai",
description: {
en: "Wanting to make sure it's taken seriously, Pancham's always giving others a glare. But if it's not focusing, it ends up smiling."
},
attacks: [{
cost: ["Colorless"],
name: {
en: "Raised Bad"
},
effect: {
en: "Search your deck for up to 2 Darkness Energy cards and attach them to this Pokémon. Then, shuffle your deck."
}
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
en: "Smash Kick"
},
damage: 30
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card