mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Paldean Fates and Temporal Forces (#478)
This commit is contained in:
39
data/Scarlet & Violet/Temporal Forces/169.ts
Normal file
39
data/Scarlet & Violet/Temporal Forces/169.ts
Normal file
@ -0,0 +1,39 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Temporal Forces"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Charjabug",
|
||||
fr: "Chrysapile",
|
||||
es: "Charjabug",
|
||||
it: "Charjabug",
|
||||
pt: "Charjabug"
|
||||
},
|
||||
|
||||
rarity: "Illustration rare",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Lightning"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Lightning", "Lightning"],
|
||||
|
||||
name: {
|
||||
en: "Static Shock",
|
||||
fr: "Choc Statique",
|
||||
es: "Impacto Estático",
|
||||
it: "Shock Statico",
|
||||
pt: "Choque de Estática"
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user