1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 46220745ce
Pop serie do not report any sets (#27)
* rename to another name
* renamed
* Renamed references
2021-06-02 12:13:12 +02:00

72 lines
965 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../POP Series 7'
const card: Card = {
name: {
en: "Wormadam Sandy Cloak",
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
413,
],
hp: 80,
types: [
"Fighting",
],
evolveFrom: {
en: "Burmy",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Sandy Cloak",
},
effect: {
en: "Prevent all effects of attacks, excluding damage, done to Wormadam Sandy Cloak.",
},
},
],
attacks: [
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Push Over",
},
effect: {
en: "Does 40 damage plus 10 more damage for each Fighting Energy attached to Wormadam Sandy Cloak.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fire",
value: "+20"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
}
export default card