1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +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
956 B
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 '../Fates Collide'
const card: Card = {
name: {
en: "Wormadam",
fr: "Cheniselle",
},
illustrator: "Hajime Kusajima",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
413,
],
hp: 110,
types: [
"Fighting",
],
evolveFrom: {
en: "Burmy",
fr: "Cheniti",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Sand Spray",
fr: "Jet Sableux",
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Twin Bursts",
fr: "Explosions en Duo",
},
effect: {
en: "If Mothim is on your Bench, this attack does 60 more damage.",
fr: "Si Papilord est sur votre Banc, cette attaque inflige 60 dégâts supplémentaires.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card