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

78 lines
1.3 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 '../Secret Wonders'
const card: Card = {
name: {
en: "Wormadam Sandy Cloak",
fr: "Cheniselle Cape Sable",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
413,
],
hp: 80,
types: [
"Fighting",
],
evolveFrom: {
en: "Burmy Sandy Cloak",
fr: "Cheniti Cape Sable",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Sandy Cloak",
fr: "Cape sable",
},
effect: {
en: "Prevent all effects of attacks, excluding damage, done to Wormadam Sandy Cloak.",
fr: "Prévenez tous les effets d'attaques, dégâts exclus, infligés à Cheniselle Cape Sable.",
},
},
],
attacks: [
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Push Over",
fr: "Facilité",
},
effect: {
en: "Does 40 damage plus 10 more damage for each Fighting Energy attached to Wormadam Sandy Cloak.",
fr: "Prévenez tous les effets dune attaque, dégâts exclus, infligés à Cheniselle Cape Sable par des Pokémon de votre adversaire.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fire",
value: "+20"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 1,
}
export default card