mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-01 12:22:02 +00:00
feat: Add Paradox Rift (#464)
This commit is contained in:
63
data/Scarlet & Violet/Paradox Rift/073.ts
Normal file
63
data/Scarlet & Violet/Paradox Rift/073.ts
Normal file
@@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paradox Rift"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Latios",
|
||||
fr: "Latios",
|
||||
es: "Latios",
|
||||
it: "Latios",
|
||||
pt: "Latios",
|
||||
de: "Latios"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Glide",
|
||||
fr: "Glissement",
|
||||
es: "Planeo",
|
||||
it: "Aliante",
|
||||
pt: "Planeio",
|
||||
de: "Gleiten"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: ["Psychic", "Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Luster Purge",
|
||||
fr: "Lumi-Éclat",
|
||||
es: "Resplandor",
|
||||
it: "Abbagliante",
|
||||
pt: "Purga de Esplendor",
|
||||
de: "Scheinwerfer"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard 3 Energy from this Pokémon.",
|
||||
fr: "Défaussez 3 Énergies de ce Pokémon.",
|
||||
es: "Descarta 3 Energías de este Pokémon.",
|
||||
it: "Scarta tre Energie da questo Pokémon.",
|
||||
pt: "Descarte 3 Energias deste Pokémon.",
|
||||
de: "Lege 3 Energien von diesem Pokémon auf deinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 180
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user