1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 12:09:53 +00:00

87 lines
1.7 KiB
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 '../SWSH Black Star Promos'
const card: Card = {
set: Set,
name: {
en: "Duraludon",
fr: "Duralugon",
es: "Duraludon",
it: "Duraludon",
pt: "Duraludon",
de: "Duraludon"
},
illustrator: "Kazuma Koda",
rarity: "None",
category: "Pokemon",
hp: 130,
types: ["Metal"],
attacks: [{
name: {
en: "Metal Sharpener",
fr: "Affuteur de Métal",
es: "Afilador de Metales",
it: "Affilametallo",
pt: "Amolador de Metal",
de: "Metallschleifer"
},
effect: {
en: "Attach a {M} Energy card from your discard pile to 1 of your Pokémon.",
fr: "Attachez une carte Énergie {M} de votre pile de défausse à l'un de vos Pokémon.",
es: "Une 1 carta de Energía {M} de tu pila de descartes a 1 de tus Pokémon.",
it: "Assegna a uno dei tuoi Pokémon una carta Energia {M} dalla tua pila degli scarti.",
pt: "Ligue 1 carta de Energia {M} da sua pilha de descarte a 1 dos seus Pokémon.",
de: "Lege 1 {M}-Energiekarte aus deinem Ablagestapel an 1 deiner Pokémon an."
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
en: "Power Beam",
fr: "Puissant Rayon",
es: "Rayo de Luz Poderoso",
it: "Raggiopotenza",
pt: "Raio de Poder",
de: "Power-Strahl"
},
damage: 110,
cost: ["Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
description: {
en: "Its body resembles polished metal, and it's both lightweight and strong. The only drawback is that it rusts easily."
},
stage: "Basic",
dexId: [884],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
regulationMark: "D"
}
export default card