mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-24 08:59:55 +00:00
89 lines
1.6 KiB
TypeScript
89 lines
1.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../SM Black Star Promos'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Meltan",
|
||
fr: "Meltan",
|
||
es: "Meltan",
|
||
it: "Meltan",
|
||
pt: "Meltan",
|
||
de: "Meltan"
|
||
},
|
||
illustrator: "Shin Nagasawa",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
808,
|
||
],
|
||
hp: 60,
|
||
types: [
|
||
"Metal",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Metal",
|
||
],
|
||
name: {
|
||
en: "Multiply",
|
||
fr: "Multiplication",
|
||
es: "Multiplicar",
|
||
it: "Moltiplicazione",
|
||
pt: "Multiplicar",
|
||
de: "Vervielfachung"
|
||
},
|
||
effect: {
|
||
en: "Search your deck for Meltan and put it onto your Bench. Then, shuffle your deck.",
|
||
fr: "Cherchez Meltan dans votre deck et placez-le sur votre Banc. Mélangez ensuite votre deck.",
|
||
es: "Busca en tu baraja 1 Meltan y ponlo en tu Banca. Después, baraja las cartas de tu baraja.",
|
||
it: "Cerca nel tuo mazzo un Meltan e mettilo nella tua panchina. Poi rimischia le carte del tuo mazzo.",
|
||
pt: "Procure por Meltan no seu baralho e coloque-o no seu Banco. Em seguida, embaralhe o seu baralho.",
|
||
de: "Durchsuche dein Deck nach Meltan und lege es auf deine Bank. Mische anschließend dein Deck."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Beam",
|
||
fr: "Rayon",
|
||
es: "Transmisión",
|
||
it: "Raggio",
|
||
pt: "Feixe",
|
||
de: "Strahl"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Psychic",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|