mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 09:59:19 +00:00
feat: Add Brilliant Stars (#250)
This commit is contained in:
51
data/Sword & Shield/Brilliant Stars/118.ts
Normal file
51
data/Sword & Shield/Brilliant Stars/118.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Brilliant Stars"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Staravia",
|
||||
fr: "Étourvol",
|
||||
es: "Staravia",
|
||||
it: "Staravia",
|
||||
pt: "Staravia",
|
||||
de: "Staravia"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Colorless"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Starly",
|
||||
fr: "Étourmi",
|
||||
es: "Starly",
|
||||
it: "Starly",
|
||||
pt: "Starly",
|
||||
de: "Staralili"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Wing Attack",
|
||||
fr: "Cru-Ailes",
|
||||
es: "Ataque Ala",
|
||||
it: "Attacco d'Ala",
|
||||
pt: "Ataque de Asa",
|
||||
de: "Flügelschlag"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user