mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
feat: Add Paradox Rift (#464)
This commit is contained in:
63
data/Scarlet & Violet/Paradox Rift/195.ts
Normal file
63
data/Scarlet & Violet/Paradox Rift/195.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paradox Rift"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Blitzle",
|
||||
fr: "Zébibron",
|
||||
es: "Blitzle",
|
||||
it: "Blitzle",
|
||||
pt: "Blitzle",
|
||||
de: "Elezeba"
|
||||
},
|
||||
|
||||
rarity: "Illustration rare",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Lightning"],
|
||||
|
||||
name: {
|
||||
en: "Rear Kick",
|
||||
fr: "Ruade",
|
||||
es: "Patada Trasera",
|
||||
it: "Retrocalcio",
|
||||
pt: "Chute Traseiro",
|
||||
de: "Rückwärtskick"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Lightning", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Wild Charge",
|
||||
fr: "Éclair Fou",
|
||||
es: "Voltio Cruel",
|
||||
it: "Sprizzalampo",
|
||||
pt: "Ataque Selvagem",
|
||||
de: "Stromstoß"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 20 damage to itself.",
|
||||
fr: "Ce Pokémon s'inflige aussi 20 dégâts.",
|
||||
es: "Este Pokémon también se hace 20 puntos de daño a sí mismo.",
|
||||
it: "Questo Pokémon infligge anche 20 danni a se stesso.",
|
||||
pt: "Este Pokémon também causa 20 pontos de dano a si mesmo.",
|
||||
de: "Dieses Pokémon fügt auch sich selbst 20 Schadenspunkte zu."
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user