mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat: Add Astral Radiance (#305)
This commit is contained in:
71
data/Sword & Shield/Astral Radiance/024.ts
Normal file
71
data/Sword & Shield/Astral Radiance/024.ts
Normal file
@ -0,0 +1,71 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Astral Radiance"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Quilava",
|
||||
fr: "Feurisson",
|
||||
es: "Quilava",
|
||||
it: "Quilava",
|
||||
pt: "Quilava",
|
||||
de: "Igelavar"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Fire"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Cyndaquil",
|
||||
fr: "Héricendre",
|
||||
es: "Cyndaquil",
|
||||
it: "Cyndaquil",
|
||||
pt: "Cyndaquil",
|
||||
de: "Feurigel"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Tackle",
|
||||
fr: "Charge",
|
||||
es: "Placaje",
|
||||
it: "Azione",
|
||||
pt: "Investida",
|
||||
de: "Tackle"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Flare",
|
||||
fr: "Flamboiement",
|
||||
es: "Llama",
|
||||
it: "Fiammata",
|
||||
pt: "Chama",
|
||||
de: "Flackern"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F",
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user