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
83 lines
1.4 KiB
TypeScript
83 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../SWSH Black Star Promos'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Duraludon",
|
||
fr: "Duralugon",
|
||
es: "Duraludon",
|
||
pt: "Duraludon",
|
||
de: "Duraludon"
|
||
},
|
||
|
||
illustrator: "Ryuta Fuse",
|
||
rarity: "None",
|
||
category: "Pokemon",
|
||
hp: 130,
|
||
types: ["Metal"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Metal Claw",
|
||
fr: "Griffe Acier",
|
||
es: "Garra Metal",
|
||
pt: "Metal Claw",
|
||
de: "Metallklaue"
|
||
},
|
||
|
||
damage: 70,
|
||
cost: ["Metal", "Colorless", "Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Steel Beam",
|
||
fr: "Métalaser",
|
||
es: "Metaláser",
|
||
pt: "Steel Beam",
|
||
de: "Stahlstrahl"
|
||
},
|
||
|
||
effect: {
|
||
en: "This Pokémon also does 40 damage to itself.",
|
||
fr: "Ce Pokémon s'inflige aussi 40 dégâts.",
|
||
es: "Este Pokémon también se hace 40 puntos de daño a sí mismo.",
|
||
pt: "This Pokémon also does 40 damage to itself.",
|
||
de: "Dieses Pokémon fügt auch sich selbst 40 Schadenspunkte zu."
|
||
},
|
||
|
||
damage: 150,
|
||
cost: ["Metal", "Colorless", "Colorless", "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
|