mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-30 19:40:48 +00:00
feat: Paldean Fates and Temporal Forces (#478)
This commit is contained in:
47
data/Scarlet & Violet/Temporal Forces/059.ts
Normal file
47
data/Scarlet & Violet/Temporal Forces/059.ts
Normal file
@ -0,0 +1,47 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Temporal Forces"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Boltund",
|
||||
fr: "Fulgudog",
|
||||
es: "Boltund",
|
||||
it: "Boltund",
|
||||
pt: "Boltund"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Lightning"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Electrifying Dash",
|
||||
fr: "Ruée Électrifiante",
|
||||
es: "Carrera Electrizante",
|
||||
it: "Corsa Elettrizzante",
|
||||
pt: "Arremetida Eletrizante"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Search your deck for up to 2 Basic Lightning Energy cards and attach them to your Benched Pokémon in any way you like. Then, shuffle your deck.",
|
||||
fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie Lightning de base, puis attachez-les à vos Pokémon de Banc comme il vous plaît. Mélangez ensuite votre deck.",
|
||||
es: "Busca en tu baraja hasta 2 cartas de Energía Lightning Básica y únelas a tus Pokémon en Banca de la manera que desees. Después, baraja las cartas de tu baraja.",
|
||||
it: "Cerca nel tuo mazzo fino a due carte Energia base Lightning e assegnale ai tuoi Pokémon in panchina nel modo che preferisci. Poi rimischia le carte del tuo mazzo.",
|
||||
pt: "Procure por até 2 cartas de Energia Lightning Básica no seu baralho e ligue-as aos seus Pokémon no Banco como desejar. Em seguida, embaralhe o seu baralho."
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user