mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 18:29:19 +00:00
feat: Add Prismatic Evolutions (#637)
This commit is contained in:
54
data/Scarlet & Violet/Prismatic Evolutions/046.ts
Normal file
54
data/Scarlet & Violet/Prismatic Evolutions/046.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Prismatic Evolutions"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Iron Boulder",
|
||||
fr: "Roc-de-Fer",
|
||||
es: "Ferromole",
|
||||
pt: "Rocha Férrea",
|
||||
it: "Massoferreo",
|
||||
de: "Eisenfels"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Adjusted Horn",
|
||||
fr: "Corne Ajustée",
|
||||
es: "Cuerno Graduable",
|
||||
pt: "Chifre Ajustado",
|
||||
it: "Equicorno",
|
||||
de: "Angepasstes Horn"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If you don't have the same number of cards in your hand as your opponent, this attack does nothing.",
|
||||
fr: "Si vous n'avez pas le même nombre de cartes dans votre main que votre adversaire, cette attaque ne fait rien.",
|
||||
es: "Si no tienes la misma cantidad de cartas en tu mano que tu rival, este ataque no hace nada.",
|
||||
pt: "Se você não tiver o mesmo número de cartas na sua mão do que seu oponente, este ataque não fará nada.",
|
||||
it: "Se non hai lo stesso numero di carte in mano del tuo avversario, questo attacco non ha effetto.",
|
||||
de: "Wenn du nicht genauso viele Karten auf der Hand hast wie dein Gegner, hat diese Attacke keine Auswirkungen."
|
||||
},
|
||||
|
||||
damage: 170
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "H",
|
||||
variants: {
|
||||
holo: true,
|
||||
normal: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user