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:
50
data/Scarlet & Violet/Obsidian Flames/075.ts
Normal file
50
data/Scarlet & Violet/Obsidian Flames/075.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Obsidian Flames"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Têtampoule",
|
||||
en: "Tadbulb",
|
||||
es: "Tadbulb",
|
||||
it: "Tadbulb",
|
||||
pt: "Tadbulb",
|
||||
de: "Blipp"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Secousse Tonnerre",
|
||||
en: "Thunder Jolt",
|
||||
es: "Sacudida Atronadora",
|
||||
it: "Scoppiotuono",
|
||||
pt: "Choque do Trovão",
|
||||
de: "Donnerrüttler"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Ce Pokémon s'inflige aussi 10 dégâts.",
|
||||
en: "This Pokémon also does 10 damage to itself.",
|
||||
es: "Este Pokémon también se hace 10 puntos de daño a sí mismo.",
|
||||
it: "Questo Pokémon infligge anche 10 danni a se stesso.",
|
||||
pt: "Este Pokémon também causa 10 pontos de dano a si mesmo.",
|
||||
de: "Dieses Pokémon fügt auch sich selbst 10 Schadenspunkte zu."
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user