mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +00:00
feat: Paldean Fates and Temporal Forces (#478)
This commit is contained in:
39
data/Scarlet & Violet/Paldean Fates/148.ts
Normal file
39
data/Scarlet & Violet/Paldean Fates/148.ts
Normal file
@ -0,0 +1,39 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Abra",
|
||||
fr: "Abra",
|
||||
es: "Abra",
|
||||
it: "Abra",
|
||||
pt: "Abra"
|
||||
},
|
||||
|
||||
rarity: "Shiny rare",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Psyshot",
|
||||
fr: "Piqûre Psy",
|
||||
es: "Disparo Psi",
|
||||
it: "Psicosparo",
|
||||
pt: "Tiro Psíquico"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user