mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29: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:
63
data/Scarlet & Violet/151/005.ts
Normal file
63
data/Scarlet & Violet/151/005.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../151"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Reptincel",
|
||||
en: "Charmeleon",
|
||||
es: "Charmeleon",
|
||||
it: "Charmeleon",
|
||||
pt: "Charmeleon",
|
||||
de: "Glutexo"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Fire"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
fr: "Fournaise",
|
||||
en: "Combustion",
|
||||
es: "Combustión",
|
||||
it: "Fuoco Continuo",
|
||||
pt: "Combustão",
|
||||
de: "Glühen"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: ["Fire", "Fire", "Fire"],
|
||||
|
||||
name: {
|
||||
fr: "Déflagration",
|
||||
en: "Fire Blast",
|
||||
es: "Llamarada",
|
||||
it: "Fuocobomba",
|
||||
pt: "Rajada de Fogo",
|
||||
de: "Feuersturm"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Défaussez une Énergie de ce Pokémon.",
|
||||
en: "Discard an Energy from this Pokémon.",
|
||||
es: "Descarta 1 Energía de este Pokémon.",
|
||||
it: "Scarta un'Energia da questo Pokémon.",
|
||||
pt: "Descarte uma Energia deste Pokémon.",
|
||||
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 90
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user