mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
feat: Add Brilliant Stars (#250)
This commit is contained in:
54
data/Sword & Shield/Brilliant Stars/080.ts
Normal file
54
data/Sword & Shield/Brilliant Stars/080.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Brilliant Stars"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Throh",
|
||||
fr: "Judokrak",
|
||||
es: "Throh",
|
||||
it: "Throh",
|
||||
pt: "Throh",
|
||||
de: "Jiutesto"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Lunge Out",
|
||||
fr: "Allonger",
|
||||
es: "Arremeter",
|
||||
it: "Affondo Lungo",
|
||||
pt: "Bote",
|
||||
de: "Sprungangriff"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Seismic Toss",
|
||||
fr: "Frappe Atlas",
|
||||
es: "Sísmico",
|
||||
it: "Movimento Sismico",
|
||||
pt: "Arremesso Sísmico",
|
||||
de: "Geowurf"
|
||||
},
|
||||
|
||||
damage: 110
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user