mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 02:19:17 +00:00
64 lines
1.6 KiB
TypeScript
64 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Space-Time Smackdown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Wormadam",
|
|
fr: "Cheniselle",
|
|
es: "Wormadam",
|
|
it: "Wormadam",
|
|
de: "Burmadame",
|
|
'pt-br': "Wormadam",
|
|
ko: "도롱마담"
|
|
},
|
|
|
|
illustrator: "Hajime Kusajima",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 120,
|
|
types: ["Fighting"],
|
|
|
|
evolveFrom: {
|
|
en: "Burmy"
|
|
},
|
|
|
|
description: {
|
|
en: "Its appearance changes depending on where it evolved. The materials on hand become a part of its body.",
|
|
fr: "Son apparence varie selon le lieu d'évolution.\nSon corps est façonné avec les matériaux à disposition.",
|
|
es: "Su apariencia varía según dónde evolucione.\nLos materiales que haya pasan a formar parte de su cuerpo.",
|
|
it: "Il suo aspetto dipende dal luogo in cui si evolve.\nTutto ciò che ha intorno va a costituire il suo corpo.",
|
|
de: "Die Umgebung, in der es sich entwickelt, bestimmt\nsein Aussehen. Es formt seinen Körper mithilfe\nder umliegenden Materialien.",
|
|
'pt-br': "Muda de aparência dependendo do local\nde sua evolução. Os materiais que tiver\nà mão se tornam parte de seu corpo.",
|
|
ko: "진화한 장소에 따라 모습이\n바뀐다. 가까이 있는 재료가\n몸의 일부가 된다."
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Land Crush",
|
|
fr: "Écras'Terre",
|
|
es: "Aterrizaje",
|
|
it: "Schiacciaterra",
|
|
de: "Schollenbrecher",
|
|
'pt-br': "Aperto de Terra",
|
|
ko: "랜드크래시"
|
|
},
|
|
|
|
damage: 70,
|
|
cost: ["Fighting", "Colorless", "Colorless"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Grass",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 2,
|
|
boosters: ["dialga"]
|
|
}
|
|
|
|
export default card
|