mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
feat: Add Paradox Rift (#464)
This commit is contained in:
50
data/Scarlet & Violet/Paradox Rift/095.ts
Normal file
50
data/Scarlet & Violet/Paradox Rift/095.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paradox Rift"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Gabite",
|
||||
fr: "Carmache",
|
||||
es: "Gabite",
|
||||
it: "Gabite",
|
||||
pt: "Gabite",
|
||||
de: "Knarksel"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Fighting"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Power Blast",
|
||||
fr: "Violente Déflagration",
|
||||
es: "Estallido Vigoroso",
|
||||
it: "Forzacolpo",
|
||||
pt: "Explosão Poderosa",
|
||||
de: "Powerschuss"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard an Energy from this Pokémon.",
|
||||
fr: "Défaussez une Énergie de ce Pokémon.",
|
||||
es: "Descarta 1 Energía de este Pokémon.",
|
||||
it: "Scarta un'Energia da questo Pokémon.",
|
||||
pt: "Descarte uma Energia deste Pokémon.",
|
||||
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user