mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat: Add Brilliant Stars (#250)
This commit is contained in:
54
data/Sword & Shield/Brilliant Stars/102.ts
Normal file
54
data/Sword & Shield/Brilliant Stars/102.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Brilliant Stars"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Klink",
|
||||
fr: "Tic",
|
||||
es: "Klink",
|
||||
it: "Klink",
|
||||
pt: "Klink",
|
||||
de: "Klikk"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Metal"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Metal"],
|
||||
|
||||
name: {
|
||||
en: "Vise Grip",
|
||||
fr: "Force Poigne",
|
||||
es: "Agarre",
|
||||
it: "Presa",
|
||||
pt: "Agarramento Compressor",
|
||||
de: "Klammer"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Metal", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Spinning Attack",
|
||||
fr: "Attaque Tournante",
|
||||
es: "Ataque Giratorio",
|
||||
it: "Attacco Rotante",
|
||||
pt: "Ataque Giratório",
|
||||
de: "Rundumangriff"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user