1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon afd3a664ae
Fixed most POP sets (#99)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:23:45 +02:00

89 lines
1.2 KiB
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 '../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"
},
],
description: {
en: "When BURMY evolved, it cloak became a part of this Pokémons body. The cloak is never shed."
},
retreat: 1,
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card