mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-04 20:59:55 +00:00
69 lines
2.1 KiB
TypeScript
69 lines
2.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Meltan",
|
|
fr: "Meltan",
|
|
es: "Meltan",
|
|
it: "Meltan",
|
|
de: "Meltan",
|
|
'pt-br': "Meltan",
|
|
ko: "멜탄"
|
|
},
|
|
|
|
illustrator: "Shin Nagasawa",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Metal"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Metal"],
|
|
|
|
name: {
|
|
en: "Amass",
|
|
fr: "Amas",
|
|
es: "Amasar",
|
|
it: "Ammasso",
|
|
de: "Anhäufen",
|
|
'pt-br': "Acumular",
|
|
ko: "저축하기"
|
|
},
|
|
|
|
effect: {
|
|
en: "Take 1 {M} Energy from your Energy Zone and attach it to this Pokémon.",
|
|
fr: "Prenez une Énergie {M} de votre zone Énergie et attachez-la à ce Pokémon.",
|
|
es: "Une 1 Energía {M} de tu área de Energía a este Pokémon.",
|
|
it: "Prendi un'Energia {M} dalla tua Zona Energia e assegnala a questo Pokémon.",
|
|
de: "Lege 1 {M}-Energie aus deinem Energiebereich an dieses Pokémon an.",
|
|
'pt-br': "Pegue 1 Energia {M} da sua Zona de Energia e ligue-a a este Pokémon.",
|
|
ko: "자신의 에너지존에서 {M}에너지를 1개 내보내 이 포켓몬에게 붙인다."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fire",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
rarity: "One Diamond",
|
|
|
|
description: {
|
|
en: "It dissolves and eats metal. Circulating liquid metal within its body is how it generates energy.",
|
|
fr: "Il se nourrit du métal qu'il fait fondre, et produit de l'énergie\nen faisant circuler du métal liquide dans son corps.",
|
|
es: "Funde metales para ingerirlos.\nUna vez licuados, los hace circular por el\ninterior de su cuerpo para generar energía.",
|
|
it: "Fonde il metallo per cibarsene, e lo fa\ncircolare nel suo corpo per produrre energia.",
|
|
de: "Es schmilzt Metall ein und frisst es.\nIn seinem Körper wandelt es das flüssig\ngewordene Metall in Energie um.",
|
|
'pt-br': "Dissolve e come metal. Este Pokémon gera energia\nquando metal líquido corre pelo seu corpo.",
|
|
ko: "금속을 녹여서 먹어버린다.\n액체 금속을 순환시켜서\n체내에서 에너지를 만든다."
|
|
},
|
|
|
|
boosters: ["charizard"]
|
|
}
|
|
|
|
export default card
|