1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

73 lines
877 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Arceus'
const card: Card = {
name: {
en: "Wormadam Sandy Cloak",
},
illustrator: "Atsuko Nishida",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
413,
],
types: [
"Fighting",
],
evolveFrom: {
en: "Burmy Sandy Cloak",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Hang Down",
},
damage: 30,
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Cloak Headbutt",
},
effect: {
en: "If you have Wormadam Trash Cloak in play, this attack does 60 damage plus 30 more damage.",
},
damage: "60+",
},
],
weaknesses: [
{
type: "Fire",
value: "+20"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 1,
}
export default card