1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00

Fixed most POP sets (#99)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-10-26 17:23:45 +02:00
committed by GitHub
parent 829d78fa6f
commit afd3a664ae
153 changed files with 2328 additions and 1124 deletions

View File

@ -5,21 +5,26 @@ 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: [
@ -33,6 +38,7 @@ const card: Card = {
},
},
],
attacks: [
{
cost: [
@ -46,16 +52,18 @@ const card: Card = {
effect: {
en: "Does 40 damage plus 10 more damage for each Fighting Energy attached to Wormadam Sandy Cloak.",
},
damage: 40,
damage: "40+",
},
],
weaknesses: [
{
type: "Fire",
value: "+20"
},
],
resistances: [
{
type: "Lightning",
@ -63,9 +71,18 @@ const card: Card = {
},
],
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