mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
97 lines
1.8 KiB
TypeScript
97 lines
1.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Duraludon",
|
||
fr: "Duralugon",
|
||
es: "Duraludon",
|
||
it: "Duraludon",
|
||
pt: "Duraludon",
|
||
de: "Duraludon"
|
||
},
|
||
|
||
illustrator: "Shin Nagasawa",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
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 Metal Energy card from your discard pile to 1 of your Pokémon.",
|
||
fr: "Attachez une carte Énergie Metal de votre pile de défausse à l'un de vos Pokémon.",
|
||
es: "Une 1 carta de Energía Metal de tu pila de descartes a 1 de tus Pokémon.",
|
||
it: "Assegna a uno dei tuoi Pokémon una carta Energia Metal dalla tua pila degli scarti.",
|
||
pt: "Ligue 1 carta de Energia Metal da sua pilha de descarte a 1 dos seus Pokémon.",
|
||
de: "Lege 1 Metal-Energiekarte aus deinem Ablagestapel an 1 deiner Pokémon an."
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Metal",
|
||
"Metal",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Power Beam",
|
||
fr: "Puissant Rayon",
|
||
es: "Rayo de Luz Poderoso",
|
||
it: "Raggiopotenza",
|
||
pt: "Raio de Poder",
|
||
de: "Power-Strahl"
|
||
},
|
||
|
||
damage: 110,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Grass",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
hp: 130,
|
||
types: ["Metal"],
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: true,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "Its body resembles polished metal, and it's both lightweight and strong. The only drawback is that it rusts easily."
|
||
}
|
||
}
|
||
|
||
export default card
|