mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 02:19:17 +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:
50
data/Scarlet & Violet/Obsidian Flames/122.ts
Normal file
50
data/Scarlet & Violet/Obsidian Flames/122.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Obsidian Flames"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Germéclat",
|
||||
en: "Glimmet",
|
||||
es: "Glimmet",
|
||||
it: "Glimmet",
|
||||
pt: "Glimmet",
|
||||
de: "Lumispross"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting", "Fighting"],
|
||||
|
||||
name: {
|
||||
fr: "Éclat Empoisonné",
|
||||
en: "Poison Shard",
|
||||
es: "Esquirla Veneno",
|
||||
it: "Velenoscheggia",
|
||||
pt: "Estilhaço Venenoso",
|
||||
de: "Giftsplitter"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
|
||||
en: "Your opponent's Active Pokémon is now Poisoned.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Envenenado.",
|
||||
it: "Il Pokémon attivo del tuo avversario viene avvelenato.",
|
||||
pt: "O Pokémon Ativo do seu oponente agora está Envenenado.",
|
||||
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet."
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user