mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-05 21:09:54 +00:00
65 lines
1.7 KiB
TypeScript
65 lines
1.7 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Metapod",
|
|
fr: "Chrysacier",
|
|
es: "Metapod",
|
|
it: "Metapod",
|
|
de: "Safcon",
|
|
'pt-br': "Metapod",
|
|
ko: "단데기"
|
|
},
|
|
|
|
illustrator: "Yuka Morii",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Grass"],
|
|
stage: "Stage1",
|
|
|
|
evolveFrom: {
|
|
en: "Caterpie"
|
|
},
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Bug Bite",
|
|
fr: "Piqûre",
|
|
es: "Picadura",
|
|
it: "Coleomorso",
|
|
de: "Käferbiss",
|
|
'pt-br': "Picada",
|
|
ko: "벌레먹기"
|
|
},
|
|
|
|
damage: "30"
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fire",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 2,
|
|
rarity: "One Diamond",
|
|
|
|
description: {
|
|
en: "It is waiting for the moment to evolve. At this stage, it can only harden, so it remains motionless to avoid attack.",
|
|
fr: "En attendant sa prochaine évolution, il ne peut que durcir\nsa carapace et rester immobile pour éviter de se faire attaquer.",
|
|
es: "Como en este estado solo puede\nendurecer su coraza, permanece\ninmóvil a la espera de evolucionar.",
|
|
it: "In attesa di evolversi, l'unica cosa che può\nfare è indurire la sua corazza, quindi rimane\nimmobile per evitare di essere attaccato.",
|
|
de: "In diesem Zustand wartet es auf die Entwicklung.\nEs kann nur seinen Panzer erhärten, daher bewegt\nes sich nicht, um nicht angegriffen zu werden.",
|
|
'pt-br': "Metapod está aguardando o momento certo para\nevoluir. Neste estágio, só consegue endurecer,\nentão permanece imóvel para evitar ataques.",
|
|
ko: "진화를 기다리고 있는 상태다.\n단단해지는 것밖에 할 수 없어서\n공격받지 않도록 꿈쩍 않고 있다."
|
|
},
|
|
|
|
boosters: ["pikachu"]
|
|
}
|
|
|
|
export default card
|