mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 02:19:17 +00:00
feat: Add Scarlet & Violet Promos (#607)
* feat: ADd set datas Signed-off-by: Avior <git@avior.me> * feat: Add cards Signed-off-by: Avior <git@avior.me> --------- Signed-off-by: Avior <git@avior.me>
This commit is contained in:
70
data/Scarlet & Violet/SVP Black Star Promos/104.ts
Normal file
70
data/Scarlet & Violet/SVP Black Star Promos/104.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SVP Black Star Promos"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Melmetal ex",
|
||||
fr: "Melmetal-ex",
|
||||
es: "Melmetal ex",
|
||||
it: "Melmetal-ex",
|
||||
pt: "Melmetal ex",
|
||||
de: "Melmetal-ex"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 300,
|
||||
types: ["Metal"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Metal"],
|
||||
|
||||
name: {
|
||||
en: "Metal-bolize",
|
||||
fr: "Métal-Bolisme",
|
||||
es: "Metal-bolizar",
|
||||
it: "Metalbolismo",
|
||||
pt: "Metal-bolizar",
|
||||
de: "Metall-bolisieren"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Search your deck for up to 2 Basic Metal Energy cards and attach them to this Pokémon. Then, shuffle your deck.",
|
||||
fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie Metal de base, puis attachez-les à ce Pokémon. Mélangez ensuite votre deck.",
|
||||
es: "Busca en tu baraja hasta 2 cartas de Energía Metal Básica y únelas a este Pokémon. Después, baraja las cartas de tu baraja.",
|
||||
it: "Cerca nel tuo mazzo fino a due carte Energia base Metal e assegnale a questo Pokémon. Poi rimischia le carte del tuo mazzo.",
|
||||
pt: "Procure por até 2 cartas de Energia Metal Básica no seu baralho e ligue-as a este Pokémon. Em seguida, embaralhe o seu baralho.",
|
||||
de: "Durchsuche dein Deck nach bis zu 2 Basis-Metal-Energiekarten und lege sie an dieses Pokémon an. Mische anschließend dein Deck."
|
||||
}
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Full Metal Knuckle",
|
||||
fr: "Poing Métal Pur",
|
||||
es: "Nudillo Metálico Total",
|
||||
it: "Metalpugno",
|
||||
pt: "Punho Metálico Máximo",
|
||||
de: "Vollmetallfaust"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack does 30 more damage for each Metal Energy attached to this Pokémon.",
|
||||
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie Metal attachée à ce Pokémon.",
|
||||
es: "Este ataque hace 30 puntos de daño más por cada Energía Metal unida a este Pokémon.",
|
||||
it: "Questo attacco infligge 30 danni in più per ogni Energia Metal assegnata a questo Pokémon.",
|
||||
pt: "Este ataque causa 30 pontos de dano a mais para cada Energia Metal ligada a este Pokémon.",
|
||||
de: "Diese Attacke fügt für jede an dieses Pokémon angelegte Metal-Energie 30 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "90+"
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user