mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +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:
46
data/Scarlet & Violet/Obsidian Flames/080.ts
Normal file
46
data/Scarlet & Violet/Obsidian Flames/080.ts
Normal file
@ -0,0 +1,46 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Obsidian Flames"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Mélo",
|
||||
en: "Cleffa",
|
||||
es: "Cleffa",
|
||||
it: "Cleffa",
|
||||
pt: "Cleffa",
|
||||
de: "Pii"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 30,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
fr: "Pioche Happante",
|
||||
en: "Grasping Draw",
|
||||
es: "Robo Avaricioso",
|
||||
it: "Pesca Smaniosa",
|
||||
pt: "Compra Gananciosa",
|
||||
de: "Beherzt zugreifen"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Piochez des cartes jusqu'à en avoir 7 en main.",
|
||||
en: "Draw cards until you have 7 cards in your hand.",
|
||||
es: "Roba cartas hasta que tengas 7 cartas en tu mano.",
|
||||
it: "Pesca fino ad avere sette carte in mano.",
|
||||
pt: "Compre cartas até ter 7 cartas na sua mão.",
|
||||
de: "Ziehe so lange Karten, bis du 7 Karten auf deiner Hand hast."
|
||||
}
|
||||
}],
|
||||
|
||||
retreat: 0,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user