mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 17:39:18 +00:00
feat: Add Brilliant Stars (#250)
This commit is contained in:
63
data/Sword & Shield/Brilliant Stars/072.ts
Normal file
63
data/Sword & Shield/Brilliant Stars/072.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Brilliant Stars"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Hitmontop",
|
||||
fr: "Kapoera",
|
||||
es: "Hitmontop",
|
||||
it: "Hitmontop",
|
||||
pt: "Hitmontop",
|
||||
de: "Kapoera"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Spinning Draw",
|
||||
fr: "Pioche Tournante",
|
||||
es: "Robo Giratorio",
|
||||
it: "Pesca Rotante",
|
||||
pt: "Compra Giratória",
|
||||
de: "Drehender Zug"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Draw a card.",
|
||||
fr: "Piochez une carte.",
|
||||
es: "Roba 1 carta.",
|
||||
it: "Pesca una carta.",
|
||||
pt: "Compre 1 carta.",
|
||||
de: "Ziehe 1 Karte."
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Cyclone Kick",
|
||||
fr: "Pied Cyclone",
|
||||
es: "Patada Ciclón",
|
||||
it: "Calciovento",
|
||||
pt: "Chute Ciclone",
|
||||
de: "Wirbeltritt"
|
||||
},
|
||||
|
||||
damage: 100
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user