mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01:49:19 +00:00
feat: Add Stellar Crown (#533)
This commit is contained in:
63
data/Scarlet & Violet/Stellar Crown/106.ts
Normal file
63
data/Scarlet & Violet/Stellar Crown/106.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Stellar Crown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Duraludon",
|
||||
fr: "Duralugon",
|
||||
es: "Duraludon",
|
||||
it: "Duraludon",
|
||||
pt: "Duraludon",
|
||||
de: "Duraludon"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Metal"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Metal"],
|
||||
|
||||
name: {
|
||||
en: "Hammer In",
|
||||
fr: "Enfoncement",
|
||||
es: "Martillear",
|
||||
it: "Martello",
|
||||
pt: "Martelada",
|
||||
de: "Einhämmern"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Metal", "Metal", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Raging Hammer",
|
||||
fr: "Marteau Rageur",
|
||||
es: "Martillo Furioso",
|
||||
it: "Martelfuria",
|
||||
pt: "Martelo Feroz",
|
||||
de: "Wuthammer"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack does 10 more damage for each damage counter on this Pokémon.",
|
||||
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur ce Pokémon.",
|
||||
es: "Este ataque hace 10 puntos de daño más por cada contador de daño en este Pokémon.",
|
||||
it: "Questo attacco infligge 10 danni in più per ogni segnalino danno presente su questo Pokémon.",
|
||||
pt: "Este ataque causa 10 pontos de dano a mais para cada contador de dano neste Pokémon.",
|
||||
de: "Diese Attacke fügt für jede Schadensmarke auf diesem Pokémon 10 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "80+"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user