mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-20 19:19:18 +00:00
feat: Add Scarlet & violet three first sets (#446)
Some checks failed
Build / build (push) Failing after 59s
Some checks failed
Build / build (push) Failing after 59s
This commit is contained in:
61
data/Scarlet & Violet/Obsidian Flames/144.ts
Normal file
61
data/Scarlet & Violet/Obsidian Flames/144.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Obsidian Flames"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Archéomire",
|
||||
en: "Bronzor",
|
||||
es: "Bronzor",
|
||||
it: "Bronzor",
|
||||
pt: "Bronzor",
|
||||
de: "Bronzel"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Metal"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Metal"],
|
||||
|
||||
name: {
|
||||
fr: "Pioche Miroir",
|
||||
en: "Mirror Draw",
|
||||
es: "Robo Espejo",
|
||||
it: "Pesca Riflessa",
|
||||
pt: "Compra Espelhada",
|
||||
de: "Spiegelzug"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Piochez des cartes jusqu'à en avoir autant dans votre main que votre adversaire.",
|
||||
en: "Draw cards until you have the same number of cards in your hand as your opponent.",
|
||||
es: "Roba cartas hasta que tengas la misma cantidad de cartas en tu mano que tu rival.",
|
||||
it: "Pesca fino ad avere in mano lo stesso numero di carte del tuo avversario.",
|
||||
pt: "Compre cartas até ter o mesmo número de cartas na sua mão do que seu oponente.",
|
||||
de: "Ziehe so lange Karten, bis du genauso viele Karten auf der Hand hast wie dein Gegner."
|
||||
}
|
||||
}, {
|
||||
cost: ["Metal", "Metal"],
|
||||
|
||||
name: {
|
||||
fr: "Plongée Rapide",
|
||||
en: "Speed Dive",
|
||||
es: "Picado Rápido",
|
||||
it: "Immersione Rapida",
|
||||
pt: "Mergulho Veloz",
|
||||
de: "Tempohechtsprung"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user