mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-23 00:29:55 +00:00
* feat: ADd set datas Signed-off-by: Avior <git@avior.me> * feat: Add cards Signed-off-by: Avior <git@avior.me> --------- Signed-off-by: Avior <git@avior.me>
41 lines
620 B
TypeScript
41 lines
620 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SVP Black Star Promos"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Ampharos",
|
|
fr: "Pharamp",
|
|
es: "Ampharos",
|
|
it: "Ampharos",
|
|
pt: "Ampharos",
|
|
de: "Ampharos"
|
|
},
|
|
|
|
rarity: "None",
|
|
category: "Pokemon",
|
|
hp: 160,
|
|
types: ["Lightning"],
|
|
stage: "Stage2",
|
|
|
|
attacks: [{
|
|
cost: ["Lightning", "Colorless"],
|
|
|
|
name: {
|
|
en: "Electric Ball",
|
|
fr: "Boule de Foudre",
|
|
es: "Bola Eléctrica",
|
|
it: "Lamposfera",
|
|
pt: "Bola de Eletricidade",
|
|
de: "Stromball"
|
|
},
|
|
|
|
damage: 110
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |