mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 02:19:17 +00:00
feat: Add Astral Radiance (#305)
This commit is contained in:
71
data/Sword & Shield/Astral Radiance/020.ts
Normal file
71
data/Sword & Shield/Astral Radiance/020.ts
Normal file
@ -0,0 +1,71 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Astral Radiance"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Dartrix",
|
||||
fr: "Efflèche",
|
||||
es: "Dartrix",
|
||||
it: "Dartrix",
|
||||
pt: "Dartrix",
|
||||
de: "Arboretoss"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Rowlet",
|
||||
fr: "Brindibou",
|
||||
es: "Rowlet",
|
||||
it: "Rowlet",
|
||||
pt: "Rowlet",
|
||||
de: "Bauz"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Flap",
|
||||
fr: "Battement",
|
||||
es: "Aleteo",
|
||||
it: "Alabattito",
|
||||
pt: "Asa",
|
||||
de: "Flattern"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Razor Wing",
|
||||
fr: "Aile Tranchante",
|
||||
es: "Ala Cortante",
|
||||
it: "Ala Tagliente",
|
||||
pt: "Asa Cortante",
|
||||
de: "Rasierflügel"
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F",
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user