1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 07:39:54 +00:00

63 lines
753 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Rebel Clash'
const card: Card = {
name: {
en: "Shuckle",
},
illustrator: "HYOGONOSUKE",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Berry Picking",
},
effect: {
en: "Shuffle up to 5 basic Energy cards from your discard pile into your deck.",
},
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Bind",
},
effect: {
en: "Flip a coin. If heads, your opponents Active Pokémon is now Paralyzed.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card