mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
63 lines
958 B
TypeScript
63 lines
958 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../POP Series 7'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Burmy Sandy Cloak",
|
|
},
|
|
illustrator: "Midori Harada",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
412,
|
|
],
|
|
hp: 40,
|
|
types: [
|
|
"Grass",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
abilities: [
|
|
{
|
|
type: "Poke-POWER",
|
|
name: {
|
|
en: "Wear Cloak",
|
|
},
|
|
effect: {
|
|
en: "Once during your turn (before your attack), if Burmy Sandy Cloak is your Active Pokémon, you may search your discard pile for a basic Fighting Energy card and attach it to Burmy Sandy Cloak.",
|
|
},
|
|
},
|
|
],
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Sandy Cloak Tackle",
|
|
},
|
|
effect: {
|
|
en: "If Burmy Sandy Cloak has any Fighting Energy attached to it, this attack does 10 damage plus 10 more damage.",
|
|
},
|
|
damage: 10,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Fire",
|
|
value: "+10"
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|